Abstract API · Schema

RiskInfo

Risk assessment for the email

AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping

Properties

Name Type Description
address_risk_status string Risk level of the specific email address
domain_risk_status string Risk level of the domain
View JSON Schema on GitHub

JSON Schema

abstract-api-riskinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RiskInfo",
  "title": "RiskInfo",
  "type": "object",
  "description": "Risk assessment for the email",
  "properties": {
    "address_risk_status": {
      "type": "string",
      "description": "Risk level of the specific email address",
      "example": "low",
      "enum": [
        "low",
        "medium",
        "high",
        "critical"
      ]
    },
    "domain_risk_status": {
      "type": "string",
      "description": "Risk level of the domain",
      "example": "low",
      "enum": [
        "low",
        "medium",
        "high",
        "critical"
      ]
    }
  }
}