Name schema from Adyen API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/payouts-name-schema.json", "title": "Name", "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" ] }