action wordnik_get_hyphenation { label: "Returns syllable information for a word" provider: wordnik method: GET path: "/word.json/{word}/hyphenation" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } sourceDictionary: { type: "string" enum: ["ahd-5", "century", "wiktionary", "webster", "wordnet"] } useCanonical: { type: "string" enum: ["false", "true"] } word: { type: "string" } } required: ["word"] additionalProperties: false } output: { type: "object" additionalProperties: true } }