1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-04-11 03:20:04 +00:00
Files
Mike Ammerlaan 8cb28e3b1e v1.21.70.3
2025-03-25 09:13:19 -07:00

36 lines
1.0 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "2103393334",
"title": "commands",
"type": "object",
"properties": {
"default_permission_level": {
"title": "command_permission_level",
"description": "Default permission level for all unspecified commands. If not set then commands will default to their normal permission level.",
"type": "string",
"enum": [
"any",
"game_directors",
"admin",
"host",
"owner",
"internal"
]
},
"permission_levels": {
"type": "object",
"additionalProperties": {
"title": "command_permission_level",
"type": "string",
"enum": [
"any",
"game_directors",
"admin",
"host",
"owner",
"internal"
]
}
}
}
}