summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/diff_viewer.json
blob: ae0fb32d3ac1e1810ac9d707b16c8fbc192af565 (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
{
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": [
        "string"
      ]
    },
    "error": {
      "type": [
        "string",
        "null"
      ]
    },
    "error_message": {
      "type": [
        "string",
        "null"
      ]
    },
    "collapsed": {
      "type": [
        "boolean"
      ]
    }
  },
  "additionalProperties": false
}