Forgejo · Schema

IssueConfig

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
blank_issues_enabled boolean
contact_links array
View JSON Schema on GitHub

JSON Schema

issueconfig.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "IssueConfig",
  "type": "object",
  "properties": {
    "blank_issues_enabled": {
      "type": "boolean",
      "x-go-name": "BlankIssuesEnabled"
    },
    "contact_links": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/IssueConfigContactLink"
      },
      "x-go-name": "ContactLinks"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}