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.
31 lines
1008 B
Plaintext
31 lines
1008 B
Plaintext
{
|
|
"type": "object",
|
|
"title": "Controls whether guest users are allowed to join rooms.",
|
|
"description": "This event controls whether guest users are allowed to join rooms. If this event is absent, servers should act as if it is present and has the guest_access value \"forbidden\".",
|
|
"allOf": [{
|
|
"$ref": "core-event-schema/state_event.json"
|
|
}],
|
|
"properties": {
|
|
"content": {
|
|
"type": "object",
|
|
"properties": {
|
|
"guest_access": {
|
|
"type": "string",
|
|
"description": "Whether guests can join the room.",
|
|
"enum": ["can_join", "forbidden"]
|
|
}
|
|
},
|
|
"required": ["guest_access"]
|
|
},
|
|
"state_key": {
|
|
"type": "string",
|
|
"description": "A zero-length string.",
|
|
"pattern": "^$"
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"enum": ["m.room.guest_access"]
|
|
}
|
|
}
|
|
}
|