{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowActionStripeUpdateCustomerParams", "title": "FlowActionStripeUpdateCustomerParams", "type": "object", "additionalProperties": false, "required": [ "connection_id", "id" ], "properties": { "connection_id": { "type": "string", "maxLength": 30, "format": "flows-vault-connections-id" }, "id": { "type": "string", "maxLength": 250 }, "name": { "type": "string", "maxLength": 250 }, "description": { "type": "string", "maxLength": 250 }, "email": { "type": "string", "maxLength": 512 }, "phone": { "type": "string", "maxLength": 250 }, "tax_exempt": { "type": "string" }, "address": { "$ref": "#/components/schemas/FlowActionStripeAddress" }, "metadata": { "$ref": "#/components/schemas/FlowActionStripeMetadata" } } }