Censys · Schema
AssetGraph
AssetGraph schema from Asset Graph API
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery
Properties
| Name | Type | Description |
|---|---|---|
| $schema | string | A URL to the JSON Schema for this object. |
| active_execution | object | The currently active graph execution |
| create_time | string | RFC3339 creation timestamp |
| description | string | Optional description |
| id | string | Unique identifier for the asset graph |
| name | string | User-defined name |
| status | string | Lifecycle status of the asset graph |
| update_time | string | RFC3339 last-update timestamp |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/asset-graph-assetgraph-schema.json",
"title": "AssetGraph",
"description": "AssetGraph schema from Asset Graph API",
"type": "object",
"properties": {
"$schema": {
"description": "A URL to the JSON Schema for this object.",
"examples": [
"https://graph.data.censys.io/schemas/AssetGraph.json"
],
"format": "uri",
"readOnly": true,
"type": "string"
},
"active_execution": {
"$ref": "#/components/schemas/GraphExecution",
"description": "The currently active graph execution"
},
"create_time": {
"description": "RFC3339 creation timestamp",
"type": "string"
},
"description": {
"description": "Optional description",
"type": "string"
},
"id": {
"description": "Unique identifier for the asset graph",
"type": "string"
},
"name": {
"description": "User-defined name",
"type": "string"
},
"status": {
"description": "Lifecycle status of the asset graph",
"enum": [
"ACTIVE",
"DELETING"
],
"type": "string"
},
"update_time": {
"description": "RFC3339 last-update timestamp",
"type": "string"
}
},
"required": [
"id",
"name",
"status",
"create_time",
"update_time"
],
"additionalProperties": false
}