BlueCart · JSON Structure

Bluecart Client Update Structure

Payload for updating a client.

Type: object Properties: 9
RestaurantProcurementWholesaleOrderingFood DistributionHospitalityeCommerce

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

Properties

firstName lastName catalogId orderFrequency accountNumber nickname addresses salesReps status

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-client-update-structure.json",
  "name": "ClientUpdate",
  "description": "Payload for updating a client.",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "example": "Jordan"
    },
    "lastName": {
      "type": "string",
      "example": "Rivera"
    },
    "catalogId": {
      "type": "int64",
      "example": 700
    },
    "orderFrequency": {
      "type": "string",
      "example": "Weekly"
    },
    "accountNumber": {
      "type": "string",
      "example": "ACCT-5012"
    },
    "nickname": {
      "type": "string",
      "example": "DTB"
    },
    "addresses": {
      "type": "object",
      "additionalProperties": true
    },
    "salesReps": {
      "type": "array",
      "items": {
        "type": "int64"
      }
    },
    "status": {
      "type": "string",
      "example": "Active"
    }
  }
}