summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/registry/repository.json
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/registry/repository.json')
-rw-r--r--spec/fixtures/api/schemas/registry/repository.json9
1 files changed, 8 insertions, 1 deletions
diff --git a/spec/fixtures/api/schemas/registry/repository.json b/spec/fixtures/api/schemas/registry/repository.json
index 4175642eb00..e0fd4620c43 100644
--- a/spec/fixtures/api/schemas/registry/repository.json
+++ b/spec/fixtures/api/schemas/registry/repository.json
@@ -2,20 +2,27 @@
"type": "object",
"required" : [
"id",
+ "name",
"path",
"location",
- "tags_path"
+ "created_at"
],
"properties" : {
"id": {
"type": "integer"
},
+ "name": {
+ "type": "string"
+ },
"path": {
"type": "string"
},
"location": {
"type": "string"
},
+ "created_at": {
+ "type": "date-time"
+ },
"tags_path": {
"type": "string"
},