XENOS/priv/event.json

29 lines
881 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "ActivityPub Event",
"type": "object",
"required": ["@context", "type", "id", "attributedTo", "name", "startTime"],
"properties": {
"@context": { "type": "string" },
"type": { "type": "string", "enum": ["Event"] },
"id": { "type": "string" },
"attributedTo": { "type": "string" },
"name": { "type": "string" },
"startTime": { "type": "string" },
"endTime": { "type": "string" },
"content": { "type": "string" },
"summary": { "type": "string" },
"published": { "type": "string" },
"updated": { "type": "string" },
"to": {
"type": "array",
"items": { "type": "string" }
},
"cc": {
"type": "array",
"items": { "type": "string" }
}
},
"additionalProperties": true
}