addedInput schema / properties / confirm
Added value: +{
+ "default": false,
+ "description": "Explicitly confirm this high-impact operation",
+ "title": "Confirm",
+ "type": "boolean"
+}
changedInput schema / properties / idx / anyOf
Previous value: -[
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "minimum": 1,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / idx / description
Added value: +"Numeric Domoticz idx; preferred over name when known"
changedInput schema / properties / name / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "maxLength": 200,
+ "minLength": 1,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / name / description
Added value: +"Case-insensitive Domoticz entity name"
addedOutput schema / additionalProperties
Added value: +true
addedOutput schema / description
Added value: +"A successful Domoticz command response."
removedOutput schema / properties / result
Removed value: -{
- "title": "Result",
- "type": "string"
-}
addedOutput schema / properties / status
Added value: +{
+ "description": "Status returned by Domoticz, normally OK",
+ "title": "Status",
+ "type": "string"
+}
addedOutput schema / properties / title
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional Domoticz response title",
+ "title": "Title"
+}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "status"
+]
changedOutput schema / title
Previous value: -"delete_user_variableOutput"New value: +"DomoticzToolResult"