AssetDefinition

Specification for creating or updating an asset

AutomationCustomer JourneyDigital MarketingEmailMarketingPersonalization

Properties

Name Type Description
name string Display name of the asset
description string Description of the asset
customerKey string Customer-defined unique key
category object
content string Primary content of the asset
views object Channel-specific content views
data object Asset-type-specific data
tags array
View JSON Schema on GitHub

JSON Schema

salesforce-marketing-cloud-asset-definition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AssetDefinition",
  "type": "object",
  "description": "Specification for creating or updating an asset",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name of the asset"
    },
    "description": {
      "type": "string",
      "description": "Description of the asset"
    },
    "customerKey": {
      "type": "string",
      "description": "Customer-defined unique key"
    },
    "category": {
      "type": "object"
    },
    "content": {
      "type": "string",
      "description": "Primary content of the asset"
    },
    "views": {
      "type": "object",
      "description": "Channel-specific content views"
    },
    "data": {
      "type": "object",
      "description": "Asset-type-specific data"
    },
    "tags": {
      "type": "array"
    }
  }
}