{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Customer", "title": "Customer", "type": "object", "properties": { "customerId": { "type": "integer" }, "createDate": { "type": "string", "format": "date-time" }, "modifyDate": { "type": "string", "format": "date-time" }, "name": { "type": "string" }, "company": { "type": "string" }, "street1": { "type": "string" }, "street2": { "type": "string" }, "city": { "type": "string" }, "state": { "type": "string" }, "postalCode": { "type": "string" }, "countryCode": { "type": "string" }, "phone": { "type": "string" }, "email": { "type": "string" }, "addressVerified": { "type": "string" } } }