Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-20 18:07:34 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-20 18:07:34 +0300
commit8b61452138ecc511b52cd49be4ee6b8a80390c50 (patch)
tree122b817432c2a0f0e23767bd95791a89b20540c0 /spec/fixtures/api
parentf864f8a7aafa45b0e4c04e4312f89da4b1227c0f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/fixtures/api')
-rw-r--r--spec/fixtures/api/schemas/error_tracking/error_detailed.json34
1 files changed, 25 insertions, 9 deletions
diff --git a/spec/fixtures/api/schemas/error_tracking/error_detailed.json b/spec/fixtures/api/schemas/error_tracking/error_detailed.json
index 2a1cd2c03e0..9a6797bf3c7 100644
--- a/spec/fixtures/api/schemas/error_tracking/error_detailed.json
+++ b/spec/fixtures/api/schemas/error_tracking/error_detailed.json
@@ -5,6 +5,7 @@
"external_base_url",
"last_seen",
"message",
+ "tags",
"type",
"title",
"project_id",
@@ -20,23 +21,38 @@
"last_release_short_version"
],
"properties" : {
- "id": { "type": "string"},
+ "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"},
+ "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"},
+ "tags": {
+ "type": "object",
+ "required" : [
+ "level",
+ "logger"
+ ],
+ "properties": {
+ "level": {
+ "type": "string"
+ },
+ "logger": {
+ "type": "string"
+ }
+ }
+ },
+ "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" },
"gitlab_issue": { "type": ["string", "null"] },
"first_release_last_commit": { "type": ["string", "null"] },
"last_release_last_commit": { "type": ["string", "null"] },