{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeleteAlarmsInput", "title": "DeleteAlarmsInput", "type": "object", "required": [ "AlarmNames" ], "properties": { "AlarmNames": { "type": "array", "items": { "type": "string" }, "maxItems": 100, "description": "The alarms to be deleted. You can delete up to 100 alarms in one operation.", "example": [] } } }