hyperion.ng/libsrc/api/JSONRPC_schema/schema-config.json
2024-05-08 22:06:32 +02:00

29 lines
478 B
JSON

{
"type":"object",
"required":true,
"properties":{
"command": {
"type" : "string",
"required" : true,
"enum" : ["config"]
},
"subcommand": {
"type" : "string",
"required" : true,
"enum" : ["getconfig","getschema","setconfig","restoreconfig","reload"]
},
"instance" : {
"type" : "integer",
"minimum": 0,
"maximum": 255
},
"tan" : {
"type" : "integer"
},
"config": {
"type" : "object"
}
},
"additionalProperties": false
}