XENOS/priv/activity.json

23 lines
616 B
JSON

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