Workflow prompt
Create a hotel room Call App that captures room number, guest request, urgency, preferred service time, and staff follow-up.
Output schema
{
"outcome": "hotel room call outcome",
"fields": [
{
"description": "room number captured during the call.",
"name": "room_number",
"required": true,
"type": "text"
},
{
"description": "guest request captured during the call.",
"name": "guest_request",
"required": true,
"type": "text"
},
{
"description": "urgency captured during the call.",
"name": "urgency",
"required": true,
"type": "text"
},
{
"description": "preferred service time captured during the call.",
"name": "preferred_service_time",
"required": true,
"type": "date"
},
{
"description": "staff assignment captured during the call.",
"name": "staff_assignment",
"required": true,
"type": "text"
}
]
}