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