ProductionStep
A single step in the production process for a SKU.
stepNumberinteger
Position of this step in the production sequence. Starts at 1.
Example:
1namestring
Short name for the step (e.g., "Mix base ingredients", "Pasteurize").
Example:
Blend fruit basedescriptionstring
Detailed instructions for this production step.
materials object[]
Items consumed during this specific step.
Array [
itemIdstring
Reference to the item.
itemNamestring
Display name of the item.
quantitynumber
Quantity of this item used in this step.
unitstring
Unit of measure.
]
checkliststring[]
Quality or safety verification items an operator must check during this step.
Example:
["Verify tahini consistency is smooth","Confirm garlic roast level"]ProductionStep
{
"stepNumber": 1,
"name": "Blend fruit base",
"description": "string",
"materials": [
{
"itemId": "string",
"itemName": "string",
"quantity": 0,
"unit": "string"
}
],
"checklist": [
"Verify tahini consistency is smooth",
"Confirm garlic roast level"
]
}