Adyen · Schema

Name

Name schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
firstName string The first name.
lastName string The last name.
View JSON Schema on GitHub

JSON Schema

notification-webhooks-name-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-name-schema.json",
  "title": "Name",
  "description": "Name schema from Adyen API",
  "properties": {
    "firstName": {
      "description": "The first name.",
      "type": "string"
    },
    "lastName": {
      "description": "The last name.",
      "type": "string"
    }
  },
  "required": [
    "firstName",
    "lastName"
  ],
  "type": "object"
}