action tcgdex_get_hp_hp { label: "get_hp_hp" provider: tcgdex method: GET path: "/hp/{hp}" encoding: json input: { type: "object" properties: { hp: { type: "string" } } required: ["hp"] 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" } } } }