39 lines
708 B
JSON
39 lines
708 B
JSON
{
|
|
"title": "Ticket Details",
|
|
"description": "",
|
|
"properties": {
|
|
"summary": {
|
|
"type": "string",
|
|
"title": "Summary"
|
|
},
|
|
"description": {
|
|
"type": "string",
|
|
"title": "Description"
|
|
},
|
|
"priority": {
|
|
"type": "integer",
|
|
"title": "Priority",
|
|
"enum": [1, 2, 3, 4, 5],
|
|
"default": 3
|
|
},
|
|
"ticket_type": {
|
|
"type": "string",
|
|
"title": "Ticket Type",
|
|
"default": "feature",
|
|
"enum": [
|
|
"bug",
|
|
"feature",
|
|
"documentation"
|
|
]
|
|
},
|
|
"github_issue_url": {
|
|
"type": "string",
|
|
"title": "GitHub Issue URL"
|
|
}
|
|
},
|
|
"required": [
|
|
"summary",
|
|
"priority",
|
|
"ticket_type"
|
|
]
|
|
} |