action rawg_creator_roles_list { label: "Get a list of creator positions (jobs)." description: "" provider: rawg method: GET path: "/creator-roles" encoding: json input: { type: "object" properties: { 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" properties: { id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } } } } } } }