{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TaskAddTagRequest", "title": "TaskAddTagRequest", "type": "object", "properties": { "tag": { "description": "The tag's gid to add to the task.", "type": "string", "example": "13579" } }, "required": [ "tag" ] }