Forgejo · Schema

AnnotatedTag

AnnotatedTag represents an annotated tag

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
archive_download_count object
message string
object object
sha string
tag string
tagger object
url string
verification object
View JSON Schema on GitHub

JSON Schema

annotatedtag.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AnnotatedTag",
  "description": "AnnotatedTag represents an annotated tag",
  "type": "object",
  "properties": {
    "archive_download_count": {
      "$ref": "#/definitions/TagArchiveDownloadCount"
    },
    "message": {
      "type": "string",
      "x-go-name": "Message"
    },
    "object": {
      "$ref": "#/definitions/AnnotatedTagObject"
    },
    "sha": {
      "type": "string",
      "x-go-name": "SHA"
    },
    "tag": {
      "type": "string",
      "x-go-name": "Tag"
    },
    "tagger": {
      "$ref": "#/definitions/CommitUser"
    },
    "url": {
      "type": "string",
      "x-go-name": "URL"
    },
    "verification": {
      "$ref": "#/definitions/PayloadCommitVerification"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}