{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowActionAuth0SendSmsParams", "title": "FlowActionAuth0SendSmsParams", "type": "object", "additionalProperties": false, "required": [ "to", "message" ], "properties": { "from": { "type": "string", "minLength": 1, "maxLength": 255 }, "to": { "type": "string", "minLength": 1, "maxLength": 255 }, "message": { "type": "string", "minLength": 1, "maxLength": 1024 }, "custom_vars": { "$ref": "#/components/schemas/FlowActionAuth0SendSmsParamsCustomVars" } } }