action tvmaze_patch_user_tags_tag_id { label: "Update a specific tag" provider: tvmaze method: PATCH path: "/user/tags/{tag_id}" encoding: json input: { type: "object" properties: { tag_id: { type: "integer" } } required: ["tag_id"] additionalProperties: false } output: { type: "object" properties: { id: { type: "integer" } name: { type: "string" } } } }