Forgejo · Schema

GitEntry

GitEntry represents a git tree

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
mode string
path string
sha string
size integer
type string
url string
View JSON Schema on GitHub

JSON Schema

gitentry.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GitEntry",
  "description": "GitEntry represents a git tree",
  "type": "object",
  "properties": {
    "mode": {
      "type": "string",
      "x-go-name": "Mode"
    },
    "path": {
      "type": "string",
      "x-go-name": "Path"
    },
    "sha": {
      "type": "string",
      "x-go-name": "SHA"
    },
    "size": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "Size"
    },
    "type": {
      "type": "string",
      "x-go-name": "Type"
    },
    "url": {
      "type": "string",
      "x-go-name": "URL"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}