package main // Challenge defines a challenge as in the original companion.json format type Challenge struct { Name string Description string Flag string Container string Category string Points int Static bool } // Challenges defines a list of challenges. type Challenges struct { Challenge []Challenge }