summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/test_reports_comparer.json
blob: d7880801c015ff0e20cd428a3cc6ee07ac4c4c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  "type": "object",
  "required" : [
    "status",
    "summary",
    "suites"
  ],
  "properties": {
    "status": { "type": "string" },
    "summary": {
      "type": "object",
      "properties": {
        "total": { "type": "integer" },
        "resolved": { "type": "integer" },
        "failed": { "type": "integer" }
      },
      "required": [
        "total",
        "resolved",
        "failed"
      ]
    },
    "suites": { "type": "array", "items": { "$ref": "test_suite_comparer.json" } }
  },
  "additionalProperties": false
}