action jokes_get_joke_search { label: "get_joke_search" description: "Search for a `Joke` in Jokes One platform. Optional `category` , `author`, `minlength`, `maxlength` params determines the filters applied while searching for the joke. " provider: jokes method: GET path: "/joke/search" encoding: json input: { type: "object" properties: { author: { type: "string" } category: { type: "string" } maxlength: { type: "string" } minlength: { type: "string" } private: { type: "string" } query: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }