MobilityData / gtfs-validator

Canonical GTFS Validator project for schedule (static) files.
https://gtfs-validator.mobilitydata.org/
Apache License 2.0
266 stars 100 forks source link

Explore running validation on feeds with unknown_column notices #1770

Closed emmambd closed 1 month ago

emmambd commented 1 month ago

Describe the problem

Investigation in #1767 showed that Flex feeds are not being parsed because they have the unknown_column notice. We want to be confident that this is the reason why Flex feeds are having parsing issues.

Proposed solution

Alternatives you've considered

No response

Additional context

No response

jcpitre commented 1 month ago

Tasks:

qcdyx commented 1 month ago
  1. It's the missing_required_field 'stop_id' that leads to a validation error, which makes stop_times.txt have a status of UNPARSABLE_ROWS.
  2. added a 'UNKNOWN_COLUMN' to stop_times.txt of browncounty-mn-us--flex-v2 dataset, run GTFS validator, no UNPARSABLE_ROWS for stop_times.txt.
emmambd commented 1 month ago

Closing this issue as a duplicate of #1767