Censys · JSON Structure

Platform Trackedscan Structure

TrackedScan schema from Censys Platform API

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

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

Properties

completed create_time target tasks tracked_scan_id

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-trackedscan-structure.json",
  "name": "TrackedScan",
  "description": "TrackedScan schema from Censys Platform API",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "completed": {
      "type": "boolean"
    },
    "create_time": {
      "type": "string"
    },
    "target": {
      "$ref": "#/components/schemas/TrackedScan_ScanTarget"
    },
    "tasks": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "$ref": "#/components/schemas/TrackedScan_Task"
      }
    },
    "tracked_scan_id": {
      "type": "string"
    }
  }
}