VTEX · Schema

StoreItems

Object containing summarized information from a store.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
id number ID of the store.
name string Name of the store.
hosts array Array of hosts corresponding to the store.
View JSON Schema on GitHub

JSON Schema

vtex-storeitems-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StoreItems",
  "title": "StoreItems",
  "description": "Object containing summarized information from a store.",
  "type": "object",
  "properties": {
    "id": {
      "description": "ID of the store.",
      "type": "number"
    },
    "name": {
      "description": "Name of the store.",
      "type": "string"
    },
    "hosts": {
      "description": "Array of hosts corresponding to the store.",
      "type": "array",
      "items": {
        "type": "string",
        "description": "Host address."
      }
    }
  }
}