mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
ef1f269c51
Former-commit-id: 223e5d183fd2ec83f61421aaa142bc86958fff6a
35 lines
581 B
JSON
35 lines
581 B
JSON
{
|
|
"type":"object",
|
|
"required":true,
|
|
"properties":{
|
|
"command": {
|
|
"type" : "string",
|
|
"required" : true,
|
|
"enum" : ["correction"]
|
|
},
|
|
"correction": {
|
|
"type": "object",
|
|
"required": true,
|
|
"properties": {
|
|
"id" : {
|
|
"type" : "string",
|
|
"required" : false
|
|
},
|
|
"correctionValues" : {
|
|
"type": "array",
|
|
"required": false,
|
|
"items" : {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 255
|
|
},
|
|
"minItems": 3,
|
|
"maxItems": 3
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|