Union Pacific · Schema
Equipment
Rail equipment (car) with specifications and tracking status
Fortune 500FreightRailroadsShippingTrainsSupply ChainLogistics
Properties
| Name | Type | Description |
|---|---|---|
| equipmentNumber | string | Equipment identifier (rail car number) |
| type | string | Equipment type (e.g., BOXCAR, FLATCAR, TANK_CAR, INTERMODAL) |
| status | string | Current equipment status |
| currentLocation | string | Current location code |
| specifications | object | Equipment specifications (length, capacity, etc.) |
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-equipment-schema.json",
"title": "Equipment",
"description": "Rail equipment (car) with specifications and tracking status",
"type": "object",
"properties": {
"equipmentNumber": {
"type": "string",
"description": "Equipment identifier (rail car number)"
},
"type": {
"type": "string",
"description": "Equipment type (e.g., BOXCAR, FLATCAR, TANK_CAR, INTERMODAL)"
},
"status": {
"type": "string",
"description": "Current equipment status"
},
"currentLocation": {
"type": "string",
"description": "Current location code"
},
"specifications": {
"type": "object",
"description": "Equipment specifications (length, capacity, etc.)",
"properties": {
"length": {
"type": "number",
"description": "Length in feet"
},
"capacity": {
"type": "number",
"description": "Capacity in tons"
}
}
}
}
}