summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/registry/repository.json
blob: d0a068b65a78c3b9089f596ba23ddbac1b69775f (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
35
36
37
38
{
  "type": "object",
  "required" : [
    "id",
    "name",
    "path",
    "location",
    "created_at"
  ],
  "properties" : {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "project_id": {
      "type": "integer"
    },
    "location": {
      "type": "string"
    },
    "created_at": {
      "type": "date-time"
    },
    "tags_path": {
      "type": "string"
    },
    "destroy_path": {
      "type": "string"
    },
    "tags": { "$ref": "tags.json" }
  },
  "additionalProperties": false
}