action quotes_patch_quote { label: "patch_quote" description: "Update a quote" provider: quotes method: PATCH path: "/quote" encoding: json input: { type: "object" properties: { author: { type: "string" format: "string" } id: { type: "string" format: "string" } language: { type: "string" format: "string" } quote: { type: "string" format: "string" } tags: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }