42 lines
No EOL
664 B
JSON
42 lines
No EOL
664 B
JSON
|
|
|
|
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"token": {
|
|
"type": "string"
|
|
},
|
|
"prefix": {
|
|
"type": "string"
|
|
},
|
|
"mariadb": {
|
|
"type": "object",
|
|
"properties": {
|
|
"host": {
|
|
"type": "string"
|
|
},
|
|
"user": {
|
|
"type": "string"
|
|
},
|
|
"password": {
|
|
"type": "string"
|
|
},
|
|
"database": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"host",
|
|
"user",
|
|
"password",
|
|
"database"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"token",
|
|
"prefix",
|
|
"mariadb"
|
|
]
|
|
} |