Censys · JSON Structure

Asset Graph Assetgraph Structure

AssetGraph schema from Asset Graph API

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

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

Properties

$schema active_execution create_time description id name status update_time

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-assetgraph-structure.json",
  "name": "AssetGraph",
  "description": "AssetGraph schema from Asset Graph API",
  "type": "object",
  "required": [
    "id",
    "name",
    "status",
    "create_time",
    "update_time"
  ],
  "additionalProperties": false,
  "properties": {
    "$schema": {
      "type": "uri",
      "description": "A URL to the JSON Schema for this object."
    },
    "active_execution": {
      "description": "The currently active graph execution",
      "$ref": "#/components/schemas/GraphExecution"
    },
    "create_time": {
      "type": "string",
      "description": "RFC3339 creation timestamp"
    },
    "description": {
      "type": "string",
      "description": "Optional description"
    },
    "id": {
      "type": "string",
      "description": "Unique identifier for the asset graph"
    },
    "name": {
      "type": "string",
      "description": "User-defined name"
    },
    "status": {
      "type": "string",
      "description": "Lifecycle status of the asset graph",
      "enum": [
        "ACTIVE",
        "DELETING"
      ]
    },
    "update_time": {
      "type": "string",
      "description": "RFC3339 last-update timestamp"
    }
  }
}