2018-12-13 13:39:08 +05:30
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"properties" : {
|
|
|
|
"id": { "type": "integer" },
|
|
|
|
"iid": { "type": "integer" },
|
|
|
|
"title": { "type": "string" },
|
|
|
|
"confidential": { "type": "boolean" },
|
|
|
|
"due_date": { "type": "date" },
|
|
|
|
"project_id": { "type": "integer" },
|
|
|
|
"relative_position": { "type": ["integer", "null"] },
|
|
|
|
"time_estimate": { "type": "integer" },
|
2019-02-15 15:39:39 +05:30
|
|
|
"weight": { "type": ["integer", "null"] },
|
2018-12-13 13:39:08 +05:30
|
|
|
"project": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"id": { "type": "integer" },
|
|
|
|
"path": { "type": "string" }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"milestone": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"id": { "type": "integer" },
|
|
|
|
"title": { "type": "string" }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"assignees": { "type": ["array", "null"] },
|
|
|
|
"labels": {
|
|
|
|
"type": "array",
|
|
|
|
"items": { "$ref": "label.json" }
|
|
|
|
},
|
|
|
|
"reference_path": { "type": "string" },
|
|
|
|
"real_path": { "type": "string" },
|
|
|
|
"issue_sidebar_endpoint": { "type": "string" },
|
|
|
|
"toggle_subscription_endpoint": { "type": "string" },
|
|
|
|
"assignable_labels_endpoint": { "type": "string" }
|
|
|
|
},
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|