Forgejo · Schema

AnnotatedTagObject

AnnotatedTagObject contains meta information of the tag object

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
sha string
type string
url string
View JSON Schema on GitHub

JSON Schema

annotatedtagobject.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AnnotatedTagObject",
  "description": "AnnotatedTagObject contains meta information of the tag object",
  "type": "object",
  "properties": {
    "sha": {
      "type": "string",
      "x-go-name": "SHA"
    },
    "type": {
      "type": "string",
      "x-go-name": "Type"
    },
    "url": {
      "type": "string",
      "x-go-name": "URL"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}