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