Network.Request
HTTP request data.
{
"id": "Request",
"type": "object",
"description": "HTTP request data.",
"properties": [
{
"name": "url",
"type": "string",
"description": "Request URL."
},
{
"name": "method",
"type": "string",
"description": "HTTP request method."
},
{
"name": "headers",
"$ref": "Headers",
"description": "HTTP request headers."
},
{
"name": "postData",
"type": "string",
"optional": true,
"description": "HTTP POST request data."
},
{
"name": "mixedContentType",
"$ref": "Security.MixedContentType",
"optional": true,
"description": "The mixed content type of the request."
},
{
"name": "initialPriority",
"$ref": "ResourcePriority",
"description": "Priority of the resource request at the time request is sent."
},
{
"name": "referrerPolicy",
"type": "string",
"enum": [
"unsafe-url",
"no-referrer-when-downgrade",
"no-referrer",
"origin",
"origin-when-cross-origin",
"same-origin",
"strict-origin",
"strict-origin-when-cross-origin"
],
"description": "The referrer policy of the request, as defined in https://www.w3.org/TR/referrer-policy/"
},
{
"name": "isLinkPreload",
"type": "boolean",
"optional": true,
"description": "Whether is loaded via link preload."
}
]
}