NCR · JSON Structure

Ncr Voyix Commerce Platform Cart Structure

Cart schema from NCR Voyix Commerce Platform APIs

Type: object Properties: 4
RestaurantRetailBankingATMPoint of SaleCommerceFortune 500

Cart is a JSON Structure definition published by NCR, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

cartId status items totals

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "description": "Cart schema from NCR Voyix Commerce Platform APIs",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ncr/refs/heads/main/json-structure/ncr-voyix-commerce-platform-cart-structure.json",
  "type": "object",
  "properties": {
    "cartId": {
      "type": "string",
      "example": "cart-a1b2c3d4"
    },
    "status": {
      "type": "string",
      "example": "ACTIVE"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CartLine"
      }
    },
    "totals": {
      "type": "object",
      "properties": {
        "total": {
          "type": "double"
        },
        "currency": {
          "type": "string",
          "example": "USD"
        }
      }
    }
  },
  "name": "Cart"
}