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

tag.json « registry « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3667f42136dc74b355560101b1a6ff944f7708db (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
{
  "type": "object",
  "required" : [
    "name",
    "path",
    "location"
  ],
  "properties" : {
    "name": {
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "location": {
      "type": "string"
    },
    "digest": {
      "type": "string"
    },
    "revision": {
      "type": "string"
    },
    "short_revision": {
      "type": "string",
      "minLength": 9,
      "maxLength": 9
    },
    "total_size": {
      "type": "integer"
    },
    "created_at":  { "type": "string", "format": "date-time" },
    "destroy_path": {
      "type": "string"
    }
  },
  "additionalProperties": false
}