Workflow prompt
Create a policy document Call App that captures policy questions, acknowledgements, quiz answers, and routes legal or HR issues to a person.
Output schema
{
"outcome": "policy document call outcome",
"fields": [
{
"description": "reader identity captured during the call.",
"name": "reader_identity",
"required": true,
"type": "text"
},
{
"description": "policy topic captured during the call.",
"name": "policy_topic",
"required": true,
"type": "text"
},
{
"description": "question captured during the call.",
"name": "question",
"required": true,
"type": "text"
},
{
"description": "acknowledgement captured during the call.",
"name": "acknowledgement",
"required": true,
"type": "text"
},
{
"description": "quiz score captured during the call.",
"name": "quiz_score",
"required": true,
"type": "number"
}
]
}