BigCommerce · Schema

Custom Field

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
fieldId string
fieldValue string This can also be an array for fields that need to support list of values; for example, a set of checkboxes.
View JSON Schema on GitHub

JSON Schema

bigcommerce-customfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomField",
  "title": "Custom Field",
  "type": "object",
  "properties": {
    "fieldId": {
      "type": "string",
      "description": ""
    },
    "fieldValue": {
      "type": "string",
      "description": "This can also be an array for fields that need to support list of values; for example, a set of checkboxes."
    }
  },
  "x-internal": false
}