{
  "log": {
    "version": "1.2",
    "creator": {
      "name": "Novus Examples HAR writer",
      "version": "1.2",
      "comment": "HAR 1.2 - de-facto format from an abandoned W3C editorial draft (2012); never published as a W3C Recommendation"
    },
    "browser": {
      "name": "Sample Browser",
      "version": "126.0"
    },
    "pages": [
      {
        "startedDateTime": "2026-08-07T09:14:22.031Z",
        "id": "page_1",
        "title": "https://www.example.com/cart",
        "pageTimings": {
          "onContentLoad": 214.5,
          "onLoad": 388.9
        }
      }
    ],
    "entries": [
      {
        "pageref": "page_1",
        "startedDateTime": "2026-08-07T09:14:22.031Z",
        "time": 51.4,
        "request": {
          "method": "GET",
          "url": "https://api.example.com/v1/cart",
          "httpVersion": "HTTP/1.1",
          "cookies": [],
          "headers": [
            {
              "name": "Host",
              "value": "api.example.com"
            },
            {
              "name": "User-Agent",
              "value": "Mozilla/5.0 (X11; Linux x86_64) NovusSampleAgent/1.0"
            },
            {
              "name": "Accept",
              "value": "application/json"
            },
            {
              "name": "Authorization",
              "value": "Bearer SAMPLE-ACCESS-TOKEN-NOT-A-REAL-CREDENTIAL"
            }
          ],
          "queryString": [],
          "headersSize": 212,
          "bodySize": 0
        },
        "response": {
          "status": 200,
          "statusText": "OK",
          "httpVersion": "HTTP/1.1",
          "cookies": [],
          "headers": [
            {
              "name": "Date",
              "value": "Fri, 07 Aug 2026 09:14:22 GMT"
            },
            {
              "name": "Content-Type",
              "value": "application/json"
            },
            {
              "name": "X-Request-Id",
              "value": "SAMPLE-REQ-0001"
            }
          ],
          "content": {
            "size": 45,
            "mimeType": "application/json",
            "text": "{\"cartId\": \"c_1001\", \"items\": [], \"total\": 0}"
          },
          "redirectURL": "",
          "headersSize": 124,
          "bodySize": 45
        },
        "cache": {},
        "timings": {
          "blocked": 0.3,
          "dns": 1.1,
          "connect": 9.4,
          "send": 0.4,
          "wait": 38.2,
          "receive": 2.0,
          "ssl": 5.9
        },
        "serverIPAddress": "203.0.113.40",
        "connection": "20101"
      },
      {
        "pageref": "page_1",
        "startedDateTime": "2026-08-07T09:14:22.091Z",
        "time": 75.7,
        "request": {
          "method": "POST",
          "url": "https://api.example.com/v1/cart/items",
          "httpVersion": "HTTP/1.1",
          "cookies": [],
          "headers": [
            {
              "name": "Host",
              "value": "api.example.com"
            },
            {
              "name": "User-Agent",
              "value": "Mozilla/5.0 (X11; Linux x86_64) NovusSampleAgent/1.0"
            },
            {
              "name": "Content-Type",
              "value": "application/json"
            },
            {
              "name": "Authorization",
              "value": "Bearer SAMPLE-ACCESS-TOKEN-NOT-A-REAL-CREDENTIAL"
            },
            {
              "name": "X-CSRF-Token",
              "value": "SAMPLE-CSRF-TOKEN-0000"
            }
          ],
          "queryString": [],
          "headersSize": 256,
          "bodySize": 28,
          "postData": {
            "mimeType": "application/json",
            "text": "{\"sku\": \"NX-1042\", \"qty\": 2}"
          }
        },
        "response": {
          "status": 201,
          "statusText": "Created",
          "httpVersion": "HTTP/1.1",
          "cookies": [],
          "headers": [
            {
              "name": "Date",
              "value": "Fri, 07 Aug 2026 09:14:22 GMT"
            },
            {
              "name": "Content-Type",
              "value": "application/json"
            }
          ],
          "content": {
            "size": 77,
            "mimeType": "application/json",
            "text": "{\"cartId\": \"c_1001\", \"items\": [{\"sku\": \"NX-1042\", \"qty\": 2}], \"total\": 25.98}"
          },
          "redirectURL": "",
          "headersSize": 93,
          "bodySize": 77
        },
        "cache": {},
        "timings": {
          "blocked": 0.3,
          "dns": 0.0,
          "connect": 0.0,
          "send": 0.9,
          "wait": 71.4,
          "receive": 3.1
        },
        "serverIPAddress": "203.0.113.40",
        "connection": "20101"
      },
      {
        "pageref": "page_1",
        "startedDateTime": "2026-08-07T09:14:22.191Z",
        "time": 48.0,
        "request": {
          "method": "PUT",
          "url": "https://api.example.com/v1/cart/items/NX-1042",
          "httpVersion": "HTTP/1.1",
          "cookies": [],
          "headers": [
            {
              "name": "Host",
              "value": "api.example.com"
            },
            {
              "name": "User-Agent",
              "value": "Mozilla/5.0 (X11; Linux x86_64) NovusSampleAgent/1.0"
            },
            {
              "name": "Content-Type",
              "value": "application/json"
            },
            {
              "name": "Authorization",
              "value": "Bearer SAMPLE-ACCESS-TOKEN-NOT-A-REAL-CREDENTIAL"
            }
          ],
          "queryString": [],
          "headersSize": 218,
          "bodySize": 10,
          "postData": {
            "mimeType": "application/json",
            "text": "{\"qty\": 3}"
          }
        },
        "response": {
          "status": 200,
          "statusText": "OK",
          "httpVersion": "HTTP/1.1",
          "cookies": [],
          "headers": [
            {
              "name": "Date",
              "value": "Fri, 07 Aug 2026 09:14:22 GMT"
            },
            {
              "name": "Content-Type",
              "value": "application/json"
            }
          ],
          "content": {
            "size": 36,
            "mimeType": "application/json",
            "text": "{\"cartId\": \"c_1001\", \"total\": 38.97}"
          },
          "redirectURL": "",
          "headersSize": 93,
          "bodySize": 36
        },
        "cache": {},
        "timings": {
          "blocked": 0.2,
          "dns": 0.0,
          "connect": 0.0,
          "send": 0.6,
          "wait": 44.8,
          "receive": 2.4
        },
        "serverIPAddress": "203.0.113.40",
        "connection": "20101"
      },
      {
        "pageref": "page_1",
        "startedDateTime": "2026-08-07T09:14:22.271Z",
        "time": 30.6,
        "request": {
          "method": "DELETE",
          "url": "https://api.example.com/v1/cart/items/NX-1042",
          "httpVersion": "HTTP/1.1",
          "cookies": [],
          "headers": [
            {
              "name": "Host",
              "value": "api.example.com"
            },
            {
              "name": "User-Agent",
              "value": "Mozilla/5.0 (X11; Linux x86_64) NovusSampleAgent/1.0"
            },
            {
              "name": "Authorization",
              "value": "Bearer SAMPLE-ACCESS-TOKEN-NOT-A-REAL-CREDENTIAL"
            }
          ],
          "queryString": [],
          "headersSize": 186,
          "bodySize": 0
        },
        "response": {
          "status": 204,
          "statusText": "No Content",
          "httpVersion": "HTTP/1.1",
          "cookies": [],
          "headers": [
            {
              "name": "Date",
              "value": "Fri, 07 Aug 2026 09:14:22 GMT"
            },
            {
              "name": "Content-Type",
              "value": ""
            }
          ],
          "content": {
            "size": 0,
            "mimeType": ""
          },
          "redirectURL": "",
          "headersSize": 77,
          "bodySize": 0
        },
        "cache": {},
        "timings": {
          "blocked": 0.2,
          "dns": 0.0,
          "connect": 0.0,
          "send": 0.4,
          "wait": 29.6,
          "receive": 0.4
        },
        "serverIPAddress": "203.0.113.40",
        "connection": "20101"
      }
    ]
  }
}
