{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RecipientInput", "title": "RecipientInput", "type": "object", "description": "Input for creating or updating a recipient", "required": [ "email" ], "properties": { "email": { "type": "string", "format": "email", "description": "Email address of the recipient" }, "first_name": { "type": "string", "description": "First name of the recipient" }, "last_name": { "type": "string", "description": "Last name of the recipient" }, "custom_fields": { "type": "object", "description": "Custom fields associated with the recipient", "additionalProperties": { "type": "string" } } } }