Censys · JSON Structure

Asset Graph Graphexecution Structure

GraphExecution schema from Asset Graph API

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

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

Properties

$schema create_time id stats 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-graphexecution-structure.json",
  "name": "GraphExecution",
  "description": "GraphExecution schema from Asset Graph API",
  "type": "object",
  "required": [
    "id",
    "status",
    "create_time",
    "update_time"
  ],
  "additionalProperties": false,
  "properties": {
    "$schema": {
      "type": "uri",
      "description": "A URL to the JSON Schema for this object."
    },
    "create_time": {
      "type": "string",
      "description": "RFC3339 creation timestamp"
    },
    "id": {
      "type": "string",
      "description": "Unique identifier for the execution"
    },
    "stats": {
      "description": "Execution statistics",
      "$ref": "#/components/schemas/ExecutionStats"
    },
    "status": {
      "type": "string",
      "description": "Execution status"
    },
    "update_time": {
      "type": "string",
      "description": "RFC3339 last-update timestamp"
    }
  }
}