summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/pages_domain/basic.json
blob: 4ba6422406c36296bcc5e3876bdd0f637bbf38aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "type": "object",
  "properties": {
    "domain": { "type": "string" },
    "url": { "type": "uri" },
    "certificate_expiration": {
      "type": "object",
      "properties": {
        "expired": { "type": "boolean" },
        "expiration": { "type": "string" }
      },
      "required": ["expired", "expiration"],
      "additionalProperties": false
    }
  },
  "required": ["domain", "url"],
  "additionalProperties": false
}