Censys · Schema

Realport

Realport schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
hardware_id integer
hardware_version integer
num_ports integer
product_name string
software_version integer
unpatched_etherlite boolean
vpd object
View JSON Schema on GitHub

JSON Schema

asset-graph-realport-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-realport-schema.json",
  "title": "Realport",
  "description": "Realport schema from Asset Graph API",
  "type": "object",
  "properties": {
    "hardware_id": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "hardware_version": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "num_ports": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "product_name": {
      "format": "utf8",
      "type": "string"
    },
    "software_version": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "unpatched_etherlite": {
      "type": "boolean"
    },
    "vpd": {
      "additionalProperties": {
        "type": "string"
      },
      "format": "utf8",
      "type": "object"
    }
  },
  "additionalProperties": false
}