BigCommerce · Schema

Theme

A theme.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
variations array The variations.
uuid string The identifier.
name string The theme name identifier.
is_private boolean Flag to identify private themes.
View JSON Schema on GitHub

JSON Schema

bigcommerce-theme-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Theme",
  "title": "Theme",
  "description": "A theme.",
  "type": "object",
  "properties": {
    "variations": {
      "description": "The variations.",
      "type": "array",
      "items": {
        "description": "A variation.",
        "type": "object",
        "properties": {
          "description": {
            "description": "The description.",
            "type": "string"
          },
          "external_id": {
            "description": "The external identifier.",
            "type": "string"
          },
          "name": {
            "description": "The name.",
            "type": "string"
          },
          "uuid": {
            "description": "The identifier.",
            "type": "string"
          }
        }
      }
    },
    "uuid": {
      "description": "The identifier.",
      "type": "string"
    },
    "name": {
      "description": "The theme name identifier.",
      "type": "string"
    },
    "is_private": {
      "description": "Flag to identify private themes.",
      "type": "boolean"
    }
  },
  "x-internal": false
}