1
0
Fork 0
This repository has been archived on 2024-12-18. You can view files and clone it, but cannot push or open issues or pull requests.
mining-companion/companion/config.schema.json
Julien Riou 14aa8a6d59
Add "state" tests
Signed-off-by: Julien Riou <julien@riou.xyz>
2021-02-12 09:43:38 +01:00

40 lines
647 B
JSON

{
"type": "object",
"properties": {
"telegram": {
"type": "object",
"properties": {
"chat_id": {
"type": "number"
},
"auth_key": {
"type": "string"
}
},
"required": [
"chat_id",
"auth_key"
]
},
"currency": {
"type": "string"
},
"miner": {
"type": "string"
},
"pools": {
"type": "array",
"items": {
"type": "string",
"enum": [
"flexpool",
"ethermine"
]
},
"uniqueItems": true
},
"state_file": {
"type": "string"
}
}
}