mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
31f352e7ce
* try ace * . * update * ... * update * update * test * - * update * fix * . * Revert "." This reverts commit631c30f8c0
. * Revert "fix" This reverts commitbe3dbc9cbd
. * Revert "update" This reverts commit50fc89e800
. * Revert "-" This reverts commit8a6c1fdab3
. * Revert "test" This reverts commit50b3641490
. * 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
|
|
}
|