debian-mirror-gitlab/spec/fixtures/api/schemas/graphql/container_repository.json

44 lines
883 B
JSON
Raw Normal View History

2021-01-29 00:20:46 +05:30
{
"type": "object",
2021-02-22 17:27:13 +05:30
"required": ["id", "name", "path", "location", "createdAt", "updatedAt", "tagsCount", "canDelete", "expirationPolicyCleanupStatus", "project"],
2021-01-29 00:20:46 +05:30
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"location": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"expirationPolicyStartedAt": {
"type": ["string", "null"]
},
"status": {
"type": ["string", "null"]
},
"tagsCount": {
"type": "integer"
},
"canDelete": {
"type": "boolean"
},
"expirationPolicyCleanupStatus": {
"type": "string",
"enum": ["UNSCHEDULED", "SCHEDULED", "UNFINISHED", "ONGOING"]
2021-02-22 17:27:13 +05:30
},
"project": {
"type": "object"
2021-01-29 00:20:46 +05:30
}
}
}