43 lines
883 B
JSON
43 lines
883 B
JSON
{
|
|
"type": "object",
|
|
"required": ["id", "name", "path", "location", "createdAt", "updatedAt", "tagsCount", "canDelete", "expirationPolicyCleanupStatus", "project"],
|
|
"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"]
|
|
},
|
|
"project": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
}
|