Workflow prompt
Create an equipment label Call App that captures asset ID, location, fault, inspection status, risk level, and operator notes.
Output schema
{
"outcome": "equipment label call outcome",
"fields": [
{
"description": "asset ID captured during the call.",
"name": "asset_ID",
"required": true,
"type": "text"
},
{
"description": "location captured during the call.",
"name": "location",
"required": true,
"type": "text"
},
{
"description": "fault or question captured during the call.",
"name": "fault_or_question",
"required": true,
"type": "text"
},
{
"description": "risk level captured during the call.",
"name": "risk_level",
"required": true,
"type": "text"
},
{
"description": "operator notes captured during the call.",
"name": "operator_notes",
"required": true,
"type": "text"
}
]
}