action quotes_get_quote_search { label: "get_quote_search" description: "Search for a `Quote` in They Said So platform. Optional `category` , `author`, `minlength`, `maxlength` params determines the filters applied while searching for the quote. " provider: quotes method: GET path: "/quote/search" encoding: json input: { type: "object" properties: { author: { type: "string" format: "string" } category: { type: "string" format: "string" } language: { type: "string" format: "string" } limit: { type: "integer" format: "integer" } maxlength: { type: "integer" format: "int32" } minlength: { type: "integer" format: "int32" } private: { type: "boolean" format: "boolean" } query: { type: "string" format: "string" } sfw: { type: "boolean" format: "boolean" } } additionalProperties: false } output: { properties: { contents: { properties: { quotes: { type: "array" description: "List of quotes" items: { type: "object" } } } } success: { type: "string" description: "Metadata about this successful call" } } } }