doki/src/main/resources/config.schema.json
2024-08-21 21:14:44 +01:00

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"
]
}