summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/error_tracking/error.json
blob: df2c02d7d5da01e291a1d0ae8a923893b3e92913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "type": "object",
  "required" : [
    "external_url",
    "last_seen",
    "message",
    "type"
  ],
  "properties" : {
    "id": { "type": "string"},
    "first_seen": { "type": "string", "format": "date-time" },
    "last_seen": { "type": "string", "format": "date-time" },
    "type": { "type": "string" },
    "message": { "type": "string" },
    "culprit": { "type": "string" },
    "count": { "type": "integer"},
    "external_url": { "type": "string" },
    "user_count": { "type": "integer"}
  },
  "additionalProperties": true
}