{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CustomerCreate", "type": "object", "properties": { "number": { "type": "string" }, "displayName": { "type": "string" }, "type": { "type": "string" }, "addressLine1": { "type": "string" }, "addressLine2": { "type": "string" }, "city": { "type": "string" }, "state": { "type": "string" }, "country": { "type": "string" }, "postalCode": { "type": "string" }, "phoneNumber": { "type": "string" }, "email": { "type": "string" }, "website": { "type": "string" }, "taxLiable": { "type": "boolean" }, "taxRegistrationNumber": { "type": "string" }, "currencyCode": { "type": "string" }, "blocked": { "type": "string" } } }