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

artifact.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: 9df957b149846546c44ba5650fb4972cb2d7fa04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "type": "object",
  "required": [
    "file_type",
    "size",
    "filename",
    "file_format"
  ],
  "properties": {
    "file_type": { "type": "string"},
    "size": { "type": "integer"},
    "filename": { "type": "string"},
    "file_format": { "type": "string"}
  },
  "additionalProperties": false
}