GitBlob represents a git blob
{ "$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" }