Forgejo · Schema

GitObject represents a Git 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

gitobject.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GitObject represents a Git 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"
}