XENOS/priv/audio.json

22 lines
752 B
JSON

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