BigCommerce · Schema

forward

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
type string The type of redirect. If it is a `manual` redirect then type will always be manual. Dynamic redirects will have the type of the page. Such as product or category.
ref integer Reference of the redirect. Dynamic redirects will have the category or product number. Manual redirects will have the url that is being directed to.
View JSON Schema on GitHub

JSON Schema

bigcommerce-forward-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/forward",
  "title": "forward",
  "type": "object",
  "x-internal": false,
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of redirect. If it is a `manual` redirect then type will always be manual. Dynamic redirects will have the type of the page. Such as product or category.",
      "example": "product"
    },
    "ref": {
      "type": "integer",
      "description": "Reference of the redirect. Dynamic redirects will have the category or product number. Manual redirects will have the url that is being directed to.",
      "example": 111
    }
  }
}