Adyen · JSON Structure

Checkout Name Structure

Name schema from Adyen API

Type: object Properties: 2 Required: 2
PaymentsFinancial ServicesFintech

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

Properties

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