Censys · Schema

Smtp

Smtp schema from Censys Platform 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

platform-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/platform-smtp-schema.json",
  "title": "Smtp",
  "description": "Smtp schema from Censys Platform 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
}