summaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/node_modules/har-schema/lib/page.json
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/deps/npm/node_modules/har-schema/lib/page.json')
-rw-r--r--deps/node/deps/npm/node_modules/har-schema/lib/page.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/deps/node/deps/npm/node_modules/har-schema/lib/page.json b/deps/node/deps/npm/node_modules/har-schema/lib/page.json
new file mode 100644
index 00000000..e24a3cee
--- /dev/null
+++ b/deps/node/deps/npm/node_modules/har-schema/lib/page.json
@@ -0,0 +1,32 @@
+{
+ "$id": "page.json#",
+ "$schema": "http://json-schema.org/draft-06/schema#",
+ "type": "object",
+ "optional": true,
+ "required": [
+ "startedDateTime",
+ "id",
+ "title",
+ "pageTimings"
+ ],
+ "properties": {
+ "startedDateTime": {
+ "type": "string",
+ "format": "date-time",
+ "pattern": "^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))"
+ },
+ "id": {
+ "type": "string",
+ "unique": true
+ },
+ "title": {
+ "type": "string"
+ },
+ "pageTimings": {
+ "$ref": "pageTimings.json#"
+ },
+ "comment": {
+ "type": "string"
+ }
+ }
+}