{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowActionAuth0SendRequestParams", "title": "FlowActionAuth0SendRequestParams", "type": "object", "additionalProperties": false, "required": [ "connection_id", "pathname" ], "properties": { "connection_id": { "type": "string", "maxLength": 30, "format": "flows-vault-connections-id" }, "pathname": { "type": "string" }, "method": { "type": "string", "enum": [ "GET", "POST", "PUT", "PATCH", "DELETE" ] }, "headers": { "$ref": "#/components/schemas/FlowActionAuth0SendRequestParamsHeaders" }, "params": { "$ref": "#/components/schemas/FlowActionAuth0SendRequestParamsQueryParams" }, "payload": { "$ref": "#/components/schemas/FlowActionAuth0SendRequestParamsPayload" } } }