-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
28 lines (28 loc) · 721 Bytes
/
db.json
File metadata and controls
28 lines (28 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"pizzas": [
{
"id": 0,
"name": "Cheese Volcano",
"ingredients": ["mozzarella", "cheddar", "parmesan"],
"price":12.99
},
{
"id": 1,
"name": "Hawaiian Deluxe",
"ingredients": ["ham", "pineapple", "mozzarella"],
"price":13.75
},
{
"id": 2,
"name": "Gourmet Vegetarian",
"ingredients": ["mushrooms", "black olives", "spinach"],
"price":11.99
},
{
"id": 3,
"name": "Four Seasons",
"ingredients": ["artichokes", "serrano ham", "parmesan"],
"price":14.75
}
]
}