summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/dag_job_group.json
blob: 69a4e69fc639fa59f95afd407c88f98c4b18bea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "type": "object",
  "required": ["name", "size", "jobs"],
  "properties": {
    "name": { "type": "string" },
    "size": { "type": "integer" },
    "jobs": {
      "type": "array",
      "items": { "$ref": "dag_job.json" }
    }
  },
  "additionalProperties": false
}