The JSON represents a filled container configuration generated by the CubeMaster API V2, detailing how cargo is arranged within a shipping container (e.g., a 53FT-Intermodal SeaVan). It includes metadata about the container, loaded cargo, utilization metrics, graphical representations, and precise placement details via the placements
field in the spaces
array. The schema is designed for logistics and supply chain applications, used by the CubeMaster platform to optimize and visualize cargo loading.
This structure is typically returned by the POST /Loads
endpoint when spacesCreated: true
and placementsCreated: true
, enabling detailed cargo placement data.
graphicsCreated: true
.spacesCreated: true
and placementsCreated: true
.UOM
query parameter.cargoesLoaded
(integer), volumeLoaded
(integer, cubic mm), weightLoaded
(float, kg), and utilization percentages (volumeUtilization
, weightUtilization
, etc.). Includes dimWeight
(float, dimensional weight), priceLoaded
(integer), and arrangement details like cargoesPerLayer
.length
, width
, height
(integers, mm) to describe container and cargo footprint dimensions.containerType
(string, e.g., "SeaVan"), vehicleType
(string, e.g., "Dry"), dimensions, emptyWeight
(integer, kg), maxWeight
(integer, kg), and visual properties like color
(integer). Can be loaded from the database if containerDetailLoadedFromDatabase: true
.images
object with URLs (strings) for diagrams (e.g., path3DDiagram
, path2DTop
, etc.), generated if graphicsCreated: true
.sequence
(integer): Order of the space.isEmpty
(boolean): Whether the space is empty.cargoesLoaded
(integer): Number of cargoes in the space.piecesLoaded
(integer): Number of individual pieces.cargo
(object): Details of the cargo type (e.g., dimensions, weight), loaded from the database if cargoDetailLoadedFromDatabase: true
.arrangement
(object): Layout of cargoes (length, width, height counts).pos
(object): Position coordinates (length, width, height).size
(object): Dimensions of the space.placements
(array): List of individual cargo placements, each with sequence
(integer), fillDirection
(string, e.g., "Orientation1"), pos
(coordinates), and size
(dimensions). Included if placementsCreated: true
.graphics
(object): Space-specific diagram URLs, generated if thumbnailsCreated: true
.cargo
(object), cargoesLoaded
, piecesLoaded
, and utilization metrics.style
(string, e.g., "Shipcase"), name
, dimensions, weight
, qty
, pieceInside
(integer, pieces per cargo), price
, and stacking rules (e.g., orientationsAllowed
, palletizing
).colorHexaCode
).isEmpty
, overhangAllowed
.spaces
, manifest
, placements
.cargoGroups
.The schema documents cargo packing, provides utilization metrics, visualizes placement, and supports logistics planning. The placements
field, enabled via the API’s placementsCreated
parameter, offers precise positioning data for each cargo piece, critical for loading instructions and visualization.
The CubeMaster API V2 is a RESTful API for building and managing load configurations for trucks, trailers, pallets, ULDs, and boxes. The POST /Loads
endpoint is used to create a new load, generating a FilledContainer
JSON structure like the sample below. Key parameters control the inclusion of detailed placement data and graphics.
Builds a new load and saves it to the loads database, overwriting any load with the same title. Relevant query parameters include:
true
, generates the spaces
array with details of cargo placement zones. Default: false
.true
, includes the placements
array in each space
, detailing individual cargo positioning. Default: false
.UnitMetric
, UnitEnglish
). Affects fields like actualSize
, loadSize
, and uom
.true
, populates graphics.images
with URLs to 2D/3D diagrams. Default: false
.true
, populates graphics.images
in each space
with space-specific diagrams. Default: false
.true
, loads cargo details from the cargoes database based on name
. Default: false
.true
, loads container details from the containers database based on name
. Default: false
.Request Body: Includes a cargoes
array with fields like style
(e.g., "shipcase"), name
, length
, width
, height
, weight
, qty
, and pieceInside
, which populate the cargo
objects in spaces
and manifest
.
Response: Returns a FilledContainer
JSON with the structure shown in the sample, including placements
if enabled.
The sample JSON likely results from a POST /Loads
call with spacesCreated: true
, placementsCreated: true
, and UOM: UnitMetric
.
Below is a JSON sample representing a FilledContainer for a 53FT-Intermodal SeaVan, generated by the CubeMaster API V2’s POST /Loads
endpoint with spacesCreated: true
and placementsCreated: true
. It includes multiple cargo types and a placements
array in each spaces
object to specify individual cargo positioning.
{
"name": "002(2025-02-05)",
"sequence": 2,
"loadSummary": {
"cargoesLoaded": 13,
"piecesLoaded": 10304,
"unitloadsLoaded": 0,
"volumeLoaded": 1142856,
"volumeUtilization": 16.316957210776543,
"vollumeUtilizationToLoadHeight": 24.475435816164818,
"floorLoaded": 16632,
"floorUtilization": 26.358161648177497,
"weightLoaded": 13939.472000000002,
"weightTotal": 13939.472000000002,
"weightUtilization": 22.126146031746032,
"dimWeight": 1.1673500000000001,
"priceLoaded": 0,
"pricetUtilization": 0,
"cargoesPerLayer": 4,
"layersPerUnitload": 0
},
"actualSize": {
"length": 631,
"width": 100,
"height": 111
},
"loadSize": {
"length": 176,
"width": 98,
"height": 74
},
"cog": {
"length": 0,
"width": 0,
"height": 0
},
"emptyContainer": {
"containerType": "SeaVan",
"vehicleType": "Dry",
"palletType": "Wood2WaysDoube",
"cartonType": "Tuck",
"qty": 0,
"length": 631,
"width": 100,
"height": 111,
"emptyWeight": 0,
"maxLength": 0,
"maxWidth": 0,
"maxHeight": 111,
"maxWeight": 63000,
"palletThickness": 0,
"maxVolPercent": 0,
"name": "53FT-Intermodal",
"description": "",
"priority": 0,
"maxCargoTypes": 0,
"color": 65535,
"colorHexaCode": "",
"colorKnownName": "",
"palletOverhang": false,
"palletOverhangLength": 0,
"palletOverhangWidth": 0,
"palletUnderhang": false,
"palletUnderhangLength": 0,
"palletUnderhangWidth": 0,
"price": 0,
"maxPrice": 0,
"zones": null,
"vehicleDropDeckRearSize": null,
"vehicleDropDeckFrontSize": null
},
"graphics": {
"images": {
"path3DDiagram": "",
"path2DBottom": "",
"path2DTop": "",
"path2DLeft": "",
"path2DRight": "",
"path2DRear": "",
"path2DFront": "",
"pathComposite": ""
}
},
"spaces": [
{
"sequence": 1,
"isEmpty": false,
"cargoesLoaded": 4,
"piecesLoaded": 4,
"unitloadsLoaded": 0,
"volumeLoaded": 351648,
"weightLoaded": 5004.3999999999996,
"cargoOrientation": "Orientation1",
"cargo": {
"style": "Shipcase",
"name": "5000RE3103AL",
"description": "Rear ECM Crossmember (T1XX)",
"length": 44,
"width": 54,
"diameter": 0,
"height": 37,
"weight": 1251.0999999999999,
"qty": 5,
"pieceInside": 99,
"orderPieces": 0,
"setRatio": 0,
"price": 0,
"alias": "5500114578",
"alias2": "0000132491",
"groupName": "2025-02-05",
"property1": "17112",
"property2": "ABC Supplier",
"property3": "1001",
"property4": "",
"property5": "",
"property6": "",
"property7": "",
"property8": "",
"property9": "",
"property10": "",
"sequence": 0,
"unitloadTopPattern": "BestFit",
"unitloadBottomPattern": "BestFit",
"unitloadLayersQtyRotated": 0,
"orientationsAllowed": "Orientations12",
"isPalletized": true,
"palletizing": {
"pallet": {
"containerType": "Pallet",
"vehicleType": "Dry",
"palletType": "Wood2WaysDoube",
"cartonType": "Tuck",
"qty": 0,
"length": 0,
"width": 0,
"height": 0,
"emptyWeight": 0,
"maxLength": 0,
"maxWidth": 0,
"maxHeight": 0,
"maxWeight": 0,
"palletThickness": 0,
"maxVolPercent": 0,
"name": "",
"description": "",
"priority": 0,
"maxCargoTypes": 0,
"color": 7952060,
"colorHexaCode": "",
"colorKnownName": "",
"palletOverhang": false,
"palletOverhangLength": 0,
"palletOverhangWidth": 0,
"palletUnderhang": false,
"palletUnderhangLength": 0,
"palletUnderhangWidth": 0,
"price": 0,
"maxPrice": 0,
"zones": null,
"vehicleDropDeckRearSize": null,
"vehicleDropDeckFrontSize": null
},
"flatPalletTop": false,
"partialPalletsAllowed": false,
"remainQtyToMixPallet": false,
"remainQtyToVehicle": false,
"fixedCargoCountOnPallet": 0
},
"maxLayersOnOrientation1": 2,
"maxLayersOnOrientation2": 2,
"maxLayersOnOrientation3": 0,
"maxLayersOnOrientation4": 0,
"maxLayersOnOrientation5": 0,
"maxLayersOnOrientation6": 0,
"turnAllowedOnFloor": false,
"orientationPriority": null,
"maxLayersAllowedOverDifferentCargoes": true,
"stackValue": 0,
"stackCode": "",
"maxSupportingWeight": 0,
"floorStackType": "BestFit",
"floorStackSupportsOthers": true,
"overhangAllowed": false,
"overhangLength": 0,
"overhangWidth": 0,
"color": 2937929,
"colorHexaCode": "#49D42C",
"colorKnownName": "#49D42C",
"isOptional": false,
"unitload": null,
"palletizedUnitloadsQty": 0,
"bulgeSize": {
"length": 0,
"width": 0,
"height": 0
},
"emptyContainersFavorite": [],
"faceOpen": "NeitherSide"
},
"arrangement": {
"length": 2,
"width": 1,
"height": 2
},
"pos": {
"length": 0,
"width": 0,
"height": 0
},
"size": {
"length": 631,
"width": 100,
"height": 111
},
"isUnitload": false,
"placements": [
{
"sequence": 1,
"fillDirection": "Orientation1",
"pos": {
"length": 0,
"width": 0,
"height": 0
},
"size": {
"length": 44,
"width": 54,
"height": 37
}
},
{
"sequence": 2,
"fillDirection": "Orientation1",
"pos": {
"length": 44,
"width": 0,
"height": 0
},
"size": {
"length": 44,
"width": 54,
"height": 37
}
},
{
"sequence": 3,
"fillDirection": "Orientation1",
"pos": {
"length": 0,
"width": 0,
"height": 37
},
"size": {
"length": 44,
"width": 54,
"height": 37
}
},
{
"sequence": 4,
"fillDirection": "Orientation1",
"pos": {
"length": 44,
"width": 0,
"height": 37
},
"size": {
"length": 44,
"width": 54,
"height": 37
}
}
],
"graphics": {
"images": {
"path3DDiagram": "",
"pathComposite": ""
}
}
},
{
"sequence": 2,
"isEmpty": false,
"cargoesLoaded": 1,
"piecesLoaded": 1,
"unitloadsLoaded": 0,
"volumeLoaded": 87912,
"weightLoaded": 1251.0999999999999,
"cargoOrientation": "Orientation2",
"cargo": {
"style": "Shipcase",
"name": "5000RE3103AL",
"description": "Rear ECM Crossmember (T1XX)",
"length": 44,
"width": 54,
"diameter": 0,
"height": 37,
"weight": 1251.0999999999999,
"qty": 5,
"pieceInside": 99,
"orderPieces": 0,
"setRatio": 0,
"price": 0,
"alias": "5500114578",
"alias2": "0000132491",
"groupName": "2025-02-05",
"property1": "17112",
"property2": "ABC Supplier",
"property3": "1001",
"property4": "",
"property5": "",
"property6": "",
"property7": "",
"property8": "",
"property9": "",
"property10": "",
"sequence": 0,
"unitloadTopPattern": "BestFit",
"unitloadBottomPattern": "BestFit",
"unitloadLayersQtyRotated": 0,
"orientationsAllowed": "Orientations12",
"isPalletized": true,
"palletizing": {
"pallet": {
"containerType": "Pallet",
"vehicleType": "Dry",
"palletType": "Wood2WaysDoube",
"cartonType": "Tuck",
"qty": 0,
"length": 0,
"width": 0,
"height": 0,
"emptyWeight": 0,
"maxLength": 0,
"maxWidth": 0,
"maxHeight": 0,
"maxWeight": 0,
"palletThickness": 0,
"maxVolPercent": 0,
"name": "",
"description": "",
"priority": 0,
"maxCargoTypes": 0,
"color": 7952060,
"colorHexaCode": "",
"colorKnownName": "",
"palletOverhang": false,
"palletOverhangLength": 0,
"palletOverhangWidth": 0,
"palletUnderhang": false,
"palletUnderhangLength": 0,
"palletUnderhangWidth": 0,
"price": 0,
"maxPrice": 0,
"zones": null,
"vehicleDropDeckRearSize": null,
"vehicleDropDeckFrontSize": null
},
"flatPalletTop": false,
"partialPalletsAllowed": false,
"remainQtyToMixPallet": false,
"remainQtyToVehicle": false,
"fixedCargoCountOnPallet": 0
},
"maxLayersOnOrientation1": 2,
"maxLayersOnOrientation2": 2,
"maxLayersOnOrientation3": 0,
"maxLayersOnOrientation4": 0,
"maxLayersOnOrientation5": 0,
"maxLayersOnOrientation6": 0,
"turnAllowedOnFloor": false,
"orientationPriority": null,
"maxLayersAllowedOverDifferentCargoes": true,
"stackValue": 0,
"stackCode": "",
"maxSupportingWeight": 0,
"floorStackType": "BestFit",
"floorStackSupportsOthers": true,
"overhangAllowed": false,
"overhangLength": 0,
"overhangWidth": 0,
"color": 2937929,
"colorHexaCode": "#49D42C",
"colorKnownName": "#49D42C",
"isOptional": false,
"unitload": null,
"palletizedUnitloadsQty": 0,
"bulgeSize": {
"length": 0,
"width": 0,
"height": 0
},
"emptyContainersFavorite": [],
"faceOpen": "NeitherSide"
},
"arrangement": {
"length": 1,
"width": 1,
"height": 1
},
"pos": {
"length": 0,
"width": 54,
"height": 0
},
"size": {
"length": 88,
"width": 46,
"height": 111
},
"isUnitload": false,
"placements": [
{
"sequence": 5,
"fillDirection": "Orientation2",
"pos": {
"length": 0,
"width": 54,
"height": 0
},
"size": {
"length": 54,
"width": 44,
"height": 37
}
}
],
"graphics": {
"images": {
"path3DDiagram": "",
"pathComposite": ""
}
}
},
{
"sequence": 3,
"isEmpty": false,
"cargoesLoaded": 1,
"piecesLoaded": 1,
"unitloadsLoaded": 0,
"volumeLoaded": 87912,
"weightLoaded": 1294.7159999999999,
"cargoOrientation": "Orientation2",
"cargo": {
"style": "Shipcase",
"name": "5000RE3067AJ",
"description": "LH Spring Tower Bracket (T1XX)",
"length": 44,
"width": 54,
"diameter": 0,
"height": 37,
"weight": 1294.7159999999999,
"qty": 4,
"pieceInside": 123,
"orderPieces": 0,
"setRatio": 0,
"price": 0,
"alias": "5500114551",
"alias2": "0000132491",
"groupName": "2025-02-05",
"property1": "17112",
"property2": "ABC Supplier",
"property3": "1001",
"property4": "",
"property5": "",
"property6": "",
"property7": "",
"property8": "",
"property9": "",
"property10": "",
"sequence": 0,
"unitloadTopPattern": "BestFit",
"unitloadBottomPattern": "BestFit",
"unitloadLayersQtyRotated": 0,
"orientationsAllowed": "Orientations12",
"isPalletized": true,
"palletizing": {
"pallet": {
"containerType": "Pallet",
"vehicleType": "Dry",
"palletType": "Wood2WaysDoube",
"cartonType": "Tuck",
"qty": 0,
"length": 0,
"width": 0,
"height": 0,
"emptyWeight": 0,
"maxLength": 0,
"maxWidth": 0,
"maxHeight": 0,
"maxWeight": 0,
"palletThickness": 0,
"maxVolPercent": 0,
"name": "",
"description": "",
"priority": 0,
"maxCargoTypes": 0,
"color": 14745624,
"colorHexaCode": "",
"colorKnownName": "",
"palletOverhang": false,
"palletOverhangLength": 0,
"palletOverhangWidth": 0,
"palletUnderhang": false,
"palletUnderhangLength": 0,
"palletUnderhangWidth": 0,
"price": 0,
"maxPrice": 0,
"zones": null,
"vehicleDropDeckRearSize": null,
"vehicleDropDeckFrontSize": null
},
"flatPalletTop": false,
"partialPalletsAllowed": false,
"remainQtyToMixPallet": false,
"remainQtyToVehicle": false,
"fixedCargoCountOnPallet": 0
},
"maxLayersOnOrientation1": 2,
"maxLayersOnOrientation2": 2,
"maxLayersOnOrientation3": 0,
"maxLayersOnOrientation4": 0,
"maxLayersOnOrientation5": 0,
"maxLayersOnOrientation6": 0,
"turnAllowedOnFloor": false,
"orientationPriority": null,
"maxLayersAllowedOverDifferentCargoes": true,
"stackValue": 0,
"stackCode": "",
"maxSupportingWeight": 0,
"floorStackType": "BestFit",
"floorStackSupportsOthers": true,
"overhangAllowed": false,
"overhangLength": 0,
"overhangWidth": 0,
"color": 829917,
"colorHexaCode": "#DDA90C",
"colorKnownName": "#DDA90C",
"isOptional": false,
"unitload": null,
"palletizedUnitloadsQty": 0,
"bulgeSize": {
"length": 0,
"width": 0,
"height": 0
},
"emptyContainersFavorite": [],
"faceOpen": "NeitherSide"
},
"arrangement": {
"length": 1,
"width": 1,
"height": 1
},
"pos": {
"length": 0,
"width": 54,
"height": 37
},
"size": {
"length": 54,
"width": 44,
"height": 74
},
"isUnitload": false,
"placements": [
{
"sequence": 6,
"fillDirection": "Orientation2",
"pos": {
"length": 0,
"width": 54,
"height": 37
},
"size": {
"length": 54,
"width": 44,
"height": 37
}
}
],
"graphics": {
"images": {
"path3DDiagram": "",
"pathComposite": ""
}
}
},
{
"sequence": 4,
"isEmpty": false,
"cargoesLoaded": 4,
"piecesLoaded": 4,
"unitloadsLoaded": 0,
"volumeLoaded": 351648,
"weightLoaded": 3396.3600000000001,
"cargoOrientation": "Orientation1",
"cargo": {
"style": "Shipcase",
"name": "5000RE3018AL",
"description": "Front Fuel Tank Crossmember Lower (T1XX)",
"length": 44,
"width": 54,
"diameter": 0,
"height": 37,
"weight": 849.09000000000003,
"qty": 20,
"pieceInside": 34,
"orderPieces": 0,
"setRatio": 0,
"price": 0,
"alias": "5500188846",
"alias2": "0000132491",
"groupName": "2025-02-05",
"property1": "17112",
"property2": "ABC Supplier",
"property3": "1001",
"property4": "",
"property5": "",
"property6": "",
"property7": "",
"property8": "",
"property9": "",
"property10": "",
"sequence": 0,
"unitloadTopPattern": "BestFit",
"unitloadBottomPattern": "BestFit",
"unitloadLayersQtyRotated": 0,
"orientationsAllowed": "Orientations12",
"isPalletized": true,
"palletizing": {
"pallet": {
"containerType": "Pallet",
"vehicleType": "Dry",
"palletType": "Wood2WaysDoube",
"cartonType": "Tuck",
"qty": 0,
"length": 0,
"width": 0,
"height": 0,
"emptyWeight": 0,
"maxLength": 0,
"maxWidth": 0,
"maxHeight": 0,
"maxWeight": 0,
"palletThickness": 0,
"maxVolPercent": 0,
"name": "",
"description": "",
"priority": 0,
"maxCargoTypes": 0,
"color": 14013898,
"colorHexaCode": "",
"colorKnownName": "",
"palletOverhang": false,
"palletOverhangLength": 0,
"palletOverhangWidth": 0,
"palletUnderhang": false,
"palletUnderhangLength": 0,
"palletUnderhangWidth": 0,
"price": 0,
"maxPrice": 0,
"zones": null,
"vehicleDropDeckRearSize": null,
"vehicleDropDeckFrontSize": null
},
"flatPalletTop": false,
"partialPalletsAllowed": false,
"remainQtyToMixPallet": false,
"remainQtyToVehicle": false,
"fixedCargoCountOnPallet": 0
},
"maxLayersOnOrientation1": 2,
"maxLayersOnOrientation2": 2,
"maxLayersOnOrientation3": 0,
"maxLayersOnOrientation4": 0,
"maxLayersOnOrientation5": 0,
"maxLayersOnOrientation6": 0,
"turnAllowedOnFloor": false,
"orientationPriority": null,
"maxLayersAllowedOverDifferentCargoes": true,
"stackValue": 0,
"stackCode": "",
"maxSupportingWeight": 0,
"floorStackType": "BestFit",
"floorStackSupportsOthers": true,
"overhangAllowed": false,
"overhangLength": 0,
"overhangWidth": 0,
"color": 8891540,
"colorHexaCode": "#94AC87",
"colorKnownName": "#94AC87",
"isOptional": false,
"unitload": null,
"palletizedUnitloadsQty": 0,
"bulgeSize": {
"length": 0,
"width": 0,
"height": 0
},
"emptyContainersFavorite": [],
"faceOpen": "NeitherSide"
},
"arrangement": {
"length": 2,
"width": 1,
"height": 2
},
"pos": {
"length": 88,
"width": 0,
"height": 0
},
"size": {
"length": 543,
"width": 100,
"height": 111
},
"isUnitload": false,
"placements": [
{
"sequence": 7,
"fillDirection": "Orientation1",
"pos": {
"length": 88,
"width": 0,
"height": 0
},
"size": {
"length": 44,
"width": 54,
"height": 37
}
},
{
"sequence": 8,
"fillDirection": "Orientation1",
"pos": {
"length": 132,
"width": 0,
"height": 0
},
"size": {
"length": 44,
"width": 54,
"height": 37
}
},
{
"sequence": 9,
"fillDirection": "Orientation1",
"pos": {
"length": 88,
"width": 0,
"height": 37
},
"size": {
"length": 44,
"width": 54,
"height": 37
}
},
{
"sequence": 10,
"fillDirection": "Orientation1",
"pos": {
"length": 132,
"width": 0,
"height": 37
},
"size": {
"length": 44,
"width": 54,
"height": 37
}
}
],
"graphics": {
"images": {
"path3DDiagram": "",
"pathComposite": ""
}
}
},
{
"sequence": 5,
"isEmpty": false,
"cargoesLoaded": 2,
"piecesLoaded": 2,
"unitloadsLoaded": 0,
"volumeLoaded": 175824,
"weightLoaded": 1698.1800000000001,
"cargoOrientation": "Orientation2",
"cargo": {
"style": "Shipcase",
"name": "5000RE3018AL",
"description": "Front Fuel Tank Crossmember Lower (T1XX)",
"length": 44,
"width": 54,
"diameter": 0,
"height": 37,
"weight": 849.09000000000003,
"qty": 20,
"pieceInside": 34,
"orderPieces": 0,
"setRatio": 0,
"price": 0,
"alias": "5500188846",
"alias2": "0000132491",
"groupName": "2025-02-05",
"property1": "17112",
"property2": "ABC Supplier",
"property3": "1001",
"property4": "",
"property5": "",
"property6": "",
"property7": "",
"property8": "",
"property9": "",
"property10": "",
"sequence": 0,
"unitloadTopPattern": "BestFit",
"unitloadBottomPattern": "BestFit",
"unitloadLayersQtyRotated": 0,
"orientationsAllowed": "Orientations12",
"isPalletized": true,
"palletizing": {
"pallet": {
"containerType": "Pallet",
"vehicleType": "Dry",
"palletType": "Wood2WaysDoube",
"cartonType": "Tuck",
"qty": 0,
"length": 0,
"width": 0,
"height": 0,
"emptyWeight": 0,
"maxLength": 0,
"maxWidth": 0,
"maxHeight": 0,
"maxWeight": 0,
"palletThickness": 0,
"maxVolPercent": 0,
"name": "",
"description": "",
"priority": 0,
"maxCargoTypes": 0,
"color": 14013898,
"colorHexaCode": "",
"colorKnownName": "",
"palletOverhang": false,
"palletOverhangLength": 0,
"palletOverhangWidth": 0,
"palletUnderhang": false,
"palletUnderhangLength": 0,
"palletUnderhangWidth": 0,
"price": 0,
"maxPrice": 0,
"zones": null,
"vehicleDropDeckRearSize": null,
"vehicleDropDeckFrontSize": null
},
"flatPalletTop": false,
"partialPalletsAllowed": false,
"remainQtyToMixPallet": false,
"remainQtyToVehicle": false,
"fixedCargoCountOnPallet": 0
},
"maxLayersOnOrientation1": 2,
"maxLayersOnOrientation2": 2,
"maxLayersOnOrientation3": 0,
"maxLayersOnOrientation4": 0,
"maxLayersOnOrientation5": 0,
"maxLayersOnOrientation6": 0,
"turnAllowedOnFloor": false,
"orientationPriority": null,
"maxLayersAllowedOverDifferentCargoes": true,
"stackValue": 0,
"stackCode": "",
"maxSupportingWeight": 0,
"floorStackType": "BestFit",
"floorStackSupportsOthers": true,
"overhangAllowed": false,
"overhangLength": 0,
"overhangWidth": 0,
"color": 8891540,
"colorHexaCode": "#94AC87",
"colorKnownName": "#94AC87",
"isOptional": false,
"unitload": null,
"palletizedUnitloadsQty": 0,
"bulgeSize": {
"length": 0,
"width": 0,
"height": 0
},
"emptyContainersFavorite": [],
"faceOpen": "NeitherSide"
},
"arrangement": {
"length": 1,
"width": 1,
"height": 2
},
"pos": {
"length": 54,
"width": 54,
"height": 0
},
"size": {
"length": 122,
"width": 46,
"height": 111
},
"isUnitload": false,
"placements": [
{
"sequence": 11,
"fillDirection": "Orientation2",
"pos": {
"length": 54,
"width": 54,
"height": 0
},
"size": {
"length": 54,
"width": 44,
"height": 37
}
},
{
"sequence": 12,
"fillDirection": "Orientation2",
"pos": {
"length": 54,
"width": 54,
"height": 37
},
"size": {
"length": 54,
"width": 44,
"height": 37
}
}
],
"graphics": {
"images": {
"path3DDiagram": "",
"pathComposite": ""
}
}
},
{
"sequence": 6,
"isEmpty": false,
"cargoesLoaded": 1,
"piecesLoaded": 1,
"unitloadsLoaded": 0,
"volumeLoaded": 87912,
"weightLoaded": 1294.7159999999999,
"cargoOrientation": "Orientation2",
"cargo": {
"style": "Shipcase",
"name": "5000RE3067AJ",
"description": "LH Spring Tower Bracket (T1XX)",
"length": 44,
"width": 54,
"diameter": 0,
"height": 37,
"weight": 1294.7159999999999,
"qty": 4,
"pieceInside": 123,
"orderPieces": 0,
"setRatio": 0,
"price": 0,
"alias": "5500114551",
"alias2": "0000132491",
"groupName": "2025-02-05",
"property1": "17112",
"property2": "ABC Supplier",
"property3": "1001",
"property4": "",
"property5": "",
"property6": "",
"property7": "",
"property8": "",
"property9": "",
"property10": "",
"sequence": 0,
"unitloadTopPattern": "BestFit",
"unitloadBottomPattern": "BestFit",
"unitloadLayersQtyRotated": 0,
"orientationsAllowed": "Orientations12",
"isPalletized": true,
"palletizing": {
"pallet": {
"containerType": "Pallet",
"vehicleType": "Dry",
"palletType": "Wood2WaysDoube",
"cartonType": "Tuck",
"qty": 0,
"length": 0,
"width": 0,
"height": 0,
"emptyWeight": 0,
"maxLength": 0,
"maxWidth": 0,
"maxHeight": 0,
"maxWeight": 0,
"palletThickness": 0,
"maxVolPercent": 0,
"name": "",
"description": "",
"priority": 0,
"maxCargoTypes": 0,
"color": 14745624,
"colorHexaCode": "",
"colorKnownName": "",
"palletOverhang": false,
"palletOverhangLength": 0,
"palletOverhangWidth": 0,
"palletUnderhang": false,
"palletUnderhangLength": 0,
"palletUnderhangWidth": 0,
"price": 0,
"maxPrice": 0,
"zones": null,
"vehicleDropDeckRearSize": null,
"vehicleDropDeckFrontSize": null
},
"flatPalletTop": false,
"partialPalletsAllowed": false,
"remainQtyToMixPallet": false,
"remainQtyToVehicle": false,
"fixedCargoCountOnPallet": 0
},
"maxLayersOnOrientation1": 2,
"maxLayersOnOrientation2": 2,
"maxLayersOnOrientation3": 0,
"maxLayersOnOrientation4": 0,
"maxLayersOnOrientation5": 0,
"maxLayersOnOrientation6": 0,
"turnAllowedOnFloor": false,
"orientationPriority": null,
"maxLayersAllowedOverDifferentCargoes": true,
"stackValue": 0,
"stackCode": "",
"maxSupportingWeight": 0,
"floorStackType": "BestFit",
"floorStackSupportsOthers": true,
"overhangAllowed": false,
"overhangLength": 0,
"overhangWidth": 0,
"color": 829917,
"colorHexaCode": "#DDA90C",
"colorKnownName": "#DDA90C",
"isOptional": false,
"unitload": null,
"palletizedUnitloadsQty": 0,
"bulgeSize": {
"length": 0,
"width": 0,
"height": 0
},
"emptyContainersFavorite": [],
"faceOpen": "NeitherSide"
},
"arrangement": {
"length": 1,
"width": 1,
"height": 1
},
"pos": {
"length": 108,
"width": 54,
"height": 0
},
"size": {
"length": 68,
"width": 46,
"height": 111
},
"isUnitload": false,
"placements": [
{
"sequence": 13,
"fillDirection": "Orientation2",
"pos": {
"length": 108,
"width": 54,
"height": 0
},
"size": {
"length": 54,
"width": 44,
"height": 37
}
}
],
"graphics": {
"images": {
"path3DDiagram": "",
"pathComposite": ""
}
}
}
],
"manifest": [
{
"sequence": 1,
"cargo": {
"style": "Shipcase",
"name": "5000RE3103AL",
"description": "Rear ECM Crossmember (T1XX)",
"length": 44,
"width": 54,
"diameter": 0,
"height": 37,
"weight": 1251.0999999999999,
"qty": 5,
"pieceInside": 99,
"orderPieces": 0,
"setRatio": 0,
"price": 0,
"alias": "5500114578",
"alias2": "0000132491",
"groupName": "2025-02-05",
"property1": "17112",
"property2": "ABC Supplier",
"property3": "1001",
"property4": "",
"property5": "",
"property6": "",
"property7": "",
"property8": "",
"property9": "",
"property10": "",
"sequence": 0,
"unitloadTopPattern": "BestFit",
"unitloadBottomPattern": "BestFit",
"unitloadLayersQtyRotated": 0,
"orientationsAllowed": "Orientations12",
"isPalletized": true,
"palletizing": {
"pallet": {
"containerType": "Pallet",
"vehicleType": "Dry",
"palletType": "Wood2WaysDoube",
"cartonType": "Tuck",
"qty": 0,
"length": 0,
"width": 0,
"height": 0,
"emptyWeight": 0,
"maxLength": 0,
"maxWidth": 0,
"maxHeight": 0,
"maxWeight": 0,
"palletThickness": 0,
"maxVolPercent": 0,
"name": "",
"description": "",
"priority": 0,
"maxCargoTypes": 0,
"color": 7952060,
"colorHexaCode": "",
"colorKnownName": "",
"palletOverhang": false,
"palletOverhangLength": 0,
"palletOverhangWidth": 0,
"palletUnderhang": false,
"palletUnderhangLength": 0,
"palletUnderhangWidth": 0,
"price": 0,
"maxPrice": 0,
"zones": null,
"vehicleDropDeckRearSize": null,
"vehicleDropDeckFrontSize": null
},
"flatPalletTop": false,
"partialPalletsAllowed": false,
"remainQtyToMixPallet": false,
"remainQtyToVehicle": false,
"fixedCargoCountOnPallet": 0
},
"maxLayersOnOrientation1": 2,
"maxLayersOnOrientation2": 2,
"maxLayersOnOrientation3": 0,
"maxLayersOnOrientation4": 0,
"maxLayersOnOrientation5": 0,
"maxLayersOnOrientation6": 0,
"turnAllowedOnFloor": false,
"orientationPriority": null,
"maxLayersAllowedOverDifferentCargoes": true,
"stackValue": 0,
"stackCode": "",
"maxSupportingWeight": 0,
"floorStackType": "BestFit",
"floorStackSupportsOthers": true,
"overhangAllowed": false,
"overhangLength": 0,
"overhangWidth": 0,
"color": 2937929,
"colorHexaCode": "#49D42C",
"colorKnownName": "#49D42C",
"isOptional": false,
"unitload": null,
"palletizedUnitloadsQty": 0,
"bulgeSize": {
"length": 0,
"width": 0,
"height": 0
},
"emptyContainersFavorite": [],
"faceOpen": "NeitherSide"
},
"cargoesLoaded": 5,
"piecesLoaded": 495,
"unitloadsLoaded": 0,
"volumeUtilization": 0.38461538461538464,
"weightUtilization": 0.44876161736972531,
"priceUtilization": 0
},
{
"sequence": 2,
"cargo": {
"style": "Shipcase",
"name": "5000RE3067AJ",
"description": "LH Spring Tower Bracket (T1XX)",
"length": 44,
"width": 54,
"diameter": 0,
"height": 37,
"weight": 1294.7159999999999,
"qty": 4,
"pieceInside": 123,
"orderPieces": 0,
"setRatio": 0,
"price": 0,
"alias": "5500114551",
"alias2": "0000132491",
"groupName": "2025-02-05",
"property1": "17112",
"property2": "ABC Supplier",
"property3": "1001",
"property4": "",
"property5": "",
"property6": "",
"property7": "",
"property8": "",
"property9": "",
"property10": "",
"sequence": 0,
"unitloadTopPattern": "BestFit",
"unitloadBottomPattern": "BestFit",
"unitloadLayersQtyRotated": 0,
"orientationsAllowed": "Orientations12",
"isPalletized": true,
"palletizing": {
"pallet": {
"containerType": "Pallet",
"vehicleType": "Dry",
"palletType": "Wood2WaysDoube",
"cartonType": "Tuck",
"qty": 0,
"length": 0,
"width": 0,
"height": 0,
"emptyWeight": 0,
"maxLength": 0,
"maxWidth": 0,
"maxHeight": 0,
"maxWeight": 0,
"palletThickness": 0,
"maxVolPercent": 0,
"name": "",
"description": "",
"priority": 0,
"maxCargoTypes": 0,
"color": 14745624,
"colorHexaCode": "",
"colorKnownName": "",
"palletOverhang": false,
"palletOverhangLength": 0,
"palletOverhangWidth": 0,
"palletUnderhang": false,
"palletUnderhangLength": 0,
"palletUnderhangWidth": 0,
"price": 0,
"maxPrice": 0,
"zones": null,
"vehicleDropDeckRearSize": null,
"vehicleDropDeckFrontSize": null
},
"flatPalletTop": false,
"partialPalletsAllowed": false,
"remainQtyToMixPallet": false,
"remainQtyToVehicle": false,
"fixedCargoCountOnPallet": 0
},
"maxLayersOnOrientation1": 2,
"maxLayersOnOrientation2": 2,
"maxLayersOnOrientation3": 0,
"maxLayersOnOrientation4": 0,
"maxLayersOnOrientation5": 0,
"maxLayersOnOrientation6": 0,
"turnAllowedOnFloor": false,
"orientationPriority": null,
"maxLayersAllowedOverDifferentCargoes": true,
"stackValue": 0,
"stackCode": "",
"maxSupportingWeight": 0,
"floorStackType": "BestFit",
"floorStackSupportsOthers": true,
"overhangAllowed": false,
"overhangLength": 0,
"overhangWidth": 0,
"color": 829917,
"colorHexaCode": "#DDA90C",
"colorKnownName": "#DDA90C",
"isOptional": false,
"unitload": null,
"palletizedUnitloadsQty": 0,
"bulgeSize": {
"length": 0,
"width": 0,
"height": 0
},
"emptyContainersFavorite": [],
"faceOpen": "NeitherSide"
},
"cargoesLoaded": 2,
"piecesLoaded": 246,
"unitloadsLoaded": 0,
"volumeUtilization": 0.15384615384615385,
"weightUtilization": 0.18576255972966549,
"priceUtilization": 0
},
{
"sequence": 3,
"cargo": {
"style": "Shipcase",
"name": "5000RE3018AL",
"description": "Front Fuel Tank Crossmember Lower (T1XX)",
"length": 44,
"width": 54,
"diameter": 0,
"height": 37,
"weight": 849.09000000000003,
"qty": 20,
"pieceInside": 34,
"orderPieces": 0,
"setRatio": 0,
"price": 0,
"alias": "5500188846",
"alias2": "0000132491",
"groupName": "2025-02-05",
"property1": "17112",
"property2": "ABC Supplier",
"property3": "1001",
"property4": "",
"property5": "",
"property6": "",
"property7": "",
"property8": "",
"property9": "",
"property10": "",
"sequence": 0,
"unitloadTopPattern": "BestFit",
"unitloadBottomPattern": "BestFit",
"unitloadLayersQtyRotated": 0,
"orientationsAllowed": "Orientations12",
"isPalletized": true,
"palletizing": {
"pallet": {
"containerType": "Pallet",
"vehicleType": "Dry",
"palletType": "Wood2WaysDoube",
"cartonType": "Tuck",
"qty": 0,
"length": 0,
"width": 0,
"height": 0,
"emptyWeight": 0,
"maxLength": 0,
"maxWidth": 0,
"maxHeight": 0,
"maxWeight": 0,
"palletThickness": 0,
"maxVolPercent": 0,
"name": "",
"description": "",
"priority": 0,
"maxCargoTypes": 0,
"color": 14013898,
"colorHexaCode": "",
"colorKnownName": "",
"palletOverhang": false,
"palletOverhangLength": 0,
"palletOverhangWidth": 0,
"palletUnderhang": false,
"palletUnderhangLength": 0,
"palletUnderhangWidth": 0,
"price": 0,
"maxPrice": 0,
"zones": null,
"vehicleDropDeckRearSize": null,
"vehicleDropDeckFrontSize": null
},
"flatPalletTop": false,
"partialPalletsAllowed": false,
"remainQtyToMixPallet": false,
"remainQtyToVehicle": false,
"fixedCargoCountOnPallet": 0
},
"maxLayersOnOrientation1": 2,
"maxLayersOnOrientation2": 2,
"maxLayersOnOrientation3": 0,
"maxLayersOnOrientation4": 0,
"maxLayersOnOrientation5": 0,
"maxLayersOnOrientation6": 0,
"turnAllowedOnFloor": false,
"orientationPriority": null,
"maxLayersAllowedOverDifferentCargoes": true,
"stackValue": 0,
"stackCode": "",
"maxSupportingWeight": 0,
"floorStackType": "BestFit",
"floorStackSupportsOthers": true,
"overhangAllowed": false,
"overhangLength": 0,
"overhangWidth": 0,
"color": 8891540,
"colorHexaCode": "#94AC87",
"colorKnownName": "#94AC87",
"isOptional": false,
"unitload": null,
"palletizedUnitloadsQty": 0,
"bulgeSize": {
"length": 0,
"width": 0,
"height": 0
},
"emptyContainersFavorite": [],
"faceOpen": "NeitherSide"
},
"cargoesLoaded": 6,
"piecesLoaded": 204,
"unitloadsLoaded": 0,
"volumeUtilization": 0.46153846153846156,
"weightUtilization": 0.36547582290060909,
"priceUtilization": 0
}
],
"cargoGroups": null,
"reportLinks": {
"overview": "https://cubemaster.net/source/report/openlink.asp?id=a81aad52-b310-44e6-b167-e8a2383c8886"
},
"uom": "UnitMetric"
}
Notes: Represents a 53FT-Intermodal SeaVan with 13 cargoes (10,304 pieces) across three cargo types: "5000RE3103AL", "5000RE3067AJ", and "5000RE3018AL". The placements
array, enabled by placementsCreated: true
, specifies the exact positioning and orientation of individual cargo pieces. The uom: "UnitMetric"
indicates measurements in millimeters and kilograms, set via the UOM
parameter.