HaveIBeenPwned · Schema

SubscribedDomain

A domain monitored by an active HIBP subscription.

SecurityBreach NotificationCredential StuffingStealer LogsK-AnonymityPrivacyIdentity

Properties

Name Type Description
DomainName string
PwnCount integernull
PwnCountExcludingSpamLists integernull
PwnCountExcludingSpamListsAtLastSubscriptionRenewal integernull
NextSubscriptionRenewal stringnull
View JSON Schema on GitHub

JSON Schema

hibp-subscribed-domain-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://haveibeenpwned.com/schemas/subscribed-domain.json",
  "title": "SubscribedDomain",
  "description": "A domain monitored by an active HIBP subscription.",
  "type": "object",
  "required": ["DomainName"],
  "properties": {
    "DomainName": { "type": "string" },
    "PwnCount": { "type": ["integer", "null"], "minimum": 0 },
    "PwnCountExcludingSpamLists": { "type": ["integer", "null"], "minimum": 0 },
    "PwnCountExcludingSpamListsAtLastSubscriptionRenewal": { "type": ["integer", "null"], "minimum": 0 },
    "NextSubscriptionRenewal": { "type": ["string", "null"], "format": "date-time" }
  }
}