Forgejo · Schema

IssueTemplate

IssueTemplate represents an issue template for a repository

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
about string
body array
content string
file_name string
labels object
name string
ref string
title string
View JSON Schema on GitHub

JSON Schema

issuetemplate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "IssueTemplate",
  "description": "IssueTemplate represents an issue template for a repository",
  "type": "object",
  "properties": {
    "about": {
      "type": "string",
      "x-go-name": "About"
    },
    "body": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/IssueFormField"
      },
      "x-go-name": "Fields"
    },
    "content": {
      "type": "string",
      "x-go-name": "Content"
    },
    "file_name": {
      "type": "string",
      "x-go-name": "FileName"
    },
    "labels": {
      "$ref": "#/definitions/IssueTemplateLabels"
    },
    "name": {
      "type": "string",
      "x-go-name": "Name"
    },
    "ref": {
      "type": "string",
      "x-go-name": "Ref"
    },
    "title": {
      "type": "string",
      "x-go-name": "Title"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}