Tag represents a repository tag
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Tag", "description": "Tag represents a repository tag", "type": "object", "properties": { "archive_download_count": { "$ref": "#/definitions/TagArchiveDownloadCount" }, "commit": { "$ref": "#/definitions/CommitMeta" }, "id": { "type": "string", "x-go-name": "ID" }, "message": { "type": "string", "x-go-name": "Message" }, "name": { "type": "string", "x-go-name": "Name" }, "tarball_url": { "type": "string", "x-go-name": "TarballURL" }, "zipball_url": { "type": "string", "x-go-name": "ZipballURL" } }, "x-go-package": "forgejo.org/modules/structs" }