BigCommerce · Schema

wishlistItem_Post

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
items array
View JSON Schema on GitHub

JSON Schema

bigcommerce-wishlistitem-post-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/wishlistItem_Post",
  "title": "wishlistItem_Post",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "product_id": {
            "type": "integer",
            "example": 12
          },
          "variant_id": {
            "type": "integer",
            "example": 152
          }
        }
      }
    }
  },
  "x-examples": {
    "example-1": {
      "items": [
        {
          "product_id": 12,
          "variant_id": 152
        }
      ]
    }
  }
}