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.
26 lines
539 B
Plaintext
26 lines
539 B
Plaintext
9 years ago
|
{
|
||
|
"type": "object",
|
||
|
"title": "Tag Event",
|
||
|
"description": "Informs the client of tags on a room.",
|
||
|
"properties": {
|
||
|
"type": {
|
||
|
"type": "string",
|
||
|
"enum": ["m.tag"]
|
||
|
},
|
||
|
"content": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"tags": {
|
||
9 years ago
|
"type": "object",
|
||
9 years ago
|
"description": "The tags on the room and their contents.",
|
||
9 years ago
|
"additionalProperties": {
|
||
9 years ago
|
"title": "Tag",
|
||
9 years ago
|
"type": "object"
|
||
9 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
9 years ago
|
"required": ["type", "content"]
|
||
9 years ago
|
}
|