action rawg_games_achievements_read { label: "Get a list of game achievements." description: "" provider: rawg method: GET path: "/games/{id}/achievements" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { description: { type: "string" } id: { type: "integer" } image: { type: "string" format: "uri" } name: { type: "string" } percent: { type: "string" format: "decimal" } } } }