action pandascore_get_additions { label: "List additions" description: "Get the latest additions.\n\nThis endpoint only shows unchanged objects." provider: pandascore method: GET path: "/additions" encoding: json input: { type: "object" properties: { since: { type: "string" format: "date-time" } type: { type: "array" items: { enum: ["league", "match", "player", "serie", "team", "tournament"] type: "object" } } videogame: { type: "array" items: { description: "A videogame ID or slug" type: "object" } } } additionalProperties: false } output: { type: "object" additionalProperties: true } }