summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/error_tracking/index.json
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/error_tracking/index.json')
-rw-r--r--spec/fixtures/api/schemas/error_tracking/index.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/error_tracking/index.json b/spec/fixtures/api/schemas/error_tracking/index.json
new file mode 100644
index 00000000000..d3abc29ffa7
--- /dev/null
+++ b/spec/fixtures/api/schemas/error_tracking/index.json
@@ -0,0 +1,15 @@
+{
+ "type": "object",
+ "required": [
+ "external_url",
+ "errors"
+ ],
+ "properties": {
+ "external_url": { "type": ["string", "null"] },
+ "errors": {
+ "type": "array",
+ "items": { "$ref": "error.json" }
+ }
+ },
+ "additionalProperties": false
+}