eBay · Schema

CategorySubtree

This type contains information about a particular subtree of a specified eBay category tree. A category subtree consists of a non-root node of the category tree, and all of its descendants down to the leaf nodes.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
categorySubtreeNode object Contains details of all nodes of the category subtree hierarchy below a specified node. This is a recursive structure.
categoryTreeId string The unique identifier of the eBay category tree to which this subtree belongs.
categoryTreeVersion string The version of the category tree identified by categoryTreeId. It's a good idea to cache this value for comparison so you can determine if this category tree has been modified in subsequent cal
View JSON Schema on GitHub

JSON Schema

ebay-categorysubtree-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CategorySubtree",
  "title": "CategorySubtree",
  "type": "object",
  "properties": {
    "categorySubtreeNode": {
      "description": "Contains details of all nodes of the category subtree hierarchy below a specified node. This is a recursive structure.",
      "$ref": "#/components/schemas/CategoryTreeNode"
    },
    "categoryTreeId": {
      "type": "string",
      "description": "The unique identifier of the eBay category tree to which this subtree belongs."
    },
    "categoryTreeVersion": {
      "type": "string",
      "description": "The version of the category tree identified by <b>categoryTreeId</b>. It's a good idea to cache this value for comparison so you can determine if this category tree has been modified in subsequent calls."
    }
  },
  "description": "This type contains information about a particular subtree of a specified eBay category tree. A category subtree consists of a non-root node of the category tree, and all of its descendants down to the leaf nodes."
}