Forgejo · Schema

Tag

Tag represents a repository tag

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
archive_download_count object
commit object
id string
message string
name string
tarball_url string
zipball_url string
View JSON Schema on GitHub

JSON Schema

tag.json Raw ↑
{
  "$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"
}