41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"$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"
|
|
},
|
|
"username": {
|
|
"type": "string",
|
|
"description": "Matrix username"
|
|
},
|
|
"password": {
|
|
"type": "string",
|
|
"description": "Matrix password"
|
|
},
|
|
"encrypted": {
|
|
"type": "boolean",
|
|
"description": "Use encryption"
|
|
}
|
|
},
|
|
"required": ["name", "username", "password", "homeserver"]
|
|
}
|
|
}
|
|
},
|
|
"required": ["instances"]
|
|
}
|