action tcgdex_get_variants_variant { label: "get_variants_variant" provider: tcgdex method: GET path: "/variants/{variant}" encoding: json input: { type: "object" properties: { variant: { type: "string" } } required: ["variant"] additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id", "localId", "name"] properties: { id: { type: "string" } image: { type: "string" } localId: { type: "string" } name: { type: "string" } } } } }