Skip to content

Commit

Permalink
Fix ZIP code, billing mean keys and billing mean value
Browse files Browse the repository at this point in the history
  • Loading branch information
frbattid committed Nov 7, 2024
1 parent 8e1366a commit b3df3a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Empty file.
8 changes: 6 additions & 2 deletions samples/extensions/Fabric_User_Data/v1.0.0/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,13 @@
"options": [ "CreditCard", "IBAN" ]
}}, "doc": "Billing type" },
{ "name": "VALUE", "type": { "type": "string", "x-fp-data-protection": "pseudonymize", "arg.properties": {
"regex": "^[0-9]{16}$"
"regex": "[0-9]{16}"
}}, "doc": "Billing value" }
]
}, "arg.properties": {
"length": 2,
"unique": true,
"keys": { "options": [ "main", "other" ] }
}
}, "doc": "Billing means" },
{ "name": "ADDRESS", "type": {
Expand All @@ -94,7 +98,7 @@
"length": 20
}}, "doc": "Street" },
{ "name": "ZIP_CODE", "type": { "type": "string", "arg.properties": {
"length": 5
"regex": "[0-9]{5}"
}}, "doc": "Zip code" },
{ "name": "COUNTRY", "type": { "type": "string", "logicalType": "country-code-alpha-2", "arg.properties": {
"options": [ "ES" ]
Expand Down

0 comments on commit b3df3a8

Please sign in to comment.