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

detail.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: 6ce431a274a0118ab8df10f17f126b8d733a6b69 (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
61
{
  "type": "object",
  "properties": {
    "domain": {
      "type": "string"
    },
    "url": {
      "type": "string",
      "format": "uri"
    },
    "verified": {
      "type": "boolean"
    },
    "verification_code": {
      "type": [
        "string",
        "null"
      ]
    },
    "enabled_until": {
      "type": [
        "string",
        "null"
      ]
    },
    "auto_ssl_enabled": {
      "type": "boolean"
    },
    "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",
    "verified",
    "verification_code",
    "enabled_until",
    "auto_ssl_enabled"
  ],
  "additionalProperties": false
}