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

codequality_mr_diff_report.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: 63e0c68e9cdc652e93964679d0a2a3e905f8739e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "type": "object",
  "description": "The schema used to display codequality report in mr diff",
  "required": ["files"],
  "properties": {
    "patternProperties": {
      ".*.": {
        "type": "array",
        "items": {
          "required": ["line", "description", "severity"],
          "properties": {
            "line": { "type": "integer" },
            "description": { "type": "string" },
            "severity": { "type": "string" }
          },
          "additionalProperties": false
        }
      }
    }
  }
}