action thebluealliance_get_event_alliances { label: "getEventAlliances" description: "Gets a list of Elimination Alliances for the given Event." provider: thebluealliance method: GET path: "/event/{event_key}/alliances" encoding: json output: { type: "array" items: { type: "object" required: ["picks"] properties: { backup: { type: "object" description: "Backup team called in, may be null." properties: { in: { type: "string" description: "Team key that was called in as the backup." } out: { type: "string" description: "Team key that was replaced by the backup team." } } } declines: { type: "array" description: "List of teams that declined the alliance." items: { type: "string" description: "Team key that declined the alliance." } } name: { type: "string" description: "Alliance name, may be null." } picks: { type: "array" description: "List of team keys picked for the alliance. First pick is captain." items: { type: "string" description: "Team key picked for the alliance." } } status: { type: "object" properties: { current_level_record: { type: "object" description: "A Win-Loss-Tie record for a team, or an alliance." required: ["losses", "ties", "wins"] properties: { losses: { type: "integer" description: "Number of losses." } ties: { type: "integer" description: "Number of ties." } wins: { type: "integer" description: "Number of wins." } } } level: { type: "string" } playoff_average: { type: "number" format: "double" } record: { type: "object" additionalProperties: true } status: { type: "string" } } } } } } }