Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/har-validator/src/schemas/cacheEntry.json')
-rw-r--r--node_modules/har-validator/src/schemas/cacheEntry.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/node_modules/har-validator/src/schemas/cacheEntry.json b/node_modules/har-validator/src/schemas/cacheEntry.json
new file mode 100644
index 000000000..a397439fd
--- /dev/null
+++ b/node_modules/har-validator/src/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
+ }]
+}