forked from jarrodek/ChromeRestClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog.json
More file actions
43 lines (43 loc) · 1.42 KB
/
Copy pathlog.json
File metadata and controls
43 lines (43 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"id": "https://advancedrestclient.com/schemas/har/log.json",
"title": "The log entry",
"description": "This object represents the root of exported data.",
"type": "object",
"required": [
"version",
"creator",
"entries"
],
"properties": {
"version": {
"type": "string",
"description": "Version number of the format. If empty, string \"1.1\" is assumed by default."
},
"creator": {
"$ref": "creator.json",
"description": "Name and version info of the log creator application."
},
"browser": {
"$ref": "creator.json",
"description": "Name and version info of used browser."
},
"pages": {
"type": "array",
"description": "List of all exported (tracked) pages. Leave out this field if the application does not support grouping by pages.",
"items": {
"$ref": "page.json"
}
},
"entries": {
"type": "array",
"description": "This object represents an array with all exported HTTP requests. Sorting entries by startedDateTime (starting from the oldest) is preferred way how to export data since it can make importing faster. However the reader application should always make sure the array is sorted (if required for the import).",
"items": {
"$ref": "entry.json"
}
},
"comment": {
"type": "string",
"description": "A comment provided by the user or the application."
}
}
}