VTEX · Schema

InStore

CommerceE-CommerceRetailMarketplacePayments

Properties

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

JSON Schema

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