matrix-spec/event-schemas/schema/m.room.name

23 lines
492 B
Plaintext
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"allOf": [{
"$ref": "core#/definitions/state_event"
}],
"properties": {
"content": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"required": ["name"]
},
"state_key": {
"type": "string",
"pattern": "^$"
}
}
}