Forgejo · Schema

CombinedStatus

CombinedStatus holds the combined state of several statuses for a single commit

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
commit_url string
repository object
sha string
state object
statuses array
total_count integer
url string
View JSON Schema on GitHub

JSON Schema

combinedstatus.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CombinedStatus",
  "description": "CombinedStatus holds the combined state of several statuses for a single commit",
  "type": "object",
  "properties": {
    "commit_url": {
      "type": "string",
      "x-go-name": "CommitURL"
    },
    "repository": {
      "$ref": "#/definitions/Repository"
    },
    "sha": {
      "type": "string",
      "x-go-name": "SHA"
    },
    "state": {
      "$ref": "#/definitions/CommitStatusState"
    },
    "statuses": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/CommitStatus"
      },
      "x-go-name": "Statuses"
    },
    "total_count": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "TotalCount"
    },
    "url": {
      "type": "string",
      "x-go-name": "URL"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}