package main type Priority struct { Surfers []Surfer `json:"surfers"` Count int `json:"count"` Round Round `json:"round"` } type Surfer struct { Name string `json:"name"` Color string `json:"color"` Priority string `json:"priority"` } type Round struct { Name string `json:"name"` Heat int `json:"heat"` Category string `json:"category"` }