19 lines
484 B
JSON
19 lines
484 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "ActivityPub Note",
|
|
"type": "object",
|
|
"required": ["type", "id", "content"],
|
|
"properties": {
|
|
"@context": { "type": "string" },
|
|
"type": { "type": "string", "enum": ["Note"] },
|
|
"id": { "type": "string" },
|
|
"attributedTo": { "type": "string" },
|
|
"content": { "type": "string" },
|
|
"to": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
}
|
|
},
|
|
"additionalProperties": true
|
|
}
|