BlueCart · JSON Structure

Bluecart Catalog Update Structure

Payload for updating a catalog.

Type: object Properties: 4
RestaurantProcurementWholesaleOrderingFood DistributionHospitalityeCommerce

CatalogUpdate is a JSON Structure definition published by BlueCart, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

catalogName enabled products customers

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/bluecart/refs/heads/main/json-structure/bluecart-catalog-update-structure.json",
  "name": "CatalogUpdate",
  "description": "Payload for updating a catalog.",
  "type": "object",
  "properties": {
    "catalogName": {
      "type": "string",
      "example": "Premium Wines"
    },
    "enabled": {
      "type": "boolean",
      "example": true
    },
    "products": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    },
    "customers": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    }
  }
}