BlueCart · Schema

CatalogUpdate

Payload for updating a catalog.

RestaurantProcurementWholesaleOrderingFood DistributionHospitalityeCommerce

Properties

Name Type Description
catalogName string
enabled boolean
products array
customers array
View JSON Schema on GitHub

JSON Schema

bluecart-catalog-update-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CatalogUpdate",
  "description": "Payload for updating a catalog.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bluecart/refs/heads/main/json-schema/bluecart-catalog-update-schema.json",
  "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
      }
    }
  }
}