40 lines
865 B
JSON
40 lines
865 B
JSON
{
|
|
"products": [{
|
|
"id": "1",
|
|
"name": "Cherry",
|
|
"image": "images/Cherry.png",
|
|
"price": "$1.99",
|
|
"colors": ["red", "green", "blue"],
|
|
"condition": "Fresh",
|
|
"description": "Two Cherries"
|
|
},
|
|
{
|
|
"id": "2",
|
|
"name": "Orange",
|
|
"image": "images/Orange.png",
|
|
"price": "$2.99",
|
|
"colors": ["green", "blue"],
|
|
"condition": "Frozen",
|
|
"description": "Giant Orange"
|
|
},
|
|
{
|
|
"id": "3",
|
|
"name": "Nuts",
|
|
"image": "images/Nuts.png",
|
|
"price": "$1.00",
|
|
"colors": ["red"],
|
|
"condition": "Frozen",
|
|
"description": "Mixed Nuts"
|
|
},
|
|
{
|
|
"id": "4",
|
|
"name": "Strawberry",
|
|
"image": "images/Strawberry.png",
|
|
"price": "$1.49",
|
|
"colors": ["blue"],
|
|
"condition": "Fresh",
|
|
"description": "Just Strawberry"
|
|
}
|
|
]
|
|
}
|