XENOS/priv/follow.json

15 lines
422 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "ActivityPub Follow",
"type": "object",
"required": ["@context", "type", "id", "actor", "object"],
"properties": {
"@context": { "type": "string" },
"type": { "type": "string", "enum": ["Follow"] },
"id": { "type": "string" },
"actor": { "type": "string" },
"object": { "type": "string" }
},
"additionalProperties": true
}