Canto · Schema

category

Digital Asset ManagementDAMBrand AssetsImagesVideosDocumentsMedia LibraryAsset Distribution

Properties

Name Type Description
id number Product Category ID
name string Product Category Name
descendants array Array of categories within this category
View JSON Schema on GitHub

JSON Schema

canto-category.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "category",
  "required": [
    "descendants",
    "id",
    "name"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "description": "Product Category ID"
    },
    "name": {
      "type": "string",
      "description": "Product Category Name"
    },
    "descendants": {
      "type": "array",
      "description": "Array of categories within this category",
      "items": {
        "type": "string"
      }
    }
  },
  "additionalProperties": false
}