BigCommerce · Schema

InventoryNotificationsSettings

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
low_stock_notification_address array
out_of_stock_notification_address array
View JSON Schema on GitHub

JSON Schema

bigcommerce-inventorynotificationssettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InventoryNotificationsSettings",
  "title": "InventoryNotificationsSettings",
  "type": "object",
  "x-tags": [
    "Models"
  ],
  "properties": {
    "low_stock_notification_address": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "[email protected]"
      }
    },
    "out_of_stock_notification_address": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "[email protected]"
      }
    }
  },
  "x-examples": {
    "example-1": {
      "low_stock_notification_address": [
        "[email protected]"
      ],
      "out_of_stock_notification_address": [
        "[email protected]"
      ]
    }
  }
}