Version 1
[yaffs-website] / node_modules / phantomjs-prebuilt / node_modules / har-validator / lib / schemas / response.json
diff --git a/node_modules/phantomjs-prebuilt/node_modules/har-validator/lib/schemas/response.json b/node_modules/phantomjs-prebuilt/node_modules/har-validator/lib/schemas/response.json
new file mode 100644 (file)
index 0000000..de99c55
--- /dev/null
@@ -0,0 +1,52 @@
+{
+  "type": "object",
+  "required": [
+    "status",
+    "statusText",
+    "httpVersion",
+    "cookies",
+    "headers",
+    "content",
+    "redirectURL",
+    "headersSize",
+    "bodySize"
+  ],
+  "properties": {
+    "status": {
+      "type": "integer"
+    },
+    "statusText": {
+      "type": "string"
+    },
+    "httpVersion": {
+      "type": "string"
+    },
+    "cookies": {
+      "type": "array",
+      "items": {
+        "$ref": "#cookie"
+      }
+    },
+    "headers": {
+      "type": "array",
+      "items": {
+        "$ref": "#record"
+      }
+    },
+    "content": {
+      "$ref": "#content"
+    },
+    "redirectURL": {
+      "type": "string"
+    },
+    "headersSize": {
+      "type": "integer"
+    },
+    "bodySize": {
+      "type": "integer"
+    },
+    "comment": {
+      "type": "string"
+    }
+  }
+}