Adyen · Schema

Name

Name schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
firstName string The individual's first name.
infix string The infix in the individual's name, if any.
lastName string The individual's last name.
View JSON Schema on GitHub

JSON Schema

legal-entity-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/legal-entity-name-schema.json",
  "title": "Name",
  "description": "Name schema from Adyen API",
  "type": "object",
  "properties": {
    "firstName": {
      "description": "The individual's first name.",
      "type": "string"
    },
    "infix": {
      "description": "The infix in the individual's name, if any.",
      "type": "string"
    },
    "lastName": {
      "description": "The individual's last name.",
      "type": "string"
    }
  },
  "required": [
    "firstName",
    "lastName"
  ]
}