action rawg_creators_read { label: "Get details of the creator." description: "" provider: rawg method: GET path: "/creators/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["name"] properties: { description: { type: "string" } games_count: { type: "integer" } id: { type: "integer" } image: { type: "string" format: "uri" } image_background: { type: "string" format: "uri" } name: { type: "string" } rating: { type: "string" format: "decimal" } rating_top: { type: "integer" } reviews_count: { type: "integer" } slug: { type: "string" format: "slug" } updated: { type: "string" format: "date-time" } } } }