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

virtual_domain.json « pages « internal « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02df69026b0a7663ed2e0610e1474acf9a257156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "type": "object",
  "required": [
    "lookup_paths"
  ],
  "optional": [
    "certificate",
    "key"
  ],
  "properties": {
    "certificate": { "type": ["string", "null"] },
    "key": { "type": ["string", "null"] },
    "lookup_paths": { "type": "array", "items": { "$ref": "lookup_path.json" } }
  },
  "additionalProperties": false
}