summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/error_tracking/index.json
blob: d3abc29ffa7d1350bcfb3991452676443d430c83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "type": "object",
  "required": [
    "external_url",
    "errors"
  ],
  "properties": {
    "external_url": { "type": ["string", "null"] },
    "errors": {
      "type": "array",
      "items": { "$ref": "error.json" }
    }
  },
  "additionalProperties": false
}