1{ 2 "type": "object", 3 "required": [ 4 "status", 5 "statusText", 6 "httpVersion", 7 "cookies", 8 "headers", 9 "content", 10 "redirectURL", 11 "headersSize", 12 "bodySize" 13 ], 14 "properties": { 15 "status": { 16 "type": "integer" 17 }, 18 "statusText": { 19 "type": "string" 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 "content": { 37 "$ref": "#content" 38 }, 39 "redirectURL": { 40 "type": "string" 41 }, 42 "headersSize": { 43 "type": "integer" 44 }, 45 "bodySize": { 46 "type": "integer" 47 }, 48 "comment": { 49 "type": "string" 50 } 51 } 52} 53 54