@tradle/models
Version:
models for tradle apps
37 lines (36 loc) • 607 B
JSON
{
"id": "tradle.Issue",
"title": "Issue",
"subClassOf": "tradle.Form",
"type": "tradle.Model",
"properties": {
"subject": {
"type": "string",
"displayName": true
},
"description": {
"type": "string"
},
"status": {
"type": "object",
"ref": "tradle.IssueStatus"
},
"tags": {
"type": "array",
"allowToAdd": true,
"items": {
"ref": "tradle.TaggedIssue",
"backlink": "issue"
}
}
},
"required": [
"subject"
],
"viewCols": [
"subject",
"description",
"status",
"tags"
]
}