action thebluealliance_get_districts_by_year { label: "getDistrictsByYear" description: "Gets a list of districts and their corresponding district key, for the given year." provider: thebluealliance method: GET path: "/districts/{year}" 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." } } } } }