Canto · Schema
catalog
Digital Asset ManagementDAMBrand AssetsImagesVideosDocumentsMedia LibraryAsset Distribution
Properties
| Name | Type | Description |
|---|---|---|
| id | number | Product Catalog ID |
| name | string | Product Catalog Name |
| summary | string | Product Catalog Summary |
| product_attribute_view_id | number | ID Of Product Attribute View associated with this Catalog |
| created_at | string | Product Catalog Created At |
| updated_at | string | Product Catalog Updated At |
| banner_asset_id | string | ID of Banner Asset of this Catalog Banner |
| user_id | string | ID of User who created this Catalog |
| product_channel_id | number | ID of Product Channel associated with this Catalog for exports |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "catalog",
"required": [
"banner_asset_id",
"created_at",
"id",
"product_attribute_view_id",
"product_channel_id",
"updated_at",
"user_id"
],
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Product Catalog ID"
},
"name": {
"type": "string",
"description": "Product Catalog Name"
},
"summary": {
"type": "string",
"description": "Product Catalog Summary"
},
"product_attribute_view_id": {
"type": "number",
"description": "ID Of Product Attribute View associated with this Catalog"
},
"created_at": {
"type": "string",
"description": "Product Catalog Created At"
},
"updated_at": {
"type": "string",
"description": "Product Catalog Updated At"
},
"banner_asset_id": {
"type": "string",
"description": "ID of Banner Asset of this Catalog Banner"
},
"user_id": {
"type": "string",
"description": "ID of User who created this Catalog"
},
"product_channel_id": {
"type": "number",
"description": "ID of Product Channel associated with this Catalog for exports"
}
},
"additionalProperties": false
}