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

lint_result_entity.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: 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
}