summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/error_tracking/error_detailed.json
blob: 40d6773f0e630cac38b4da4476ce639a25201dd2 (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
41
42
43
44
45
{
  "type": "object",
  "required" : [
    "external_url",
    "external_base_url",
    "last_seen",
    "message",
    "type",
    "title",
    "project_id",
    "project_name",
    "project_slug",
    "short_id",
    "status",
    "frequency",
    "first_release_last_commit",
    "last_release_last_commit",
    "first_release_short_version",
    "last_release_short_version"
  ],
  "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" },
    "external_base_url": { "type": "string" },
    "user_count": { "type": "integer"},
    "title": { "type": "string"},
    "project_id": { "type": "string"},
    "project_name": { "type": "string"},
    "project_slug": { "type": "string"},
    "short_id": { "type": "string"},
    "status": { "type": "string"},
    "frequency": { "type": "array"},
    "first_release_last_commit": { "type": ["string", "null"] },
    "last_release_last_commit": { "type": ["string", "null"] },
    "first_release_short_version": { "type": ["string", "null"] },
    "last_release_short_version": { "type": ["string", "null"] }
  },
  "additionalProperties": false
}