action thebluealliance_get_event_district_points { label: "getEventDistrictPoints" description: "Gets a list of team rankings for the Event." provider: thebluealliance method: GET path: "/event/{event_key}/district_points" encoding: json output: { type: "object" required: ["points"] properties: { points: { type: "object" description: "Points gained for each team at the event. Stored as a key-value pair with the team key as the key, and an object describing the points as its value." } tiebreakers: { type: "object" description: "Tiebreaker values for each team at the event. Stored as a key-value pair with the team key as the key, and an object describing the tiebreaker elements as its value." } } } }