-
Notifications
You must be signed in to change notification settings - Fork 0
/
antiques.json
133 lines (133 loc) · 3.32 KB
/
antiques.json
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
[ {
"name" : "Antique victorian style mirror",
"type" : "mirror",
"description" : "Victorian style mirror from mid 1800s.",
"price" : 1275.0,
"sold" : false,
"sellerName" : "Courtland Treasures",
"lastBidder" : null,
"favorites" : [ ],
"sellType" : "AUCTION",
"buyer" : null
}, {
"name" : "Golden chest",
"type" : "chest",
"description" : "Golden chest used by pirates to store treasure.",
"price" : 2500.0,
"sold" : false,
"sellerName" : "Courtland Treasures",
"lastBidder" : null,
"favorites" : [ ],
"sellType" : "AUCTION",
"buyer" : null
}, {
"name" : "Antique rolling pin",
"type" : "rolling pin",
"description" : "Antique rolling pin from early 1800s",
"price" : 200.0,
"sold" : false,
"sellerName" : "Baker Peter",
"lastBidder" : null,
"favorites" : [ ],
"sellType" : "SALE",
"buyer" : null
}, {
"name" : "Blue moon stone",
"type" : "stone",
"description" : "Blue moon stone found in the beach under a blue moon",
"price" : 100.0,
"sold" : false,
"sellerName" : "Relic's Relics",
"lastBidder" : null,
"favorites" : [ ],
"sellType" : "AUCTION",
"buyer" : null
}, {
"name" : "Dead king's crown",
"type" : "crown",
"description" : "Golden crown once belonged to a king, but no one knows who",
"price" : 1500.0,
"sold" : false,
"sellerName" : "Relic's Relics",
"lastBidder" : null,
"favorites" : [ ],
"sellType" : "AUCTION",
"buyer" : null
}, {
"name" : "Rusty spoon",
"type" : "spoon",
"description" : "Very rusty spoon from early 1800s",
"price" : 50.0,
"sold" : false,
"sellerName" : "Baker Peter",
"lastBidder" : null,
"favorites" : [ ],
"sellType" : "SALE",
"buyer" : null
}, {
"name" : "Mirror from Titanic",
"type" : "mirror",
"description" : "Mirror found from the depths next to Titanic",
"price" : 3000.0,
"sold" : false,
"sellerName" : "Relic's Relics",
"lastBidder" : null,
"favorites" : [ ],
"sellType" : "SALE",
"buyer" : null
}, {
"name" : "Golden spoon from 1700s",
"type" : "spoon",
"description" : "Golden spoon from the 1700s, someone says it once belonged to a king's personal baker",
"price" : 950.0,
"sold" : false,
"sellerName" : "Baker Peter",
"lastBidder" : null,
"favorites" : [ ],
"sellType" : "AUCTION",
"buyer" : null
}, {
"name" : "Broken crown",
"type" : "crown",
"description" : "A broken crown, perhaps a king defeated in a battle",
"price" : 3500.0,
"sold" : false,
"sellerName" : "Courtland Treasures",
"lastBidder" : null,
"favorites" : [ ],
"sellType" : "SALE",
"buyer" : null
}, {
"name" : "Antique table",
"type" : "table",
"description" : "Antique table from the 1600s",
"price" : 1000.0,
"sold" : false,
"sellerName" : "John's furniture",
"lastBidder" : null,
"favorites" : [ ],
"sellType" : "AUCTION",
"buyer" : null
}, {
"name" : "Antique chair",
"type" : "chair",
"description" : "Antique table from the 1830s",
"price" : 750.0,
"sold" : false,
"sellerName" : "John's furniture",
"lastBidder" : null,
"favorites" : [ ],
"sellType" : "AUCTION",
"buyer" : null
}, {
"name" : "Antique dresser",
"type" : "dresser",
"description" : "Antique dresser from late 1800s",
"price" : 1250.0,
"sold" : false,
"sellerName" : "John's furniture",
"lastBidder" : null,
"favorites" : [ ],
"sellType" : "SALE",
"buyer" : null
} ]