action wordnik_get_related_words { label: "Given a word as a string, returns relationships from the Word Graph" provider: wordnik method: GET path: "/word.json/{word}/relatedWords" encoding: json input: { type: "object" properties: { limitPerRelationshipType: { type: "integer" format: "int32" } relationshipTypes: { type: "string" enum: ["synonym", "antonym", "variant", "equivalent", "cross-reference", "related-word", "rhyme", "form", "etymologically-related-term", "hypernym", "hyponym", "inflected-form", "primary", "same-context", "verb-form", "verb-stem", "has_topic"] } useCanonical: { type: "string" enum: ["false", "true"] } word: { type: "string" } } required: ["word"] additionalProperties: false } output: { type: "object" additionalProperties: true } }