Forgejo · Schema

GitBlob

GitBlob represents a git blob

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
content string
encoding string
sha string
size integer
url string
View JSON Schema on GitHub

JSON Schema

gitblob.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GitBlob",
  "description": "GitBlob represents a git blob",
  "type": "object",
  "properties": {
    "content": {
      "type": "string",
      "x-go-name": "Content"
    },
    "encoding": {
      "type": "string",
      "x-go-name": "Encoding"
    },
    "sha": {
      "type": "string",
      "x-go-name": "SHA"
    },
    "size": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "Size"
    },
    "url": {
      "type": "string",
      "x-go-name": "URL"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}