28 lines
836 B
JSON
28 lines
836 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "ActivityPub Article",
|
|
"type": "object",
|
|
"required": ["@context", "type", "id", "attributedTo", "content"],
|
|
"properties": {
|
|
"@context": { "type": "string" },
|
|
"type": { "type": "string", "enum": ["Article"] },
|
|
"id": { "type": "string" },
|
|
"attributedTo": { "type": "string" },
|
|
"content": { "type": "string" },
|
|
"name": { "type": "string" },
|
|
"summary": { "type": "string" },
|
|
"published": { "type": "string" },
|
|
"updated": { "type": "string" },
|
|
"to": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
},
|
|
"cc": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
},
|
|
"inReplyTo": { "type": "string" }
|
|
},
|
|
"additionalProperties": true
|
|
}
|
|
|