action jokes_delete_joke { label: "delete_joke" description: "Delete a joke. The user needs to be the owner of the joke to be able to delete it.\n" provider: jokes method: DELETE path: "/joke" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }