Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- `vehicles.vehicle_label` optional field for user-visible vehicle numbers displayed on exterior, distinguishing from internal `vehicle_id`. Aligns with GTFS-realtime VehicleDescriptor.label ([#240](https://github.com/TIDES-transit/TIDES/issues/240))

## [1.0] - 2025-12-23

### Changed
Expand Down
2 changes: 1 addition & 1 deletion samples/template/TIDES/vehicles.csv
Original file line number Diff line number Diff line change
@@ -1 +1 @@
vehicle_id,vehicle_start,vehicle_end,model_name,facility_name,capacity_seated,capacity_wheelchair,capacity_bike,bike_rack,capacity_standing
vehicle_id,vehicle_label,vehicle_start,vehicle_end,model_name,facility_name,capacity_seated,capacity_wheelchair,capacity_bike,bike_rack,capacity_standing
5 changes: 5 additions & 0 deletions spec/vehicles.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
"unique": true
}
},
{
"name": "vehicle_label",
"type": "string",
"description": "User-visible label for the vehicle, such as the vehicle number displayed on the exterior. This may differ from vehicle_id, which is the internal identifier. Aligns with GTFS-realtime VehicleDescriptor.label."
},
{
"name": "vehicle_start",
"type": "datetime",
Expand Down
Loading