You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1000 B
Plaintext
37 lines
1000 B
Plaintext
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"content": {
|
|
"type": "object",
|
|
"properties": {
|
|
"avatar_url": {
|
|
"type": "string"
|
|
},
|
|
"displayname": {
|
|
"type": "string"
|
|
},
|
|
"last_active_ago": {
|
|
"type": "number"
|
|
},
|
|
"presence": {
|
|
"type": "string",
|
|
"enum": ["online", "offline", "unavailable", "free_for_chat", "hidden"]
|
|
},
|
|
"user_id": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["presence", "user_id"]
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"enum": ["m.presence"]
|
|
},
|
|
"event_id": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["event_id", "type", "content"]
|
|
}
|