summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/har-validator/lib/schemas/response.json
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/har-validator/lib/schemas/response.json')
-rw-r--r--deps/npm/node_modules/har-validator/lib/schemas/response.json52
1 files changed, 52 insertions, 0 deletions
diff --git a/deps/npm/node_modules/har-validator/lib/schemas/response.json b/deps/npm/node_modules/har-validator/lib/schemas/response.json
new file mode 100644
index 0000000000..de99c55bb9
--- /dev/null
+++ b/deps/npm/node_modules/har-validator/lib/schemas/response.json
@@ -0,0 +1,52 @@
+{
+ "type": "object",
+ "required": [
+ "status",
+ "statusText",
+ "httpVersion",
+ "cookies",
+ "headers",
+ "content",
+ "redirectURL",
+ "headersSize",
+ "bodySize"
+ ],
+ "properties": {
+ "status": {
+ "type": "integer"
+ },
+ "statusText": {
+ "type": "string"
+ },
+ "httpVersion": {
+ "type": "string"
+ },
+ "cookies": {
+ "type": "array",
+ "items": {
+ "$ref": "#cookie"
+ }
+ },
+ "headers": {
+ "type": "array",
+ "items": {
+ "$ref": "#record"
+ }
+ },
+ "content": {
+ "$ref": "#content"
+ },
+ "redirectURL": {
+ "type": "string"
+ },
+ "headersSize": {
+ "type": "integer"
+ },
+ "bodySize": {
+ "type": "integer"
+ },
+ "comment": {
+ "type": "string"
+ }
+ }
+}