29 lines
505 B
JSON
29 lines
505 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"address": {
|
|
"type": "string",
|
|
"default": "localhost:8880"
|
|
},
|
|
"username": {
|
|
"type": "string",
|
|
"default": ""
|
|
},
|
|
"password": {
|
|
"type": "string",
|
|
"default": ""
|
|
}
|
|
},
|
|
"required": [
|
|
"enabled",
|
|
"address",
|
|
"username",
|
|
"password"
|
|
]
|
|
} |