XENOS/priv/video.json

29 lines
866 B
JSON

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