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