action thebluealliance_get_event_oprs { label: "getEventOPRs" description: "Gets a set of Event OPRs (including OPR, DPR, and CCWM) for the given Event." provider: thebluealliance method: GET path: "/event/{event_key}/oprs" encoding: json output: { type: "object" description: "OPR, DPR, and CCWM for teams at the event." properties: { ccwms: { type: "object" description: "A key-value pair with team key (eg `frc254`) as key and CCWM as value." } dprs: { type: "object" description: "A key-value pair with team key (eg `frc254`) as key and DPR as value." } oprs: { type: "object" description: "A key-value pair with team key (eg `frc254`) as key and OPR as value." } } } }