action pandascore_get_videogames_videogame_id_or_slug_leagues { label: "get_videogames_videogameIdOrSlug_leagues" provider: pandascore method: GET path: "/videogames/{videogame_id_or_slug}/leagues" encoding: json input: { type: "object" properties: { filter: { type: "object" properties: { id: { type: "array" items: { type: "integer" } } modified_at: { type: "array" items: { type: "string" format: "date-time" } } name: { type: "array" items: { type: "string" } } slug: { type: "array" items: { type: "string" } } url: { type: "array" items: { type: "string" format: "uri" } } } additionalProperties: false } range: { type: "object" properties: { id: { type: "array" items: { type: "integer" } } modified_at: { type: "array" items: { type: "string" format: "date-time" } } name: { type: "array" items: { type: "string" } } slug: { type: "array" items: { type: "string" } } url: { type: "array" items: { type: "string" format: "uri" } } } additionalProperties: false } search: { type: "object" properties: { name: { type: "string" } slug: { type: "string" } url: { type: "string" format: "uri" } } additionalProperties: false } sort: { type: "array" items: { enum: ["id", "-id", "modified_at", "-modified_at", "name", "-name", "slug", "-slug", "url", "-url"] type: "object" } } videogame_id_or_slug: { description: "A videogame ID or slug" type: "object" } } required: ["videogame_id_or_slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }