summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/pages_domains.json
blob: 0de1d0f1228db4b7a29c53aedca4e167ac322cd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "domain": { "type": "string" },
      "url": { "type": "uri" },
      "certificate": {
        "type": "object",
        "properties": {
          "subject": { "type": "string" },
          "expired": { "type": "boolean" },
          "certificate": { "type": "string" },
          "certificate_text": { "type": "string" }
        },
        "required": ["subject", "expired"],
        "additionalProperties": false
      }
    },
    "required": ["domain", "url"],
    "additionalProperties": false
  }
}