debian-mirror-gitlab/spec/fixtures/api/schemas/registry/repository.json
2019-03-02 22:35:43 +05:30

34 lines
501 B
JSON

{
"type": "object",
"required" : [
"id",
"name",
"path",
"location",
"created_at"
],
"properties" : {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"location": {
"type": "string"
},
"created_at": {
"type": "date-time"
},
"tags_path": {
"type": "string"
},
"destroy_path": {
"type": "string"
}
},
"additionalProperties": false
}