-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathknowledge.json
12335 lines (12335 loc) · 461 KB
/
knowledge.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"hotel": {
"0": {
"name": "A AND B GUEST HOUSE",
"docs": {
"0": {
"title": "Are children welcomed at this location?",
"body": "Yes, you can stay with children at A and B Guest House."
},
"1": {
"title": "Can I bring my pet to A and B Guest House?",
"body": "No, pets are not allowed at this property."
},
"2": {
"title": "Do you have onsite parking for your guests?",
"body": "There is onsite parking at A and B Guest House but it costs extra."
},
"3": {
"title": "What time is check-in there?",
"body": "Check-in time is from 3:30pm - 9:00pm."
},
"4": {
"title": "Is smoking allowed on the property?",
"body": "There are designated smoking areas throughout"
},
"5": {
"title": "What languages are spoken?",
"body": "English, Italian, Lithuanian, Portuguese, and Russian are spoken here."
},
"6": {
"title": "Should I make a reservation for parking?",
"body": "You need to make a reservation at A and B Guest House for parking."
},
"7": {
"title": "Are children allowed to check in here?",
"body": "An individual has to be 18 and over to check in at A and B Guest House."
},
"8": {
"title": "what time do I check out?",
"body": "Check out times range from 7:30 AM to 10:00 AM."
},
"9": {
"title": "Can my small dog stay with me?",
"body": "Pets are not allowed at the A and B Guest House."
},
"10": {
"title": "What type of credit cards do you take at your location?",
"body": "We accept American Express, Mastercard, Visa, Maestro, and Sold."
},
"11": {
"title": "Is there wifi available?",
"body": "There is free wifi available."
},
"12": {
"title": "Is there a charge for parking?",
"body": "Parking is 10 GBP per day at the A and B Guest House."
},
"13": {
"title": "How much is the wifi?",
"body": "A and B guest house has free wifi."
},
"14": {
"title": "Is there housekeeping services?",
"body": "There is housekeeping every day at A and B Guest House."
},
"15": {
"title": "Is there parking available?",
"body": "A and B Guest House does have parking."
},
"16": {
"title": "Can we have extra beds put into the room?",
"body": "A and B Guest House has extra beds or cots at availability."
},
"17": {
"title": "Do this property have a meeting or banquet facility?",
"body": "There is no meeting room or banquet hall"
},
"18": {
"title": "Is there free breakfast at A and B Guest House?",
"body": "The A and B Guest House does not provide breakfast for free."
},
"19": {
"title": "What is on the breakfast menu?",
"body": "Both continental and full English/Irish breakfast are available."
},
"20": {
"title": "Is smoking allowed anywhere in the property?",
"body": "There is a place where smokers can smoke at A and B Guest House."
},
"21": {
"title": "Are the rooms at A and B Guest House accessible to those with disabilities?",
"body": "The rooms at A and B Guest House are not accessible."
},
"22": {
"title": "Does A and B Guest House offer accessible parking?",
"body": "No, A and B Guest House does not have accessible parking."
},
"23": {
"title": "Does this site offer concierge service?",
"body": "A and B Guest House does not provide concierge service."
},
"24": {
"title": "Is there a fitness center or gym available?",
"body": "A and B Guest House does not offer a fitness center or gym."
},
"25": {
"title": "Do you have any cooking facility available in the guest house?",
"body": "Microwaves are available to use in the kitchen for guests at A AND B GUEST HOUSE."
},
"26": {
"title": "Is there laundry available at the A and B Guest House?",
"body": "Laundry is available at the A and B Guest House."
},
"27": {
"title": "Does the A and B Guest House offer lift?",
"body": "A and B Guest House doesn't offer lift."
},
"28": {
"title": "Does A and B Guest House have luggage storage service.",
"body": "Luggage and storage service is not provided here."
},
"29": {
"title": "Does this site have swimming pool?",
"body": "The A and B Guest House does not have a swimming pool."
},
"30": {
"title": "Is there a restaurant onsite?",
"body": "There is not any restaurant or bar onsite at A and B Guest House."
},
"31": {
"title": "Are there safety deposit boxes in the rooms at A and B Guest House?",
"body": "A AND B GUEST HOUSE does not have safety deposit box at the rooms."
},
"32": {
"title": "Are there any spa?",
"body": "No spa is onsite here."
},
"33": {
"title": "What is the cost of security deposit?",
"body": "A security deposit of GBP 50 per night is required at A AND B GUEST HOUSE."
},
"34": {
"title": "how late can we check in?",
"body": "The front desk is not open 24 hours at A and B Guest House."
},
"35": {
"title": "Will there be a dry cleaning service offered at A And B Guest House?",
"body": "There is no dry cleaning service offered by A AND B GUEST HOUSE."
},
"36": {
"title": "Does the A and B Guest House provide room service?",
"body": "This place does not provide room service."
},
"37": {
"title": "Does this site offer any airport shuttle service?",
"body": "Shuttle service is not provided here."
}
}
},
"1": {
"name": "ACORN GUEST HOUSE",
"docs": {
"0": {
"title": "Are pets welcomed at this property?",
"body": "People cannot bring pets to Acorn Guest House."
},
"1": {
"title": "Do you have parking available for my car?",
"body": "There is no parking available at Acorn Guest House."
},
"2": {
"title": "What are your breakfast options?",
"body": "Continental, vegetarian, and a full English/Irish breakfast are available at Acron Guest House."
},
"3": {
"title": "What age does a child need to be to stay there?",
"body": "Children of any age are welcome."
},
"4": {
"title": "Is the hotel WiFi accessible?",
"body": "Acorn guest house has free WiFi."
},
"5": {
"title": "Do you serve a free breakfast?",
"body": "Acorn Guest House does not provide breakfast for free."
},
"6": {
"title": "Will I be able to request additional beds there?",
"body": "You cannot ask for extra beds at the Acorn Guest House."
},
"7": {
"title": "Is there any smoking section at this property?",
"body": "The entire property is non-smoking."
},
"8": {
"title": "Is there wifi available, and is it an extra charge?",
"body": "The wifi is free at Acorn Guest House."
},
"9": {
"title": "What time is check in for Acorn Guest House?",
"body": "Check in is between 2:00pm and 10:00pm."
},
"10": {
"title": "When is the latest I can check out?",
"body": "The latest check-out time is 10:30 A.M."
},
"11": {
"title": "What type of credit and debit cards do you take?",
"body": "All major credit cards are accepted at this hotel."
},
"12": {
"title": "What languages does your staff speak?",
"body": "Greek, English, and Polish are spoken at the Acorn Guest House."
},
"13": {
"title": "Are there facility for people with disability?",
"body": "The Acorn Guest House does not have any rooms with disablity access."
},
"14": {
"title": "Is there accessible parking available?",
"body": "Acorn Guest House does not have accessible parking."
},
"15": {
"title": "Will there be a concierge service at Acorn Guest House?",
"body": "Acorn Guest House does not offer concierge service."
},
"16": {
"title": "Does Acorn Guest House have a gym?",
"body": "The Acorn Guest House does not have a fitness center or gym onsite."
},
"17": {
"title": "Will I be able to use a kitchen when I stay here?",
"body": "Acorn Guest House does not offer a kitchen for its guests."
},
"18": {
"title": "Do you provide laundry services?",
"body": "Laundry services are not provided here."
},
"19": {
"title": "Do you have a lift for guests?",
"body": "Acorn Guest House does not have a lift."
},
"20": {
"title": "Are there luggage storage service?",
"body": "Acorn Guest House does not offer luggage storage at their facility."
},
"21": {
"title": "Does this site have facility to hold banquet or meeting?",
"body": "ACORN GUEST HOUSE has no meeting or banquet facilities."
},
"22": {
"title": "What is the cost of parking at the site?",
"body": "There is no charge for parking at ACORN GUEST HOUSE"
},
"23": {
"title": "Do I need a parking reservation?",
"body": "Parking reservations are not required at the Acorn Guest House."
},
"24": {
"title": "Is there an onsite swimming pool at Acorn Guest House?",
"body": "There is no swimming pool onsite at Acorn Guest House."
},
"25": {
"title": "Are there any restaurant?",
"body": "No, there is no restaurant at Acorn Guest House."
},
"26": {
"title": "Do the guest rooms at Acorn Guest House have safety deposit boxes?",
"body": "There are no safety deposit boxes in the rooms at Acorn Guest House."
},
"27": {
"title": "Does ACORN GUEST HOUSE have a spa onsite?",
"body": "No, we do not have a spa onsite."
},
"28": {
"title": "Do you have an age restriction for check-in?",
"body": "No, Acorn Guest House does not have an age restriction for check-in."
},
"29": {
"title": "Are there areas where people can smoke at Acorn Guest House?",
"body": "No designated smoking area is available here."
},
"30": {
"title": "Are pets allowed at the Acorn Guest House?",
"body": "Pets are not allowed at the Acorn Guest House."
},
"31": {
"title": "What is the security deposit amount?",
"body": "A security deposit of 20 GBP per stay is required at Acorn Guest House."
},
"32": {
"title": "Is the front desk open 24 hours at Acorn Guest House?",
"body": "The front desk is not open for 24 hours at ACORN GUEST HOUSE."
},
"33": {
"title": "Do you provide daily housekeeping?",
"body": "Daily housekeeping is not provided here."
},
"34": {
"title": "Does Acorn Guest House provide dry cleaning service?",
"body": "No, Acorn Guest House does not provide dry cleaning service."
},
"35": {
"title": "Is there room service available at Acorn Guest House?",
"body": "No, there is no room service available for guests at Acorn Guest House."
},
"36": {
"title": "Does Acorn Guest House provide any shuttle service?",
"body": "ACORN GUEST HOUSE does not provide any shuttle service."
}
}
},
"2": {
"name": "ALEXANDER BED AND BREAKFAST",
"docs": {
"0": {
"title": "Do you have any staff that speaks European languages?",
"body": "Many European languages are spoken at Alexander Bed and Breakfast."
},
"1": {
"title": "Can I bring my dog with me to Alexander Bed and Breakfast?",
"body": "Pets are not allowed."
},
"2": {
"title": "Do I need to reserve parking at Alexander Bed and Breakfast?",
"body": "A reservation for parking is not necessary at the Alexander Bed and Breakfast."
},
"3": {
"title": "What payment options are available there?",
"body": "Alexander Bed and Breakfast accepts cash, Paypal, or UK cheque."
},
"4": {
"title": "Is there WiFi available?",
"body": "Free Wifi internet is available."
},
"5": {
"title": "What kinds of parking options are available at your property?",
"body": "There is on-site private parking available at Alexander Bed and Breakfast."
},
"6": {
"title": "Is there a fee to use wifi?",
"body": "The WiFi is free at the Alexander Bed and Breakfast."
},
"7": {
"title": "Is there a kitchen I can use to prepare food?",
"body": "No, there is no kitchen at alexander bed and breakfast."
},
"8": {
"title": "Can I bring my dog?",
"body": "Pets are not allowed at the Alexander Bed and Breakfast."
},
"9": {
"title": "Can i park on premises?",
"body": "Yes, you can. Parking is available."
},
"10": {
"title": "Is there a laundry room?",
"body": "There is laundry available at Alexander Bed and Breakfast."
},
"11": {
"title": "Can I smoke at this property?",
"body": "No smoking is allowed at Alexander Bed and Breakfast."
},
"12": {
"title": "Can I bring my 2-year-old when I stay here?",
"body": "Children are allowed at ALEXANDER BED AND BREAKFAST."
},
"13": {
"title": "Does this site have designated smoking area?",
"body": "There is no designated smoking area here."
},
"14": {
"title": "Does the Alexander Bed and Breakfast supply extra beds?",
"body": "Alexander Bed and Breakfast does not supply extra beds."
},
"15": {
"title": "Is there a mandatory security deposit at Alexander Bed and Breakfast?",
"body": "Alexander Bed and Breakfast requires a security deposit of GBP 20 per stay."
},
"16": {
"title": "Is front desk service available for 24 hours?",
"body": "The Alexander Bed and Breakfast does not offer 24-hour front desk."
},
"17": {
"title": "Does the hotel offer a breakfast?",
"body": "The Alexander Bed and Breakfast offers a free continental breakfast."
},
"18": {
"title": "Is there daily housekeeping provided at Alexander Bed and Breakfast?",
"body": "Daily housekeeping is not provided here."
},
"19": {
"title": "Is there dry cleaning available at Alexander Bed and Breakfast?",
"body": "Dry Cleaning is not available at Alexander Bed and Breakfast."
},
"20": {
"title": "Does Alexander Bed and Breakfast provide room service?",
"body": "Alexander Bed and Breakfast does not provide room service."
},
"21": {
"title": "Does this site offer any airport shuttle service?",
"body": "ALEXANDER BED AND BREAKFAST does not provide a shuttle service."
},
"22": {
"title": "Does Alexander Bed and Breakfast offer accessibility to the disabled?",
"body": "Alexander Bed and Breakfast does not offer accessibility to the disabled."
},
"23": {
"title": "Are accessible parking available at the site?",
"body": "Accessible parking is not available at Alexander Bed and Breakfast."
},
"24": {
"title": "Does this site offer concierge service?",
"body": "The Alexander Bed and Breakfast does not provide any concierge service."
},
"25": {
"title": "Is there an onsite fitness center or gym at the Alexander Bed and Breakfast?",
"body": "The Alexander Bed and Breakfast does not offer an onsite fitness center or gym."
},
"26": {
"title": "Are there Elevator available at the site?",
"body": "Alexander Bed and Breakfast does not have lift."
},
"27": {
"title": "Does Alexander Bed and Breakfast offer luggage storage service?",
"body": "Luggage storage service is not provided at Alexander Bed and Breakfast."
},
"28": {
"title": "Are there meeting or banquet facilities at Alexander Bed And Breakfast?",
"body": "There are no meeting or banquet facilities here."
},
"29": {
"title": "What is the cost of parking at the site?",
"body": "Parking is free at Alexander Bed and Breakfast."
},
"30": {
"title": "Is there an onsite swimming pool at Alexander Bed and Breakfast?",
"body": "ALEXANDER BED AND BREAKFAST does not have swimming pool onsite."
},
"31": {
"title": "Are there any restaurant or bar at site?",
"body": "There is no restaurant or bar onsite at ALEXANDER BED AND BREAKFAST."
},
"32": {
"title": "Do you provide safety deposit boxes?",
"body": "No safety deposit boxes are provided here."
},
"33": {
"title": "Are there any spa?",
"body": "There is no spa onsite at ALEXANDER BED AND BREAKFAST."
},
"34": {
"title": "What is the minimum age required to check into Alexander Bed and Breakfast?",
"body": "You must be at least 18 years old to check into Alexander Bed and Breakfast."
},
"35": {
"title": "What is the check in time at the hotel?",
"body": "Check-in time is from 15:00 at Alexander Bed and Breakfast."
},
"36": {
"title": "When is check out time at Alexander Bed and Breakfast?",
"body": "Check out time is at 10:30 at Alexander Bed and Breakfast."
}
}
},
"3": {
"name": "ALLENBELL",
"docs": {
"0": {
"title": "What type of payment is accepted at Allenbell?",
"body": "Allenbell accepts all major credit/debit cards, cash, and checks."
},
"1": {
"title": "Do I have to pay for WiFi?",
"body": "There is free Wifi at Allenbell."
},
"2": {
"title": "Is a security deposit required at Allenbell?",
"body": "Security desposits are required at Allenbell."
},
"3": {
"title": "What is the earliest time I can check in?",
"body": "Check-in time is at 14:00."
},
"4": {
"title": "What is the cancellation policy at Allenbell?",
"body": "Patrons need to cancel no later than five days in advance at Allenbell."
},
"5": {
"title": "What is the check-out time at this property?",
"body": "The check-out time at Allenbell is at 10:00 am."
},
"6": {
"title": "Do you have WiFi?",
"body": "Free WiFi is available at Allenbell."
},
"7": {
"title": "Is there a kitchen and refrigerator available for guests there?",
"body": "There is a refrigerator but no kitchen available for guests at the Allenbell."
},
"8": {
"title": "Should I make a reservation for parking?",
"body": "No reservation is needed for street car parking."
},
"9": {
"title": "Is there a certain area to park my car?",
"body": "Ample off street car parking is available at Allenbell."
},
"10": {
"title": "Is breakfast available at Allenbell?",
"body": "Breakfast at Allenbell is free when you book a room."
},
"11": {
"title": "What are the breakfast options available at your location?",
"body": "Breakfast options at the Allenbell include fruit juices, toast and choice of preserves, choice of breakfast cereals, Continental, or Full English."
},
"12": {
"title": "What is your pet policy?",
"body": "Allenbell is a pet free facility."
},
"13": {
"title": "What are my options for parking at Allenbell?",
"body": "There is free off-street car parking at the Allenbell."
},
"14": {
"title": "Can I smoke there?",
"body": "Allenbell is a non-smoking establishment."
},
"15": {
"title": "Are pets allowed at your location?",
"body": "Sorry, pets are not allowed at ALLENBELL."
},
"16": {
"title": "Are there laundry and ironing facilities at Allenbell?",
"body": "Therer are iron facilities available, but no laundry facilities."
},
"17": {
"title": "Are there facility for people with disability?",
"body": "The Allenbell does not have any room with disability access."
},
"18": {
"title": "Do you have any accessible parking options for disabilities?",
"body": "ALLENBELL offers accessible parking available."
},
"19": {
"title": "Does this site offer concierge service?",
"body": "Concierge service is not provided at Allenbell."
},
"20": {
"title": "Are there any fitness center or gym onsite/",
"body": "Allenbell does not have a fitness center or gym onsite."
},
"21": {
"title": "Is there a lift available at Allenbell?",
"body": "There is not a lift available at Allenbell."
},
"22": {
"title": "Does Allenbell provide luggage storage service?",
"body": "Allenbell does not provide luggage storage service."
},
"23": {
"title": "Does this site have facility to hold banquet or meeting?",
"body": "There are no meeting or banquet facilities at ALLENBELL."
},
"24": {
"title": "What is the cost of parking here?",
"body": "The parking is free at Allenbell."
},
"25": {
"title": "Does the Allenbell offer any outdoors activities?",
"body": "Allenbell does not have a swimming pool onsite."
},
"26": {
"title": "Is there a restaurant or bar onsite at Allenbell?",
"body": "There is no restaurant or bar onsite."
},
"27": {
"title": "Do you offer any safety deposit boxes in your rooms?",
"body": "The Allenbell does not offer safety deposit boxes in their rooms."
},
"28": {
"title": "Is there an onsite spa at Allenbell?",
"body": "No, Allenbell does not have a spa onsite."
},
"29": {
"title": "What is the minimum age requirement for check-in?",
"body": "You must be at least 18 years of age to check in at ALLENBELL."
},
"30": {
"title": "Are children allowed at this property?",
"body": "Children are allowed at ALLENBELL."
},
"31": {
"title": "Is there a smoking area at Allenbell?",
"body": "There is no designated smoking area at Allenbell."
},
"32": {
"title": "Are extra bed available?",
"body": "Extra beds are not available at the Allenbell."
},
"33": {
"title": "Is front desk service available for 24 hours?",
"body": "Allenbell does not offer 24 hours service at their facility."
},
"34": {
"title": "Do you provide a daily housekeeping service?",
"body": "Allenbell does not provide a daily housekeeping service."
},
"35": {
"title": "Does this site offer dry cleaning services?",
"body": "Allenbell does not provide dry cleaning service."
},
"36": {
"title": "What type of language is spoken at the hotel?",
"body": "English, Italian, and Polish are spoken here."
},
"37": {
"title": "Does Allenbell offer room service?",
"body": "Allenbell does not provide room service."
},
"38": {
"title": "Does Allenbell offer a shuttle service?",
"body": "No shuttle service is provided."
}
}
},
"4": {
"name": "ALPHA-MILTON GUEST HOUSE",
"docs": {
"0": {
"title": "Do I need to reserve parking at Alpha-Milton Guest House?",
"body": "No reservation is needed for free parking."
},
"1": {
"title": "What is the charge for WiFi?",
"body": "WiFi is free at Alpha-Milton Guest House."
},
"2": {
"title": "Can I get an extra bed for my room?",
"body": "There is no room for extra beds at the hotel."
},
"3": {
"title": "Do you allow pets at the guest house?",
"body": "Pets are not allowed."
},
"4": {
"title": "Can I smoke there?",
"body": "Smoking is not permitted."
},
"5": {
"title": "How much does it cost to park here?",
"body": "There is free parking at Alpha-Milton guest house"
},
"6": {
"title": "What time is check out at Alpha-Milton Guest House?",
"body": "The check-out time at the Alpha-Milton Guest House is any time in the morning until 11 am."
},
"7": {
"title": "What forms of payment do you accept?",
"body": "This property accepts Visa, Mastercard, and Maestro."
},
"8": {
"title": "Is there a charge for parking?",
"body": "Free parking is possible on site."
},
"9": {
"title": "Is there WiFi offered?",
"body": "Free WiFi is available at the Alpha-Milton Guest House."
},
"10": {
"title": "How early can I check in?",
"body": "Check in time is between 13:00 and 19:00"
},
"11": {
"title": "May i check in with my children?",
"body": "You may stay with children at the Alpha-Milton Guest House."
},
"12": {
"title": "Does the guesthouse offer any free breakfast?",
"body": "The hotel offers a complementary English/Irish breakfast with coffee."
},
"13": {
"title": "Is there lift available at Alpha-MIlton Guest House?",
"body": "No lift is available at Alpha-Milton Guest House."
},
"14": {
"title": "Does the Alpha-Milton Guest House provide luggage storage service?",
"body": "The Alpha-Milton Guest House does not provide luggage storage service."
},
"15": {
"title": "Does this site have facility to hold banquet or meeting?",
"body": "There are no meeting or banquet facilities at Alpha-Milton Guest House."
},
"16": {
"title": "Do you have parking available at your property?",
"body": "On site free parking is offered at the guest house."
},
"17": {
"title": "What kind of fitness do you offer maybe a pool?",
"body": "The Alpha-Milton Guest House does not have a swimming pool onsite."
},
"18": {
"title": "Are there any restaurant or bar?",
"body": "No restaurant or bar is available onsite."
},
"19": {
"title": "Are there safe deposit boxes at the Alpa-Milton Guest House?",
"body": "There are no safe deposit boxes."
},
"20": {
"title": "Are there any spa?",
"body": "There is no onsite spa at ALPHA-MILTON GUEST HOUSE."
},
"21": {
"title": "Can my 17 year old daughter check in for me?",
"body": "There is a 18 or over age limit to check-in at Alpha-Milton Guest House."
},
"22": {
"title": "Is there smoking areas in the guest house?",
"body": "There are no designated smoking areas at the Alpha-Milton Guest House."
},
"23": {
"title": "Are pets allowed on site?",
"body": "Pets are not allowed here."
},
"24": {
"title": "How much is the security deposit for my room?",
"body": "You have to pay GBP 50 per night as a non-refundable security deposit"
},
"25": {
"title": "What time is the front desk open?",
"body": "The front desk at the Alpha-Milton Guest House is not open for 24 hours."
},
"26": {
"title": "Do you provide daily housekeeping services?",
"body": "The Alpha-Milton Guest House does not provide daily housekeeping service."
},
"27": {
"title": "Do you have any sort of laundry service?",
"body": "Alpha-Milton does not provide dry cleaning services."
},
"28": {
"title": "Are you a multi language facility?",
"body": "English is the only language spoken at Alpah-Milton Guest House."
},
"29": {
"title": "Do you provide room service?",
"body": "Room service is not provided here."
},
"30": {
"title": "Does this site offer any shuttle service?",
"body": "Shuttle services are not available at Alpha-Milton Guest House."
},
"31": {
"title": "Are there facility for people with disability?",
"body": "Alpha-Milton Guest House does not have disability access."
},
"32": {
"title": "Is accessible parking available?",
"body": "Accessible parking is not available here."
},
"33": {
"title": "Does Alpha-Milton Guest House provide a concierge service?",
"body": "ALPHA-MILTON GUEST HOUSE does not provide a concierge service."
},
"34": {
"title": "Do you have an onsite fitness center or gym?",
"body": "The Alpha-Milton Guest House does not have a fitness center or gym."
},
"35": {
"title": "Do you have any kitchen facilities for guests to use?",
"body": "The Alpha-Milton guest house offers limited kitchen facilities such as microwave and full English/Irish breakfast."
},
"36": {
"title": "Does this site offer laundry service?",
"body": "Laundry facilities are offered at Alpha-Milton Guest House."
}
}
},
"5": {
"name": "ARBURY LODGE GUESTHOUSE",
"docs": {
"0": {
"title": "Do I have to pay to park at Arbury Lodge Guest House?",
"body": "Parking is free at Arbury Lodge Guesthouse."
},
"1": {
"title": "Do you accept credit cards?",
"body": "Visa and other major cards are accepted here."
},
"2": {
"title": "What time is check-out?",
"body": "Check-out time at the Arbury Lodge Guesthouse is between 8 am and 10 am."
},
"3": {
"title": "What kind of breakfast is served?",
"body": "There is a full english breakfast every morning"
},
"4": {
"title": "Can I stay with my children?",
"body": "Children cannot stay at Arbury Lodge Guesthouse."
},
"5": {
"title": "What is your pet policy for guests?",
"body": "You cannot have pets at Arbury Lodge Guesthouse."
},
"6": {
"title": "Do you have WiFi available for guests?",
"body": "Wifi is available at the Arbury Lodge Guesthouse."
},
"7": {
"title": "Can we have extra beds put into the room?",
"body": "Extra beds are not available."
},
"8": {
"title": "Can I smoke there?",
"body": "Smoking is not allowed at Arbury Lodge Guesthouse."
},
"9": {
"title": "Is free wifi available at your location?",
"body": "Wifi is free at this lodge."
},
"10": {
"title": "Is there parking available at the guesthouse?",
"body": "Free private parking is available."
},
"11": {
"title": "What is the check-in time at this location?",
"body": "The check-in time is from 4pm to 9pm."
},
"12": {
"title": "Is breakfast included in the stay?",
"body": "Arbury Lodge Guesthouse does not offer breakfast for free."
},
"13": {
"title": "Do i need a reservations for a parking space?",
"body": "Reservations are not needed for parking."
},
"14": {
"title": "What are my options for parking there?",
"body": "You can park at Arbury Lodge Guesthouse and the parking is free."
},
"15": {
"title": "Does the Arbury Lodge Guesthouse have any rooms disability access?",
"body": "No, Arbury Lodge Guesthouse does not have any room with disability access."
},
"16": {
"title": "Do you offer accessible parking here?",
"body": "Accessible parking is not available at Arbury Lodge Guesthouse."
},
"17": {
"title": "Will there be an onsite concierge service at Arbury Lodge Guesthouse?",
"body": "No, Arbury Lodge Guest House does not provide concierge service."
},
"18": {
"title": "Are there any fitness or gym area?",
"body": "No fitness center or gym is onsite here."
},
"19": {
"title": "Are there any coffee or tea maker at the site?",
"body": "The coffee and tea maker are available for guests at Arbury Lodge Guesthouse."
},
"20": {
"title": "Are there any laundry service?",
"body": "There is no laundry facility available at ARBURY LODGE GUESTHOUSE."
},
"21": {
"title": "Does the Arbury Lodge Guesthouse have lift?",
"body": "No, we don't have lift at Arbury Lodge Guesthouse."
},
"22": {
"title": "Is there a luggage storage service offered at Arbury Lodge Guesthouse?",
"body": "Luggage storage is not an offered service at Arbury Lodge Guesthouse."
},
"23": {
"title": "Does this site have facility to hold banquet or meeting?",
"body": "We have no banquet facilitiies."
},
"24": {
"title": "Is there an onsite swimming pool for guests?",
"body": "There is no onsite swimming pool at Arbury Lodge Guesthouse."
},
"25": {
"title": "Are there any restaurant or bar onsite?",
"body": "No, there's no restaurant or bar onsite at Arbury Lodge Guesthouse."
},
"26": {
"title": "Are there safety deposit boxes available at Arbury Lodge Guesthouse?",
"body": "There are no safety deposit boxes available at Arbury Lodge Guesthouse."
},
"27": {
"title": "Is there an onsite spa at Arbury Lodge Guesthouse?",
"body": "Arbury Lodge Guesthouse does not have a spa onsite."
},
"28": {
"title": "What's the minimum check-in age here?",
"body": "To check in at Arbury Lodge Guesthouse you must be 18 years old."
},
"29": {
"title": "Does this site have designated smoking area?",
"body": "There is no designated smoking area at the ARBURY LODGE GUESTHOUSE."
},
"30": {
"title": "Are there pets allowed at Arbury Lodge Guesthouse?",
"body": "Pets are not allowed here."
},
"31": {
"title": "Does this site require security deposit?",
"body": "Yes, the security deposit for Arbury Lodge Guesthouse is GBP 20 per stay."
},
"32": {
"title": "Is front desk service available for 24 hours?",
"body": "No, the front desk is not open for 24 hours."
},
"33": {
"title": "Does this site offer daily housekeeping service?",
"body": "Arbury Lodge Guesthouse does not provide a daily housekeeping service."
},
"34": {
"title": "Do you provide dry cleaning services?",
"body": "Dry cleaning services are not provided at Arbury Lodge Guesthouse."
},
"35": {
"title": "What type of language is spoken at the hotel?",
"body": "Ten languages are available at Arbury Lodge Guesthouse including: English, German, Greek, French, Spanish, Italian, Hungarian, Russian, Polish, and Latvian."
},
"36": {
"title": "Does this site offer daily housekeeping service?",
"body": "Room service is not provided at Arbury Lodge Guesthouse."
},
"37": {
"title": "Do you provide shuttle service?",
"body": "No ARBURY LODGE GUESTHOUSE does not provide any shuttle service."
}
}
},
"6": {
"name": "ARCHWAY HOUSE",
"docs": {
"0": {
"title": "Is parking available at Archway House?",
"body": "You can park your car off-road."
},
"1": {
"title": "Is there available WiFi?",
"body": "Wifi is available all through the house."
},
"2": {
"title": "Is there any parking nearby?",
"body": "Parking is available off-road at Archway House."
},
"3": {
"title": "Is there a kitchenette in the rooms?",
"body": "No kitchen in rooms, but there is tea and coffee making equipment, with biscuits."
},
"4": {
"title": "Is smoking allowed at your location?",
"body": "There is a no-smoking policy."
},
"5": {
"title": "What options are available for breakfast?",
"body": "A Full English is included, and can do a lighter breakfast if arrangements are made in advance."
},
"6": {
"title": "What is your pet policy?",
"body": "Archway House does not allow pets."
},
"7": {
"title": "Do you have free WiFi?",
"body": "There is free wireless internet throughout."
},
"8": {
"title": "Is there an extra charge for breakfast at this property?",
"body": "Breakfast is included at Archway House."
},
"9": {
"title": "Can I make a reservation for parking?",
"body": "No reservation is required for parking at Archway House."
},
"10": {
"title": "What is the cost of parking at the site?",
"body": "Free parking is available here."
},
"11": {
"title": "Does Archway House have a swimming pool onsite?",
"body": "There is not a swimming pool onsite at Archway House."
},
"12": {
"title": "Is there a restaurant or bar available onsite?",
"body": "Archway House does not have any restaurant or bar onsite."
},
"13": {
"title": "Is there a safety deposit at Archway House?",
"body": "No safety deposit box is available here."
},
"14": {
"title": "Are there any spa services available at Archway House?",
"body": "There are not spa services available at Archway House."
},
"15": {