Collection of freight loads
Object Fields
| Attribute | Type | Example | Mandatory | Description |
| amount | Float | 1 | No | Amount of load types within given load |
| cleaning_regime | String | “c” | No | Cleaning regime (see dictionary). Available only for dump-truck, aluminum, steel truck body. |
| description | String | bottles | No | Load description |
| height | Float | 3.1 | No | Load height (range 0.01–10) |
| id | Int | 3825477 | Only response | Load id, which should help identify loads designated to freight |
| idtf | String | 30720 | No | IDTF code correlated with cleaning_regime field. Available only for dump-truck, aluminum, steel truck body. |
| is_exchangeable | Boolean | True | No | Determines if type of load is available for exchange at unloading place |
| is_stackable | Boolean | False | No | Specifies whether the type of load allows stacking |
| length | Float | 12 | No | Load length (range 0.01–100) |
| load_id | String | 3825477 | No | Load id, which should help identify loads designated to freight |
| name | String | Glass load | Yes | Name of a load |
| type_of_load | String | europallete | Yes | Supported load type (see dictionary) |
| volume | Float | 125 | No | Load volume (range 0.01–10000) |
| weight | Float | 11 | No | Load weight (range 0.001 – 100000) |
| width | Float | 2.8 | No | Load width (range 0.01–10) |
Example Object Body
"loads": [ {
"type_of_load": "europalette",
"name": "Glass load",
"load_id": "5ff7201734799",
"description":"bottles",
"weight":11,
"height":3.1,
"width":2.8,
"length":12,
"volume":125,
"amount":1,
"is_exchangeable": true,
"is_stackable": false,
"id": 3825477,
"idtf": "30720",
"cleaning_regime": "c"
}]