• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "$id": "log.json#",
3  "$schema": "http://json-schema.org/draft-06/schema#",
4  "type": "object",
5  "required": [
6    "version",
7    "creator",
8    "entries"
9  ],
10  "properties": {
11    "version": {
12      "type": "string"
13    },
14    "creator": {
15      "$ref": "creator.json#"
16    },
17    "browser": {
18      "$ref": "browser.json#"
19    },
20    "pages": {
21      "type": "array",
22      "items": {
23        "$ref": "page.json#"
24      }
25    },
26    "entries": {
27      "type": "array",
28      "items": {
29        "$ref": "entry.json#"
30      }
31    },
32    "comment": {
33      "type": "string"
34    }
35  }
36}
37