debian-mirror-gitlab/spec/fixtures/api/schemas/entities/issue_board.json

45 lines
1.4 KiB
JSON
Raw Normal View History

2018-12-13 13:39:08 +05:30
{
"type": "object",
"properties" : {
"id": { "type": "integer" },
"iid": { "type": "integer" },
"title": { "type": "string" },
"confidential": { "type": "boolean" },
2020-04-08 14:13:33 +05:30
"closed": { "type": "boolean" },
2018-12-13 13:39:08 +05:30
"due_date": { "type": "date" },
"project_id": { "type": "integer" },
"relative_position": { "type": ["integer", "null"] },
"time_estimate": { "type": "integer" },
2019-07-31 22:56:46 +05:30
"total_time_spent": { "type": "integer" },
"human_time_estimate": { "type": ["string", "null"] },
"human_total_time_spent": { "type": ["string", "null"] },
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" },
2020-03-13 15:44:24 +05:30
"assignable_labels_endpoint": { "type": "string" },
"blocked": { "type": "boolean" }
2018-12-13 13:39:08 +05:30
},
"additionalProperties": false
}