mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
515ae3e8c0
Former-commit-id: 4bc2920c04853e549c712ec70492371b14d20877
36 lines
840 B
JSON
36 lines
840 B
JSON
{
|
|
"type":"object",
|
|
"required":true,
|
|
"properties":{
|
|
"command": {
|
|
"type" : "string",
|
|
"required" : true,
|
|
"enum" : ["effect"]
|
|
},
|
|
"priority": {
|
|
"type": "integer",
|
|
"required": true
|
|
},
|
|
"duration": {
|
|
"type": "integer",
|
|
"required": false
|
|
},
|
|
"effect": {
|
|
"type": "object",
|
|
"required": true,
|
|
"properties" :{
|
|
"name" : {
|
|
"type" : "string",
|
|
"required" : true
|
|
},
|
|
"args" : {
|
|
"type" : "object",
|
|
"required" : false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|