We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba462ba commit 129fddeCopy full SHA for 129fdde
schemas/v1.0/errors.schema.json
@@ -0,0 +1,41 @@
1
+{
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "title": "Dev Proxy error responses",
4
+ "description": "Error responses for Dev Proxy",
5
+ "type": "object",
6
+ "properties": {
7
+ "responses": {
8
+ "type": "array",
9
+ "items": {
10
11
12
+ "addDynamicRetryAfter": {
13
+ "type": "boolean"
14
+ },
15
+ "body": {
16
+ "type": [
17
+ "object",
18
+ "string"
19
+ ]
20
21
+ "statusCode": {
22
+ "type": "integer"
23
24
+ "headers": {
25
26
+ "additionalProperties": {
27
+ "type": "string"
28
+ }
29
30
31
+ "required": [
32
+ "statusCode",
33
+ "body"
34
35
36
37
38
39
+ "responses"
40
41
+}
0 commit comments