Censys · Schema

Mqtt

Mqtt schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
connection_ack_raw string Raw CONNACK response packet
connection_ack_return object
subscription_ack_return object
View JSON Schema on GitHub

JSON Schema

asset-graph-mqtt-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-mqtt-schema.json",
  "title": "Mqtt",
  "description": "Mqtt schema from Asset Graph API",
  "type": "object",
  "properties": {
    "connection_ack_raw": {
      "description": "Raw CONNACK response packet",
      "format": "hex",
      "type": "string"
    },
    "connection_ack_return": {
      "$ref": "#/components/schemas/Mqtt_ConnectionAckReturn"
    },
    "subscription_ack_return": {
      "$ref": "#/components/schemas/Mqtt_SubscriptionAckReturn"
    }
  },
  "additionalProperties": false
}