action thebluealliance_get_event_teams { label: "getEventTeams" description: "Gets a list of `Team` objects that competed in the given event." provider: thebluealliance method: GET path: "/event/{event_key}/teams" encoding: json output: { type: "array" items: { type: "object" required: ["key", "name", "team_number"] properties: { address: { type: "string" description: "Will be NULL, for future development." } 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." } gmaps_place_id: { type: "string" description: "Will be NULL, for future development." } gmaps_url: { type: "string" format: "url" description: "Will be NULL, for future development." } home_championship: { type: "object" description: "Location of the team's home championship each year as a key-value pair. The year (as a string) is the key, and the city is the value." properties: {} } key: { type: "string" description: "TBA team key with the format `frcXXXX` with `XXXX` representing the team number." } lat: { type: "number" format: "double" description: "Will be NULL, for future development." } lng: { type: "number" format: "double" description: "Will be NULL, for future development." } location_name: { type: "string" description: "Will be NULL, for future development." } motto: { type: "string" description: "Team's motto as provided by FIRST. This field is deprecated and will return null - will be removed at end-of-season in 2019." } name: { type: "string" description: "Official long name registered with FIRST." } nickname: { type: "string" description: "Team nickname provided by FIRST." } postal_code: { type: "string" description: "Postal code from the team address." } rookie_year: { type: "integer" description: "First year the team officially competed." } school_name: { type: "string" description: "Name of team school or affilited group registered with 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." } website: { type: "string" format: "url" description: "Official website associated with the team." } } } } }