summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/request/node_modules/har-validator/lib/schemas/cacheEntry.json
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/request/node_modules/har-validator/lib/schemas/cacheEntry.json')
-rw-r--r--deps/npm/node_modules/request/node_modules/har-validator/lib/schemas/cacheEntry.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/deps/npm/node_modules/request/node_modules/har-validator/lib/schemas/cacheEntry.json b/deps/npm/node_modules/request/node_modules/har-validator/lib/schemas/cacheEntry.json
new file mode 100644
index 0000000000..a397439fd9
--- /dev/null
+++ b/deps/npm/node_modules/request/node_modules/har-validator/lib/schemas/cacheEntry.json
@@ -0,0 +1,31 @@
+{
+ "oneOf": [{
+ "type": "object",
+ "optional": true,
+ "required": [
+ "lastAccess",
+ "eTag",
+ "hitCount"
+ ],
+ "properties": {
+ "expires": {
+ "type": "string"
+ },
+ "lastAccess": {
+ "type": "string"
+ },
+ "eTag": {
+ "type": "string"
+ },
+ "hitCount": {
+ "type": "integer"
+ },
+ "comment": {
+ "type": "string"
+ }
+ }
+ }, {
+ "type": null,
+ "additionalProperties": false
+ }]
+}