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: 1564d4c0a17b3d5bc63538a1c2b6b643ce694b76 (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
}