XENOS/priv/undo.json

15 lines
458 B
JSON

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