debian-mirror-gitlab/spec/fixtures/api/schemas/job/build_trace_line.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
457 B
JSON
Raw Normal View History

2019-12-21 20:55:43 +05:30
{
"description": "Build trace line",
"type": "object",
"required": [
"offset",
"content"
],
"properties": {
2023-03-04 22:38:38 +05:30
"offset": {
"type": "integer"
},
2019-12-21 20:55:43 +05:30
"content": {
"type": "array",
2023-03-04 22:38:38 +05:30
"items": {
"$ref": "./build_trace_line_content.json"
}
},
"section": {
"type": "string"
},
"section_header": {
"type": "boolean"
2019-12-21 20:55:43 +05:30
},
2023-03-04 22:38:38 +05:30
"section_duration": {
"type": "string"
}
2019-12-21 20:55:43 +05:30
}
2023-03-04 22:38:38 +05:30
}