action tisane_list_hypernyms { label: "List hypernyms" description: "Lists all hypernyms related to a family. A hypernym is a parent concent. E.g. \"vehicle\" is a hypernym of \"truck\"." provider: tisane method: GET path: "/hypernyms" encoding: json input: { type: "object" properties: { "Ocp-Apim-Subscription-Key": { type: "string" } family: { type: "string" } maxLevel: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "array" items: { type: "object" } } } }