Adyen · Schema

PersonalData

PersonalData schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
dateOfBirth string The date of birth of the person. The date should be in ISO-8601 format yyyy-mm-dd (e.g. 2000-01-31).
idNumber string An ID number of the person.
nationality string The nationality of the person represented by a two-character country code. >The permitted country codes are defined in ISO-3166-1 alpha-2 (e.g. 'NL').
View JSON Schema on GitHub

JSON Schema

notification-webhooks-personal-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/notification-webhooks-personal-data-schema.json",
  "title": "PersonalData",
  "description": "PersonalData schema from Adyen API",
  "properties": {
    "dateOfBirth": {
      "description": "The date of birth of the person.\nThe date should be in ISO-8601 format yyyy-mm-dd (e.g. 2000-01-31).",
      "type": "string"
    },
    "idNumber": {
      "description": "An ID number of the person.",
      "type": "string"
    },
    "nationality": {
      "description": "The nationality of the person represented by a two-character country code.\n>The permitted country codes are defined in ISO-3166-1 alpha-2 (e.g. 'NL').",
      "maxLength": 2,
      "minLength": 2,
      "type": "string"
    }
  },
  "type": "object"
}