action thebluealliance_get_district_rankings { label: "getDistrictRankings" description: "Gets a list of team district rankings for the given district." provider: thebluealliance method: GET path: "/district/{district_key}/rankings" encoding: json output: { type: "array" items: { type: "object" description: "Rank of a team in a district." required: ["point_total", "rank", "team_key"] properties: { event_points: { type: "array" description: "List of events that contributed to the point total for the team." items: { type: "object" required: ["alliance_points", "award_points", "district_cmp", "elim_points", "event_key", "qual_points", "total"] properties: { alliance_points: { type: "integer" description: "Points awarded for alliance selection." } award_points: { type: "integer" description: "Points awarded for event awards." } district_cmp: { type: "boolean" description: "`true` if this event is a District Championship event." } elim_points: { type: "integer" description: "Points awarded for elimination match performance." } event_key: { type: "string" description: "TBA Event key for this event." } qual_points: { type: "integer" description: "Points awarded for qualification match performance." } total: { type: "integer" description: "Total points awarded at this event." } } } } point_total: { type: "integer" description: "Total district points for the team." } rank: { type: "integer" description: "Numerical rank of the team, 1 being top rank." } rookie_bonus: { type: "integer" description: "Any points added to a team as a result of the rookie bonus." } team_key: { type: "string" description: "TBA team key for the team." } } } } }