summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/dag_job.json
blob: 171ac23ca06a2938fb493f5b31e2f21ed57f25e0 (plain)
1
2
3
4
5
6
7
8
9
10
{
  "type": "object",
  "required": ["name", "scheduling_type"],
  "properties": {
    "name": { "type": "string" },
    "scheduling_type": { "type": ["string", null] },
    "needs": { "type": "array" }
  },
  "additionalProperties": false
}