summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/pages_domain/basic.json
blob: 9bcd191741f55cfe4d60d7d3c3036806c98d5696 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
  "type": "object",
  "properties": {
    "domain": {
      "type": "string"
    },
    "url": {
      "type": "string",
      "format": "uri"
    },
    "project_id": {
      "type": "integer"
    },
    "verified": {
      "type": "boolean"
    },
    "verification_code": {
      "type": [
        "string",
        "null"
      ]
    },
    "enabled_until": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time"
    },
    "auto_ssl_enabled": {
      "type": "boolean"
    },
    "certificate_expiration": {
      "type": "object",
      "properties": {
        "expired": {
          "type": "boolean"
        },
        "expiration": {
          "type": "string"
        }
      },
      "required": [
        "expired",
        "expiration"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "domain",
    "url",
    "project_id",
    "verified",
    "verification_code",
    "enabled_until",
    "auto_ssl_enabled"
  ],
  "additionalProperties": false
}