action wordnik_search_words { label: "Searches words" provider: wordnik method: GET path: "/words.json/search/{query}" encoding: json input: { type: "object" properties: { allowRegex: { type: "string" } caseSensitive: { type: "string" } excludePartOfSpeech: { type: "string" } includePartOfSpeech: { type: "string" } limit: { type: "integer" format: "int32" } maxCorpusCount: { type: "integer" format: "int32" } maxDictionaryCount: { type: "integer" format: "int32" } maxLength: { type: "integer" format: "int32" } minCorpusCount: { type: "integer" format: "int32" } minDictionaryCount: { type: "integer" format: "int32" } minLength: { type: "integer" format: "int32" } query: { type: "string" } skip: { type: "integer" format: "int32" } } required: ["query"] additionalProperties: false } output: { type: "object" additionalProperties: true } }