debian-mirror-gitlab/spec/fixtures/api/schemas/entities/issue_board.json
2020-04-08 14:13:33 +05:30

45 lines
1.4 KiB
JSON

{
"type": "object",
"properties" : {
"id": { "type": "integer" },
"iid": { "type": "integer" },
"title": { "type": "string" },
"confidential": { "type": "boolean" },
"closed": { "type": "boolean" },
"due_date": { "type": "date" },
"project_id": { "type": "integer" },
"relative_position": { "type": ["integer", "null"] },
"time_estimate": { "type": "integer" },
"total_time_spent": { "type": "integer" },
"human_time_estimate": { "type": ["string", "null"] },
"human_total_time_spent": { "type": ["string", "null"] },
"weight": { "type": ["integer", "null"] },
"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" },
"blocked": { "type": "boolean" }
},
"additionalProperties": false
}