Workflow prompt
Create a lease Call App that captures tenant questions by topic, clause, property, deadline, and routes legal or dispute questions to staff.
Output schema
{
"outcome": "lease call outcome",
"fields": [
{
"description": "clause or topic captured during the call.",
"name": "clause_or_topic",
"required": true,
"type": "text"
},
{
"description": "tenant question captured during the call.",
"name": "tenant_question",
"required": true,
"type": "text"
},
{
"description": "property captured during the call.",
"name": "property",
"required": true,
"type": "text"
},
{
"description": "deadline captured during the call.",
"name": "deadline",
"required": true,
"type": "text"
},
{
"description": "human follow-up needed captured during the call.",
"name": "human_follow-up_needed",
"required": true,
"type": "text"
}
]
}