action jokes_patch_joke { label: "patch_joke" description: "Update a joke" provider: jokes method: PATCH path: "/joke" encoding: json input: { type: "object" properties: { author: { type: "string" } id: { type: "string" } tags: { type: "string" } text: { type: "string" } title: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }