mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
* try ace * . * update * ... * update * update * test * - * update * fix * . * Revert "." This reverts commit 631c30f8c08d3c62b6f9d538a7c5f2fdd7a18e76. * Revert "fix" This reverts commit be3dbc9cbdf3638d0c57979599a5275cdca96162. * Revert "update" This reverts commit 50fc89e800ea24e23ffe358612a6532499f8afea. * Revert "-" This reverts commit 8a6c1fdab32768edcb22f16e2368d6b73de6909a. * Revert "test" This reverts commit 50b36414909ea9198a05b8bede38a19067891693. * update schema * update ui * flags * adjustments
49 lines
768 B
JSON
49 lines
768 B
JSON
{
|
|
"type":"object",
|
|
"required":true,
|
|
"properties":{
|
|
"command": {
|
|
"type" : "string",
|
|
"required" : true,
|
|
"enum" : ["effect"]
|
|
},
|
|
"tan" : {
|
|
"type" : "integer"
|
|
},
|
|
"priority": {
|
|
"type": "integer",
|
|
"minimum" : 1,
|
|
"maximum" : 253,
|
|
"required": true
|
|
},
|
|
"duration": {
|
|
"type": "integer",
|
|
"required": false
|
|
},
|
|
"origin": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"effect": {
|
|
"type": "object",
|
|
"required": true,
|
|
"properties" :{
|
|
"name" : {
|
|
"type" : "string",
|
|
"required" : true
|
|
},
|
|
"args" : {
|
|
"type" : "object",
|
|
"required" : false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
},
|
|
"pythonScript" : {
|
|
"type" : "string",
|
|
"required" : false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|