Censys · Schema

Vnc

Vnc schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
connection_failed_reason string If server terminates handshake, the reason offered (if any)
desktop_name string Desktop name provided by the server, capped at 255 bytes
pixel_encoding object
screen_info object
security_types arraynull server-specified security options
version string
View JSON Schema on GitHub

JSON Schema

asset-graph-vnc-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-vnc-schema.json",
  "title": "Vnc",
  "description": "Vnc schema from Asset Graph API",
  "type": "object",
  "properties": {
    "connection_failed_reason": {
      "description": "If server terminates handshake, the reason offered (if any)",
      "format": "utf8",
      "type": "string"
    },
    "desktop_name": {
      "description": "Desktop name provided by the server, capped at 255 bytes",
      "format": "utf8",
      "type": "string"
    },
    "pixel_encoding": {
      "$ref": "#/components/schemas/Vnc_KeyValue"
    },
    "screen_info": {
      "$ref": "#/components/schemas/DesktopInfo"
    },
    "security_types": {
      "description": "server-specified security options",
      "items": {
        "$ref": "#/components/schemas/Vnc_KeyValue"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "version": {
      "format": "hex",
      "type": "string"
    }
  },
  "additionalProperties": false
}