19 lines
581 B
JSON
19 lines
581 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "ActivityPub Image",
|
|
"type": "object",
|
|
"required": ["type", "id", "url"],
|
|
"properties": {
|
|
"type": { "type": "string", "enum": ["Image"] },
|
|
"id": { "type": "string" },
|
|
"url": { "type": "string" },
|
|
"mediaType": { "type": "string" },
|
|
"name": { "type": "string" },
|
|
"summary": { "type": "string" },
|
|
"height": { "type": "integer" },
|
|
"width": { "type": "integer" },
|
|
"attributedTo": { "type": "string" }
|
|
},
|
|
"additionalProperties": true
|
|
}
|
|
|