BigCommerce · Schema

SEOSettings

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
meta_description string
meta_keywords string
page_title string
www_redirect string
View JSON Schema on GitHub

JSON Schema

bigcommerce-seosettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SEOSettings",
  "title": "SEOSettings",
  "type": "object",
  "properties": {
    "meta_description": {
      "type": "string"
    },
    "meta_keywords": {
      "type": "string"
    },
    "page_title": {
      "type": "string"
    },
    "www_redirect": {
      "type": "string",
      "enum": [
        "www",
        "no-www",
        "none"
      ]
    }
  },
  "x-internal": false
}