BigCommerce · Schema

attribute_Full

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
attribute_id integer Attribute ID.
attribute_value string Attribute value.
customer_id integer Customer ID.
date_created string The date the customer attribute was created.
date_modified string The date the customer attribute was modified.
id integer Attribute value ID.
View JSON Schema on GitHub

JSON Schema

bigcommerce-attribute-full-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/attribute_Full",
  "title": "attribute_Full",
  "description": "",
  "type": "object",
  "x-examples": {
    "Example": {
      "attribute_id": 2,
      "attribute_value": "Yes",
      "customer_id": 1,
      "date_created": "2021-07-28T19:00:38Z",
      "date_modified": "2021-07-28T19:00:38Z",
      "id": 2
    }
  },
  "properties": {
    "attribute_id": {
      "type": "integer",
      "description": "Attribute ID.",
      "format": "int32",
      "example": 2
    },
    "attribute_value": {
      "type": "string",
      "minLength": 1,
      "description": "Attribute value.",
      "example": "Yes"
    },
    "customer_id": {
      "type": "integer",
      "description": "Customer ID.",
      "example": 1,
      "format": "int32"
    },
    "date_created": {
      "type": "string",
      "minLength": 1,
      "description": "The date the customer attribute was created.",
      "format": "date-time"
    },
    "date_modified": {
      "type": "string",
      "minLength": 1,
      "description": "The date the customer attribute was modified.",
      "format": "date-time"
    },
    "id": {
      "type": "integer",
      "description": "Attribute value ID.",
      "format": "int32",
      "example": 2
    }
  },
  "x-internal": false
}