action rawg_games_reddit_read { label: "Get a list of most recent posts from the game's subreddit." description: "" provider: rawg method: GET path: "/games/{id}/reddit" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { created: { type: "string" format: "date-time" } id: { type: "integer" } image: { type: "string" format: "uri" } name: { type: "string" } text: { type: "string" } url: { type: "string" format: "uri" } username: { type: "string" } username_url: { type: "string" format: "uri" } } } }