action quotes_post_quote { label: "post_quote" description: "Add a new quote to your private collection. Same as 'PUT' but added since some clients don't handle PUT well." provider: quotes method: POST 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 } }