Special Segmentation Format: licenseStatus
The licenseStatus value is made up of 4 sub-values: activated, blocked, expired and allowed. These are presented as boolean values. Any number of segments can be defined, and each segment can contain any subset of the 4 sub-values. These values are ANDed together. A segmentLabel value is required.
In the following example, 2 segments are specified - the first one showing blocked AND not expired and the second one showing allowed AND activated:
[
{
"segmentLabel": "BL and not EXP",
"blocked": true,
"expired": false
},
{
"segmentLabel": "WL and ACT",
"allowed": true,
"expired": true
}
]