summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v3/merge_requests.json
blob: 9af7a8c9f4f10ad1719b46ea24612388303845cc (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
  "type": "array",
  "items": {
    "type": "object",
    "properties" : {
      "id": { "type": "integer" },
      "iid": { "type": "integer" },
      "project_id": { "type": "integer" },
      "title": { "type": "string" },
      "description": { "type": ["string", "null"] },
      "state": { "type": "string" },
      "created_at": { "type": "date" },
      "updated_at": { "type": "date" },
      "target_branch": { "type": "string" },
      "source_branch": { "type": "string" },
      "upvotes": { "type": "integer" },
      "downvotes": { "type": "integer" },
      "author": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "username": { "type": "string" },
          "id": { "type": "integer" },
          "state": { "type": "string" },
          "avatar_url": { "type": "uri" },
          "web_url": { "type": "uri" }
        },
        "additionalProperties": false
      },
      "assignee": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "username": { "type": "string" },
          "id": { "type": "integer" },
          "state": { "type": "string" },
          "avatar_url": { "type": "uri" },
          "web_url": { "type": "uri" }
        },
        "additionalProperties": false
      },
      "source_project_id": { "type": "integer" },
      "target_project_id": { "type": "integer" },
      "labels": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "work_in_progress": { "type": "boolean" },
      "milestone": {
        "type": ["object", "null"],
        "properties": {
          "id": { "type": "integer" },
          "iid": { "type": "integer" },
          "project_id": { "type": ["integer", "null"] },
          "group_id": { "type": ["integer", "null"] },
          "title": { "type": "string" },
          "description": { "type": ["string", "null"] },
          "state": { "type": "string" },
          "created_at": { "type": "date" },
          "updated_at": { "type": "date" },
          "due_date": { "type": "date" },
          "start_date": { "type": "date" }
        },
        "additionalProperties": false
      },
      "merge_when_build_succeeds": { "type": "boolean" },
      "merge_status": { "type": "string" },
      "sha": { "type": "string" },
      "merge_commit_sha": { "type": ["string", "null"] },
      "user_notes_count": { "type": "integer" },
      "should_remove_source_branch": { "type": ["boolean", "null"] },
      "force_remove_source_branch": { "type": ["boolean", "null"] },
      "web_url": { "type": "uri" },
      "subscribed": { "type": ["boolean"] },
      "squash": { "type": "boolean" }
    },
    "required": [
      "id", "iid", "project_id", "title", "description",
      "state", "created_at", "updated_at", "target_branch",
      "source_branch", "upvotes", "downvotes", "author",
      "assignee", "source_project_id", "target_project_id",
      "labels", "work_in_progress", "milestone", "merge_when_build_succeeds",
      "merge_status", "sha", "merge_commit_sha", "user_notes_count",
      "should_remove_source_branch", "force_remove_source_branch",
      "web_url", "subscribed", "squash"
    ],
    "additionalProperties": false
  }
}