summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/codequality_degradation.json
blob: ac772873daf4fc0cfb3f78a8a54891f80bf1dad2 (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
29
30
{
  "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"
    },
    "engine_name": {
      "type": "string"
    }
  },
  "additionalProperties": false
}