Forgejo · Schema

CreateStatusOption

CreateStatusOption holds the information needed to create a new CommitStatus for a Commit

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
context string
description string
state object
target_url string
View JSON Schema on GitHub

JSON Schema

createstatusoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateStatusOption",
  "description": "CreateStatusOption holds the information needed to create a new CommitStatus for a Commit",
  "type": "object",
  "properties": {
    "context": {
      "type": "string",
      "x-go-name": "Context"
    },
    "description": {
      "type": "string",
      "x-go-name": "Description"
    },
    "state": {
      "$ref": "#/definitions/CommitStatusState"
    },
    "target_url": {
      "type": "string",
      "x-go-name": "TargetURL"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}