{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-events/refs/heads/main/json-schema/iot-events-clear-timer-action-schema.json", "title": "ClearTimerAction", "description": "Information needed to clear the timer.", "type": "object", "properties": { "timerName": { "allOf": [ { "$ref": "#/components/schemas/TimerName" }, { "description": "The name of the timer to clear." } ] } }, "required": [ "timerName" ] }