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

index.json « error_tracking « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3abc29ffa7d1350bcfb3991452676443d430c83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "type": "object",
  "required": [
    "external_url",
    "errors"
  ],
  "properties": {
    "external_url": { "type": ["string", "null"] },
    "errors": {
      "type": "array",
      "items": { "$ref": "error.json" }
    }
  },
  "additionalProperties": false
}