Vessel
A vessel is the smallest countable unit. Vessels may be delivered individually or in bundles.
Vessels primarily define the size and unit of the item. This is required if an item can be consumed or delivered in fraction quantities and allows customers to do inventory more accurately.
Vessels may have an optional type
to label the vessel as described in vessel
and bundle types.
{
"vessel": {
"size": 7,
"unit": "dl",
"type": "BO"
}
}
Bundles
Bundles specify the type and quantity in which vessels are delivered. Bundle
types are described in vessel and bundle types.
Bundles with type "PX"
may have a pallet_bundle
property which specifies
the bundle type and size delivered on the pallet.
{
"bundles": [
{
"type": "BX",
"size": 20
},
{
"type": "PX",
"size": 40,
"pallet_bundle": {
"type": "BX",
"size": 20
}
}
]
}