Skip to main content

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

  1. The product to be produced
  2. Quantity to be manufactured
  3. Materials and components needed
  4. Specific instructions for the production process

Schema

Data Definitions

ProductionOrder

Data TypeField NameRulesAbout
StringdocumentNumberZero or OneThe document number for the production order.
StringplantCodeZero or OneThe canonical plant code for the production order.
ProductproductZero or OneThe primary product to be created for the production order.
MagnitudequantityMadeZero or OneThe quantity made for the production order.
MagnitudequantityPlannedZero or OneThe 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"
}