debian-mirror-gitlab/spec/fixtures/api/schemas/job/build_trace.json
2019-12-21 20:55:43 +05:30

31 lines
760 B
JSON

{
"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" }
}
}
}