action quotes_put_quote { label: "put_quote" description: "Add a new quote to your private collection." provider: quotes method: PUT path: "/quote" encoding: json input: { type: "object" properties: { author: { type: "string" format: "string" } language: { type: "string" format: "string" } quote: { type: "string" format: "string" } tags: { type: "string" format: "string" } } required: ["quote"] additionalProperties: false } output: { type: "object" additionalProperties: true } }