BigCommerce · Schema

Store Profile

The basic profile settings for a store, used to give the shopper information about the business from which they are purchasing.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
store_address string
store_address_type object
store_email string
store_name string
store_phone string
View JSON Schema on GitHub

JSON Schema

bigcommerce-storeprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StoreProfile",
  "title": "Store Profile",
  "description": "The basic profile settings for a store, used to give the shopper information about the business from which they are purchasing.",
  "type": "object",
  "x-internal": false,
  "properties": {
    "store_address": {
      "type": "string"
    },
    "store_address_type": {
      "$ref": "#/components/schemas/AddressTypeEnumValues"
    },
    "store_email": {
      "type": "string"
    },
    "store_name": {
      "type": "string"
    },
    "store_phone": {
      "type": "string"
    }
  }
}