action rawg_games_list { label: "Get a list of games." description: "" provider: rawg method: GET path: "/games" encoding: json input: { type: "object" properties: { creators: { type: "string" } dates: { type: "string" } developers: { type: "string" } exclude_additions: { type: "boolean" } exclude_collection: { type: "integer" } exclude_game_series: { type: "boolean" } exclude_parents: { type: "boolean" } exclude_stores: { type: "string" } genres: { type: "string" } metacritic: { type: "string" } ordering: { type: "string" } page: { type: "integer" } page_size: { type: "integer" } parent_platforms: { type: "string" } platforms: { type: "string" } platforms_count: { type: "integer" } publishers: { type: "string" } search: { type: "string" } search_exact: { type: "boolean" } search_precise: { type: "boolean" } stores: { type: "string" } tags: { type: "string" } updated: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["count", "results"] properties: { count: { type: "integer" } next: { type: "string" format: "uri" } previous: { type: "string" format: "uri" } results: { type: "array" items: { type: "object" required: ["rating"] properties: { added: { type: "integer" } added_by_status: { type: "object" } background_image: { type: "string" format: "uri" } 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"] } } } id: { type: "integer" } metacritic: { type: "integer" } name: { type: "string" } 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" } released: { type: "string" format: "date" } reviews_text_count: { type: "string" } slug: { type: "string" format: "slug" } suggestions_count: { type: "integer" } tba: { type: "boolean" } updated: { type: "string" format: "date-time" } } } } } } }