Properties
| Name | Type | Description |
|---|---|---|
| zipCode | string | |
| country | string | |
| inStore | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Location",
"title": "Location",
"required": [
"zipCode",
"country",
"inStore"
],
"type": "object",
"properties": {
"zipCode": {
"type": "string"
},
"country": {
"type": "string"
},
"inStore": {
"title": "InStore",
"required": [
"IsCheckedIn",
"StoreId"
],
"type": "object",
"properties": {
"IsCheckedIn": {
"type": "boolean"
},
"StoreId": {
"type": "string",
"nullable": true
}
},
"example": {
"IsCheckedIn": false,
"StoreId": null
}
}
},
"example": {
"zipCode": "22220070",
"country": "BRA",
"inStore": {
"IsCheckedIn": false,
"StoreId": null
}
}
}