-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathinquiries.json
1328 lines (1328 loc) · 44.5 KB
/
inquiries.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
{
"model": "inquiries",
"data": [
{
"contact_id": "2",
"type_id": "5",
"date_at": "2023-07-18T22:31:10.497Z",
"visitor_number": 2,
"stay_length": 3,
"interests": { "set": ["1", "5"] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "I want to Ski. Do you have a season pass for skiing and what are the lift and rental rates"
},
{
"contact_id": "6",
"type_id": "5",
"date_at": "2023-07-18T22:31:10.497Z",
"interests": { "set": ["1", "4", "5" ] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Please send us information specific to Jim Thorpe, particularly the Valley Gorge Railway and the Asa Packer Mansion, and local hiking. Thanks!"
},
{
"contact_id": "2",
"type_id": "1",
"date_at": "2023-07-18T22:31:10.497Z",
"arrival_date_at": "2023-11-20T22:31:10.497Z",
"visitor_number": 1,
"stay_length": 4,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Im looking for a nice place to stay for thanksgiving, not too expensive."
},
{
"contact_id": "2",
"type_id": "5",
"date_at": "2023-07-18T22:31:10.497Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "my friends just came back and hubby has a short vacation ans wouldlike to try this place out!! i you could send the info out asap, i would really appreciated, our vaca is 2nd week of now!! thank you so much Allyson"
},
{
"contact_id": "6",
"type_id": "5",
"date_at": "2023-07-18T22:31:10.497Z",
"interests": { "set": ["4", "5" ] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Fall Foliage"
},
{
"contact_id": "10",
"type_id": "1",
"date_at": "2023-07-18T22:31:10.497Z",
"arrival_date_at": "2023-10-25T22:31:10.497Z",
"visitor_number": 9,
"stay_length": 4,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "There will be 9 of us total. 4 adaults and the rest r 15 and older."
},
{
"contact_id": "120",
"type_id": "5",
"date_at": "2023-07-18T22:31:10.497Z",
"interests": { "set": ["1", "4"] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Would like info on trains, historical sites, wineries."
},
{
"contact_id": "10",
"type_id": "5",
"date_at": "2023-02-01T00:31:00.007Z",
"stay_length": 4,
"brochures": { "set": [ "4", "1", "2", "3" ] },
"reasons_for_visit": { "set": ["2"] },
"comments": "I want to have my wedding in the mountains as a wedding weekend but i want to make sure i'll have facilities to get my hair and makeup done and that my guests will have private quarters and there will be plenty of activities for my guests to take part in and the wedding packages are within reason and beautiful location"
},
{
"contact_id": "134",
"type_id": "5",
"date_at": "2023-02-01T22:31:10.497Z",
"brochures": { "set": [ "4", "1", "2", "3" ] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Could you please send me two sets of brochures because we are coming with another family and want to share all the brochure information with them."
},
{
"contact_id": "27",
"type_id": "5",
"date_at": "2023-02-01T22:31:10.497Z",
"brochures": { "set": [ "4", "1", "2", "3" ] },
"reasons_for_visit": { "set": ["2"] },
"comments": "send brocuers and price guides to give us a guestamate on wut will b spent wuts included"
},
{
"contact_id": "89",
"type_id": "5",
"date_at": "2023-02-01T22:31:10.497Z",
"brochures": { "set": [ "4", "1", "2", "3" ] },
"reasons_for_visit": { "set": ["2"] },
"comments": "please send Brochures by this week"
},
{
"contact_id": "112",
"type_id": "5",
"date_at": "2023-02-01T22:31:10.497Z",
"stay_length": 5,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "We are visiting over Christmas"
},
{
"contact_id": "34",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"interests": { "set": ["1", "4"] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Historical Information specific to the region. Links or book titles would be great if you don't have brochures or other printed documents available."
},
{
"contact_id": "98",
"type_id": "1",
"date_at": "2024-03-14T22:30:42.395Z",
"arrival_date_at": "2023-12-03T22:31:10.497Z",
"visitor_number": 1,
"stay_length": 3,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "looking for lodge in dec 3 to 5"
},
{
"contact_id": "6",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"stay_length": 4,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "tickets for Nascar Race"
},
{
"contact_id": "45",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "i hope to get the brochures before school's Winter break. THANKS!"
},
{
"contact_id": "45",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"brochures": { "set": ["4", "1"] },
"comments": "no smoking"
},
{
"contact_id": "7",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"brochures": { "set": [ "4", "1", "2", "3" ] },
"comments": "as much info as possibe"
},
{
"contact_id": "9",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"interests": { "set": ["5"] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "I am particularly interested in information regarding the waterfalls in the area and places to stay closest to the falls. I would like any pet friendly information you have as well.6"
},
{
"contact_id": "36",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "I also would like to know if any of the Mountain resorts offer military discounts, particularly Camelback."
},
{
"contact_id": "99",
"type_id": "1",
"date_at": "2024-03-14T22:30:42.395Z",
"arrival_date_at": "2024-11-14T22:30:42.395Z",
"visitor_number": 2,
"stay_length": 5,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "we will be going for our honeymoon and are very interested in outdoor snow activities!!!"
},
{
"contact_id": "75",
"type_id": "1",
"date_at": "2024-03-14T22:30:42.395Z",
"arrival_date_at": "2023-12-20T22:31:10.497Z",
"visitor_number": 1,
"stay_length": 5,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["1"] },
"comments": "I will travel the last week of the year to region."
},
{
"contact_id": "143",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "I would like to do something really fun for my 17th Birthday with my friends & family."
},
{
"contact_id": "116",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "DO ANY OF THE SKI RENTAL STORES OR SLOPES OFFER MILITARY DISCOUNT?"
},
{
"contact_id": "128",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "can you mail me a Brochures of your camping & cabin"
},
{
"contact_id": "92",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "We are going to the mountains for our honeymoon next october. However we will be traveling with two children."
},
{
"contact_id": "12",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"interests": { "set": ["2", "8", "5"] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Please send info on group packages including... Villa logdings for large groups and all winter sports activities"
},
{
"contact_id": "64",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"brochures": { "set": ["4", "1"] }
},
{
"contact_id": "78",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Anniversary packages"
},
{
"contact_id": "65",
"type_id": "1",
"date_at": "2024-03-14T22:30:42.395Z",
"arrival_date_at": "2023-11-20T22:31:10.497Z",
"visitor_number": 6,
"stay_length": 3,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "planning on end of November girlfriend getaway. Please send brochure as soon as possible. Thank you."
},
{
"contact_id": "73",
"type_id": "5",
"date_at": "2024-03-14T22:30:42.395Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "I am looking for a nice getaway with myother half. Long over do because of our schedules."
},
{
"contact_id": "38",
"type_id": "5",
"date_at": "2024-03-30T07:00:00.000Z",
"brochures": { "set": [ "4", "1", "2", "3" ] },
"reasons_for_visit": { "set": ["2"] },
"comments": "I am looking to relocate to Hawley, Pa. Any info around this area would also be very appreciated."
},
{
"contact_id": "91",
"type_id": "1",
"date_at": "2024-03-30T07:00:00.000Z",
"visitor_number": 14,
"stay_length": 4,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Small Family reunion 9 adults, 5 children ages 10 - 13"
},
{
"contact_id": "75",
"type_id": "1",
"date_at": "2024-03-30T07:00:00.000Z",
"arrival_date_at": "2024-04-12T07:00:00.000Z",
"visitor_number": 25,
"stay_length": 3,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "We are planning a family reunion in july and need some pricing info"
},
{
"contact_id": "143",
"type_id": "5",
"date_at": "2024-03-30T07:00:00.000Z",
"interests": { "set": ["1", "5"] },
"brochures": { "set": [ "4", "1", "2", "3" ] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Wife uses a mobility scooter. Are there trails and siteseeing opportunities that are accessible."
},
{
"contact_id": "116",
"type_id": "5",
"date_at": "2024-03-30T07:00:00.000Z",
"stay_length": 3,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Just need a place to go with my husband for anniversary, like all inclusive resort where he can rest and relax"
},
{
"contact_id": "128",
"type_id": "5",
"date_at": "2024-03-30T07:00:00.000Z",
"interests": { "set": ["5", "6"] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["3"] },
"comments": "Hello, if you have any suggestion on where is the best place to stay at near the mountains, any location would help. thank you"
},
{
"contact_id": "92",
"type_id": "5",
"date_at": "2024-03-30T07:00:00.000Z",
"brochures": { "set": [ "4", "1", "2", "3" ] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Looking for a winter vac."
},
{
"contact_id": "12",
"type_id": "5",
"date_at": "2024-03-30T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "i would like to lodge as close to a lift on an easy to ski mountain as possible."
},
{
"contact_id": "64",
"type_id": "5",
"date_at": "2024-03-30T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "PLEASE SEND US 30 COPIES"
},
{
"contact_id": "78",
"type_id": "5",
"date_at": "2024-03-30T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["1"] },
"comments": "any additional info on public transportation-bus/coach lines appreciated thx"
},
{
"contact_id": "2",
"type_id": "5",
"date_at": "2024-03-30T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "no comment"
},
{
"contact_id": "6",
"type_id": "1",
"date_at": "2024-03-30T07:00:00.000Z",
"visitor_number": 14,
"stay_length": 4,
"brochures": { "set": [ "4", "1", "2", "3" ] },
"reasons_for_visit": { "set": ["2"] },
"comments": "small family reunion - 7-9 adulys 5 children ages 9- 14"
},
{
"contact_id": "2",
"type_id": "5",
"date_at": "2024-03-30T07:00:00.000Z",
"interests": { "set": ["5"] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "snowmobiling and snow shoeing"
},
{
"contact_id": "2",
"type_id": "5",
"date_at": "2024-03-30T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["1"] },
"comments": "Information on cove haven palace"
},
{
"contact_id": "6",
"type_id": "5",
"date_at": "2024-03-30T07:00:00.000Z",
"interests": { "set": ["5", "6", "8" ] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["3"] },
"comments": "We just finished building a house in Eagle Rock (Hazleton) and are trying to familiarize ourselves with all there is to do around the region."
},
{
"contact_id": "10",
"type_id": "1",
"date_at": "2024-03-30T07:00:00.000Z",
"visitor_number": 4,
"stay_length": 4,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "im lookin to take a christmas vacation with my family of 4, 2 adults and 2 children 11 years and 2 years."
},
{
"contact_id": "120",
"type_id": "4",
"date_at": "2024-03-30T07:00:00.000Z",
"brochures": { "set": [ "4", "1", "2", "3" ] },
"comments": "i would also like to know if there is some sort of child care or child activity while the parents are doing an activity"
},
{
"contact_id": "10",
"type_id": "1",
"date_at": "2024-03-30T07:00:00.000Z",
"visitor_number": 5,
"stay_length": 4,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Im planning a family vacation, please email me and mail me all the info that you have available for skiing,snowboarding and all those winter activities and I'm also interested in renting a log cabin. Thank You for your help"
},
{
"contact_id": "134",
"type_id": "1",
"date_at": "2024-03-30T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 3,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "I want to come there for my honeymoon. Can you please send information for honeymoon suites? Thank you so much!"
},
{
"contact_id": "27",
"type_id": "4",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] }
},
{
"contact_id": "34",
"type_id": "1",
"date_at": "2024-01-13T07:00:00.000Z",
"arrival_date_at": "2024-12-19T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 6,
"brochures": { "set": [ "4", "1", "2", "3" ] },
"reasons_for_visit": { "set": ["2"] },
"comments": "we are coming to the area december 19th-24th for our honeymoon and are interested in special/free offers + dining/spa discounts"
},
{
"contact_id": "96",
"type_id": "4",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["1"] },
"comments": "we are visiting in may albrightsville pawould like infor on attractions reseterants theater shopping in that area."
},
{
"contact_id": "78",
"type_id": "4",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": [ "4", "1", "2", "3" ] },
"comments": "brochures"
},
{
"contact_id": "17",
"type_id": "4",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "prices and picture packages"
},
{
"contact_id": "142",
"type_id": "1",
"date_at": "2024-01-13T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 4,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "looking to celebrate our 25th wedding anniversary"
},
{
"contact_id": "34",
"type_id": "1",
"date_at": "2024-01-13T07:00:00.000Z",
"arrival_date_at": "2024-12-27T07:00:00.000Z",
"visitor_number": 3,
"stay_length": 8,
"brochures": { "set": [ "4", "1", "2", "3" ] },
"reasons_for_visit": { "set": ["2"] },
"comments": "I am planning a trip for myself & 2 children (ages 14 &16), Dec 27 thru Jan 2. We will need lodging and lift tickets for all 3 of us. Also, ski rental for 2 of us."
},
{
"contact_id": "62",
"type_id": "1",
"date_at": "2024-01-13T07:00:00.000Z",
"arrival_date_at": "2024-12-19T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 3,
"brochures": { "set": [ "4", "1", "2", "3" ] },
"reasons_for_visit": { "set": ["2"] },
"comments": "I want to plan a three day vacation for me and my girlfriend around Christmas time. I need as much informaiton as possible as afar as non expensive activities and eating arrangements."
},
{
"contact_id": "54",
"type_id": "4",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "love it!"
},
{
"contact_id": "3",
"type_id": "5",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "Can you please mail me the information as soon as possible. Thank you!!!!!!!!!!"
},
{
"contact_id": "62",
"type_id": "5",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "Which resort is closest to Big Boulder Ski Area?"
},
{
"contact_id": "134",
"type_id": "1",
"date_at": "2024-01-13T07:00:00.000Z",
"visitor_number": 4,
"stay_length": 5,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "I would like to go with my family for the December fourth. If anyone has a special package for 4 people i would love to hear from it thanks. Willy"
},
{
"contact_id": "98",
"type_id": "5",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "special interest snow tubing and snow boarding."
},
{
"contact_id": "34",
"type_id": "5",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "If at all possible, could I have multiple copies of the brochures. I would like to use these to teach my students about the Mountains in conjunction with a book we are reading. Thank you so much!"
},
{
"contact_id": "67",
"type_id": "5",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "rv parks"
},
{
"contact_id": "23",
"type_id": "5",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] }
},
{
"contact_id": "90",
"type_id": "1",
"date_at": "2024-01-13T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 4,
"interests": { "set": ["1", "2"] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Looking for a romantic get away with a private hot tub and possibly a private pool"
},
{
"contact_id": "69",
"type_id": "5",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "If recommend Hotels/House rentals or resorts, please NO-SMOKING and NO PETS places."
},
{
"contact_id": "70",
"type_id": "5",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "can I please request 4 skiing brochures, Bring the family and would like to plan it and have brochures for stocking stuffers"
},
{
"contact_id": "71",
"type_id": "5",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] }
},
{
"contact_id": "72",
"type_id": "1",
"date_at": "2024-01-13T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 5,
"brochures": { "set": ["4", "1"] },
"comments": "Married couple looking for a ski package and romantic getaway."
},
{
"contact_id": "73",
"type_id": "5",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "i am interested in visiting for the winter this year"
},
{
"contact_id": "95",
"type_id": "5",
"date_at": "2024-01-13T07:00:00.000Z",
"reasons_for_visit": { "set": ["2"] },
"comments": "interested in an inside pool, and hot spa"
},
{
"contact_id": "96",
"type_id": "5",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] }
},
{
"contact_id": "13",
"type_id": "5",
"date_at": "2024-01-13T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "looking to stay over and go tubbing"
},
{
"contact_id": "77",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"brochures": { "set": [ "4", "1", "2", "3" ] },
"comments": "This is for a class project so any information you can send will be very appreciated. We are going to do a very in depth look at Pennsylvania, especially it's history."
},
{
"contact_id": "78",
"type_id": "1",
"date_at": "2023-07-03T07:00:00.000Z",
"arrival_date_at": "2024-12-18T07:00:00.000Z",
"visitor_number": 1,
"stay_length": 6,
"reasons_for_visit": { "set": ["1"] },
"comments": "My trip is next december 18"
},
{
"contact_id": "79",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "im especially interested in valentines day getaways"
},
{
"contact_id": "80",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "I WOULD REALLY LIKE TO VISIT YOUR RESORT FOR ME AN MY HUSBAND TO GETAWAY FROM OUR DAILY ROUTEN AN HAVE JUST A QUITE,FUN,ROMANTIC TIME TOGETHER"
},
{
"contact_id": "81",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "please mail me information on winter activities"
},
{
"contact_id": "82",
"type_id": "1",
"date_at": "2023-07-03T07:00:00.000Z",
"visitor_number": 15,
"stay_length": 5,
"interests": { "set": ["1", "2", "5"] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "i would lke to plan a ski trip for about 12-15 people. i am an RCI membr and would like infor on the best rates and activies near by the resort if i could get any help this woukld be greatly appreciated"
},
{
"contact_id": "83",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "please send info with dvd information please thank you"
},
{
"contact_id": "84",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "interested in pet friendly places to visit & stay"
},
{
"contact_id": "85",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "looking for a place for a honeymoon"
},
{
"contact_id": "86",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"brochures": { "set": ["4", "1"] }
},
{
"contact_id": "87",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["1"] },
"comments": "I am interested in stuff near Stroudsburg"
},
{
"contact_id": "88",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "havn't decided if want to rent cabins or resort. please include both info. something close to easy hiking."
},
{
"contact_id": "89",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"comments": "Handicap access"
},
{
"contact_id": "90",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"comments": "want information about the jacuzzi suites"
},
{
"contact_id": "9",
"type_id": "1",
"date_at": "2023-07-03T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 4,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "It's my first wedding anniversary. I would love to surprise my husband."
},
{
"contact_id": "92",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "JUST WANT MORE INFO ABOUT YOUR RESORTS"
},
{
"contact_id": "93",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["1"] },
"comments": "Hi, I would like to go to Mountains just for 1 day. I dont know if that is possible. Another thing is that if I can be for 1 day I can get special offers. Thanks"
},
{
"contact_id": "95",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"interests": { "set": ["6"] },
"brochures": { "set": ["4"] },
"reasons_for_visit": { "set": ["3"] },
"comments": "Interested in buying a home in a lake community, how can I get information?"
},
{
"contact_id": "94",
"type_id": "1",
"date_at": "2023-07-03T07:00:00.000Z",
"visitor_number": 5,
"stay_length": 3,
"brochures": { "set": [ "4", "1", "2", "3" ] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Looking to bring my family of (5) up for a weekend get away."
},
{
"contact_id": "96",
"type_id": "1",
"date_at": "2023-07-03T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 4,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Couples getaway information needed as well."
},
{
"contact_id": "97",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"brochures": { "set": [ "4", "1", "2", "3" ] },
"comments": "I would like as much information as possible on lodging and activities."
},
{
"contact_id": "98",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"interests": { "set": ["5"] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Interested in tubing and accomadations"
},
{
"contact_id": "99",
"type_id": "5",
"date_at": "2023-07-03T07:00:00.000Z",
"comments": "I'm looking for information on marrage cermonies."
},
{
"contact_id": "100",
"type_id": "1",
"date_at": "2023-07-03T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 2,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "me and my boyfriend wants to come around valentines day and we are hoping to have a wonderful time we would like to get the champagne glass jacuzzi"
},
{
"contact_id": "101",
"type_id": "4",
"date_at": "2023-05-23T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Looking for a weekend getaway for valentines day. Having a hard time finding romantic suites where there is a spa and skiing on site."
},
{
"contact_id": "102",
"type_id": "4",
"date_at": "2023-05-23T07:00:00.000Z",
"interests": { "set": ["5"] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "I am looking to take my family skiing for the first time and am looking for a family friendly ski resort that has lessons and possibly ski rentals (might need if I cannot rent from local place where I live)."
},
{
"contact_id": "103",
"type_id": "1",
"date_at": "2023-05-23T07:00:00.000Z",
"visitor_number": 9,
"stay_length": 5,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "My family is planning to vist in June. We prefer staying in a cabin lakeside or with a mountain view or both. We need at least 4 brs and prefer 3 baths"
},
{
"contact_id": "104",
"type_id": "4",
"date_at": "2023-05-23T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "Interested in cabin rental in the mountains."
},
{
"contact_id": "105",
"type_id": "4",
"date_at": "2023-05-23T07:00:00.000Z",
"brochures": { "set": [ "4", "1", "2", "3" ] },
"reasons_for_visit": { "set": ["2"] },
"comments": "looking for honeymoon packages, thanks"
},
{
"contact_id": "106",
"type_id": "4",
"date_at": "2023-05-23T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "I am interested in a Valentine Day Getaway and what kind of specials are you running for that weekend. im looking fro a lovers package."
},
{
"contact_id": "107",
"type_id": "4",
"date_at": "2023-05-23T07:00:00.000Z",
"brochures": { "set": [ "4", "1", "2", "3" ] },
"comments": "Please send me this information ASAP. We are looking to go on vacation in february"
},
{
"contact_id": "108",
"type_id": "4",
"date_at": "2023-05-23T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "i am looking for information for an april vacation with outdoor activities"
},
{
"contact_id": "109",
"type_id": "1",
"date_at": "2023-05-23T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 4,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Looking for info related to visiting with my girlfriend. Interested in golf courses and nice places to stay"
},
{
"contact_id": "110",
"type_id": "2",
"date_at": "2023-05-23T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 6,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "We are getting married and we have yet to decided were we are going for our honeymoon"
},
{
"contact_id": "102",
"type_id": "2",
"date_at": "2023-05-14T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 5,
"brochures": { "set": [ "4", "1", "2", "3" ] },
"reasons_for_visit": { "set": ["2"] },
"comments": "Can you send me information on Honeymoon packages"
},
{
"contact_id": "103",
"type_id": "2",
"date_at": "2023-05-14T07:00:00.000Z",
"visitor_number": 18,
"stay_length": 6,
"interests": { "set": ["1", "3", "8", "5"] },
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "We would like to possibly stay in at a resort that can accomodate all 9 couples. We would also like to have a very structured day with lots of activities available."
},
{
"contact_id": "104",
"type_id": "4",
"date_at": "2023-05-14T07:00:00.000Z",
"brochures": { "set": ["4", "1"] }
},
{
"contact_id": "105",
"type_id": "4",
"date_at": "2023-05-14T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "pictures of the different types of room would be most helpful..."
},
{
"contact_id": "106",
"type_id": "2",
"date_at": "2023-05-14T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 5,
"brochures": { "set": ["4", "1"] },
"comments": "Honeymoon or Anniversary packages are what I'm looking for!!"
},
{
"contact_id": "107",
"type_id": "4",
"date_at": "2023-05-14T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },
"comments": "Interested in Skiing coupons"
},
{
"contact_id": "108",
"type_id": "2",
"date_at": "2023-05-14T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 4,
"brochures": { "set": ["4", "1"] },
"comments": "Wife want to come for her birthday in June"
},
{
"contact_id": "109",
"type_id": "4",
"date_at": "2023-05-14T07:00:00.000Z",
"comments": "Snowtubibg"
},
{
"contact_id": "110",
"type_id": "2",
"date_at": "2023-05-14T07:00:00.000Z",
"visitor_number": 2,
"stay_length": 6,
"brochures": { "set": ["4", "1"] },
"reasons_for_visit": { "set": ["2"] },
"comments": "We are celebrating our 30th anniversary this year and are planning where to go to celebrate."
},
{
"contact_id": "111",
"type_id": "4",
"date_at": "2023-05-14T07:00:00.000Z",
"brochures": { "set": ["4", "1"] },