action wordnik_get_phrases { label: "Fetches bi-gram phrases for a word" provider: wordnik method: GET path: "/word.json/{word}/phrases" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } useCanonical: { type: "string" enum: ["false", "true"] } wlmi: { type: "integer" format: "int32" } word: { type: "string" } } required: ["word"] additionalProperties: false } output: { type: "object" additionalProperties: true } }