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: 99e57a4c218253916a99e186ed4f1ca4054d74c1 (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
{
  "type": "object",
  "required": [
    "id",
    "title",
    "created_at",
    "expires_at",
    "key",
    "fingerprint_sha256",
    "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" },
    "projects_with_write_access": {
      "type": "array",
      "items": { "$ref": "project/identity.json" }
    }
  },
  "additionalProperties": false
}