action jokes_post_joke_tags_remove { label: "post_joke_tags_remove" description: "Remove a tag from a given joke." provider: jokes method: POST path: "/joke/tags/remove" encoding: json input: { type: "object" properties: { id: { type: "string" } tags: { type: "string" } } required: ["id", "tags"] additionalProperties: false } output: { type: "object" additionalProperties: true } }