mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
35b7707b3f
Former-commit-id: 3f5a96e0275e239ba0361905282b59a9bd4412d0
35 lines
583 B
JSON
35 lines
583 B
JSON
{
|
|
"type":"object",
|
|
"required":true,
|
|
"properties":{
|
|
"command": {
|
|
"type" : "string",
|
|
"required" : true,
|
|
"enum" : ["temperature"]
|
|
},
|
|
"temperature": {
|
|
"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
|
|
}
|