Files
ds-bot/schemas/config.schema.json
2023-04-12 15:55:23 -07:00

24 lines
542 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"commands": {
"$ref": "./commands.schema.json"
},
"react-roles": {
"$ref": "./react-roles.schema.json"
},
"ds-voice": {
"$ref": "./ds-voice.schema.json"
},
"permissions": {
"$ref": "./permissions.schema.json"
}
},
"required": [
"commands",
"react-roles",
"ds-voice",
"permissions"
]
}