action tcgdex_get_series_serie { label: "get_series_serie" provider: tcgdex method: GET path: "/series/{serie}" encoding: json input: { type: "object" properties: { serie: { type: "string" } } required: ["serie"] additionalProperties: false } output: { type: "object" required: ["id", "name", "sets"] properties: { id: { type: "string" } logo: { type: "string" } name: { type: "string" } sets: { type: "array" items: { type: "object" required: ["cardCount", "id", "name"] properties: { cardCount: { type: "object" required: ["official", "total"] properties: { official: { type: "number" } total: { type: "number" } } } id: { type: "string" } logo: { type: "string" } name: { type: "string" } symbol: { type: "string" } } } } } } }