BigCommerce · Schema

customerAttributes_Base

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
attribute_id integer Attribute ID.
attribute_value string Attribute value. This will always be a string, regardless of the attribute’s type.
View JSON Schema on GitHub

JSON Schema

bigcommerce-customerattributes-base-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/customerAttributes_Base",
  "title": "customerAttributes_Base",
  "description": "",
  "type": "object",
  "properties": {
    "attribute_id": {
      "type": "integer",
      "format": "int32",
      "example": 55,
      "description": "Attribute ID."
    },
    "attribute_value": {
      "type": "string",
      "example": "string",
      "minLength": 0,
      "maxLength": 255,
      "description": "Attribute value. This will always be a string, regardless of the attribute\u2019s type."
    }
  },
  "x-internal": false
}