Adyen · JSON Structure

Legal Entity Name Structure

Name schema from Adyen API

Type: object Properties: 3 Required: 2
PaymentsFinancial ServicesFintech

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

Properties

firstName infix lastName

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/legal-entity-name-structure.json",
  "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"
  ],
  "name": "Name"
}