Kong · Schema

EmailDomainVerification

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
status object
last_time_checked string An ISO-8601 timestamp representation of the last time the verification got checked.
last_time_success string An ISO-8601 timestamp representation of the last time the verification succeeded.
View JSON Schema on GitHub

JSON Schema

kong-emaildomainverification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmailDomainVerification",
  "title": "EmailDomainVerification",
  "type": "object",
  "properties": {
    "status": {
      "$ref": "#/components/schemas/EmailVerificationStatus"
    },
    "last_time_checked": {
      "description": "An ISO-8601 timestamp representation of the last time the verification got checked.",
      "type": "string",
      "format": "date-time",
      "example": "2022-11-04T20:10:06.927Z",
      "readOnly": true
    },
    "last_time_success": {
      "description": "An ISO-8601 timestamp representation of the last time the verification succeeded.",
      "type": "string",
      "format": "date-time",
      "example": "2022-11-04T20:10:06.927Z",
      "readOnly": true
    }
  },
  "additionalProperties": false,
  "readOnly": true,
  "required": [
    "status",
    "last_time_checked",
    "last_time_success"
  ]
}