Censys · Schema

DiscoveryPath

DiscoveryPath schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
segments arraynull Ordered segments forming the path
View JSON Schema on GitHub

JSON Schema

asset-graph-discoverypath-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-discoverypath-schema.json",
  "title": "DiscoveryPath",
  "description": "DiscoveryPath schema from Asset Graph API",
  "type": "object",
  "properties": {
    "segments": {
      "description": "Ordered segments forming the path",
      "items": {
        "$ref": "#/components/schemas/PathSegment"
      },
      "type": [
        "array",
        "null"
      ]
    }
  },
  "required": [
    "segments"
  ],
  "additionalProperties": false
}