mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
c2faf07574
* Add ability to delete custom created Effects * Add deleteEffect function to Hyperion-Remote * Add deleteEffect function to Hyperion-Remote * Update schema.json * Update JsonSchemas.qrc * Add schema-delete-effect.json * Add deleteEffect function to JSON RPC * Add deleteEffect function to JSON RPC * Add Effect configuration file (.json) to Effect Definition * Update EffectDefinition.h
22 lines
287 B
JSON
22 lines
287 B
JSON
|
|
{
|
|
"type":"object",
|
|
"required":true,
|
|
"properties":{
|
|
"command": {
|
|
"type" : "string",
|
|
"required" : true,
|
|
"enum" : ["delete-effect"]
|
|
},
|
|
"tan" : {
|
|
"type" : "integer"
|
|
},
|
|
"name" :
|
|
{
|
|
"type" : "string",
|
|
"required" : true
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|