Properties
| Name | Type | Description |
|---|---|---|
| customerId | integer | |
| createDate | string | |
| modifyDate | string | |
| name | string | |
| company | string | |
| street1 | string | |
| street2 | string | |
| city | string | |
| state | string | |
| postalCode | string | |
| countryCode | string | |
| phone | string | |
| string | ||
| addressVerified | string |
JSON Schema
{
"$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"
}
}
}