summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/codequality_degradation.json
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
}