Skip to content

Commit

Permalink
Add support for Zone ID in stops. Change contains_id in fare_rules to…
Browse files Browse the repository at this point in the history
… be a string (#23)
  • Loading branch information
wildeyedskies authored Aug 16, 2023
1 parent d08070f commit af448d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion models.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ type Stop struct {
Longitude float64 `csv:"stop_lon"`
Type string `csv:"location_type"`
Parent string `csv:"parent_station"`
ZoneId string `csv:"zone_id"`
}

// StopTime -
Expand Down Expand Up @@ -169,7 +170,7 @@ type FareRule struct {
RouteID string `csv:"route_id"`
OriginID string `csv:"origin_id"`
DestinationID string `csv:"destination_id"`
ContainsID int `csv:"contains_id"`
ContainsID string `csv:"contains_id"`
}

// Pathway -
Expand Down

0 comments on commit af448d2

Please sign in to comment.