source: trip-planner-front/node_modules/har-schema/lib/timings.json@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 647 bytes
Line 
1{
2 "$id": "timings.json#",
3 "$schema": "http://json-schema.org/draft-06/schema#",
4 "required": [
5 "send",
6 "wait",
7 "receive"
8 ],
9 "properties": {
10 "dns": {
11 "type": "number",
12 "min": -1
13 },
14 "connect": {
15 "type": "number",
16 "min": -1
17 },
18 "blocked": {
19 "type": "number",
20 "min": -1
21 },
22 "send": {
23 "type": "number",
24 "min": -1
25 },
26 "wait": {
27 "type": "number",
28 "min": -1
29 },
30 "receive": {
31 "type": "number",
32 "min": -1
33 },
34 "ssl": {
35 "type": "number",
36 "min": -1
37 },
38 "comment": {
39 "type": "string"
40 }
41 }
42}
Note: See TracBrowser for help on using the repository browser.