summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/merge_request.json
blob: 4afbb87453e07daa4d7a8241ad0a22eac4a6a989 (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
92
93
94
95
96
97
98
{
  "type": "object",
  "properties" : {
    "id": { "type": "integer" },
    "iid": { "type": "integer" },
    "author_id": { "type": "integer" },
    "description": { "type": ["string", "null"] },
    "lock_version": { "type": ["string", "null"] },
    "milestone_id": { "type": ["string", "null"] },
    "position": { "type": "integer" },
    "state": { "type": "string" },
    "title": { "type": "string" },
    "updated_by_id": { "type": ["string", "null"] },
    "created_at": { "type": "string" },
    "updated_at": { "type": "string" },
    "deleted_at": { "type": ["string", "null"] },
    "time_estimate": { "type": "integer" },
    "total_time_spent": { "type": "integer" },
    "human_time_estimate": { "type": ["integer", "null"] },
    "human_total_time_spent": { "type": ["integer", "null"] },
    "in_progress_merge_commit_sha": { "type": ["string", "null"] },
    "locked_at": { "type": ["string", "null"] },
    "merge_error": { "type": ["string", "null"] },
    "merge_commit_sha": { "type": ["string", "null"] },
    "merge_params": { "type": ["object", "null"] },
    "merge_status": { "type": "string" },
    "merge_user_id": { "type": ["integer", "null"] },
    "merge_when_pipeline_succeeds": { "type": "boolean" },
    "source_branch": { "type": "string" },
    "source_project_id": { "type": "integer" },
    "target_branch": { "type": "string" },
    "target_project_id": { "type": "integer" },
    "merge_event": { "type": ["object", "null"] },
    "closed_event": { "type": ["object", "null"] },
    "author": { "type": ["object", "null"] },
    "merge_user": { "type": ["object", "null"] },
    "diff_head_sha": { "type": ["string", "null"] },
    "diff_head_commit_short_id": { "type": ["string", "null"] },
    "merge_commit_message": { "type": ["string", "null"] },
    "pipeline": { "type": ["object", "null"] },
    "work_in_progress": { "type": "boolean" },
    "source_branch_exists": { "type": "boolean" },
    "mergeable_discussions_state": { "type": "boolean" },
    "conflicts_can_be_resolved_in_ui": { "type": "boolean" },
    "branch_missing": { "type": "boolean" },
    "has_conflicts": { "type": "boolean" },
    "can_be_merged": { "type": "boolean" },
    "project_archived": { "type": "boolean" },
    "only_allow_merge_if_pipeline_succeeds": { "type": "boolean" },
    "has_ci": { "type": "boolean" },
    "ci_status": { "type": ["string", "null"] },
    "issues_links": {
      "type": "object",
      "required": ["closing", "mentioned_but_not_closing", "assign_to_closing"],
      "properties" : {
        "closing": { "type": "string" },
        "mentioned_but_not_closing": { "type": "string" },
        "assign_to_closing": { "type": ["string", "null"] }
      },
      "additionalProperties": false
    },
    "source_branch_with_namespace_link": { "type": "string" },
    "current_user": {
      "type": "object",
      "required": [
        "can_remove_source_branch",
        "can_revert_on_current_merge_request",
        "can_cherry_pick_on_current_merge_request"
      ],
      "properties": {
        "can_remove_source_branch": { "type": "boolean" },
        "can_revert_on_current_merge_request": { "type": ["boolean", "null"] },
        "can_cherry_pick_on_current_merge_request": { "type": ["boolean", "null"] }
      },
      "additionalProperties": false
    },
    "target_branch_commits_path": { "type": "string" },
    "source_branch_path": { "type": "string" },
    "conflict_resolution_path": { "type": ["string", "null"] },
    "cancel_merge_when_pipeline_succeeds_path": { "type": "string" },
    "create_issue_to_resolve_discussions_path": { "type": "string" },
    "merge_path": { "type": "string" },
    "cherry_pick_in_fork_path": { "type": ["string", "null"] },
    "revert_in_fork_path": { "type": ["string", "null"] },
    "email_patches_path": { "type": "string" },
    "plain_diff_path": { "type": "string" },
    "status_path": { "type": "string" },
    "new_blob_path": { "type": "string" },
    "merge_check_path": { "type": "string" },
    "ci_environments_status_path": { "type": "string" },
    "merge_commit_message_with_description": { "type": "string" },
    "diverged_commits_count": { "type": "integer" },
    "commit_change_content_path": { "type": "string" },
    "remove_wip_path": { "type": "string" },
    "commits_count": { "type": "integer" }
  },
  "additionalProperties": false
}