{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowActionAuth0MakeCallParams", "title": "FlowActionAuth0MakeCallParams", "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/FlowActionAuth0MakeCallParamsCustomVars" } } }