Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
81151 views
1
{
2
"type": "object",
3
"optional": true,
4
"required": [
5
"startedDateTime",
6
"time",
7
"request",
8
"response",
9
"cache",
10
"timings"
11
],
12
"properties": {
13
"pageref": {
14
"type": "string"
15
},
16
"startedDateTime": {
17
"type": "string",
18
"format": "date-time",
19
"pattern": "^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))"
20
},
21
"time": {
22
"type": "number",
23
"min": 0
24
},
25
"request": {
26
"$ref": "#request"
27
},
28
"response": {
29
"$ref": "#response"
30
},
31
"cache": {
32
"$ref": "#cache"
33
},
34
"timings": {
35
"$ref": "#timings"
36
},
37
"serverIPAddress": {
38
"type": "string",
39
"format": "ipv4"
40
},
41
"connection": {
42
"type": "string"
43
},
44
"comment": {
45
"type": "string"
46
}
47
}
48
}
49
50