action tcgdex_get_sets_set { label: "get_sets_set" provider: tcgdex method: GET path: "/sets/{set}" encoding: json input: { type: "object" properties: { set: { type: "string" } } required: ["set"] additionalProperties: false } output: { type: "object" required: ["cardCount", "cards", "id", "name"] properties: { cardCount: { type: "object" required: ["official", "total"] properties: { firstEd: { type: "number" } holo: { type: "number" } normal: { type: "number" } official: { type: "number" } reverse: { type: "number" } total: { type: "number" } } } cards: { type: "array" items: { type: "object" required: ["id", "localId", "name"] properties: { id: { type: "string" } image: { type: "string" } localId: { type: "string" } name: { type: "string" } } } } id: { type: "string" } logo: { type: "string" } name: { type: "string" } symbol: { type: "string" } } } }