BigCommerce · Schema

pageMeta

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
meta_title string
meta_keywords string Comma-separated list of SEO-relevant keywords to include in the element of this page.
meta_description string Description contained within the element of this page.
View JSON Schema on GitHub

JSON Schema

bigcommerce-pagemeta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/pageMeta",
  "title": "pageMeta",
  "type": "object",
  "properties": {
    "meta_title": {
      "type": "string",
      "nullable": true
    },
    "meta_keywords": {
      "description": "Comma-separated list of SEO-relevant keywords to include in the element of this page.\n",
      "default": "\"\"",
      "type": "string",
      "nullable": true
    },
    "meta_description": {
      "type": "string",
      "default": "\"\"",
      "description": "Description contained within the element of this page.\n",
      "nullable": true
    }
  }
}