Censys · Schema

NetworkLog

NetworkLog schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
har_handle string Storage handle for the full HAR network log.
resources arraynull Resources fetched during page load.
View JSON Schema on GitHub

JSON Schema

asset-graph-networklog-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/asset-graph-networklog-schema.json",
  "title": "NetworkLog",
  "description": "NetworkLog schema from Asset Graph API",
  "type": "object",
  "properties": {
    "har_handle": {
      "description": "Storage handle for the full HAR network log.",
      "type": "string"
    },
    "resources": {
      "description": "Resources fetched during page load.",
      "items": {
        "$ref": "#/components/schemas/NetworkLog_ResourceInfo"
      },
      "type": [
        "array",
        "null"
      ]
    }
  },
  "additionalProperties": false
}