## issue

### scheme

```javascript
{
	"id": Number,
	"project": String,
	"private": Boolean,
	// "priority": ENUM("none", "low", "normal", "high"),
	"title": String,
	"description": String,
	"assignee": Array,
	"labels": Array,
	"notes": [{
		"person": Number,
		"note": String,
		"date": Date,
		"private": Boolean
	}],
	"closed": Boolean,
	"locked": Boolean,
	"modified": Date,
	"created": Date
}
```

## label

### scheme

```javascript
{
	"id": Number,
	"name": String,
	"color": String
}
```

### defaults:

- bug
- duplicate
- enhancement
- help wanted
- invalid
- question
- wontfix
- fixed
- closed

## person

```javascript
{
	"id": Number,
	"name": String,
	"email": String,
	"username": String,
	"password": String,
	"role": String,
	"projects": Array
}
```

projects `Array` is used for access to the projects.
