debian-mirror-gitlab/spec/fixtures/api/schemas/job/build_trace_line.json
2023-03-04 22:38:38 +05:30

28 lines
No EOL
457 B
JSON

{
"description": "Build trace line",
"type": "object",
"required": [
"offset",
"content"
],
"properties": {
"offset": {
"type": "integer"
},
"content": {
"type": "array",
"items": {
"$ref": "./build_trace_line_content.json"
}
},
"section": {
"type": "string"
},
"section_header": {
"type": "boolean"
},
"section_duration": {
"type": "string"
}
}
}