plugin configuration schemas

This commit is contained in:
Evert Prants 2021-10-02 15:10:56 +03:00
parent 4c70f47c98
commit a28135dc11
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
1 changed files with 32 additions and 0 deletions

32
matrix/schema.json Normal file
View File

@ -0,0 +1,32 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://squeebot.lunasqu.ee/pkg/service-matrix/matrix.schema.json",
"title": "matrix",
"description": "Matrix 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"
},
"homeserver": {
"type": "string",
"description": "Matrix homeserver URL"
},
"token": {
"type": "string",
"description": "Matrix access token"
}
},
"required": ["name", "token", "homeserver"]
}
}
},
"required": ["instances"]
}