BigCommerce · Schema

parent_id

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
parent_id integer The unique numeric ID of the categoryʼs parent. This field controls where the category sits in the tree of categories that organize the catalog. Required in a POST if creating a child category.
View JSON Schema on GitHub

JSON Schema

bigcommerce-parent-id-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/parent_id",
  "title": "parent_id",
  "type": "object",
  "properties": {
    "parent_id": {
      "type": "integer",
      "description": "The unique numeric ID of the category\u02bcs parent. This field controls where the category sits in the tree of categories that organize the catalog.\nRequired in a POST if creating a child category.",
      "example": 2
    }
  }
}