Best Buy · JSON Structure

Recommendations Api Recommended Product Structure

A recommended product with essential display attributes.

Type: object Properties: 6
Fortune 100RetailConsumer ElectronicsE-CommerceProductsStores

RecommendedProduct is a JSON Structure definition published by Best Buy, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

sku names images prices links rank

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/best-buy/refs/heads/main/json-structure/recommendations-api-recommended-product-structure.json",
  "name": "RecommendedProduct",
  "description": "A recommended product with essential display attributes.",
  "type": "object",
  "properties": {
    "sku": {
      "type": "int32",
      "description": "Product SKU number.",
      "example": 1234567
    },
    "names": {
      "type": "object",
      "description": "Product name variations.",
      "properties": {
        "name": {
          "type": "string",
          "description": "Product display title.",
          "example": "Sample Laptop 15\" 16GB RAM"
        }
      }
    },
    "images": {
      "type": "object",
      "description": "Product image URLs.",
      "properties": {
        "standard": {
          "type": "string",
          "description": "Standard product image URL.",
          "example": "https://pisces.bbystatic.com/image2/BestBuy_US/images/products/1234/1234567_sd.jpg"
        }
      }
    },
    "prices": {
      "type": "object",
      "description": "Product pricing information.",
      "properties": {
        "regular": {
          "type": "double",
          "description": "Regular price in USD.",
          "example": 999.99
        },
        "current": {
          "type": "double",
          "description": "Current (sale) price in USD.",
          "example": 849.99
        }
      }
    },
    "links": {
      "type": "object",
      "description": "Related URLs for the product.",
      "properties": {
        "product": {
          "type": "string",
          "description": "API URL for full product data.",
          "example": "https://api.bestbuy.com/v1/products/1234567.json"
        },
        "web": {
          "type": "string",
          "description": "URL of the product page on bestbuy.com.",
          "example": "https://www.bestbuy.com/site/sample-laptop/1234567.p"
        },
        "addToCart": {
          "type": "string",
          "description": "URL for adding to cart.",
          "example": "https://www.bestbuy.com/cart/api/v1/addToCart"
        }
      }
    },
    "rank": {
      "type": "int32",
      "description": "Rank position in the recommendation list.",
      "example": 1
    }
  }
}