Workflow prompt
Create a callable apartment workflow that handles rental inquiries and maintenance reports, captures property, unit, request type, urgency, and next step.
Output schema
{
"outcome": "apartment call outcome",
"fields": [
{
"description": "property address captured during the call.",
"name": "property_address",
"required": true,
"type": "text"
},
{
"description": "unit captured during the call.",
"name": "unit",
"required": true,
"type": "text"
},
{
"description": "inquiry type captured during the call.",
"name": "inquiry_type",
"required": true,
"type": "text"
},
{
"description": "move-in or repair details captured during the call.",
"name": "move-in_or_repair_details",
"required": true,
"type": "text"
},
{
"description": "inspection or access time captured during the call.",
"name": "inspection_or_access_time",
"required": true,
"type": "date"
}
]
}