Censys · Schema

Amqp

Amqp schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
explicit_tls boolean Connected via a TLS connection after initial handshake
implicit_tls boolean Connected via a TLS wrapped connection (AMQPS)
protocol_id object
version object
View JSON Schema on GitHub

JSON Schema

asset-graph-amqp-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-amqp-schema.json",
  "title": "Amqp",
  "description": "Amqp schema from Asset Graph API",
  "type": "object",
  "properties": {
    "explicit_tls": {
      "description": "Connected via a TLS connection after initial handshake",
      "type": "boolean"
    },
    "implicit_tls": {
      "description": "Connected via a TLS wrapped connection (AMQPS)",
      "type": "boolean"
    },
    "protocol_id": {
      "$ref": "#/components/schemas/Amqp_Protocol"
    },
    "version": {
      "$ref": "#/components/schemas/Amqp_Version"
    }
  },
  "additionalProperties": false
}