gitlab-org--gitlab-foss/app/validators/json_schemas/build_report_result_data_te...

15 lines
408 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Build report result data tests",
"type": "object",
"properties": {
"name": { "type": "string" },
"duration": { "type": "string" },
"failed": { "type": "integer" },
"errored": { "type": "integer" },
"skipped": { "type": "integer" },
"success": { "type": "integer" }
},
"additionalProperties": false
}