Created
December 19, 2016 11:49
-
-
Save amlcurran/6d174c472e2523be5f9cad7092e1d7ab to your computer and use it in GitHub Desktop.
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
{ | |
"fruits" : [ | |
{ | |
"name" : "Apple", | |
"image" : "https://upload.wikimedia.org/wikipedia/commons/thumb/1/15/Red_Apple.jpg/265px-Red_Apple.jpg", | |
"price" : 35 | |
}, | |
{ | |
"name" : "Banana", | |
"image" : "https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Bananas_white_background_DS.jpg/320px-Bananas_white_background_DS.jpg", | |
"price" : 12 | |
}, | |
{ | |
"name" : "Grapes", | |
"image" : "https://upload.wikimedia.org/wikipedia/commons/thumb/b/bb/Table_grapes_on_white.jpg/320px-Table_grapes_on_white.jpg", | |
"weight": 0.1, | |
"price" : 45 | |
}, | |
{ | |
"name" : "Pineapple", | |
"image" : "https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Pineapple_and_cross_section.jpg/286px-Pineapple_and_cross_section.jpg", | |
"price" : 200 | |
} | |
] | |
} |
Thanks
Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank You!