Welcome to mirror list, hosted at ThFree Co, Russian Federation.

merge_request_basic.json « entities « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b14188582a69f842bc45b34e46501fec37252d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "type": "object",
  "properties" : {
    "state": { "type": "string" },
    "merge_status": { "type": "string" },
    "source_branch_exists": { "type": "boolean" },
    "time_estimate": { "type": "integer" },
    "total_time_spent": { "type": "integer" },
    "human_time_estimate": { "type": ["string", "null"] },
    "human_total_time_spent": { "type": ["string", "null"] },
    "merge_error": { "type": ["string", "null"] },
    "assignee_id": { "type": ["integer", "null"] }
  },
  "additionalProperties": false
}