Include types from gonavitia/navitia

This commit is contained in:
nemunaire 2023-07-14 12:23:33 +02:00
commit 24b1102761
157 changed files with 26062 additions and 116 deletions

9
types/calendar.go Normal file
View file

@ -0,0 +1,9 @@
package types
// Calendar is returned on vehicle journey message and indicates periodicity informations
// about transport schedules.
type Calendar struct {
ActivePeriods []ActivePeriod `json:"active_periods"`
WeekPattern WeekPattern `json:"week_pattern"`
Exceptions []Exception `json:"exceptions"`
}