Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Numeric store view entity ID. |
| code | string | Unique string code identifier for the store view. |
| website_id | integer | ID of the website this store view belongs to. |
| locale | string | Locale code for this store (e.g. en_US, fr_FR). |
| base_currency_code | string | ISO 4217 currency code for the base currency (e.g. USD). |
| default_display_currency_code | string | ISO 4217 currency code for the display currency. |
| timezone | string | Timezone identifier (e.g. America/Chicago). |
| weight_unit | string | Weight unit used for this store (lbs or kgs). |
| base_url | string | Base URL of the store frontend. |
| base_link_url | string | Base link URL for the store. |
| base_media_url | string | Base URL for media assets in this store. |
| secure_base_url | string | Secure (HTTPS) base URL of the store frontend. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StoreConfig",
"title": "StoreConfig",
"type": "object",
"description": "Configuration settings for a store view.",
"properties": {
"id": {
"type": "integer",
"description": "Numeric store view entity ID."
},
"code": {
"type": "string",
"description": "Unique string code identifier for the store view."
},
"website_id": {
"type": "integer",
"description": "ID of the website this store view belongs to."
},
"locale": {
"type": "string",
"description": "Locale code for this store (e.g. en_US, fr_FR)."
},
"base_currency_code": {
"type": "string",
"description": "ISO 4217 currency code for the base currency (e.g. USD)."
},
"default_display_currency_code": {
"type": "string",
"description": "ISO 4217 currency code for the display currency."
},
"timezone": {
"type": "string",
"description": "Timezone identifier (e.g. America/Chicago)."
},
"weight_unit": {
"type": "string",
"description": "Weight unit used for this store (lbs or kgs).",
"enum": [
"lbs",
"kgs"
]
},
"base_url": {
"type": "string",
"format": "uri",
"description": "Base URL of the store frontend."
},
"base_link_url": {
"type": "string",
"format": "uri",
"description": "Base link URL for the store."
},
"base_media_url": {
"type": "string",
"format": "uri",
"description": "Base URL for media assets in this store."
},
"secure_base_url": {
"type": "string",
"format": "uri",
"description": "Secure (HTTPS) base URL of the store frontend."
}
}
}