action rawg_games_read { label: "Get details of the game." description: "" provider: rawg method: GET path: "/games/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["rating"] properties: { achievements_count: { type: "integer" } added: { type: "integer" } added_by_status: { type: "object" } additions_count: { type: "integer" } alternative_names: { type: "array" items: { type: "string" } } background_image: { type: "string" format: "uri" } background_image_additional: { type: "string" } creators_count: { type: "integer" } description: { type: "string" } esrb_rating: { type: "object" properties: { id: { type: "integer" } name: { type: "string" enum: ["Everyone", "Everyone 10+", "Teen", "Mature", "Adults Only", "Rating Pending"] } slug: { type: "string" enum: ["everyone", "everyone-10-plus", "teen", "mature", "adults-only", "rating-pending"] } } } game_series_count: { type: "integer" } id: { type: "integer" } metacritic: { type: "integer" } metacritic_platforms: { type: "array" items: { type: "object" properties: { metascore: { type: "integer" } url: { type: "string" } } } } metacritic_url: { type: "string" description: "For example \"http://www.metacritic.com/game/playstation-4/the-witcher-3-wild-hunt\"" } movies_count: { type: "integer" } name: { type: "string" } name_original: { type: "string" } parent_achievements_count: { type: "string" } parents_count: { type: "integer" } platforms: { type: "array" items: { type: "object" properties: { platform: { type: "object" properties: { id: { type: "integer" } name: { type: "string" } slug: { type: "string" } } } released_at: { type: "string" } requirements: { type: "object" properties: { minimum: { type: "string" } recommended: { type: "string" } } } } } } playtime: { type: "integer" description: "in hours" } rating: { type: "number" } rating_top: { type: "integer" } ratings: { type: "object" } ratings_count: { type: "integer" } reactions: { type: "object" } reddit_count: { type: "integer" } reddit_description: { type: "string" } reddit_logo: { type: "string" format: "uri" } reddit_name: { type: "string" } reddit_url: { type: "string" description: "For example \"https://www.reddit.com/r/uncharted/\" or \"uncharted\"" } released: { type: "string" format: "date" } reviews_text_count: { type: "string" } screenshots_count: { type: "integer" } slug: { type: "string" format: "slug" } suggestions_count: { type: "integer" } tba: { type: "boolean" } twitch_count: { type: "string" } updated: { type: "string" format: "date-time" } website: { type: "string" format: "uri" } youtube_count: { type: "string" } } } }