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