Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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`, permitting negative values in unadjusted APC data where probabilistic counts produce them ([#270](https://github.com/TIDES-transit/TIDES/issues/270))
Comment thread
chrisyamas marked this conversation as resolved.
Outdated

## [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. Negative values are permitted and may occur in unadjusted APC data, since passenger counts are probabilistic measurements; data producers should indicate when negative values are present and how they should be interpreted."
Comment thread
chrisyamas marked this conversation as resolved.
Outdated
},
{
"name": "door_open",
Expand Down
Loading