action thebluealliance_get_teams_by_year_simple { label: "getTeamsByYearSimple" description: "Gets a list of short form `Team_Simple` objects that competed in the given year, paginated in groups of 500." provider: thebluealliance method: GET path: "/teams/{year}/{page_num}/simple" encoding: json output: { type: "array" items: { type: "object" required: ["key", "name", "team_number"] properties: { city: { type: "string" description: "City of team derived from parsing the address registered with FIRST." } country: { type: "string" description: "Country of team derived from parsing the address registered with FIRST." } key: { type: "string" description: "TBA team key with the format `frcXXXX` with `XXXX` representing the team number." } name: { type: "string" description: "Official long name registered with FIRST." } nickname: { type: "string" description: "Team nickname provided by FIRST." } state_prov: { type: "string" description: "State of team derived from parsing the address registered with FIRST." } team_number: { type: "integer" description: "Official team number issued by FIRST." } } } } }