summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/job/build_trace.json
blob: becd881ea572c31cb89e6c1e7e0501d8c0b15369 (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
{
  "description": "Build trace",
  "type": "object",
  "required": [
    "id",
    "status",
    "complete",
    "state",
    "append",
    "truncated",
    "offset",
    "size",
    "total"
  ],
  "properties": {
    "id": { "type": "integer" },
    "status": { "type": "string" },
    "complete": { "type": "boolean" },
    "state": { "type": ["string", "null"] },
    "append": { "type": ["boolean", "null"] },
    "truncated": { "type": ["boolean", "null"] },
    "offset": { "type": ["integer", "null"] },
    "size": { "type": ["integer", "null"] },
    "total": { "type": ["integer", "null"] },
    "html": { "type": ["string", "null"] },
    "lines": {
      "type": ["array", "null"],
      "items": { "$ref": "./build_trace_line.json" }
    }
  }
}