plugin configuration schemas

This commit is contained in:
Evert Prants 2021-10-02 15:10:39 +03:00
parent 34f1f48c45
commit 63e527a344
Signed by: evert
GPG Key ID: 1688DA83D222D0B5

28
discord/schema.json Normal file
View File

@ -0,0 +1,28 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://squeebot.lunasqu.ee/pkg/service-discord/discord.schema.json",
"title": "discord",
"description": "Discord Service configuration",
"type": "object",
"properties": {
"instances": {
"type": "array",
"description": "List of all registered protocols",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Protocol's descriptive name"
},
"token": {
"type": "string",
"description": "Discord bot token"
}
},
"required": ["name", "token"]
}
}
},
"required": ["instances"]
}