aboutsummaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/node_modules/har-schema/lib/timings.json
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/deps/npm/node_modules/har-schema/lib/timings.json')
-rw-r--r--deps/node/deps/npm/node_modules/har-schema/lib/timings.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/deps/node/deps/npm/node_modules/har-schema/lib/timings.json b/deps/node/deps/npm/node_modules/har-schema/lib/timings.json
new file mode 100644
index 00000000..5fe7dc7a
--- /dev/null
+++ b/deps/node/deps/npm/node_modules/har-schema/lib/timings.json
@@ -0,0 +1,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"
+ }
+ }
+}