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.
matrix-spec/event-schemas/schema/v1/m.room.power_levels

43 lines
1.3 KiB
Plaintext

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"allOf": [{
"$ref": "core#/definitions/state_event"
}],
"properties": {
"content": {
"type": "object",
"properties": {
"ban": { "type": "number" },
"events_default": { "type": "number" },
"kick": { "type": "number" },
"redact": { "type": "number" },
"state_default": { "type": "number" },
"users_default": { "type": "number" },
"events": {
"type": "object",
"additionalProperties": {
"type": "number"
}
},
"users": {
"type": "object",
"additionalProperties": {
"type": "number"
}
}
},
"required": ["ban","events","events_default","kick","redact",
"state_default","users","users_default"]
},
"state_key": {
"type": "string",
"pattern": "^$"
},
"type": {
"type": "string",
"enum": ["m.room.power_levels"]
}
}
}