summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/error_tracking/error.json
diff options
context:
space:
mode:
authorReuben Pereira <rpereira@gitlab.com>2019-01-09 21:04:27 +0000
committerKamil TrzciƄski <ayufan@ayufan.eu>2019-01-09 21:04:27 +0000
commitd69074fc722351fef313b09255a7e734c01618ac (patch)
treec2e9c2c15bd87eac4673428be687676167f1c1f0 /spec/fixtures/api/schemas/error_tracking/error.json
parent47698eec4086b82047a677e218a5299f73c46109 (diff)
downloadgitlab-ce-d69074fc722351fef313b09255a7e734c01618ac.tar.gz
Service for calling Sentry issues api
Diffstat (limited to 'spec/fixtures/api/schemas/error_tracking/error.json')
-rw-r--r--spec/fixtures/api/schemas/error_tracking/error.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/error_tracking/error.json b/spec/fixtures/api/schemas/error_tracking/error.json
new file mode 100644
index 00000000000..df2c02d7d5d
--- /dev/null
+++ b/spec/fixtures/api/schemas/error_tracking/error.json
@@ -0,0 +1,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
+}