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

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