package schedule type Lesson struct { Subject string SubjectShort string `json:"subject_short"` } type Day struct { Weekday int Date string Lessons []Lesson } type Week struct { Days []Day }