Bloomreach · Schema

BloomreachProduct

JSON Schema for a Bloomreach Discovery catalog product, including variants, views, and catalog metadata.

Digital CommerceSearchMerchandisingRecommendationsCustomer Data PlatformCDPEmail MarketingSMS MarketingMarketing AutomationHeadless CMSPersonalizationE-Commerce

Properties

Name Type Description
item_id string Unique identifier for the product in the Bloomreach catalog.
attributes object Key-value map of product attributes (title, description, price, brand, etc.).
variants array Product variants (SKUs) with their own attributes.
views object Named catalog views that provide alternate attribute sets for the same product.
View JSON Schema on GitHub

JSON Schema

bloomreach-product-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/bloomreach/json-schema/bloomreach-product-schema.json",
  "title": "BloomreachProduct",
  "description": "JSON Schema for a Bloomreach Discovery catalog product, including variants, views, and catalog metadata.",
  "type": "object",
  "required": ["item_id", "attributes"],
  "properties": {
    "item_id": {
      "type": "string",
      "description": "Unique identifier for the product in the Bloomreach catalog."
    },
    "attributes": {
      "type": "object",
      "description": "Key-value map of product attributes (title, description, price, brand, etc.).",
      "additionalProperties": true,
      "properties": {
        "title": { "type": "string", "description": "Display name of the product." },
        "description": { "type": "string", "description": "Long-form product description." },
        "brand": { "type": "string", "description": "Brand or manufacturer name." },
        "price": { "type": "number", "description": "Current product price." },
        "sale_price": { "type": "number", "description": "Discounted/sale price if applicable." },
        "url": { "type": "string", "format": "uri", "description": "Canonical URL for the product detail page." },
        "thumb_image": { "type": "string", "format": "uri", "description": "URL for the product thumbnail image." },
        "sku_color_group": { "type": "string", "description": "Color grouping for variant SKUs." },
        "sku_swatch_images": {
          "type": "array",
          "items": { "type": "string", "format": "uri" },
          "description": "Swatch images for variant selection."
        },
        "sku_thumb_images": {
          "type": "array",
          "items": { "type": "string", "format": "uri" },
          "description": "Thumbnail images for SKU variants."
        },
        "category_id": {
          "type": "array",
          "items": { "type": "string" },
          "description": "List of category IDs the product belongs to."
        },
        "category_paths": {
          "type": "array",
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": { "type": "string" },
                "name": { "type": "string" }
              }
            }
          },
          "description": "Hierarchical category path arrays."
        },
        "tags": {
          "type": "array",
          "items": { "type": "string" },
          "description": "Searchable tags associated with the product."
        }
      }
    },
    "variants": {
      "type": "array",
      "description": "Product variants (SKUs) with their own attributes.",
      "items": {
        "type": "object",
        "required": ["variant_id"],
        "properties": {
          "variant_id": { "type": "string", "description": "Unique variant/SKU identifier." },
          "sku_sale_price": { "type": "number" },
          "sku_price": { "type": "number" },
          "sku_color": { "type": "string" },
          "sku_size": { "type": "string" },
          "sku_thumb_images": {
            "type": "array",
            "items": { "type": "string", "format": "uri" }
          },
          "sku_swatch_images": {
            "type": "array",
            "items": { "type": "string", "format": "uri" }
          }
        },
        "additionalProperties": true
      }
    },
    "views": {
      "type": "object",
      "description": "Named catalog views that provide alternate attribute sets for the same product.",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "attributes": { "type": "object", "additionalProperties": true },
          "variants": { "type": "array", "items": { "type": "object" } }
        }
      }
    }
  },
  "additionalProperties": false
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/bloomreach-product"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.