Skip to content

Commit

Permalink
Fix User_Data AGE and ACTIVATION_DATE in extension
Browse files Browse the repository at this point in the history
  • Loading branch information
frbattid committed Nov 7, 2024
1 parent 8d01440 commit 8e1366a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions samples/extensions/Fabric_User_Data/v1.0.0/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
}}, "doc": "User name" },
{ "name": "AGE", "type": { "type": "int", "arg.properties": {
"range": {
"start": 18,
"end": 99
"min": 18,
"max": 99
}
}}, "doc": "User age"},
{ "name": "ACTIVATION_DATE", "type": { "x-fp-time-dimension": "logicalType", "type": "string", "logicalType": "iso-date", "arg.properties": {
"range": {
"start": "${DATE_RANGE_START}",
"end": "${DATE_RANGE_END}"
"start": "2021-01-01",
"end": "2026-01-01"
}
}}, "doc": "Activation date" },
{ "name": "SEGMENT_ID", "type": { "type": "int", "arg.properties": {
Expand Down

0 comments on commit 8e1366a

Please sign in to comment.