mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
29 lines
407 B
JSON
29 lines
407 B
JSON
{
|
|
"type":"object",
|
|
"required":true,
|
|
"properties":{
|
|
"command": {
|
|
"type" : "string",
|
|
"required" : true,
|
|
"enum" : ["logging"]
|
|
},
|
|
"tan" : {
|
|
"type" : "integer"
|
|
},
|
|
"subcommand": {
|
|
"type" : "string",
|
|
"required" : true,
|
|
"enum" : ["stop","start","update"]
|
|
},
|
|
"oneshot": {
|
|
"type" : "bool"
|
|
},
|
|
"interval": {
|
|
"type" : "integer"
|
|
}
|
|
},
|
|
|
|
"additionalProperties": false
|
|
}
|
|
|