Version 1
[yaffs-website] / node_modules / phantomjs-prebuilt / node_modules / har-validator / lib / schemas / cookie.json
diff --git a/node_modules/phantomjs-prebuilt/node_modules/har-validator/lib/schemas/cookie.json b/node_modules/phantomjs-prebuilt/node_modules/har-validator/lib/schemas/cookie.json
new file mode 100644 (file)
index 0000000..5768181
--- /dev/null
@@ -0,0 +1,34 @@
+{
+  "type": "object",
+  "required": [
+    "name",
+    "value"
+  ],
+  "properties": {
+    "name": {
+      "type": "string"
+    },
+    "value": {
+      "type": "string"
+    },
+    "path": {
+      "type": "string"
+    },
+    "domain": {
+      "type": "string"
+    },
+    "expires": {
+      "type": ["string", "null"],
+      "format": "date-time"
+    },
+    "httpOnly": {
+      "type": "boolean"
+    },
+    "secure": {
+      "type": "boolean"
+    },
+    "comment": {
+      "type": "string"
+    }
+  }
+}