16 lines
480 B
JSON
16 lines
480 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "ActivityPub Person",
|
|
"type": "object",
|
|
"required": ["@context", "type", "id"],
|
|
"properties": {
|
|
"@context": { "type": "string" },
|
|
"type": { "type": "string", "enum": ["Person"] },
|
|
"id": { "type": "string" },
|
|
"preferredUsername": { "type": "string" },
|
|
"inbox": { "type": "string" },
|
|
"outbox": { "type": "string" }
|
|
},
|
|
"additionalProperties": true
|
|
}
|
|
|