action thebluealliance_get_event_awards { label: "getEventAwards" description: "Gets a list of awards from the given event." provider: thebluealliance method: GET path: "/event/{event_key}/awards" encoding: json output: { type: "array" items: { type: "object" required: ["award_type", "event_key", "name", "recipient_list", "year"] properties: { award_type: { type: "integer" description: "Type of award given. See https://github.com/the-blue-alliance/the-blue-alliance/blob/master/consts/award_type.py#L6" } event_key: { type: "string" description: "The event_key of the event the award was won at." } name: { type: "string" description: "The name of the award as provided by FIRST. May vary for the same award type." } recipient_list: { type: "array" description: "A list of recipients of the award at the event. May have either a team_key or an awardee, both, or neither (in the case the award wasn't awarded at the event)." items: { type: "object" description: "An `Award_Recipient` object represents the team and/or person who received an award at an event." properties: { awardee: { type: "string" description: "The name of the individual given the award. May be null." } team_key: { type: "string" description: "The TBA team key for the team that was given the award. May be null." } } } } year: { type: "integer" description: "The year this award was won." } } } } }