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