Skip to content

Commit 9979152

Browse files
authored
Fix how to set data classification through JSON (#52767)
* Fix how to set dataclass through JSON * comments
1 parent 84681d1 commit 9979152

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

docs/core/extensions/data-classification.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,19 @@ To bind your data classification settings, use the .NET configuration system. Fo
9090
```json
9191
{
9292
"Key": {
93-
"PhoneNumber": "MyTaxonomy:PrivateInformation",
93+
"PhoneNumber": {
94+
"TaxonomyName": "MyTaxonomy",
95+
"Value": "PrivateInformation"
96+
},
9497
"ExampleDictionary": {
95-
"CreditCard": "MyTaxonomy:CreditCardNumber",
96-
"SSN": "MyTaxonomy:SocialSecurityNumber"
98+
"CreditCard": {
99+
"TaxonomyName": "MyTaxonomy",
100+
"Value": "CreditCardNumber"
101+
},
102+
"SSN": {
103+
"TaxonomyName": "MyTaxonomy",
104+
"Value": "SocialSecurityNumber"
105+
}
97106
}
98107
}
99108
}

0 commit comments

Comments
 (0)