action quotes_get_quote { label: "get_quote" description: "Gets a `Quote` with a given `id`." provider: quotes method: GET path: "/quote" encoding: json input: { type: "object" properties: { id: { type: "string" format: "string" } } 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" } } } }