action rawg_games_movies_read { label: "Get a list of game trailers." description: "" provider: rawg method: GET path: "/games/{id}/movies" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" } id: { type: "integer" } name: { type: "string" } preview: { type: "string" format: "uri" } } } }