Canto · Schema

custom_attribute_mapping

Digital Asset ManagementDAMBrand AssetsImagesVideosDocumentsMedia LibraryAsset Distribution

Properties

Name Type Description
name string Name of the custom attribute mapping
product_custom_attribute_id number ID of the associated product custom attribute
required boolean Whether this attribute mapping is required
View JSON Schema on GitHub

JSON Schema

canto-custom-attribute-mapping.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "custom_attribute_mapping",
  "required": [
    "name",
    "product_custom_attribute_id"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the custom attribute mapping"
    },
    "product_custom_attribute_id": {
      "type": "number",
      "nullable": true,
      "description": "ID of the associated product custom attribute"
    },
    "required": {
      "type": "boolean",
      "description": "Whether this attribute mapping is required"
    }
  },
  "additionalProperties": false
}