Load¶
All the complete packaging from different levels (primary, secondary, transit etc.), including multipacks, put together to send to the final destination. Each row corresponds a unique complete packaging (or multipack) item sent to a specific location during a specific time period.
Table¶
| Column | Status |
Format | Notes |
|---|---|---|---|
| identifier | required |
String | A globally unique identifier. See identifiers section for information on how to construct this identifier |
| name | recommended |
String | The name of this load. |
| description | recommended |
String | A brief description of this load. |
| externalIdentifiers | recommended |
Dictionary | A dictionary of identifiers that might be used to identify the load in other systems. For example: manufacturer’s own internal identifier, bar codes or global trade item number (gtin). To provide external identifiers please follow this format. {'externalIdentifierName1': 'identifier1', 'externalIdentifierName2': 'identifier2'} |
| loadIdentifiers | required |
List | The unique identifier of the created load. There must be an equivalent identifier found in the Load Catalogue. |
| startDate | required |
String | The date that the load began for the destination. Use the format dd/mm/yyyy. |
| endDate | required |
String | The date that the load ended for the destination. Use the format dd/mm/yyyy. |
| destinationAddressName | recommended |
String | The name of the load destination address. |
| destinationAddressStreet | required |
String | The street address of this load destination. |
| destinationAddressCountry | required |
String | The country of this load destination. |
| destinationPostalCode | required |
String | The postal code of this load destination. |
| timesSent | required |
Numeric | The number of times this load was sent to the destination during the specified time period. |
| updateDate | required |
String | The date that the load was provided/last updated. Use the format dd/mm/yyyy. |
Diagram¶
erDiagram
LOAD_CATALOGUE }o..o{ LOAD : within
LOAD {
identifier String
name numeric
description String
externalIdentifier Dictionary
loadIdentifiers List
startDate String
destinationAddressName String
destinationAddressStreet String
destinationAddressCountry String
destinationPostalCode String
timesSent Numeric
updateDate String
}
Template¶
Loads should be provided as a separate csv file. The specification of this csv file is as follows:
Example¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |