BigCommerce · Schema

CustomTemplateAssociation

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
channel_id integer
entity_type string
entity_id integer
file_name string
View JSON Schema on GitHub

JSON Schema

bigcommerce-customtemplateassociationupsert-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomTemplateAssociationUpsert",
  "title": "CustomTemplateAssociation",
  "type": "object",
  "properties": {
    "channel_id": {
      "type": "integer"
    },
    "entity_type": {
      "type": "string",
      "enum": [
        "product",
        "category",
        "brand",
        "page"
      ]
    },
    "entity_id": {
      "type": "integer"
    },
    "file_name": {
      "type": "string",
      "example": "custom-product-1.html"
    }
  },
  "required": [
    "channel_id",
    "entity_type",
    "entity_id",
    "file_name"
  ],
  "x-internal": false
}