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

diff_line.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: 9657004cd2db391f79ffcf19b9be12d336e96633 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "type": "object",
  "required": ["type"],
  "properties": {
    "line_code": { "type": ["string", "null"] },
    "type": { "type": ["string", "null"] },
    "old_line": { "type": ["integer", "null"] },
    "new_line": { "type": ["integer", "null"] },
    "text": { "type": ["string"] },
    "rich_text": { "type": ["string"] },
    "meta_data": { "type": ["object", "null"] },
    "can_receive_suggestion": { "type": "boolean" }
  },
  "additionalProperties": false
}