action quotes_get_quote_random { label: "get_quote_random" description: "Gets a `Random Quote`. When you are in a hurry this is what you call to get a random famous quote." provider: quotes method: GET path: "/quote/random" encoding: json input: { type: "object" properties: { language: { type: "string" format: "string" } limit: { type: "integer" format: "integer" } } 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" } } } }