gitlab-org--gitlab-foss/spec/fixtures/api/schemas/graphql/container_repository_detail...

50 lines
1.1 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", "canDelete"],
"properties": {
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"location": {
"type": "string"
},
"digest": {
"type": "string"
},
"revision": {
"type": "string"
},
"shortRevision": {
"type": "string"
},
"totalSize": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"canDelete": {
"type": "boolean"
}
}
}
}
}
}
}
}