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

codequality_degradation.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: 863b9f0c77e76e247f3dbf1ca4fd8e9490e1069a (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
{
  "type": "object",
  "required": [
    "description",
    "severity",
    "file_path",
    "line"
  ],
  "properties": {
    "description": {
      "type": "string"
    },
    "severity": {
      "type": "string"
    },
    "file_path": {
      "type": "string"
    },
    "line": {
      "type": "integer"
    },
    "web_url": {
      "type": "string"
    }
  },
  "additionalProperties": false
}