action rawg_platforms_lists_parents_list { label: "Get a list of parent platforms." description: "For instance, for PS2 and PS4 the “parent platform” is PlayStation." provider: rawg method: GET path: "/platforms/lists/parents" 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: ["name", "platforms"] properties: { id: { type: "integer" } name: { type: "string" } platforms: { type: "array" items: { type: "object" required: ["name"] properties: { games_count: { type: "integer" } id: { type: "integer" } image: { type: "string" format: "uri" } image_background: { type: "string" format: "uri" } name: { type: "string" } slug: { type: "string" format: "slug" } year_end: { type: "integer" } year_start: { type: "integer" } } } } slug: { type: "string" format: "slug" } } } } } } }