BigCommerce · Schema

attributeValue_Base

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
id integer Attribute value ID.
attribute_id integer Attribute ID.
value string Attribute value. This will always be a string, regardless of the attributeʼs type. Corresponds to `attribute_value` used in customer attribute values `GET` requests.
customer_id integer Customer ID.
View JSON Schema on GitHub

JSON Schema

bigcommerce-attributevalue-base-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/attributeValue_Base",
  "title": "attributeValue_Base",
  "type": "object",
  "properties": {
    "id": {
      "description": "Attribute value ID.",
      "type": "integer",
      "format": "int32"
    },
    "attribute_id": {
      "description": "Attribute ID.",
      "type": "integer",
      "format": "int32"
    },
    "value": {
      "description": "Attribute value. This will always be a string, regardless of the attribute\u02bcs type. \n\nCorresponds to `attribute_value` used in customer attribute values `GET` requests.",
      "type": "string",
      "minLength": 0,
      "maxLength": 255,
      "example": "string"
    },
    "customer_id": {
      "type": "integer",
      "description": "Customer ID.",
      "format": "int32",
      "example": 8504
    }
  },
  "required": [
    "attribute_id",
    "value",
    "customer_id"
  ],
  "x-internal": false
}