Canto · Schema
product_channel_template_summary
Digital Asset ManagementDAMBrand AssetsImagesVideosDocumentsMedia LibraryAsset Distribution
Properties
| Name | Type | Description |
|---|---|---|
| id | number | Product Channel Template ID |
| name | string | Product Channel Template Name |
| product_channel_id | number | Associated Product Channel ID |
| file_name_export_format | string | Export file name format template |
| image_export_size | string | Export image size |
| created_at | string | Product Channel Template creation timestamp |
| updated_at | string | Product Channel Template last update timestamp |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "product_channel_template_summary",
"required": [
"id",
"name",
"product_channel_id",
"created_at",
"updated_at"
],
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Product Channel Template ID"
},
"name": {
"type": "string",
"description": "Product Channel Template Name"
},
"product_channel_id": {
"type": "number",
"description": "Associated Product Channel ID"
},
"file_name_export_format": {
"type": "string",
"nullable": true,
"description": "Export file name format template"
},
"image_export_size": {
"type": "string",
"nullable": true,
"description": "Export image size"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Product Channel Template creation timestamp"
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "Product Channel Template last update timestamp"
}
},
"additionalProperties": false
}