Workflow prompt
Create a wedding invite Call App that captures RSVP, party size, dietary needs, travel questions, and a message to the hosts.
Output schema
{
"outcome": "wedding invite call outcome",
"fields": [
{
"description": "guest name captured during the call.",
"name": "guest_name",
"required": true,
"type": "text"
},
{
"description": "attendance captured during the call.",
"name": "attendance",
"required": true,
"type": "text"
},
{
"description": "party size captured during the call.",
"name": "party_size",
"required": true,
"type": "number"
},
{
"description": "dietary needs captured during the call.",
"name": "dietary_needs",
"required": true,
"type": "text"
},
{
"description": "message to hosts captured during the call.",
"name": "message_to_hosts",
"required": true,
"type": "text"
}
]
}