Include types from gonavitia/navitia
This commit is contained in:
parent
82769f923e
commit
24b1102761
157 changed files with 26062 additions and 116 deletions
15
types/vehicleJourney.go
Normal file
15
types/vehicleJourney.go
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
package types
|
||||
|
||||
// VehicleJourney gives informations on vehicle transportation schedule and details.
|
||||
type VehicleJourney struct {
|
||||
ID string `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Codes []Code `json:"codes"`
|
||||
Disruptions []Disruption `json:"disruptions"`
|
||||
Calendars []Calendar `json:"calendars"`
|
||||
StopTimes []StopTime `json:"stop_times"`
|
||||
ValidityPattern ValidityPattern `json:"validity_pattern"`
|
||||
JourneyPattern JourneyPattern `json:"journey_pattern"`
|
||||
Headsign string `json:"headsign"`
|
||||
Trip Trip `json:"trip"`
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue