summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/packages/package_files.json
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" }
      }
    }
  }
}