Welcome to mirror list, hosted at ThFree Co, Russian Federation.

basic.json « pages_domain « v4 « public_api « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66d4be529b1ba49bd23791069786ad68bd6d30e9 (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": "object",
  "properties": {
    "domain": { "type": "string" },
    "url": { "type": "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
}