Shreepad Khandve
04/13/2023, 12:33 PMMarcos Marx (Airbyte)
04/13/2023, 12:37 PMShreepad Khandve
04/13/2023, 12:38 PMMarcos Marx (Airbyte)
04/13/2023, 12:45 PMShreepad Khandve
04/13/2023, 12:45 PMMarcos Marx (Airbyte)
04/13/2023, 12:47 PMShreepad Khandve
04/13/2023, 12:48 PMShreepad Khandve
04/13/2023, 12:49 PMShreepad Khandve
04/13/2023, 12:51 PM"products": [
{
"id": 83047368,
"created_at": "2019-01-02T15:26:41.000+00:00",
"updated_at": "2019-08-27T08:26:25.000+00:00",
"blacklisted": false,
"average_score": 4.58357,
"total_reviews": 3554,
"url": "<https://yotpo.com/go/fk**4Ad>",
"external_product_id": "yotpo_site_reviews",
"name": "<http://www>.******.com",
"description": null,
"product_specs": [],
"category": {
"id": null,
"name": null
},
"images": []
}
]
}Marcos Marx (Airbyte)
04/13/2023, 12:52 PM{
"id": 83047368,
"created_at": "2019-01-02T15:26:41.000+00:00",
"updated_at": "2019-08-27T08:26:25.000+00:00",
"blacklisted": false,
"average_score": 4.58357,
"total_reviews": 3554,
"url": "<https://yotpo.com/go/fk**4Ad>",
"external_product_id": "yotpo_site_reviews",
"name": "<http://www>.******.com",
"description": null,
"product_specs": [],
"category": {
"id": null,
"name": null
},
"images": []
}
You schema should be something like:
{
"$schema": "<http://json-schema.org/draft-07/schema#>",
"properties": {
"id": {
"type": "number"
},
"created_at": {
"type": "number"
},
...
}Shreepad Khandve
04/13/2023, 12:54 PMShreepad Khandve
04/13/2023, 1:39 PM}
},
"required": [
"id",
"name"
]
},
"images": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"original": {
"type": "string"
},
"square": {
"type": "string"
},
"facebook": {
"type": "string"
},
"facebook_square": {
"type": "string"
},
"kind": {
"type": "string"
}
},Marcos Marx (Airbyte)
04/13/2023, 3:18 PMfor e.g: in below imge, we have product_specs, category, images as parent nodes, but i got new table for each node. can we get that in single table ?Normalization will do this for you and generate a table like
parent_imagesShreepad Khandve
04/13/2023, 6:00 PMShreepad Khandve
04/14/2023, 11:49 AMcursor = column_names[self.cursor_field[0]][0]
2023-04-14 09:53:12 normalization > KeyError: 'since_updated_at'Shreepad Khandve
04/14/2023, 11:49 AMShreepad Khandve
04/14/2023, 11:50 AMMarcos Marx (Airbyte)
04/14/2023, 12:35 PMShreepad Khandve
04/14/2023, 1:48 PM