forked from dotnet/dev-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmockrequestplugin.mockfile.schema.json
More file actions
62 lines (62 loc) · 1.25 KB
/
Copy pathmockrequestplugin.mockfile.schema.json
File metadata and controls
62 lines (62 loc) · 1.25 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Dev Proxy MockRequestPlugin mocks",
"description": "Mock request for the Dev Proxy MockRequestPlugin",
"type": "object",
"properties": {
"$schema": {
"type": "string"
},
"request": {
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri"
},
"method": {
"type": "string",
"enum": [
"GET",
"POST",
"PUT",
"PATCH",
"DELETE",
"HEAD",
"OPTIONS",
"CONNECT",
"TRACE"
]
},
"body": {
"type": ["object", "string"]
},
"headers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"name",
"value"
]
}
}
},
"required": [
"url"
]
}
},
"required": [
"request"
],
"additionalProperties": false
}