action thebluealliance_get_team_districts { label: "getTeamDistricts" description: "Gets an array of districts representing each year the team was in a district. Will return an empty array if the team was never in a district." provider: thebluealliance method: GET path: "/team/{team_key}/districts" encoding: json output: { type: "array" items: { type: "object" required: ["abbreviation", "display_name", "key", "year"] properties: { abbreviation: { type: "string" description: "The short identifier for the district." } display_name: { type: "string" description: "The long name for the district." } key: { type: "string" description: "Key for this district, e.g. `2016ne`." } year: { type: "integer" description: "Year this district participated." } } } } }