I need to create a dmn file where input columns are type and country and output is PII and required
type: type1, country: usa, PII: pii1, required: true
type: type1, country: usa, PII: pii2, required: true
type: type2, country: china, PII: pii3, required: false
type: - , country: china, PII: pii4, required: false
type: - , country: -, PII: pii5, required: true
Below is a sample dmn file. My requirement is more complex. But neither unique nor collect hit policy works. I can’t make PII as an array
forum.dmn (3.6 KB)
What hit policy to be used?
for type: type1, country: usa, I want PII pii1 and pii2
for type: type2, country: china, I want PII pii3
for any othertype, country: china, I want PII pii4
for any othertype and anyother country, I want PII pii5