{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CustomerUpdate", "type": "object", "properties": { "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" }, "creditLimit": { "type": "number" }, "blocked": { "type": "string" } } }