pdm binding

This commit is contained in:
Wolfgang Koch
2020-11-13 09:35:03 +01:00
parent 5cc9ca25f7
commit ba015431bd
5 changed files with 12 additions and 5 deletions

View File

@@ -9,6 +9,7 @@ annotate bookshop.Customers with @PersonalData.EntitySemantics: 'DataSubject'
firstName @PersonalData.IsPotentiallyPersonal;
lastName @PersonalData.IsPotentiallyPersonal;
creditCardNo @PersonalData.IsPotentiallySensitive;
dateOfBirth @PersonalData.IsPotentiallyPersonal;
}
annotate bookshop.CustomerPostalAddress with @PersonalData.EntitySemantics: 'DataSubjectDetails'
@@ -20,11 +21,12 @@ annotate bookshop.CustomerPostalAddress with @PersonalData.EntitySemantics: 'Dat
}
// annotations for Personal Data Manager - Search Fields
annotate bookshop.Customers with @(Communication.Contact : {
annotate bookshop.Customers with @(Communication.Contact : {
n : {
surname: lastName,
given: firstName
},
},
bday: dateOfBirth,
email: emailAddress
});