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

package_files.json « packages « 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: 93b6dcde0801b3658f6149de1b81cfdd222e504f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "type": "array",
  "items": {
    "type": "object",
    "required" : ["id", "package_id", "file_name"],
    "properties" : {
      "id": { "type": "integer" },
      "package_id": { "type": "integer" },
      "file_name": { "type": "string" },
      "file_sha1": { "type": "string" },
      "pipelines": {
        "items": { "$ref": "../pipeline.json" }
      }
    }
  }
}