Created
July 28, 2023 07:26
-
-
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.
This file contains hidden or 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
{ | |
"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