Working with multi-value attributes in 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"
}
}