mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 09:26:52 +01:00
Pure git-mv relocation of the SECURITY domain from the community layer to the Microsoft layer. No content changes. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
28 lines
694 B
AL
28 lines
694 B
AL
table 50100 "Customer Feedback"
|
|
{
|
|
fields
|
|
{
|
|
field(1; "Feedback No."; Code[20])
|
|
{
|
|
// No DataClassification declared. Defaults to ToBeClassified.
|
|
}
|
|
field(2; "Contact Name"; Text[100])
|
|
{
|
|
DataClassification = ToBeClassified;
|
|
}
|
|
field(3; "Email"; Text[80])
|
|
{
|
|
// Personal data classified as CustomerContent understates privacy impact.
|
|
DataClassification = CustomerContent;
|
|
}
|
|
field(4; "Feedback Text"; Text[2048])
|
|
{
|
|
DataClassification = ToBeClassified;
|
|
}
|
|
}
|
|
|
|
keys
|
|
{
|
|
key(PK; "Feedback No.") { Clustered = true; }
|
|
}
|
|
}
|