OrderTotals

Properties

Name Type Description
subtotal number
taxTotal number
shippingTotal number
discountTotal number
orderTotal number
currency string
View JSON Schema on GitHub

JSON Schema

manhattan-associates-ordertotals-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrderTotals",
  "title": "OrderTotals",
  "type": "object",
  "properties": {
    "subtotal": {
      "type": "number"
    },
    "taxTotal": {
      "type": "number"
    },
    "shippingTotal": {
      "type": "number"
    },
    "discountTotal": {
      "type": "number"
    },
    "orderTotal": {
      "type": "number"
    },
    "currency": {
      "type": "string",
      "default": "USD"
    }
  }
}