Skip to content

Commit 876020a

Browse files
committed
[netlify-build]
1 parent ad3013c commit 876020a

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

src/connections/reverse-etl/index.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -177,16 +177,14 @@ When you set up destination actions in Reverse ETL, depending on the destination
177177
You can send data to a mapping field that requires object data. An example of object mapping is an `Order completed` model with a `Products` column that’s in object format.
178178

179179
Example:
180-
181180

182181
{
183-
"product1": {
184-
"productColor": "pink",
185-
"productName": "tshirt"
186-
},
187-
"product2": {
188-
"productColor": "white",
189-
"productName": "skirt"
182+
"product": {
183+
"id": 0001,
184+
"color": "pink",
185+
"name": "tshirt",
186+
"revenue": 20,
187+
"inventory": 500
190188
}
191189
}
192190

@@ -228,8 +226,8 @@ To send data to a mapping field that requires array data, you can choose between
228226

229227
Option | Details
230228
------ | --------
231-
Customize array | This enables you to select the specific nested properties to send to the destination.
232-
Select array | This enables you to send all nested properties within the array.
229+
Customize Array | This enables you to select the specific nested properties to send to the destination.
230+
Select Array | This enables you to send all nested properties within the array.
233231

234232
> success ""
235233
> Certain array mapping fields have a fixed list of properties they can accept. If the names of the nested properties in your array don't match the destination properties, the data won't send. Segment recommends you to use the **Customize array** option to ensure your mapping is successful.

0 commit comments

Comments
 (0)