action tisane_list_word_senses { label: "List word senses" description: "Fetches and outputs all senses related to a word." provider: tisane method: GET path: "/senses" encoding: json input: { type: "object" properties: { "Ocp-Apim-Subscription-Key": { type: "string" } language: { type: "string" } word: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { families: { type: "array" items: { type: "object" properties: { Key: { type: "number" } Value: { type: "object" properties: {} } definition: { type: "string" } } } } features: { type: "array" items: { type: "object" properties: { index: { type: "number" } type: { type: "string" } value: { type: "string" } } } } frequency: { type: "number" } isLemma: { type: "boolean" } legacyMapId: { type: "number" } lemma: { type: "string" } lexemeId: { type: "number" } } } } }