AttributeValue

A single attribute name-value pair within an attribute set

AutomationCustomer JourneyDigital MarketingEmailMarketingPersonalization

Properties

Name Type Description
name string Name of the attribute
value object Value of the attribute
View JSON Schema on GitHub

JSON Schema

salesforce-marketing-cloud-attributevalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttributeValue",
  "title": "AttributeValue",
  "type": "object",
  "description": "A single attribute name-value pair within an attribute set",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the attribute",
      "example": "Example Title"
    },
    "value": {
      "description": "Value of the attribute",
      "example": "example_value"
    }
  },
  "required": [
    "name",
    "value"
  ]
}