action wordnik_get_random_words { label: "Returns an array of random WordObjects" provider: wordnik method: GET path: "/words.json/randomWords" encoding: json input: { type: "object" properties: { excludePartOfSpeech: { type: "string" } hasDictionaryDef: { 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" } sortBy: { type: "string" enum: ["alpha", "count"] } sortOrder: { type: "string" enum: ["asc", "desc"] } } additionalProperties: false } output: { type: "object" additionalProperties: true } }