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