BlueCart · JSON Structure

Bluecart Catalog Create Structure

Payload for creating a catalog.

Type: object Properties: 3 Required: 1
RestaurantProcurementWholesaleOrderingFood DistributionHospitalityeCommerce

CatalogCreate is a JSON Structure definition published by BlueCart, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

catalogName 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-create-structure.json",
  "name": "CatalogCreate",
  "description": "Payload for creating a catalog.",
  "type": "object",
  "properties": {
    "catalogName": {
      "type": "string",
      "example": "Premium Wines"
    },
    "products": {
      "type": "array",
      "description": "Products to include, with ids and discount options.",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    },
    "customers": {
      "type": "array",
      "description": "Customers to assign the catalog to, by id.",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    }
  },
  "required": [
    "catalogName"
  ]
}