mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2025-04-11 03:20:04 +00:00
36 lines
1.0 KiB
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
} |