
| Property Name | Type | Description |
|---|---|---|
| VehicleId | string |
A String value
where
length <=
25
Description : Shipper vehicle ID
|
| VehicleType | string |
A String value
Description : Shipper vehicle type
|
| SealId | string |
A String value
where
length <=
25
Description : Shipper container seal ID
|
| Additional Properties | Type | Description |
| Any Property | any |
Any type of value (boolean, integer, number, string, object, array or null).
|
"Vehicle": {
"type": "object",
"additionalProperties": {},
"properties": {
"VehicleId": {
"type": "string",
"description": "Shipper vehicle ID",
"maxLength": 25
},
"VehicleType": {
"type": "string",
"description": "Shipper vehicle type"
},
"SealId": {
"type": "string",
"description": "Shipper container seal ID",
"maxLength": 25
}
}
}