BigCommerce · Schema

themeConfiguration_Full

A theme.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
uuid string
theme_uuid string The Theme to which the Configuration belongs.
variation_id string The Variation to which the Configuration belongs.
settings object The content of the configuration, which is a JSON object which will vary in structure from theme to theme.
date_created string
site_id integer Site ID to which this configuration belongs. Will be 0 for the original configuration for a Theme.
View JSON Schema on GitHub

JSON Schema

bigcommerce-themeconfiguration-full-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/themeConfiguration_Full",
  "title": "themeConfiguration_Full",
  "description": "A theme.",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "string"
    },
    "theme_uuid": {
      "type": "string",
      "description": "The Theme to which the Configuration belongs."
    },
    "variation_id": {
      "type": "string",
      "description": "The Variation to which the Configuration belongs."
    },
    "settings": {
      "type": "object",
      "description": "The content of the configuration, which is a JSON object which will vary in structure from theme to theme."
    },
    "date_created": {
      "type": "string"
    },
    "site_id": {
      "type": "integer",
      "description": "Site ID to which this configuration belongs. Will be 0 for the original configuration for a Theme."
    }
  },
  "x-internal": false
}