BigCommerce · Schema

Which Theme To Download

An object specifying which theme to download. One of: `original`: the original Marketplace or uploaded custom theme; `last_activated`: the theme version most recently applied to the store; `last_created`: the theme version most recently created.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS
View JSON Schema on GitHub

JSON Schema

bigcommerce-whichthemetodownload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WhichThemeToDownload",
  "title": "Which Theme To Download",
  "description": "An object specifying which theme to download. One of: `original`: the original Marketplace or uploaded custom theme; `last_activated`: the theme version most recently applied to the store; `last_created`: the theme version most recently created.",
  "allOf": [
    {
      "description": "A BigCommerce object specifying which theme to download.\n\n`original`: the original Marketplace or uploaded custom theme.\n\n`last_activated`: the theme version most recently applied to the store.\n\n`last_created`: the theme version most recently created.\n\nIf `which` is missing or invalid in the request, its value will default to `last_activated`.",
      "example": "original",
      "properties": {
        "which": {
          "description": "Which revision to use.",
          "type": "string",
          "enum": [
            "original",
            "last_activated",
            "last_created"
          ]
        }
      }
    }
  ],
  "type": "object",
  "x-internal": false
}