summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/internal/pages/virtual_domain.json
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
}