VTEX · Schema

PickupStoreInfo1

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
isPickupStore boolean
storeId string
friendlyName string
address string
additionalInfo string
dockId string
View JSON Schema on GitHub

JSON Schema

vtex-pickupstoreinfo1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PickupStoreInfo1",
  "title": "PickupStoreInfo1",
  "required": [
    "isPickupStore",
    "storeId",
    "friendlyName",
    "address",
    "additionalInfo",
    "dockId"
  ],
  "type": "object",
  "properties": {
    "isPickupStore": {
      "type": "boolean"
    },
    "storeId": {
      "type": "string",
      "nullable": true
    },
    "friendlyName": {
      "type": "string",
      "nullable": true
    },
    "address": {
      "type": "string",
      "nullable": true
    },
    "additionalInfo": {
      "type": "string",
      "nullable": true
    },
    "dockId": {
      "type": "string",
      "nullable": true
    }
  },
  "example": {
    "isPickupStore": false,
    "storeId": null,
    "friendlyName": null,
    "address": null,
    "additionalInfo": null,
    "dockId": null
  }
}