Best Buy · JSON Structure

Recommendations Api Recommendations Response Structure

Response containing recommended product list.

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

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

Properties

metadata results

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-recommendations-response-structure.json",
  "name": "RecommendationsResponse",
  "description": "Response containing recommended product list.",
  "type": "object",
  "properties": {
    "metadata": {
      "type": "object",
      "description": "Metadata about the result set.",
      "properties": {
        "resultSet": {
          "type": "object",
          "properties": {
            "count": {
              "type": "int32",
              "description": "Number of results returned.",
              "example": 10
            }
          }
        }
      }
    },
    "results": {
      "type": "array",
      "description": "Array of recommended product objects.",
      "items": {
        "$ref": "#/components/schemas/RecommendedProduct"
      }
    }
  }
}