Skip to content

Instantly share code, notes, and snippets.

@rmitula
Created July 28, 2023 07:26
Show Gist options
  • Save rmitula/cddd094de3d63d608ef4912693fa757a to your computer and use it in GitHub Desktop.
Save rmitula/cddd094de3d63d608ef4912693fa757a to your computer and use it in GitHub Desktop.
Listing 5. Updated products record of Product A stored in the Raw Data Zone under /day=02 partition.
{
"product_id": "29e17633-8d1e-4d63-8291-7a34fd79a4e5",
"name": "Product A",
"category": "Electronics",
"variants": [
{
"color": "black",
"size": "M",
"stock": 100
},
{
"color": "white",
"size": "L",
"stock": 75
}
],
"specifications": {
"weight": "1kg",
"dimensions": "10x5x2cm"
},
"ratings": {
"average": 4.5,
"reviews": 300
},
"price": {
"retail": 120, <- NEW PRICE (WAS 100)
"discounted": 100 <- NEW PRICE (WAS 90)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment