Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_case.json « entities « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0dd3c5d472fbe7285183b3465d070fb28c948094 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "type": "object",
  "required" : [
    "status",
    "name"
  ],
  "properties": {
    "status": { "type": "string" },
    "name": { "type": "string" },
    "classname": { "type": "string" },
    "execution_time": { "type": "float" },
    "system_output": { "type": ["string", "null"] },
    "stack_trace":  { "type": ["string", "null"] },
    "attachment_url":  { "type": ["string", "null"] }
  },
  "additionalProperties": false
}