summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/lint_result_entity.json
blob: 502e1dac1ac9dc78a154c6867ff81884d7dc1e44 (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
{
  "type": "object",
  "required": ["valid", "errors", "jobs", "warnings"],
  "properties": {
    "errors": {
      "type": "array",
      "items": { "type": "string" }
    },
    "warnings": {
      "type": "array",
      "items": { "type": "string" }
    },
    "valid": {
      "type": "boolean"
    },
    "jobs": {
      "type": ["array", null],
      "items": {
        "type": "object",
        "$ref": "lint_job_entity.json"
      }
    }
  },
  "additionalProperties": false
}