{ "$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" }