gitlab-org--gitlab-foss/spec/fixtures/api/schemas/entities/downloadable_artifact.json

20 lines
443 B
JSON

{
"type": "object",
"required": ["artifacts"],
"properties": {
"artifacts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"expire_at": { "type": ["string", "null"], "format": "date-time" },
"expired": { "type": "boolean" },
"path": { "type": "string" }
}
}
}
},
"additionalProperties": false
}