Input schema
{
"type": "object",
"properties": {
"format": {
"type": "string",
"enum": [
"copy",
"pdf",
"email"
],
"description": "Export format"
},
"name": {
"type": "string",
"description": "Recipient name (required for email format)"
},
"company": {
"type": "string",
"description": "Company name (required for email format)"
},
"email": {
"type": "string",
"description": "Recipient email (required for email format)"
},
"found_us": {
"type": "array",
"description": "How the user found this product (required for email format)",
"items": {
"type": "string",
"enum": [
"search",
"referral",
"linkedin",
"nts_website",
"existing_customer",
"event",
"other"
]
},
"minItems": 1
}
},
"required": [
"format"
],
"additionalProperties": false
}