mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-25 10:28:37 +01:00
23 lines
492 B
Plaintext
23 lines
492 B
Plaintext
|
|
{
|
||
|
|
"$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": "^$"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|