action rawg_games_stores_list { label: "Get links to the stores that sell the game." description: "" provider: rawg method: GET path: "/games/{game_pk}/stores" encoding: json input: { type: "object" properties: { ordering: { type: "string" } page: { type: "integer" } page_size: { type: "integer" } } 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: ["url"] properties: { game_id: { type: "string" } id: { type: "integer" } store_id: { type: "string" } url: { type: "string" format: "uri" } } } } } } }