summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/packages/collection_package.json
blob: 109b0e596351d77b9ff8d6740718f54cccfa3560 (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
{
  "type": "object",
  "required": [
    "name",
    "version",
    "package_type",
    "_links"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "package_type": {
      "type": "string"
    },
    "_links": {
      "type": "object",
      "required": [
        "web_path"
      ],
      "properties": {
        "details": {
          "type": "string"
        }
      }
    },
    "created_at": {
      "type": "string"
    }
  }
}