SAP Commerce Cloud · Schema

IntegrationOrder

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
code string Order code
date string Order date
status string Order status
currency string Order currency ISO code
totalPrice number Total price
user object Customer reference
entries array Order entries
integrationKey string Unique integration key
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-integrationorder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntegrationOrder",
  "title": "IntegrationOrder",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Order code"
    },
    "date": {
      "type": "string",
      "format": "date-time",
      "description": "Order date"
    },
    "status": {
      "type": "string",
      "description": "Order status"
    },
    "currency": {
      "type": "string",
      "description": "Order currency ISO code"
    },
    "totalPrice": {
      "type": "number",
      "format": "double",
      "description": "Total price"
    },
    "user": {
      "type": "object",
      "properties": {
        "uid": {
          "type": "string"
        }
      },
      "description": "Customer reference"
    },
    "entries": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "entryNumber": {
            "type": "integer"
          },
          "productCode": {
            "type": "string"
          },
          "quantity": {
            "type": "integer"
          },
          "totalPrice": {
            "type": "number",
            "format": "double"
          }
        }
      },
      "description": "Order entries"
    },
    "integrationKey": {
      "type": "string",
      "description": "Unique integration key"
    }
  }
}