action thebluealliance_get_team_robots { label: "getTeamRobots" description: "Gets a list of year and robot name pairs for each year that a robot name was provided. Will return an empty array if the team has never named a robot." provider: thebluealliance method: GET path: "/team/{team_key}/robots" encoding: json output: { type: "array" items: { type: "object" required: ["key", "robot_name", "team_key", "year"] properties: { key: { type: "string" description: "Internal TBA identifier for this robot." } robot_name: { type: "string" description: "Name of the robot as provided by the team." } team_key: { type: "string" description: "TBA team key for this robot." } year: { type: "integer" description: "Year this robot competed in." } } } } }