Censys · Schema

Smtp

Smtp schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
ehlo string The server's response to the EHLO command.
start_tls string The server's response to the STARTTLS command.
View JSON Schema on GitHub

JSON Schema

asset-graph-smtp-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-smtp-schema.json",
  "title": "Smtp",
  "description": "Smtp schema from Asset Graph API",
  "type": "object",
  "properties": {
    "ehlo": {
      "description": "The server's response to the EHLO command.",
      "format": "utf8",
      "type": "string"
    },
    "start_tls": {
      "description": "The server's response to the STARTTLS command.",
      "format": "utf8",
      "type": "string"
    }
  },
  "additionalProperties": false
}