2019-12-21 20:55:43 +05:30
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"required": [
|
|
|
|
"id",
|
|
|
|
"title",
|
|
|
|
"description",
|
|
|
|
"state",
|
|
|
|
"iid",
|
|
|
|
"created_at",
|
2020-06-23 00:09:42 +05:30
|
|
|
"due_date",
|
|
|
|
"issues"
|
2019-12-21 20:55:43 +05:30
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"id": { "type": "integer" },
|
|
|
|
"title": { "type": "string" },
|
|
|
|
"description": { "type": ["string", "null"] },
|
|
|
|
"state": { "type": "string" },
|
|
|
|
"iid": { "type": "integer" },
|
2021-06-08 01:23:25 +05:30
|
|
|
"created_at": { "type": "string" },
|
|
|
|
"due_date": { "type": ["string", "null"] },
|
2020-06-23 00:09:42 +05:30
|
|
|
"issues": {
|
|
|
|
"type": "array",
|
|
|
|
"items": { "$ref": "issue.json" }
|
|
|
|
}
|
2019-12-21 20:55:43 +05:30
|
|
|
},
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|