BigCommerce · Schema

widget_Base

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
name string The user-friendly name.
description string The user-friendly description.
widget_configuration object The JSON data that populates the template.
View JSON Schema on GitHub

JSON Schema

bigcommerce-widget-base-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/widget_Base",
  "title": "widget_Base",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The user-friendly name."
    },
    "description": {
      "type": "string",
      "description": "The user-friendly description."
    },
    "widget_configuration": {
      "type": "object",
      "format": "json",
      "description": "The JSON data that populates the template."
    }
  },
  "x-internal": false,
  "x-examples": {}
}