Blame view

node_modules/har-schema/lib/timings.json 647 Bytes
aaac7fed   liuqimichale   add
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
  {
    "$id": "timings.json#",
    "$schema": "http://json-schema.org/draft-06/schema#",
    "required": [
      "send",
      "wait",
      "receive"
    ],
    "properties": {
      "dns": {
        "type": "number",
        "min": -1
      },
      "connect": {
        "type": "number",
        "min": -1
      },
      "blocked": {
        "type": "number",
        "min": -1
      },
      "send": {
        "type": "number",
        "min": -1
      },
      "wait": {
        "type": "number",
        "min": -1
      },
      "receive": {
        "type": "number",
        "min": -1
      },
      "ssl": {
        "type": "number",
        "min": -1
      },
      "comment": {
        "type": "string"
      }
    }
  }