File tree Expand file tree Collapse file tree 1 file changed +18
-16
lines changed
src/connections/storage/warehouses Expand file tree Collapse file tree 1 file changed +18
-16
lines changed Original file line number Diff line number Diff line change @@ -231,26 +231,28 @@ ORDER by column_name
231
231
232
232
### How event tables handle nested objects and arrays
233
233
234
- In order to preserve the quality of your events data, Segment uses the following methods to store objects and arrays in the event tables:
234
+ To preserve the quality of your events data, Segment uses the following methods to store objects and arrays in the event tables:
235
235
236
236
<table >
237
+ <thead >
237
238
<tr >
238
239
<th> Field </th>
239
240
<th> Code (Example) </th>
240
241
<th> Schema (Example) </th>
241
242
</tr >
243
+ </thead >
242
244
243
245
<tr >
244
246
<td ><b >Object (Context):</b > Flatten </td >
245
247
<td markdown =" 1 " >
246
248
247
- ``` json
248
- context: {
249
- app: {
250
- version: "1.0.0"
251
- }
249
+ ``` json
250
+ context: {
251
+ app: {
252
+ version: "1.0.0"
252
253
}
253
- ```
254
+ }
255
+ ```
254
256
</td >
255
257
<td >
256
258
<b>Column Name:</b><br/>
@@ -267,9 +269,9 @@ In order to preserve the quality of your events data, Segment uses the following
267
269
268
270
``` json
269
271
traits: {
270
- address: {
271
- street: "6th Street"
272
- }
272
+ address: {
273
+ street: "6th Street"
274
+ }
273
275
}
274
276
```
275
277
@@ -289,9 +291,9 @@ address_street<br/>
289
291
290
292
``` json
291
293
properties: {
292
- product_id: {
293
- sku: "G-32"
294
- }
294
+ product_id: {
295
+ sku: "G-32"
296
+ }
295
297
}
296
298
```
297
299
</td >
@@ -309,9 +311,9 @@ properties: {
309
311
310
312
``` json
311
313
products: {
312
- product_id: [
313
- " 507f1" , " 505bd"
314
- ]
314
+ product_id: [
315
+ " 507f1" , " 505bd"
316
+ ]
315
317
}
316
318
```
317
319
You can’t perform that action at this time.
0 commit comments