Censys · Schema

OpcUa

OpcUa schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
endpoints arraynull
max_chunk_size integer
max_message_size integer
protocol_version integer
receive_buffer_size integer
send_buffer_size integer
View JSON Schema on GitHub

JSON Schema

platform-opcua-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/platform-opcua-schema.json",
  "title": "OpcUa",
  "description": "OpcUa schema from Censys Platform API",
  "type": "object",
  "properties": {
    "endpoints": {
      "items": {
        "$ref": "#/components/schemas/OpcUa_Endpoint"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "max_chunk_size": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "max_message_size": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "protocol_version": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "receive_buffer_size": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "send_buffer_size": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    }
  },
  "additionalProperties": false
}