-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknowledge_base_data_default.json
More file actions
125 lines (125 loc) · 3.27 KB
/
knowledge_base_data_default.json
File metadata and controls
125 lines (125 loc) · 3.27 KB
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
{
"restaurant": [
{
"id": 0,
"name": "Donath",
"cuisine": "Italian",
"outside-seating": true,
"price-range": "mid-range"
},
{
"id": 1,
"name": "Berlin Burrito Company",
"cuisine": "Mexican",
"outside-seating": false,
"price-range": "cheap"
},
{
"id": 2,
"name": "I due forni",
"cuisine": "Italian",
"outside-seating": true,
"price-range": "mid-range"
},
{
"id": 3,
"name": "Lụa Restaurant",
"cuisine": "Vietnamese",
"outside-seating": true,
"price-range": "cheap"
},
{
"id": 4,
"name": "Pfefferberg",
"cuisine": "German",
"outside-seating": true,
"price-range": "mid-range"
},
{
"id": 5,
"name": "Marubi Ramen",
"cuisine": "Japanese",
"outside-seating": false,
"price-range": "cheap"
},
{
"id": 6,
"name": "Gong Gan",
"cuisine": "Korean",
"outside-seating": true,
"price-range": "cheap"
}
],
"hotel": [
{
"id": 0,
"name": "Hilton",
"price-range": "expensive",
"breakfast-included": true,
"city": "Berlin",
"free-wifi": true,
"star-rating": 5,
"swimming-pool": true
},
{
"id": 1,
"name": "Hilton",
"price-range": "expensive",
"breakfast-included": true,
"city": "Frankfurt am Main",
"free-wifi": true,
"star-rating": 4,
"swimming-pool": false
},
{
"id": 2,
"name": "B&B",
"price-range": "mid-range",
"breakfast-included": false,
"city": "Berlin",
"free-wifi": false,
"star-rating": 1,
"swimming-pool": false
},
{
"id": 3,
"name": "Berlin Wall Hostel",
"price-range": "cheap",
"breakfast-included": false,
"city": "Berlin",
"free-wifi": true,
"star-rating": 2,
"swimming-pool": false
},
{
"id": 4,
"name": "City Hotel",
"price-range": "expensive",
"breakfast-included": true,
"city": "Frankfurt am Main",
"free-wifi": true,
"star-rating": 3,
"swimming-pool": false
},
{
"id": 5,
"name": "Jugendherberge",
"price-range": "cheap",
"breakfast-included": true,
"city": "Berlin",
"free-wifi": false,
"star-rating": 2,
"swimming-pool": false
},
{
"id": 6,
"name": "Berlin Hotel",
"price-range": "mid-range",
"breakfast-included": true,
"city": "Berlin",
"free-wifi": true,
"star-rating": 3,
"swimming-pool": true
}
]
}