mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
8d7137136b
* update * update * tabs test * update * test * ... * fix editor * update ui * fix visual glitch if help is off * fix fadecandy error and th [skip ci]
34 lines
499 B
JSON
34 lines
499 B
JSON
{
|
|
"type":"object",
|
|
"required":true,
|
|
"properties":{
|
|
"command": {
|
|
"type" : "string",
|
|
"required" : true,
|
|
"enum" : ["color"]
|
|
},
|
|
"tan" : {
|
|
"type" : "integer"
|
|
},
|
|
"priority": {
|
|
"type": "integer",
|
|
"minimum" : 1,
|
|
"maximum" : 253,
|
|
"required": true
|
|
},
|
|
"duration": {
|
|
"type": "integer",
|
|
"required": false
|
|
},
|
|
"color": {
|
|
"type": "array",
|
|
"required": true,
|
|
"items" :{
|
|
"type" : "integer"
|
|
},
|
|
"minItems": 3
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|