Forgejo · Schema

PRBranchInfo

PRBranchInfo information about a branch

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
label string
ref string
repo object
repo_id integer
sha string
View JSON Schema on GitHub

JSON Schema

prbranchinfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PRBranchInfo",
  "description": "PRBranchInfo information about a branch",
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "x-go-name": "Name"
    },
    "ref": {
      "type": "string",
      "x-go-name": "Ref"
    },
    "repo": {
      "$ref": "#/definitions/Repository"
    },
    "repo_id": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "RepoID"
    },
    "sha": {
      "type": "string",
      "x-go-name": "Sha"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}