40 lines
647 B
JSON
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"
|
|
}
|
|
}
|
|
}
|