sample-process-models/misc/test/bug-tracker/enter-bug-details-schema.json

21 lines
344 B
JSON
Raw Normal View History

{
"title": "Enter bug details",
"description": "",
"properties": {
"description": {
"type": "string",
"title": "Description"
},
"status": {
"type": "string",
"title": "Status",
"enum": [
"New",
" Developing",
" Ready",
" Done"
]
}
},
"required": []
}