instacart · Schema
Store
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier for the store. |
| name | string | The name of the store. |
| address | object | The physical address of the store. |
| distance | number | The distance from the customer's location to the store. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Store",
"title": "Store",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier for the store."
},
"name": {
"type": "string",
"description": "The name of the store."
},
"address": {
"type": "object",
"description": "The physical address of the store.",
"properties": {
"address_line_1": {
"type": "string",
"description": "The street address."
},
"city": {
"type": "string",
"description": "The city."
},
"state": {
"type": "string",
"description": "The state or province."
},
"postal_code": {
"type": "string",
"description": "The postal or ZIP code."
}
}
},
"distance": {
"type": "number",
"format": "double",
"description": "The distance from the customer's location to the store."
}
}
}