action thebluealliance_get_event_teams_simple { label: "getEventTeamsSimple" description: "Gets a short-form list of `Team` objects that competed in the given event." provider: thebluealliance method: GET path: "/event/{event_key}/teams/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." } } } } }