Workflow prompt
Create a machine fault Call App that captures asset ID, symptom, downtime impact, safety risk, and operator contact details.
Output schema
{
"outcome": "machine call outcome",
"fields": [
{
"description": "asset ID captured during the call.",
"name": "asset_ID",
"required": true,
"type": "text"
},
{
"description": "fault symptom captured during the call.",
"name": "fault_symptom",
"required": true,
"type": "text"
},
{
"description": "operator name captured during the call.",
"name": "operator_name",
"required": true,
"type": "text"
},
{
"description": "downtime impact captured during the call.",
"name": "downtime_impact",
"required": true,
"type": "date"
},
{
"description": "safety risk captured during the call.",
"name": "safety_risk",
"required": true,
"type": "text"
}
]
}