Censys · Schema

Status

Status schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
available_workers integer
function string
running integer
total integer
View JSON Schema on GitHub

JSON Schema

asset-graph-status-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-status-schema.json",
  "title": "Status",
  "description": "Status schema from Asset Graph API",
  "type": "object",
  "properties": {
    "available_workers": {
      "format": "int32",
      "type": "integer"
    },
    "function": {
      "type": "string"
    },
    "running": {
      "format": "int32",
      "type": "integer"
    },
    "total": {
      "format": "int32",
      "type": "integer"
    }
  },
  "additionalProperties": false
}