Forgejo · Schema

SyncForkInfo

SyncForkInfo information about syncing a fork

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
allowed boolean
base_commit string
commits_behind integer
fork_commit string
View JSON Schema on GitHub

JSON Schema

syncforkinfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SyncForkInfo",
  "description": "SyncForkInfo information about syncing a fork",
  "type": "object",
  "properties": {
    "allowed": {
      "type": "boolean",
      "x-go-name": "Allowed"
    },
    "base_commit": {
      "type": "string",
      "x-go-name": "BaseCommit"
    },
    "commits_behind": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "CommitsBehind"
    },
    "fork_commit": {
      "type": "string",
      "x-go-name": "ForkCommit"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}