Initial commit
[yaffs-website] / node_modules / har-schema / lib / request.json
1 {
2   "id": "request.json#",
3   "type": "object",
4   "required": [
5     "method",
6     "url",
7     "httpVersion",
8     "cookies",
9     "headers",
10     "queryString",
11     "headersSize",
12     "bodySize"
13   ],
14   "properties": {
15     "method": {
16       "type": "string"
17     },
18     "url": {
19       "type": "string",
20       "format": "uri"
21     },
22     "httpVersion": {
23       "type": "string"
24     },
25     "cookies": {
26       "type": "array",
27       "items": {
28         "$ref": "cookie.json#"
29       }
30     },
31     "headers": {
32       "type": "array",
33       "items": {
34         "$ref": "header.json#"
35       }
36     },
37     "queryString": {
38       "type": "array",
39       "items": {
40         "$ref": "query.json#"
41       }
42     },
43     "postData": {
44       "$ref": "postData.json#"
45     },
46     "headersSize": {
47       "type": "integer"
48     },
49     "bodySize": {
50       "type": "integer"
51     },
52     "comment": {
53       "type": "string"
54     }
55   }
56 }