Union Pacific · Schema
IntermodalDeparture
Scheduled intermodal train departure
Fortune 500FreightRailroadsShippingTrainsSupply ChainLogistics
Properties
| Name | Type | Description |
|---|---|---|
| departureId | string | Departure identifier |
| origin | string | Origin terminal |
| destination | string | Destination terminal |
| scheduledDeparture | string | Scheduled departure time |
| estimatedArrival | string | Estimated arrival time |
| availableCapacity | integer | Available booking capacity |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/union-pacific/refs/heads/main/json-schema/union-pacific-intermodal-departure-schema.json",
"title": "IntermodalDeparture",
"description": "Scheduled intermodal train departure",
"type": "object",
"properties": {
"departureId": {
"type": "string",
"description": "Departure identifier"
},
"origin": {
"type": "string",
"description": "Origin terminal"
},
"destination": {
"type": "string",
"description": "Destination terminal"
},
"scheduledDeparture": {
"type": "string",
"format": "date-time",
"description": "Scheduled departure time"
},
"estimatedArrival": {
"type": "string",
"format": "date-time",
"description": "Estimated arrival time"
},
"availableCapacity": {
"type": "integer",
"description": "Available booking capacity"
}
}
}