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

- Removed `minimum: 0` constraint from `stop_visits.departure_load`. This field is often derived from observations of boardings and alightings that are subject to observation error and those errors may result in negative values ([#270](https://github.com/TIDES-transit/TIDES/issues/270))

## [1.0] - 2025-12-23

### Changed
Expand Down
5 changes: 1 addition & 4 deletions spec/stop_visits.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,7 @@
{
"name": "departure_load",
"type": "integer",
"description": "Number of riders on the vehicle when departing the stop.",
"constraints": {
"minimum": 0
}
"description": "Number of riders on the vehicle when departing the stop. `departure_load` is typically derived from boardings and alightings and negative values are possible and permitted due to errors in the APC observations; data producers should document how negative values should be interpreted if present."
},
{
"name": "door_open",
Expand Down
Loading