summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/pipeline_schedule.json
blob: f6346bd0fb6f21c3f45dd5fd975b53ecbeeb333a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
  "type": "object",
  "properties" : {
    "id": { "type": "integer" },
    "description": { "type": "string" },
    "ref": { "type": "string" },
    "cron": { "type": "string" },
    "cron_timezone": { "type": "string" },
    "next_run_at": { "type": "date" },
    "active": { "type": "boolean" },
    "created_at": { "type": "date" },
    "updated_at": { "type": "date" },
    "last_pipeline": { 
      "type": ["object", "null"],
      "properties": {
        "id": { "type": "integer" },
        "sha": { "type": "string" },
        "ref": { "type": "string" },
        "status": { "type": "string" }
      },
      "additionalProperties": false
    },
    "owner": {
      "type": "object",
      "properties": {
        "name": { "type": "string" },
        "username": { "type": "string" },
        "id": { "type": "integer" },
        "state": { "type": "string" },
        "avatar_url": { "type": "uri" },
        "web_url": { "type": "uri" }
      },
      "additionalProperties": false
    }
  },
  "required": [
    "id", "description", "ref", "cron", "cron_timezone", "next_run_at", 
    "active", "created_at", "updated_at", "owner"
  ],
  "additionalProperties": false
}