JSON Schema for the ToggleState action.
{
"type": "object",
"properties": {
"action": {
"const": "toggleState",
"default": "toggleState",
"type": "string"
},
"key": {
"description": "State key to toggle",
"type": "string"
}
},
"required": [
"action",
"key"
]
}