summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/accessibility_error.json
blob: 3ea8483550556f30011955b5293287a3bf4eb884 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
  "type": "object",
  "required": [
    "code",
    "type",
    "type_code",
    "message",
    "context",
    "selector",
    "runner",
    "runner_extras"
  ],
  "properties": {
    "code": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "type_code": {
      "type": "integer"
    },
    "message": {
      "type": "string"
    },
    "context": {
      "type": "string"
    },
    "selector": {
      "type": "string"
    },
    "runner": {
      "type": "string"
    },
    "runner_extras": {
      "type": ["object", "null"]
    }
  },
  "additionalProperties": false
}