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

deploy_key.json « 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: 4f8b5c8422e83aa2dc26f6ed62291c71823fdc0f (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
{
  "type": "object",
  "required": [
    "id",
    "title",
    "created_at",
    "expires_at",
    "key",
    "fingerprint_sha256",
    "usage_type",
    "projects_with_write_access"
  ],
  "properties": {
    "id": {
      "type": "integer"
    },
    "title": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "expires_at": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time"
    },
    "key": {
      "type": "string"
    },
    "fingerprint": {
      "type": "string"
    },
    "fingerprint_sha256": {
      "type": "string"
    },
    "usage_type": {
      "type": "string",
      "enum": [
        "auth",
        "signing",
        "auth_and_signing"
      ]
    },
    "projects_with_write_access": {
      "type": "array",
      "items": {
        "$ref": "project/identity.json"
      }
    }
  },
  "additionalProperties": false
}