-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy path1-0-0
225 lines (225 loc) · 10.5 KB
/
1-0-0
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
{
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
"description": "Schema for page navigation performance entity, based on the PerformanceNavigationTiming interface (see https://w3c.github.io/navigation-timing/)",
"self": {
"vendor": "org.w3",
"name": "PerformanceNavigationTiming",
"format": "jsonschema",
"version": "1-0-0"
},
"type": "object",
"properties": {
"decodedBodySize": {
"type": [ "integer", "null" ],
"maximum": 2147483647,
"minimum": 0,
"description": "A number that is the size (in octets) received from the fetch (HTTP or cache) of the message body, after removing any applied content encoding."
},
"encodedBodySize": {
"type": [ "integer", "null" ],
"maximum": 2147483647,
"minimum": 0,
"description": "A number representing the size (in octets) received from the fetch (HTTP or cache), of the payload body, before removing any applied content encodings."
},
"redirectStart": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": -2147483647,
"description": "A DOMHighResTimeStamp that represents the start time of the fetch which initiates the redirect in milliseconds."
},
"redirectEnd": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": -2147483647,
"description": "A DOMHighResTimeStamp immediately after receiving the last byte of the response of the last redirect in milliseconds."
},
"fetchStart": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": -2147483647,
"description": "A DOMHighResTimeStamp immediately before the browser starts to fetch the resource in milliseconds."
},
"domainLookupStart": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": -2147483647,
"description": "A DOMHighResTimeStamp immediately before the browser starts the domain name lookup for the resource in milliseconds."
},
"domainLookupEnd": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": -2147483647,
"description": "A DOMHighResTimeStamp representing the time immediately after the browser finishes the domain name lookup for the resource in milliseconds."
},
"connectStart": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": -2147483647,
"description": "A DOMHighResTimeStamp immediately before the browser starts to establish the connection to the server to retrieve the resource in milliseconds."
},
"secureConnectionStart": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": -2147483647,
"description": "A DOMHighResTimeStamp immediately before the browser starts the handshake process to secure the current connection in milliseconds."
},
"connectEnd": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": -2147483647,
"description": "A DOMHighResTimeStamp immediately after the browser finishes establishing the connection to the server to retrieve the resource in milliseconds."
},
"requestStart": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": -2147483647,
"description": "A DOMHighResTimeStamp immediately before the browser starts requesting the resource from the server in milliseconds."
},
"responseStart": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": -2147483647,
"description": "A DOMHighResTimeStamp immediately after the browser receives the first byte of the response from the server in milliseconds."
},
"responseEnd": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": -2147483647,
"description": "A DOMHighResTimeStamp immediately after the browser receives the last byte of the resource or immediately before the transport connection is closed in milliseconds, whichever comes first."
},
"unloadEventStart": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": 0,
"description": "A DOMHighResTimeStamp representing the time immediately after the current document's unload event handler starts in milliseconds."
},
"unloadEventEnd": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": 0,
"description": "A DOMHighResTimeStamp representing the time immediately after the current document's unload event handler completes in milliseconds."
},
"domInteractive": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": 0,
"description": "A DOMHighResTimeStamp representing the time immediately before the user agent sets the document's readyState to 'interactive' in milliseconds."
},
"domContentLoadedEventStart": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": 0,
"description": "A DOMHighResTimeStamp representing the time immediately before the current document's DOMContentLoaded event handler starts in milliseconds."
},
"domContentLoadedEventEnd": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": 0,
"description": "A DOMHighResTimeStamp representing the time immediately after the current document's DOMContentLoaded event handler completes in milliseconds."
},
"domComplete": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": 0,
"description": "A DOMHighResTimeStamp representing the time immediately before the user agent sets the document's readyState to 'complete' in milliseconds."
},
"loadEventStart": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": 0,
"description": "A DOMHighResTimeStamp representing the time immediately after the current document's load event handler starts in milliseconds."
},
"loadEventEnd": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": 0,
"description": "A DOMHighResTimeStamp representing the time immediately after the current document's load event handler completes in milliseconds."
},
"entryType": {
"type": [ "string", "null" ],
"maxLength": 128,
"description": "The string 'navigation'."
},
"redirectCount": {
"type": [ "integer", "null" ],
"minimum": 0,
"maximum": 64,
"description": "A number representing the number of redirects since the last non-redirect navigation in the current browsing context."
},
"type": {
"type": [ "string", "null" ],
"maxLength": 32,
"description": "A string representing the navigation type. Either 'navigate', 'reload', 'back_forward' or 'prerender'."
},
"workerStart": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": -2147483647,
"description": "Returns a DOMHighResTimeStamp immediately before dispatching the FetchEvent if a Service Worker thread is already running, or immediately before starting the Service Worker thread if it is not already running. If the resource is not intercepted by a Service Worker the property will always return 0."
},
"nextHopProtocol": {
"type": [ "string", "null" ],
"maxLength": 16,
"description": "A string representing the network protocol used to fetch the resource, as identified by the ALPN Protocol ID (RFC7301)"
},
"transferSize": {
"type": ["integer", "null"],
"maximum": 2147483647,
"minimum": 0,
"description": "A number representing the size (in octets) of the fetched resource. The size includes the response header fields plus the response payload body."
},
"duration": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": 0,
"description": "Returns a timestamp that is the difference between the loadEventEnd and startTime properties."
},
"activationStart": {
"type": [ "number", "null" ],
"maximum": 2147483647,
"minimum": 0,
"description": "If the document is prerendered, activationStart represents the time between when the prerender was started and the document was actually activated."
},
"deliveryType": {
"type": [ "string", "null" ],
"maxLength": 128,
"description": "Expose information about how a resource was delivered e.g. resources which were delivered from the cache."
},
"serverTiming": {
"type": [ "array", "null"],
"items": {
"$ref": "#/definitions/serverTiming",
"description": "PerformanceServerTiming entry"
},
"description": "Array of PerformanceServerTiming entries."
}
},
"definitions": {
"serverTiming": {
"type": "object",
"properties": {
"duration": {
"description": "Duration of the measurement.",
"type": [ "number" , "null" ],
"maximum": 2147483647,
"minimum": 0
},
"name": {
"description": "The name of the measurement.",
"type": "string",
"maxLength": 4096
},
"description": {
"description": "A short description of the measurement.",
"type": [ "string" , "null" ],
"maxLength": 4096
}
},
"required": [
"name"
],
"additionalProperties": false
}
},
"additionalProperties": false
}