debian-mirror-gitlab/spec/fixtures/api/schemas/graphql/container_repository_details.json
2021-01-29 00:20:46 +05:30

49 lines
1.2 KiB
JSON

{
"type": "object",
"required": ["tags"],
"allOf": [{ "$ref": "./container_repository.json" }],
"properties": {
"tags": {
"type": "object",
"required": ["nodes"],
"properties": {
"nodes": {
"type": "array",
"items": {
"type": "object",
"required": ["name", "path", "location", "digest", "revision", "shortRevision", "totalSize", "createdAt", "canDelete"],
"properties": {
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"location": {
"type": "string"
},
"digest": {
"type": "string"
},
"revision": {
"type": "string"
},
"shortRevision": {
"type": "string"
},
"totalSize": {
"type": "integer"
},
"createdAt": {
"type": "string"
},
"canDelete": {
"type": "boolean"
}
}
}
}
}
}
}
}