mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
30 lines
526 B
JSON
30 lines
526 B
JSON
|
{
|
||
|
"type":"object",
|
||
|
"required":true,
|
||
|
"properties":{
|
||
|
"command": {
|
||
|
"type" : "string",
|
||
|
"required" : true,
|
||
|
"enum" : ["instance"]
|
||
|
},
|
||
|
"subcommand" : {
|
||
|
"type" : "string",
|
||
|
"required" : true,
|
||
|
"enum" : ["createInstance","deleteInstance","startInstance","stopInstance","saveName","switchTo"]
|
||
|
},
|
||
|
"tan" : {
|
||
|
"type" : "integer"
|
||
|
},
|
||
|
"instance" : {
|
||
|
"type" : "integer",
|
||
|
"minimum" : 0,
|
||
|
"maximum" : 255
|
||
|
},
|
||
|
"name": {
|
||
|
"type": "string",
|
||
|
"minLength" : 5
|
||
|
}
|
||
|
},
|
||
|
"additionalProperties": false
|
||
|
}
|