action wordnik_get_text_pronunciations { label: "Returns text pronunciations for a given word" provider: wordnik method: GET path: "/word.json/{word}/pronunciations" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } sourceDictionary: { type: "string" enum: ["ahd-5", "century", "cmu", "macmillan", "wiktionary", "webster", "wordnet"] } typeFormat: { type: "string" enum: ["ahd-5", "arpabet", "gcide-diacritical", "IPA"] } useCanonical: { type: "string" enum: ["false", "true"] } word: { type: "string" } } required: ["word"] additionalProperties: false } output: { type: "object" additionalProperties: true } }