Working with multi-value attributes in inclusion rules

NOTE
Support for dynamic matching to multi-value attributes is currently available only in criteria when using a profile attribute matching or parameter (mbox) attribute matching rule when comparing a single value left side to a multi-value right side. Multi-value attributes are not currently supported in promotions, entity attribute matching, or for lists on the left side of inclusion rules.

Example: Exclude recently watched items

Suppose that you want to prevent any movies that are in the user’s last ten watched movies from being recommended. First, write a profile script called user.lastWatchedMovies to track the last ten viewed movies as a JSON array. Then, you can exclude the items by using the following inclusion rule:

`Profile Attribute Matching`
`id - is not contained in list - user.lastWatchedMovies`

JSON API representation of the inclusion rule:

{
    "attribute": "id",
    "operation": "isNotContainedInList",
    "source": {
        "name": "user.lastWatchedMovies",
        "type": "PROFILE"
    }
}

Example: Recommend items from the user’s favorites

Suppose that you want to recommend tickets only to concerts if the band playing is one of the user’s favorite bands. First, ensure that you have a profile variable called profile.favoriteBands that contains the user’s favorite bands. Then, ensure that your catalog includes an attribute entity.artistPerforming that includes the artist performing in the concert. Then, you can use the following inclusion rule:

`Profile Attribute Matching`
`artistPerforming - is contained in list - profile.favoriteBands`

JSON API representation of the inclusion rule:

{
    "attribute": "artistPerforming",
    "operation": "isContainedInList",
    "source": {
        "name": "profile.favoriteBands",
        "type": "PROFILE"
    }
}