summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/merge_request_noteable.json
blob: 88b0fecc24c6309e89b2730989d60afa8dde9f1f (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
{
  "type": "object",
  "properties" : {
    "merge_params": { "type": ["object", "null"] },
    "state": { "type": "string" },
    "source_branch": { "type": "string" },
    "target_branch": { "type": "string" },
    "diff_head_sha": { "type": "string" },
    "create_note_path": { "type": ["string", "null"] },
    "preview_note_path": { "type": ["string", "null"] },
    "create_issue_to_resolve_discussions_path": { "type": ["string", "null"] },
    "new_blob_path": { "type": ["string", "null"] },
    "can_receive_suggestion": { "type": "boolean" },
    "current_user": {
      "type": "object",
      "required": [
        "can_create_note",
        "can_update"
      ],
      "properties": {
        "can_create_note": { "type": "boolean" },
        "can_update": { "type": "boolean" }
      },
      "additionalProperties": false
    }
  },
  "additionalProperties": false
}