source: trip-planner-front/node_modules/har-schema/lib/page.json@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 661 bytes
Line 
1{
2 "$id": "page.json#",
3 "$schema": "http://json-schema.org/draft-06/schema#",
4 "type": "object",
5 "optional": true,
6 "required": [
7 "startedDateTime",
8 "id",
9 "title",
10 "pageTimings"
11 ],
12 "properties": {
13 "startedDateTime": {
14 "type": "string",
15 "format": "date-time",
16 "pattern": "^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))"
17 },
18 "id": {
19 "type": "string",
20 "unique": true
21 },
22 "title": {
23 "type": "string"
24 },
25 "pageTimings": {
26 "$ref": "pageTimings.json#"
27 },
28 "comment": {
29 "type": "string"
30 }
31 }
32}
Note: See TracBrowser for help on using the repository browser.