summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/packages/group_package.json
blob: f18e314a28726e6d28be0a5bc7c23275f02208e7 (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
{
  "type": "object",
  "required": ["name", "version", "package_type", "_links", "project_id", "project_path"],
  "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"
    },
    "project_id": {
      "type": "integer"
    },
    "project_path": {
      "type": "string"
    }
  }
}