{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SendInternalAlertActionData", "title": "SendInternalAlertActionData", "type": "object", "properties": { "message": { "$ref": "#/components/schemas/FlowInternalAlert" }, "status": { "description": "Flow action status.", "type": "string", "example": "draft", "default": "draft", "enum": [ "disabled", "draft", "live", "manual" ] } }, "required": [ "message" ] }