-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add all traits to profile properties in track call
- Loading branch information
Showing
2 changed files
with
38 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -705,7 +705,7 @@ | |
} | ||
}, | ||
{ | ||
"description": "Track event call", | ||
"description": "Screen event call", | ||
"input": { | ||
"destination": { | ||
"Config": { | ||
|
@@ -800,13 +800,13 @@ | |
"properties": { | ||
"PreviouslyVicePresident": true, | ||
"YearElected": 1801, | ||
"VicePresidents": ["Aaron Burr", "George Clinton"], | ||
"age": "22" | ||
"VicePresidents": ["Aaron Burr", "George Clinton"] | ||
}, | ||
"profile": { | ||
"$email": "[email protected]", | ||
"$phone_number": "9112340375", | ||
"$id": "sajal12" | ||
"$id": "sajal12", | ||
"age": "22" | ||
} | ||
} | ||
} | ||
|
@@ -863,7 +863,11 @@ | |
"age": "22", | ||
"email": "[email protected]", | ||
"phone": "9112340375", | ||
"anonymousId": "9c6bd77ea9da3e68" | ||
"anonymousId": "9c6bd77ea9da3e68", | ||
"plan_details": { | ||
"plan_type": "gold", | ||
"duration": "3 months" | ||
} | ||
}, | ||
"library": { | ||
"name": "com.rudderstack.android.sdk.core", | ||
|
@@ -917,13 +921,15 @@ | |
"properties": { | ||
"vicePresdentInfo.PreviouslVicePresident": true, | ||
"vicePresdentInfo.VicePresidents": ["AaronBurr", "GeorgeClinton"], | ||
"vicePresdentInfo.YearElected": 1801, | ||
"age": "22" | ||
"vicePresdentInfo.YearElected": 1801 | ||
}, | ||
"profile": { | ||
"$email": "[email protected]", | ||
"$phone_number": "9112340375", | ||
"$id": "sajal12" | ||
"$id": "sajal12", | ||
"age": "22", | ||
"plan_details.plan_type": "gold", | ||
"plan_details.duration": "3 months" | ||
} | ||
} | ||
} | ||
|
@@ -1034,15 +1040,15 @@ | |
"properties": { | ||
"PreviouslyVicePresident": true, | ||
"YearElected": 1801, | ||
"age": "22", | ||
"VicePresidents": ["Aaron Burr", "George Clinton"], | ||
"description": "Sample description", | ||
"name": "Test" | ||
"VicePresidents": ["Aaron Burr", "George Clinton"] | ||
}, | ||
"profile": { | ||
"$email": "[email protected]", | ||
"$phone_number": "9112340375", | ||
"$id": "sajal12" | ||
"$id": "sajal12", | ||
"age": "22", | ||
"name": "Test", | ||
"description": "Sample description" | ||
}, | ||
"value": 3000 | ||
} | ||
|
@@ -1152,12 +1158,12 @@ | |
"properties": { | ||
"PreviouslyVicePresident": true, | ||
"YearElected": 1801, | ||
"VicePresidents": ["Aaron Burr", "George Clinton"], | ||
"age": "22" | ||
"VicePresidents": ["Aaron Burr", "George Clinton"] | ||
}, | ||
"profile": { | ||
"$email": "[email protected]", | ||
"$phone_number": "9112340375", | ||
"age": "22", | ||
"_id": "sajal12" | ||
} | ||
} | ||
|
@@ -1483,7 +1489,10 @@ | |
"profile": { | ||
"$email": "[email protected]", | ||
"$phone_number": "9112340375", | ||
"$id": "sajal12" | ||
"$id": "sajal12", | ||
"age": "22", | ||
"name": "Test", | ||
"description": "Sample description" | ||
}, | ||
"properties": { | ||
"ProductName": "test product", | ||
|
@@ -1493,10 +1502,7 @@ | |
"URL": "http://www.example.com/path/to/product", | ||
"Brand": "Not for Kids", | ||
"Price": 9.9, | ||
"Categories": ["Fiction", "Children"], | ||
"age": "22", | ||
"name": "Test", | ||
"description": "Sample description" | ||
"Categories": ["Fiction", "Children"] | ||
} | ||
} | ||
} | ||
|
@@ -1633,9 +1639,6 @@ | |
"properties": { | ||
"$event_id": "1234", | ||
"$value": 20, | ||
"age": "22", | ||
"name": "Test", | ||
"description": "Sample description", | ||
"items[0].ProductID": "123", | ||
"items[0].SKU": "G-32", | ||
"items[0].ProductName": "Monopoly", | ||
|
@@ -1652,7 +1655,10 @@ | |
"profile": { | ||
"$email": "[email protected]", | ||
"$phone_number": "9112340375", | ||
"$id": "sajal12" | ||
"$id": "sajal12", | ||
"age": "22", | ||
"name": "Test", | ||
"description": "Sample description" | ||
} | ||
} | ||
} | ||
|
@@ -1780,16 +1786,16 @@ | |
"profile": { | ||
"$email": "[email protected]", | ||
"$phone_number": "9112340375", | ||
"$id": "sajal12" | ||
"$id": "sajal12", | ||
"age": "22", | ||
"name": "Test", | ||
"description": "Sample description" | ||
}, | ||
"properties": { | ||
"$value": 12.12, | ||
"AddedItemCategories": ["Fiction3", "Children3"], | ||
"ItemNames": ["book1", "book2"], | ||
"CheckoutURL": "http://www.heythere.com", | ||
"age": "22", | ||
"name": "Test", | ||
"description": "Sample description", | ||
"items": [ | ||
{ | ||
"ProductID": "b1pid", | ||
|