Forgejo · Schema

CommitStatus

CommitStatus holds a single status of a single Commit

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
context string
created_at string
creator object
description string
id integer
status object
target_url string
updated_at string
url string
View JSON Schema on GitHub

JSON Schema

commitstatus.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CommitStatus",
  "description": "CommitStatus holds a single status of a single Commit",
  "type": "object",
  "properties": {
    "context": {
      "type": "string",
      "x-go-name": "Context"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "Created"
    },
    "creator": {
      "$ref": "#/definitions/User"
    },
    "description": {
      "type": "string",
      "x-go-name": "Description"
    },
    "id": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "ID"
    },
    "status": {
      "$ref": "#/definitions/CommitStatusState"
    },
    "target_url": {
      "type": "string",
      "x-go-name": "TargetURL"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "Updated"
    },
    "url": {
      "type": "string",
      "x-go-name": "URL"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}