Best Buy · Schema

RecommendationsResponse

Response containing recommended product list.

Fortune 100RetailConsumer ElectronicsE-CommerceProductsStores

Properties

Name Type Description
metadata object Metadata about the result set.
results array Array of recommended product objects.
View JSON Schema on GitHub

JSON Schema

recommendations-api-recommendations-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/best-buy/refs/heads/main/json-schema/recommendations-api-recommendations-response-schema.json",
  "title": "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": "integer",
              "description": "Number of results returned.",
              "example": 10
            }
          }
        }
      }
    },
    "results": {
      "type": "array",
      "description": "Array of recommended product objects.",
      "items": {
        "$ref": "#/components/schemas/RecommendedProduct"
      }
    }
  }
}