SAP Commerce Cloud · Schema

OrderSummary

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
code string Order code
status string Order status
total string Formatted order total
placed string Order placement date
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-ordersummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrderSummary",
  "title": "OrderSummary",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Order code"
    },
    "status": {
      "type": "string",
      "description": "Order status"
    },
    "total": {
      "type": "string",
      "description": "Formatted order total"
    },
    "placed": {
      "type": "string",
      "format": "date-time",
      "description": "Order placement date"
    }
  }
}