Forgejo · Schema

FileResponse

FileResponse contains information about a repo's file

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
commit object
content object
verification object
View JSON Schema on GitHub

JSON Schema

fileresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "FileResponse",
  "description": "FileResponse contains information about a repo's file",
  "type": "object",
  "properties": {
    "commit": {
      "$ref": "#/definitions/FileCommitResponse"
    },
    "content": {
      "$ref": "#/definitions/ContentsResponse"
    },
    "verification": {
      "$ref": "#/definitions/PayloadCommitVerification"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}