summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/test_case.json
blob: c9ba1f3ad18d91e29b6517af3fb5287c6deafbb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "type": "object",
  "required" : [
    "status",
    "name"
  ],
  "properties": {
    "status": { "type": "string" },
    "name": { "type": "string" },
    "execution_time": { "type": "float" },
    "system_output": { "type": ["string", "null"] },
    "stack_trace":  { "type": ["string", "null"] }
  },
  "additionalProperties": false
}