Adyen · JSON Structure

Configuration Webhooks Personal Data Structure

PersonalData schema from Adyen API

Type: object Properties: 3
PaymentsFinancial ServicesFintech

PersonalData is a JSON Structure definition published by Adyen, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

dateOfBirth idNumber nationality

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/configuration-webhooks-personal-data-structure.json",
  "description": "PersonalData schema from Adyen API",
  "type": "object",
  "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"
    }
  },
  "name": "PersonalData"
}