24 lines
619 B
JSON
24 lines
619 B
JSON
{
|
|
"type": "object",
|
|
"required" : [
|
|
"status",
|
|
"name"
|
|
],
|
|
"properties": {
|
|
"status": { "type": "string" },
|
|
"name": { "type": "string" },
|
|
"classname": { "type": "string" },
|
|
"file": { "type": ["string", "null"] },
|
|
"execution_time": { "type": "float" },
|
|
"system_output": { "type": ["string", "null"] },
|
|
"stack_trace": { "type": ["string", "null"] },
|
|
"attachment_url": { "type": ["string", "null"] },
|
|
"recent_failures": {
|
|
"oneOf": [
|
|
{ "type": "null" },
|
|
{ "$ref": "test_case/recent_failures.json" }
|
|
]
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|