action tcgdex_get_rarities_rarity { label: "get_rarities_rarity" provider: tcgdex method: GET path: "/rarities/{rarity}" encoding: json input: { type: "object" properties: { rarity: { type: "string" } } required: ["rarity"] additionalProperties: false } output: { type: "object" required: ["cards", "name"] properties: { cards: { type: "array" items: { type: "object" required: ["id", "localId", "name"] properties: { id: { type: "string" } image: { type: "string" } localId: { type: "string" } name: { type: "string" } } } } name: { type: "string" } } } }