Union Pacific · Schema
Location
A Union Pacific network facility or location
Fortune 500FreightRailroadsShippingTrainsSupply ChainLogistics
Properties
| Name | Type | Description |
|---|---|---|
| locationCode | string | Location identifier code |
| name | string | Location name |
| type | string | Location type (TERMINAL, YARD, INTERMODAL, STATION) |
| city | string | City |
| state | string | US state code |
| latitude | number | Geographic latitude |
| longitude | number | Geographic longitude |
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-location-schema.json",
"title": "Location",
"description": "A Union Pacific network facility or location",
"type": "object",
"properties": {
"locationCode": {
"type": "string",
"description": "Location identifier code"
},
"name": {
"type": "string",
"description": "Location name"
},
"type": {
"type": "string",
"description": "Location type (TERMINAL, YARD, INTERMODAL, STATION)"
},
"city": {
"type": "string",
"description": "City"
},
"state": {
"type": "string",
"description": "US state code"
},
"latitude": {
"type": "number",
"format": "double",
"description": "Geographic latitude"
},
"longitude": {
"type": "number",
"format": "double",
"description": "Geographic longitude"
}
}
}