action tcgdex_get_sets_set_card_local_id { label: "get_sets_set_cardLocalId" provider: tcgdex method: GET path: "/sets/{set}/{cardLocalId}" encoding: json input: { type: "object" properties: { cardLocalId: { type: "string" } set: { type: "string" } } required: ["cardLocalId", "set"] additionalProperties: false } output: { type: "object" required: ["category", "id", "legal", "localId", "name", "rarity", "set"] properties: { abilities: { type: "array" items: { type: "object" properties: { effect: { type: "string" } name: { type: "string" } type: { type: "string" } } } } attacks: { type: "array" items: { type: "object" required: ["name"] properties: { cost: { type: "array" items: { type: "string" } } damage: { type: "number" } effect: { type: "string" } name: { type: "string" } } } } category: { type: "string" } description: { type: "string" } dexId: { type: "array" items: { type: "number" } } energyType: { type: "string" } evolveFrom: { type: "string" } hp: { type: "number" } id: { type: "string" } illustrator: { type: "string" } image: { type: "string" } item: { type: "object" required: ["effect", "name"] properties: { effect: { type: "string" } name: { type: "string" } } } legal: { type: "object" properties: { expanded: { type: "boolean" } standard: { type: "boolean" } } } level: { type: "number" } localId: { type: "string" } name: { type: "string" } rarity: { type: "string" } regulationMark: { type: "string" } resistances: { type: "array" items: { type: "array" items: { type: "object" required: ["type"] properties: { type: { type: "string" } value: { type: "string" } } } } } retreat: { type: "number" } set: { 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" } } } stage: { type: "string" } suffix: { type: "string" } trainerType: { type: "string" } types: { type: "array" items: { type: "string" } } variants: { type: "object" required: ["firstEdition", "holo", "normal", "reverse", "wPromo"] properties: { firstEdition: { type: "boolean" } holo: { type: "boolean" } normal: { type: "boolean" } reverse: { type: "boolean" } wPromo: { type: "boolean" } } } weaknesses: { type: "array" items: { type: "object" additionalProperties: true } } } } }