action jokes_get_joke_categories_search { label: "get_joke_categories_search" description: "Gets a list of `Joke` Categories, based on a query term.\n" provider: jokes method: GET path: "/joke/categories/search" encoding: json input: { type: "object" properties: { query: { type: "string" } start: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" additionalProperties: true } }