
| Property Name | Type | Description |
|---|---|---|
| ShipmentType | string |
A String value
where
length <=
25
Description : Shipment type description
|
| ShipmentId | string |
A String value
where
length <=
25
Description : Supplier ASN document number
|
| Shipped | string |
A String value
Description : Shipment date
|
| EstDeliver | string |
A String value
Description : Estimated Delivery Date
|
| Supplier | object | Party (common.json) |
| Additional Properties | Type | Description |
| Any Property | any |
Any type of value (boolean, integer, number, string, object, array or null).
|
"ShipmentHeader": {
"type": "object",
"additionalProperties": {},
"properties": {
"ShipmentType": {
"type": "string",
"description": "Shipment type description",
"maxLength": 25
},
"ShipmentId": {
"type": "string",
"description": "Supplier ASN document number",
"maxLength": 25
},
"Shipped": {
"type": "string",
"description": "Shipment date",
"format": "date"
},
"EstDeliver": {
"type": "string",
"description": "Estimated Delivery Date",
"format": "date"
},
"Supplier": {
"$ref": "https://standards.namm.org/schema/2020.1/common.json#/definitions/Party"
}
}
}