Censys · JSON Structure

Platform Censeyejob Structure

CenseyeJob schema from Censys Platform API

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

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

Properties

at_time create_time delete_time error job_id result_count state target 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/platform-censeyejob-structure.json",
  "name": "CenseyeJob",
  "description": "CenseyeJob schema from Censys Platform API",
  "type": "object",
  "required": [
    "job_id",
    "target",
    "state"
  ],
  "additionalProperties": false,
  "properties": {
    "at_time": {
      "type": "datetime",
      "description": "The point-in-time the asset data was evaluated at."
    },
    "create_time": {
      "type": "datetime",
      "description": "When the job was created."
    },
    "delete_time": {
      "type": "datetime",
      "description": "When the job and results will be deleted."
    },
    "error": {
      "type": "string",
      "description": "Error message if the job failed."
    },
    "job_id": {
      "type": "string",
      "description": "Unique identifier of the job."
    },
    "result_count": {
      "type": "int32",
      "description": "Total number of result field-value pairs.",
      "minimum": 0
    },
    "state": {
      "type": "string",
      "description": "Current state of the job.",
      "enum": [
        "started",
        "completed",
        "failed",
        "unknown"
      ]
    },
    "target": {
      "description": "The asset that was analyzed.",
      "$ref": "#/components/schemas/CenseyeTarget"
    },
    "update_time": {
      "type": "datetime",
      "description": "When the job was last updated."
    }
  }
}