Censys · JSON Structure

Platform Actorinfo Structure

ActorInfo schema from Censys Platform API

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

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

Properties

email id type

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-actorinfo-structure.json",
  "name": "ActorInfo",
  "description": "ActorInfo schema from Censys Platform API",
  "type": "object",
  "required": [
    "type"
  ],
  "additionalProperties": false,
  "properties": {
    "email": {
      "type": "string",
      "description": "The email of the entity that performed the action."
    },
    "id": {
      "type": "string",
      "description": "The ID of the entity that performed the action. This will depend on the type of entity, as it could either be a Censys user ID or an ASM workspace ID."
    },
    "type": {
      "type": "string",
      "description": "The type of entity that performed the action.",
      "enum": [
        "unknown",
        "user",
        "system",
        "customer_support",
        "asm_workspace"
      ]
    }
  }
}