SAP Commerce Cloud · Schema

IntegrationStockLevel

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
productCode string Product code
available integer Available stock quantity
warehouse string Warehouse identifier
reserved integer Reserved stock quantity
preOrder integer Pre-order stock quantity
releaseDate string Stock release date
integrationKey string Unique integration key
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-integrationstocklevel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntegrationStockLevel",
  "title": "IntegrationStockLevel",
  "type": "object",
  "properties": {
    "productCode": {
      "type": "string",
      "description": "Product code"
    },
    "available": {
      "type": "integer",
      "description": "Available stock quantity"
    },
    "warehouse": {
      "type": "string",
      "description": "Warehouse identifier"
    },
    "reserved": {
      "type": "integer",
      "description": "Reserved stock quantity"
    },
    "preOrder": {
      "type": "integer",
      "description": "Pre-order stock quantity"
    },
    "releaseDate": {
      "type": "string",
      "format": "date-time",
      "description": "Stock release date"
    },
    "integrationKey": {
      "type": "string",
      "description": "Unique integration key"
    }
  }
}