-
Notifications
You must be signed in to change notification settings - Fork 2
/
response.schema.json
49 lines (49 loc) · 935 Bytes
/
response.schema.json
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
{
"title": "htp response",
"type": "object",
"properties": {
"statusCode": {
"type": "number"
},
"statusMessage": {
"type": "string"
},
"httpVersion": {
"type": "string"
},
"headers": {
"type": "object"
},
"network": {
"type": "object",
"properties": {
"remoteAddress" : { "type": "string" },
"remoteFamily" : { "enum": [ "IPv4", "IPv6" ] },
"remotePort" : { "type": "number" },
"localAddress" : { "type": "string" },
"localPort" : { "type": "number" }
},
"required": [
"remoteAddress" ,
"remoteFamily" ,
"remotePort" ,
"localAddress" ,
"localPort"
]
},
"body": {
"type": [ "string", "object", "null" ]
},
"bodyDecompressed": {
"type": "boolean"
},
"bodyBuffer": {
"type": "object"
},
"performance": {
"type": "object"
}
},
"required": ["statusCode", "headers"],
"additionalProperties": false
}