Skip to content
Open
Show file tree
Hide file tree
Changes from all 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]

### Changed

- **BREAKING:** `stop_visits` duration fields renamed from `_time` to `_duration` suffix to distinguish from timestamp fields: `ramp_deployed_time` → `ramp_deployed_duration`, `kneel_deployed_time` → `kneel_deployed_duration`, `lift_deployed_time` → `lift_deployed_duration` ([#237](https://github.com/TIDES-transit/TIDES/issues/237))

## [1.0] - 2025-12-23

### Changed
Expand Down
2 changes: 1 addition & 1 deletion samples/template/TIDES/stop_visits.csv
Original file line number Diff line number Diff line change
@@ -1 +1 @@
service_date,trip_id_performed,trip_stop_sequence,scheduled_stop_sequence,pattern_id,vehicle_id,dwell,stop_id,timepoint,schedule_arrival_time,schedule_departure_time,actual_arrival_time,actual_departure_time,distance,boarding_1,alighting_1,boarding_2,alighting_2,departure_load,door_open,door_close,door_status,ramp_deployed_time,ramp_failure,kneel_deployed_time,lift_deployed_time,bike_rack_deployed,bike_load,revenue,number_of_transactions,schedule_relationship
service_date,trip_id_performed,trip_stop_sequence,scheduled_stop_sequence,pattern_id,vehicle_id,dwell,stop_id,timepoint,schedule_arrival_time,schedule_departure_time,actual_arrival_time,actual_departure_time,distance,boarding_1,alighting_1,boarding_2,alighting_2,departure_load,door_open,door_close,door_status,ramp_deployed_duration,ramp_failure,kneel_deployed_duration,lift_deployed_duration,bike_rack_deployed,bike_load,revenue,number_of_transactions,schedule_relationship
10 changes: 5 additions & 5 deletions spec/stop_visits.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
}
},
{
"name": "ramp_deployed_time",
"name": "ramp_deployed_duration",
"type": "number",
"description": "Duration of time a ramp is deployed, in seconds.",
"constraints": {
Expand All @@ -182,17 +182,17 @@
"description": "Indicates if the ramp deployment failed at a stop."
},
{
"name": "kneel_deployed_time",
"name": "kneel_deployed_duration",
"type": "number",
"description": "Duration of time a kneel is deployed in seconds.",
"description": "Duration of time a kneel is deployed, in seconds.",
"constraints": {
"minimum": 0
}
},
{
"name": "lift_deployed_time",
"name": "lift_deployed_duration",
"type": "number",
"description": "Duration of time in seconds of time a lift is deployed.",
"description": "Duration of time a lift is deployed, in seconds.",
"constraints": {
"minimum": 0
}
Expand Down
Loading