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

19 lines
381 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"enabled": {
"type": "boolean"
}
},
"required": [
"name",
"enabled"
]
}
}