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