Production Order
Summary
A production order serves as a "work order" for a production team, guiding them on what to create, how much, and by when, ensuring everything is completed to the required standards.
A production order can include details required for
- The product to be produced
- Quantity to be manufactured
- Materials and components needed
- Specific instructions for the production process
Schema
Data Definitions
ProductionOrder
Data Type | Field Name | Rules | About |
---|---|---|---|
String | documentNumber | Zero or One | The document number for the production order. |
String | labelDescription | Zero or One | The label description for the production order. |
String | labelSku | Zero or One | The label sku for the production order. |
String | plantCode | Zero or One | The canonical plant code for the production order. |
Product | product | Zero or One | The primary product to be created for the production order. |
Magnitude | quantityMade | Zero or One | The quantity made for the production order. |
Magnitude | quantityPlanned | Zero or One | The quantity planned for the production order. |
Note omitted fields: attributeField, extendedBy, externalIdentity, recordedBy, sourceSystemCode, sourceSystemId, uniqueText
Sample JSON
{
"@type": "ProductionOrder",
"product": "https://schema.limbergraph.com/limber/Product#6184b4c7-cef3-4690-9837-60054bbeb626",
"quantityPlanned": {
"@type": "Magnitude",
"decimalValue": "50",
"uom": "https://schema.limbergraph.com/limber/UnitOfMeasure#each"
},
"quantityMade": {
"@type": "Magnitude",
"decimalValue": "50",
"uom": "https://schema.limbergraph.com/limber/UnitOfMeasure#each"
},
"documentNumber": "W137428",
"plantCode": "6910",
"labelDescription": "My Product",
"labelSku": "FT0001"
}