action quotes_put_qshow { label: "put_qshow" description: "Create and add a new qshow to your private collection." provider: quotes method: PUT path: "/qshow" encoding: json input: { type: "object" properties: { description: { type: "string" format: "string" } tags: { type: "array" items: { type: "string" } } title: { type: "string" format: "string" } } required: ["title"] additionalProperties: false } output: { type: "object" additionalProperties: true } }