{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowActionStripeGetCustomer", "title": "FlowActionStripeGetCustomer", "type": "object", "additionalProperties": false, "required": [ "id", "type", "action", "params" ], "properties": { "id": { "type": "string", "format": "forms-custom-identifier" }, "alias": { "type": "string", "maxLength": 100 }, "type": { "type": "string", "enum": [ "STRIPE" ] }, "action": { "type": "string", "enum": [ "GET_CUSTOMER" ] }, "allow_failure": { "type": "boolean" }, "mask_output": { "type": "boolean" }, "params": { "$ref": "#/components/schemas/FlowActionStripeGetCustomerParams" } } }