2016-08-02 20:19:13 -04:00
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"required" : [
|
2016-08-04 12:59:30 -04:00
|
|
|
"iid",
|
2016-08-02 20:19:13 -04:00
|
|
|
"title",
|
|
|
|
"confidential"
|
|
|
|
],
|
|
|
|
"properties" : {
|
2017-01-30 11:34:47 -05:00
|
|
|
"id": { "type": "integer" },
|
2016-08-04 12:59:30 -04:00
|
|
|
"iid": { "type": "integer" },
|
2017-08-31 14:18:35 -04:00
|
|
|
"project_id": { "type": ["integer", "null"] },
|
2016-08-02 20:19:13 -04:00
|
|
|
"title": { "type": "string" },
|
|
|
|
"confidential": { "type": "boolean" },
|
2021-04-26 08:09:44 -04:00
|
|
|
"due_date": { "type": ["string", "null"] },
|
2020-09-04 11:08:46 -04:00
|
|
|
"relative_position": { "type": ["integer", "null"] },
|
2018-11-07 12:20:17 -05:00
|
|
|
"time_estimate": { "type": "integer" },
|
2021-05-05 08:10:33 -04:00
|
|
|
"type": { "type": "string", "enum": ["ISSUE", "INCIDENT", "TEST_CASE", "REQUIREMENT"] },
|
2017-11-13 18:36:18 -05:00
|
|
|
"issue_sidebar_endpoint": { "type": "string" },
|
|
|
|
"toggle_subscription_endpoint": { "type": "string" },
|
2018-10-31 19:54:33 -04:00
|
|
|
"assignable_labels_endpoint": { "type": "string" },
|
2018-04-05 13:57:48 -04:00
|
|
|
"reference_path": { "type": "string" },
|
|
|
|
"real_path": { "type": "string" },
|
2017-08-31 14:18:35 -04:00
|
|
|
"project": {
|
|
|
|
"id": { "type": "integer" },
|
|
|
|
"path": { "type": "string" }
|
|
|
|
},
|
2016-08-02 20:19:13 -04:00
|
|
|
"labels": {
|
2016-08-19 10:47:33 -04:00
|
|
|
"type": "array",
|
2017-10-31 12:15:03 -04:00
|
|
|
"items": { "$ref": "entities/label.json" }
|
2016-08-04 13:20:26 -04:00
|
|
|
},
|
|
|
|
"assignee": {
|
2019-03-12 13:10:24 -04:00
|
|
|
"id": { "type": "integer" },
|
2016-08-04 13:20:26 -04:00
|
|
|
"name": { "type": "string" },
|
|
|
|
"username": { "type": "string" },
|
|
|
|
"avatar_url": { "type": "uri" }
|
2017-05-04 10:22:24 -04:00
|
|
|
},
|
2017-05-04 08:11:15 -04:00
|
|
|
"assignees": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": ["object", "null"],
|
|
|
|
"required": [
|
|
|
|
"id",
|
|
|
|
"name",
|
|
|
|
"username",
|
|
|
|
"avatar_url"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"id": { "type": "integer" },
|
|
|
|
"name": { "type": "string" },
|
|
|
|
"username": { "type": "string" },
|
|
|
|
"avatar_url": { "type": "uri" }
|
|
|
|
}
|
|
|
|
}
|
2016-10-07 04:24:57 -04:00
|
|
|
},
|
|
|
|
"subscribed": { "type": ["boolean", "null"] }
|
2019-03-12 13:10:24 -04:00
|
|
|
}
|
2016-08-02 20:19:13 -04:00
|
|
|
}
|