VTEX · Schema

InStore1

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
IsCheckedIn boolean
StoreId string
View JSON Schema on GitHub

JSON Schema

vtex-instore1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InStore1",
  "title": "InStore1",
  "required": [
    "IsCheckedIn",
    "StoreId"
  ],
  "type": "object",
  "properties": {
    "IsCheckedIn": {
      "type": "boolean"
    },
    "StoreId": {
      "type": "string"
    }
  },
  "example": {
    "IsCheckedIn": false,
    "StoreId": "180082"
  }
}