action quotes_patch_qshow { label: "patch_qshow" description: "Update an existing qshow." provider: quotes method: PATCH path: "/qshow" encoding: json input: { type: "object" properties: { description: { type: "string" format: "string" } id: { type: "string" format: "string" } tags: { type: "array" items: { type: "string" } } title: { type: "string" format: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }