{ "$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" }