magento · Schema

CartItemRequest

Request body for adding an item to a shopping cart.

Properties

Name Type Description
cartItem object
View JSON Schema on GitHub

JSON Schema

magento-cartitemrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CartItemRequest",
  "title": "CartItemRequest",
  "type": "object",
  "description": "Request body for adding an item to a shopping cart.",
  "required": [
    "cartItem"
  ],
  "properties": {
    "cartItem": {
      "$ref": "#/components/schemas/CartItem"
    }
  }
}