{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CategoryTree", "title": "CategoryTree", "type": "object", "properties": { "applicableMarketplaceIds": { "type": "array", "description": "A list of one or more identifiers of the eBay marketplaces that use this category tree.", "items": { "type": "string", "description": " For implementation help, refer to eBay API documentation" } }, "categoryTreeId": { "type": "string", "description": "The unique identifier of this eBay category tree." }, "categoryTreeVersion": { "type": "string", "description": "The version of this category tree. 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." }, "rootCategoryNode": { "description": "Contains details of all nodes of the category tree hierarchy, starting with the root node and down to the leaf nodes. This is a recursive structure.

Note: The root node of a full default category tree includes the categoryId field, but its value should not be relied upon. It provides no useful information for application development.", "$ref": "#/components/schemas/CategoryTreeNode" } }, "description": "This type contains information about all nodes of a specified eBay category tree." }