BigCommerce · Schema

wishlistItem_Full

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
id integer The ID of the item.
product_id integer The ID of the product.
variant_id integer The variant ID of the product.
View JSON Schema on GitHub

JSON Schema

bigcommerce-wishlistitem-full-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/wishlistItem_Full",
  "title": "wishlistItem_Full",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The ID of the item.",
      "format": "int32",
      "example": 12
    },
    "product_id": {
      "type": "integer",
      "description": "The ID of the product.",
      "format": "int32",
      "example": 55
    },
    "variant_id": {
      "type": "integer",
      "description": "The variant ID of the product.",
      "format": "int32",
      "example": 22
    }
  },
  "x-internal": false
}