mirror of
https://gitlab.edgegamers.io/discord/ds-bot.git
synced 2025-12-06 06:22:49 -08:00
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean"
|
|
},
|
|
"joinChannel": {
|
|
"type": "string"
|
|
},
|
|
"maxSizes": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"maxListSizes": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"tierRequirements": {
|
|
"type": "object",
|
|
"properties": {
|
|
"create": {
|
|
"$ref": "./DSTier.schema.json"
|
|
},
|
|
"join": {
|
|
"$ref": "./DSTier.schema.json"
|
|
},
|
|
"rename": {
|
|
"$ref": "./DSTier.schema.json"
|
|
},
|
|
"lock": {
|
|
"$ref": "./DSTier.schema.json"
|
|
},
|
|
"list": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"$ref": "./DSTier.schema.json"
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
"create",
|
|
"join",
|
|
"rename",
|
|
"lock",
|
|
"list"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"enabled",
|
|
"joinChannel",
|
|
"maxSizes",
|
|
"maxListSizes",
|
|
"tierRequirements"
|
|
]
|
|
} |