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: 88a600398b14627d085195f708bbce67991b8905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  "type": "object",
  "properties" : {
    "state": { "type": "string" },
    "merge_status": { "type": "string" },
    "source_branch_exists": { "type": "boolean" },
    "merge_error": { "type": ["string", "null"] },
    "rebase_in_progress": { "type": "boolean" },
    "allow_collaboration": { "type": "boolean"},
    "allow_maintainer_to_push": { "type": "boolean"},
    "assignees": {
      "type": ["array"],
      "items": {
        "type": "object",
        "$ref": "../public_api/v4/user/basic.json"
      }
    },
    "milestone": {
      "type": [ "object", "null" ]
    },
    "labels": {
      "type": [ "array", "null" ]
    },
    "task_status": { "type": "string" },
    "task_status_short": { "type": "string" },
    "lock_version": { "type": ["string", "null"] }
  },
  "additionalProperties": false
}