Forgejo · Schema

Reference represents a Git reference.

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
object object
ref string
url string
View JSON Schema on GitHub

JSON Schema

reference.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Reference represents a Git reference.",
  "type": "object",
  "properties": {
    "object": {
      "$ref": "#/definitions/GitObject"
    },
    "ref": {
      "type": "string",
      "x-go-name": "Ref"
    },
    "url": {
      "type": "string",
      "x-go-name": "URL"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}