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

14 lines
273 B
JSON

{
"type": "object",
"required": ["name", "size", "jobs"],
"properties": {
"name": { "type": "string" },
"size": { "type": "integer" },
"jobs": {
"type": "array",
"items": { "$ref": "dag_job.json" }
}
},
"additionalProperties": false
}