XENOS/priv/community.json

23 lines
764 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "ActivityPub Community",
"type": "object",
"required": ["@context", "type", "id", "name"],
"properties": {
"@context": { "type": "string" },
"type": { "type": "string", "enum": ["Community"] },
"id": { "type": "string" },
"name": { "type": "string" },
"summary": { "type": "string" },
"published": { "type": "string" },
"updated": { "type": "string" },
"icon": { "type": "object" },
"url": { "type": "string" },
"inbox": { "type": "string" },
"outbox": { "type": "string" },
"preferredUsername": { "type": "string" },
"attributedTo": { "type": "string" }
},
"additionalProperties": true
}