Censys · JSON Structure

Asset Graph Pathsegment Structure

PathSegment schema from Asset Graph API

Type: object Properties: 3 Required: 3
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

PathSegment is a JSON Structure definition published by Censys, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

end relationship start

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-structure/asset-graph-pathsegment-structure.json",
  "name": "PathSegment",
  "description": "PathSegment schema from Asset Graph API",
  "type": "object",
  "required": [
    "start",
    "relationship",
    "end"
  ],
  "additionalProperties": false,
  "properties": {
    "end": {
      "description": "Ending asset",
      "$ref": "#/components/schemas/AssetRef"
    },
    "relationship": {
      "description": "Relationship between assets",
      "$ref": "#/components/schemas/PathRelationship"
    },
    "start": {
      "description": "Starting asset",
      "$ref": "#/components/schemas/AssetRef"
    }
  }
}