generated from shgysk8zer0/blank-repo
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrestaurants.yml
More file actions
1256 lines (1255 loc) · 34.5 KB
/
restaurants.yml
File metadata and controls
1256 lines (1255 loc) · 34.5 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
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
---
# - "@type": Restaurant
# "@context": https://schema.org
# identifier: 4d866db2-c506-444b-aa3f-87b3dd86a204
# name: Riverside Grill
# # url: ''
# telephone: "+1-760-478-8086"
# email: jami@krvriversidegrill.com
# description: Great food right by Riverside Park!
# additionalType: []
# paymentAccepted:
# - Cash
# - Credit Card
# sameAs:
# - https://www.facebook.com/krvriversidegrill
# image:
# - "@type": ImageObject
# url: https://i.imgur.com/d9My43T.jpeg
# width: 2500
# height: 1883
# address:
# "@type": PostalAddress
# streetAddress: 11 Kern River Rd
# postOfficeBoxNumber:
# addressLocality: Kernville
# addressRegion: CA
# addressCountry: US
# postalCode: '93238'
# geo:
# "@type": GeoCoordinates
# latitude: 35.75342581
# longitude: -118.42451692
# url: geo:35.75342581,-118.42451692
# openingHoursSpecification:
# - "@type": OpeningHoursSpecification
# opens: '11:00'
# closes: '21:00'
# dayOfWeek: Sunday
# - "@type": OpeningHoursSpecification
# opens: '11:00'
# closes: '21:00'
# dayOfWeek: Monday
# - "@type": OpeningHoursSpecification
# opens: '11:00'
# closes: '21:00'
# dayOfWeek: Tuesday
# - "@type": OpeningHoursSpecification
# opens: '11:00'
# closes: '21:00'
# dayOfWeek: Wednesday
# - "@type": OpeningHoursSpecification
# opens: '11:00'
# closes: '21:00'
# dayOfWeek: Thursday
# - "@type": OpeningHoursSpecification
# opens: '11:00'
# closes: '21:00'
# dayOfWeek: Friday
# - "@type": OpeningHoursSpecification
# opens: '11:00'
# closes: '21:00'
# dayOfWeek: Saturday
# - name: Eddy Out Tap House
# identifier: 4d866db2-c506-444b-aa3f-87b3dd86a204
# "@context": https://schema.org
# "@type": BarOrPub
# telephone: 1-760-478-8334
# url: https://www.eddyoutcrafttaphouse.com
# acceptsReservations: true
# priceRange: $$
# sameAs:
# - https://www.facebook.com/eddyouttaphouse
# - https://www.instagram.com/eddyouttaphouse/
# - https://www.yelp.com/biz/eddy-out-tap-house-and-grill-kernville
# - https://maps.google.com/?cid=14954378362437169756
# currenciesAccepted:
# - USD
# servesCuisine:
# - burgers
# paymentAccepted:
# - Cash
# - Credit Card
# address:
# '@type': PostalAddress
# streetAddress: 13423 Sierra Way
# addressLocality: Kernville
# addressRegion: CA
# postalCode: 93238
# image:
# - url: https://i.imgur.com/AMie3MJm.jpg
# "@type": ImageObject
# width: 320
# height: 240
# encodingFormat: image/png
# geo:
# '@type': GeoCoordinates
# latitude: 35.75787
# longitude: -118.419496
# openingHoursSpecification:
# - "@type": OpeningHoursSpecification
# opens: '08:00'
# closes: '21:00'
# dayOfWeek: Sunday
# - "@type": OpeningHoursSpecification
# opens: '11:00'
# closes: '20:00'
# dayOfWeek: Monday
# - "@type": OpeningHoursSpecification
# opens: '11:00'
# closes: '20:00'
# dayOfWeek: Thursday
# - "@type": OpeningHoursSpecification
# opens: '08:00'
# closes: '21:00'
# dayOfWeek: Friday
# - "@type": OpeningHoursSpecification
# opens: '08:00'
# closes: '21:00'
# dayOfWeek: Saturday
- name: Kern River Brewing Company
identifier: 102477d0-8539-4a8a-b9c7-3b9e5c2bdf51
"@context": https://schema.org
"@type": BarOrPub
additionalType:
- Brewery
additionalProperty:
- "@type": PropertyValue
name: icon
value: hamburger
telephone: 760-376-2337
url: https://kernriverbrewing.com
email: info@kernriverbrewing.com
sameAs:
- https://www.facebook.com/KernRiverBrewingCompany/
- https://twitter.com/kernriverbrewin
- https://instagram.com/kernriverbrewing/
- https://www.yelp.com/biz/ylsm8GHDjgBYtYVpsydzzQ
- https://www.tripadvisor.com/618761
image:
- url: https://i.imgur.com/VWqseaCm.jpg
"@type": ImageObject
width: 320
height: 240
encodingFormat: image/png
address:
'@type': PostalAddress
streetAddress: 13415 Sierra Way
addressLocality: Kernville
addressRegion: CA
postalCode: 93238
geo:
'@type': GeoCoordinates
longitude: -118.419232
latitude: 35.757488
openingHoursSpecification:
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '21:30'
dayOfWeek: Sunday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '21:30'
dayOfWeek: Monday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '21:30'
dayOfWeek: Tuesday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '21:30'
dayOfWeek: Wednesday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '21:30'
dayOfWeek: Thursday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '21:30'
dayOfWeek: Friday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '21:30'
dayOfWeek: Saturday
- name: Ewings on the Kern
identifier: 49578c9b-ca54-458c-844b-375b2287d1ee
"@context": https://schema.org
"@type": Restaurant
telephone: 760-376-2411
url: https://www.ewingsco.com
image:
- url: https://i.imgur.com/sJq58PJm.jpg
"@type": ImageObject
width: 320
height: 240
encodingFormat: image/png
address:
'@type': PostalAddress
streetAddress: 125 Buena Vista Dr.
addressLocality: Kernville
addressRegion: CA
postalCode: 93238
geo:
'@type': GeoCoordinates
longitude: -118.420556
latitude: 35.758029
- name: Cheryl's Diner
identifier: bd20431c-1e2d-401d-8178-ad0d2fe3e71d
"@context": https://schema.org
"@type": Restaurant
telephone: 760-376-6131
url: https://www.cherylsdiner.com
image:
- url: https://i.imgur.com/L6cOCtZm.jpg
"@type": ImageObject
width: 320
height: 240
encodingFormat: image/png
address:
'@type': PostalAddress
streetAddress: 11030 Kernville Rd.
addressLocality: Kernville
addressRegion: CA
postalCode: 93238
geo:
'@type': GeoCoordinates
longitude: -118.424722
latitude: 35.754615
- name: El Rio Mexican & American Food
identifier: d70abd8e-d632-4059-be2f-b1ba79b0edee
"@context": https://schema.org
"@type": Restaurant
servesCuisine:
- american
- mexican
additionalProperty:
- "@type": PropertyValue
name: icon
value: taco
telephone: 760-376-3246
image:
- url: https://i.imgur.com/LgDOLd9m.jpg
"@type": ImageObject
width: 320
height: 241
encodingFormat: image/jpeg
address:
'@type': PostalAddress
streetAddress: 13423 Sierra Way
addressLocality: Kernville
addressRegion: CA
postalCode: 93238
geo:
'@type': GeoCoordinates
latitude: 35.75787
longitude: -118.419496
openingHoursSpecification:
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '19:30'
dayOfWeek: Sunday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '20:00'
dayOfWeek: Monday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '20:00'
dayOfWeek: Tuesday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '20:00'
dayOfWeek: Wednesday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '20:00'
dayOfWeek: Thursday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '20:00'
dayOfWeek: Friday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '20:30'
dayOfWeek: Saturday
- name: Pizza Barn
identifier: 8a379678-811d-4590-92a1-0ca824b62751
"@context": https://schema.org
"@type": Restaurant
telephone: 760-376-1856
url: https://pizzabarn.speeddine.com
additionalProperty:
- "@type": PropertyValue
name: icon
value: pizza
servesCuisine:
- pizza
image:
- url: https://i.imgur.com/tup7nBzm.png
"@type": ImageObject
width: 320
height: 240
encodingFormat: image/png
address:
'@type': PostalAddress
streetAddress: 11401 Kernville Rd.
addressLocality: Kernville
addressRegion: CA
postalCode: 93238
geo:
'@type': GeoCoordinates
longitude: -118.418979
latitude: 35.755638
- name: That's Italian
identifier: d0dcb588-b713-45c3-a7bd-69988edca915
"@context": https://schema.org
"@type": Restaurant
telephone: 760-376-6020
servesCuisine:
- italian
image:
- url: https://i.imgur.com/PHYOQp4m.jpg
"@type": ImageObject
width: 320
height: 240
encodingFormat: image/png
address:
'@type': PostalAddress
streetAddress: 9 Big Blue Rd.
addressLocality: Kernville
addressRegion: CA
postalCode: 93238
geo:
'@type': GeoCoordinates
longitude: -118.425623
latitude: 35.75486
openingHoursSpecification:
- "@type": OpeningHoursSpecification
dayOfWeek: Sunday
opens: '16:00'
closes: '21:00'
- "@type": OpeningHoursSpecification
dayOfWeek: Monday
opens: '16:00'
closes: '21:00'
- "@type": OpeningHoursSpecification
dayOfWeek: Tuesday
opens: '16:00'
closes: '21:00'
- "@type": OpeningHoursSpecification
dayOfWeek: Wednesday
opens: '16:00'
closes: '21:00'
- "@type": OpeningHoursSpecification
dayOfWeek: Thursday
opens: '16:00'
closes: '21:00'
- "@type": OpeningHoursSpecification
dayOfWeek: Friday
opens: '16:00'
closes: '21:00'
- "@type": OpeningHoursSpecification
dayOfWeek: Saturday
opens: '16:00'
closes: '21:00'
# - name: Cracked Egg Cafe
# identifier: f5159eb1-ff44-4f32-870a-dcb2c1b8ecb5
# "@context": https://schema.org
# "@type": Restaurant
# telephone: 760-376-2185
# image:
# - url: https://cdn.kernvalley.us/img/raster/missing-image.png
# "@type": ImageObject
# width: 640
# height: 480
# encodingFormat: image/png
# address:
# '@type': PostalAddress
# streetAddress: 16 Big Blue Rd.
# addressLocality: Kernville
# addressRegion: CA
# postalCode: 93238
# geo:
# '@type': GeoCoordinates
# longitude: -118.425951
# latitude: 35.755295
- name: Paradise Cove Lodge (Steak House)
identifier: f779f9cd-ce71-43d7-974e-6d30dd2e7af2
"@context": https://schema.org
"@type": Restaurant
telephone: 1-760-379-2719
priceRange: $$$
servesCuisine:
- American
- Seafood
- Steak
url: https://www.paradisecovelodge.com
sameAs:
- https://www.facebook.com/Paradise-Cove-Lodge-113120752085154/
- https://www.yelp.com/biz/paradise-cove-lodge-lake-isabella
- https://www.tripadvisor.com/Hotel_Review-g32598-d668722-Reviews-Paradise_Cove_Lodge-Lake_Isabella_California.html
logo:
- url: https://www.paradsecovelodge.com/img/icon-192.png
"@type": ImageObject
height: 192
width: 192
encodingFormat: image/png
- url: https://www.paradisecovelodge.com/img/favicon.svg
"@type": ImageObject
encodingFormat: image/svg+xml
image:
- "@type": ImageObject
url: https://www.paradisecovelodge.com/img/raster/background/restaurant-350.jpg
width: 350
height: 263
encodingFormat: image/jpeg
address:
"@type": PostalAddress
streetAddress: 10700 Highway 178
addressLocality: Lake Isabella
addressRegion: CA
postalCode: 93240
addressCountry: USA
url: "https://goo.gl/maps/HVrsM1jr7cbRykck9"
geo:
"@type": GeoCoordinates
name: Paradise Cove Lodge
latitude: 35.648277
longitude: -118.427673
url: "https://goo.gl/maps/HVrsM1jr7cbRykck9"
- name: Pizza Factory
identifier: a25b7d30-ee03-45ad-b7bf-7d47a457ddbf
"@context": https://schema.org
"@type": Restaurant
telephone: 760-379-5605
url: https://lake-isabella.pizzafactory.com
servesCuisine:
- pizza
image:
- url: https://cdn.kernvalley.us/img/raster/missing-image.png
"@type": ImageObject
width: 640
height: 480
encodingFormat: image/png
address:
"@type": PostalAddress
streetAddress: 5640 Lake Isabella Blvd.
addressLocality: Lake Isabella
addressRegion: CA
postalCode: 93240
geo:
"@type": GeoCoordinates
latitude: 35.618883
longitude: -118.476711
additionalProperty:
- "@type": PropertyValue
name: icon
value: pizza
- name: Nelda's Diner
identifier: e148b601-c307-4a40-a49a-e345db7a2d94
"@context": https://schema.org
"@type": Restaurant
telephone: 760-379-8448
image:
- url: https://cdn.kernvalley.us/img/raster/missing-image.png
"@type": ImageObject
width: 640
height: 480
encodingFormat: image/png
address:
"@type": PostalAddress
streetAddress: 5128 Lake Isabella Blvd.
addressLocality: Lake Isabella
addressRegion: CA
postalCode: 93240
geo:
"@type": GeoCoordinates
latitude: 35.611481
longitude: -118.481487
- name: 178 Bar & Grill
identifier: d059a6dd-bb06-4501-8201-338e32158332
"@context": https://schema.org
"@type": BarOrPub
url: https://www.toasttab.com/178-bar-grill-6107-lake-isabella-blvd/v3
telephone: 760-379-0178
additionalProperty:
- "@type": PropertyValue
name: icon
value: hamburger
image:
- url: https://i.imgur.com/oLsjQPLm.jpg
"@type": ImageObject
width: 320
height: 240
encodingFormat: image/png
address:
"@type": PostalAddress
streetAddress: 6107 Lake Isabella Blvd.
addressLocality: Lake Isabella
addressRegion: CA
postalCode: 93240
geo:
"@type": GeoCoordinates
latitude: 35.624876
longitude: -118.475142
sameAs:
- https://www.facebook.com/178barandgrill
- https://instagram.com/178barandgrill/
openingHoursSpecification:
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '20:00'
dayOfWeek: Sunday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '20:00'
dayOfWeek: Monday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '20:00'
dayOfWeek: Tuesday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '20:00'
dayOfWeek: Wednesday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '20:00'
dayOfWeek: Thursday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '20:00'
dayOfWeek: Friday
- "@type": OpeningHoursSpecification
opens: '11:00'
closes: '20:00'
dayOfWeek: Saturday
- "@type": Restaurant
"@context": https://schema.org
identifier: dab0af52-2731-4ff0-815b-8b40b58e12ff
name: La Bikina Mexican Grill
telephone: "+1-760-379-1607"
url: https://www.labikinala.com/
description: We provide Delicious Authentic Mexican Dishes. We try our best to offer a clean and friendly atmosphere.
servesCuisine:
- Mexican
sameAs:
- https://www.facebook.com/labikina21/
additionalProperty:
- "@type": PropertyValue
name: icon
value: taco
image:
- "@type": ImageObject
url: https://i.imgur.com/E1gNZ55m.jpg
width: 320
height: 240
address:
"@type": PostalAddress
streetAddress: 6106 Lake Isabella Blvd.
addressLocality: Lake Isabella
addressRegion: CA
addressCountry: US
postalCode: '93240'
geo:
"@type": GeoCoordinates
latitude: 35.6247651
longitude: -118.47400904
url: geo:35.62476510,-118.47400904
openingHoursSpecification:
- "@type": OpeningHoursSpecification
opens: '08:00'
closes: '20:00'
dayOfWeek: Monday
- "@type": OpeningHoursSpecification
opens: '08:00'
closes: '20:00'
dayOfWeek: Tuesday
- "@type": OpeningHoursSpecification
opens: '08:00'
closes: '20:00'
dayOfWeek: Wednesday
- "@type": OpeningHoursSpecification
opens: '08:00'
closes: '20:00'
dayOfWeek: Thursday
- "@type": OpeningHoursSpecification
opens: '08:00'
closes: '20:00'
dayOfWeek: Friday
- "@type": OpeningHoursSpecification
opens: '08:00'
closes: '20:00'
dayOfWeek: Saturday
- name: El Portal Mexican Grill
identifier: 16a2d7a5-505f-4e96-92ba-41590ebec567
"@context": https://schema.org
"@type": Restaurant
telephone: 760-379-2779
servesCuisine:
- Mexican
additionalProperty:
- "@type": PropertyValue
name: icon
value: taco
image:
- url: https://cdn.kernvalley.us/img/raster/missing-image.png
"@type": ImageObject
width: 640
height: 480
encodingFormat: image/png
address:
"@type": PostalAddress
streetAddress: 12598 Mountain Mesa Rd.
addressLocality: Mountain Mesa
addressRegion: CA
postalCode: 93240
geo:
"@type": GeoCoordinates
latitude: 35.637766
longitude: -118.402439
- name: Johhny McNally's Fairview Lodge
"@context": https://schema.org
"@type": Restaurant
identifier: 1a5c7e00-1541-465d-bbfb-7cdf1e10dda5
telephone: 760-376-2430
url: https://johhnymcnallys.com
sameAs:
- https://www.facebook.com/pages/category/Restaurant/Johnny-McNallys-Fairview-Lodge-306587940208004/
- https://www.instagram.com/johnnymcnallys/
servesCuisine:
- Steak
image:
- url: https://i.imgur.com/XLyX2lem.jpg
"@type": ImageObject
width: 320
height: 240
encodingFormat: image/png
address:
"@type": PostalAddress
streetAddress: 7300 Kern River Hwy.
addressLocality: Kernville
addressRegion: CA
postalCode: 93238
geo:
"@type": GeoCoordinates
latitude: 35.927049
longitude: -118.493456
- "@type": Restaurant
"@context": https://schema.org
identifier: 9cc7452c-e846-4c2b-b298-f5e4e0a39d84
name: McNally's Outpost
telephone: 760-376-2431
additionalProperty:
- "@type": PropertyValue
name: icon
value: hamburger
image:
- "@type": ImageObject
url: https://i.imgur.com/FX6Dh2vm.jpg
width: 320
height: 240
encodingFormat: image/png
address:
"@type": PostalAddress
streetAddress: '11301 Kernville Rd. # C'
addressLocality: Kernville
addressRegion: CA
addressCountry: US
postalCode: '93238'
geo:
"@type": GeoCoordinates
latitude: 35.755531
longitude: -118.421132
url: geo:35.755531,-118.421132
openingHoursSpecification:
- "@type": OpeningHoursSpecification
dayOfWeek: Sunday
opens: "11:00"
closes: "20:00"
- "@type": OpeningHoursSpecification
dayOfWeek: Monday
opens: "11:00"
closes: "20:00"
- "@type": OpeningHoursSpecification
dayOfWeek: Tuesday
opens: "11:00"
closes: "20:00"
- "@type": OpeningHoursSpecification
dayOfWeek: Wednesday
opens: "11:00"
closes: "20:00"
- "@type": OpeningHoursSpecification
dayOfWeek: Thursday
opens: "11:00"
closes: "20:00"
- "@type": OpeningHoursSpecification
dayOfWeek: Friday
opens: "11:00"
closes: "20:00"
- "@type": OpeningHoursSpecification
dayOfWeek: Saturday
opens: "11:00"
closes: "20:00"
- name: Red Rooster Cafe
identifier: 61432573-ceb9-4274-95b4-3576fca0415a
"@context": https://schema.org
"@type": Restaurant
telephone: 760-379-1397
image:
- url: https://cdn.kernvalley.us/img/raster/missing-image.png
"@type": ImageObject
width: 640
height: 480
encodingFormat: image/png
address:
"@type": PostalAddress
streetAddress: 12408 Mountain Mesa Rd.
addressLocality: Mountain Mesa
addressRegion: CA
postalCode: 93240
geo:
"@type": GeoCoordinates
latitude: 35.63891819845378
longitude: -118.40509664417492
- name: Don Sombrero
identifier: f9e20692-8c4f-4d70-89d5-da481462fac4
"@context": https://schema.org
"@type": Restaurant
telephone: 760-379-4041
servesCuisine:
- Mexican
additionalProperty:
- "@type": PropertyValue
name: icon
value: taco
address:
"@type": PostalAddress
streetAddress: 4107 Lake Isabella Blvd.
addressLocality: Bodfish
addressRegion: CA
postalCode: 93205
url: https://goo.gl/maps/9MJXkXJqZvjzEPJP8
geo:
"@type": GeoCoordinates
latitude: 35.600202265072625
longitude: -118.48851617256717
url: geo:35.600202265072625,-118.48851617256717
image:
- url: https://cdn.kernvalley.us/img/raster/missing-image.png
"@type": ImageObject
width: 640
height: 480
encodingFormat: image/png
- name: Dam Korner
identifier: 42620196-83ca-4fa7-b35b-4be70c2ce00f
"@context": https://schema.org
"@type": Restaurant
telephone: 760-379-8770
address:
"@type": PostalAddress
streetAddress: 6303 Lake Isabella Blvd.
addressLocality: Lake Isabella
addressRegion: CA
postalCode: 93240
url: https://goo.gl/maps/64bmSRKEqLrThRjM8
geo:
"@type": GeoCoordinates
latitude: 35.62734481903675
longitude: -118.47445465512816
url: geo:35.62734481903675,-118.47445465512816
image:
- url: https://cdn.kernvalley.us/img/raster/missing-image.png
"@type": ImageObject
width: 640
height: 480
encodingFormat: image/png
- name: Airport Cafe
identifier: 744c03f0-906b-46b9-864b-feb095b5a65c
"@context": https://schema.org
"@type": Restaurant
# url: http://www.kernvalleyairport.com/cafe.html
telephone: 760-376-2852
additionalProperty:
- "@type": PropertyValue
name: icon
value: hamburger
address:
"@type": PostalAddress
addressLocality: Kernville
addressRegion: CA
postalCode: 93238
url: https://goo.gl/maps/WiUJmE3o3NQeMAAb9
geo:
"@type": GeoCoordinates
latitude: 35.7213028511548
longitude: -118.41720419394221
url: geo:35.7213028511548,-118.41720419394221
image:
- url: https://cdn.kernvalley.us/img/raster/missing-image.png
"@type": ImageObject
width: 640
height: 480
encodingFormat: image/png
openingHoursSpecification:
- "@type": OpeningHoursSpecification
opens: '07:00'
closes: '15:00'
dayOfWeek: Friday
- "@type": OpeningHoursSpecification
opens: '07:00'
closes: '15:00'
dayOfWeek: Saturday
- "@type": OpeningHoursSpecification
opens: '07:00'
closes: '15:00'
dayOfWeek: Sunday
- name: "Miller's Sierra Vista Restaurant"
identifier: 0a9f9bbf-43e3-4cd8-a2bb-fb3af7a0063e
"@context": https://schema.org
"@type": Restaurant
telephone: "+1-760-378-2923"
sameAs:
- https://www.facebook.com/Sierra-Vista-Restaurant-199494410074990
servesCuisine:
- Steak
- Seafood
address:
"@type": PostalAddress
streetAddress: 16575 CA-178
addressLocality: Weldon
addressRegion: CA
postalCode: 93283
url: https://goo.gl/maps/VJAVhMWrVAFUWNtt8
geo:
"@type": GeoCoordinates
latitude: 35.65551232922759
longitude: -118.33989220902816
url: geo:35.65551232922759,-118.33989220902816
image:
- url: https://i.imgur.com/NRmf9BZm.jpg
"@type": ImageObject
width: 320
height: 240
encodingFormat: image/png
- name: Greenhorn Bar and Grill
identifier: 8f049ea2-7dd7-41f4-b213-61fc9ebbaf96
"@context": https://schema.org
"@type": Restaurant
telephone: 760-376-8900
address:
"@type": PostalAddress
streetAddress: 10720 Pine Dr.
addressLocality: Wofford Heights
addressRegion: CA
postalCode: 93285
url: https://goo.gl/maps/dMSGW7LGzXmLUUeS6
geo:
"@type": GeoCoordinates
latitude: 35.729363902272084
longitude: -118.55136827540942
url: geo:35.729363902272084,-118.55136827540942
openingHoursSpecification:
- "@type": OpeningHoursSpecification
dayOfWeek: Sunday
opens: "08:00"
closes: "19:00"
- "@type": OpeningHoursSpecification
dayOfWeek: Friday
opens: "11:00"
closes: "21:00"
- "@type": OpeningHoursSpecification
dayOfWeek: Saturday
opens: "08:00"
closes: "21:00"
image:
- url: https://cdn.kernvalley.us/img/raster/missing-image.png
"@type": ImageObject
width: 640
height: 480
encodingFormat: image/png
- name: Taco Bell
identifier: 2e8037e4-5f7e-4c88-8392-840ddae9ed8b
"@context": https://schema.org
"@type": FastFoodRestaurant
telephone: 760-379-0140
address:
"@type": PostalAddress
streetAddress: 6300 Lake Isabella Blvd.
addressLocality: Lake Isabella
addressRegion: CA
postalCode: 93240
url: https://goo.gl/maps/AJ6niUMfu8TGiJA87
geo:
"@type": GeoCoordinates
latitude: 35.626905947846026
longitude: -118.4735102147271
url: geo:35.626905947846026,-118.4735102147271
image:
- url: https://cdn.kernvalley.us/img/raster/missing-image.png
"@type": ImageObject
width: 640
height: 480
encodingFormat: image/png
- name: Burger King
identifier: 58386edb-83e5-40dc-a4cc-a5800f83c31d
"@context": https://schema.org
"@type": FastFoodRestaurant
telephone: 760-379-5105
address:
"@type": PostalAddress
streetAddress: 5600 Lake Isabella Blvd.
addressLocality: Lake Isabella
addressRegion: CA
postalCode: 93240
url: https://goo.gl/maps/LmPM1z4eqcEVGKhv5
geo:
"@type": GeoCoordinates
latitude: 35.61788879004232
longitude: -118.47736052568374
url: geo:35.61788879004232,-118.47736052568374
image:
- url: https://cdn.kernvalley.us/img/raster/missing-image.png
"@type": ImageObject
width: 640
height: 480
encodingFormat: image/png
- name: Subway
identifier: 34d6a0a1-1d0f-4f71-bac8-17e883501d11
"@context": https://schema.org
"@type": FastFoodRestaurant
url: https://restaurants.subway.com/united-states/ca/lake-isabella/6321-lake-isabella-blvd
telephone: "+1-760-379-4681"
sameAs:
- https://www.facebook.com/subway
- https://twitter.com/subway
- https://www.instagram.com/subway/
image:
- "@type": ImageObject
url: https://i.imgur.com/CuGnrvom.jpg
width: 320
height: 240
address:
"@type": PostalAddress
streetAddress: '6321 Lake Isabella Blvd #A'
postOfficeBoxNumber:
addressLocality: Lake Isabella
addressRegion: CA
addressCountry: US
postalCode: '93240'
geo:
"@type": GeoCoordinates
latitude: 35.62784353
longitude: -118.47444892
url: geo:35.62784353,-118.47444892
openingHoursSpecification:
- "@type": OpeningHoursSpecification
opens: '09:00'
closes: '21:00'
dayOfWeek: Sunday
- "@type": OpeningHoursSpecification
opens: '09:00'
closes: '21:00'
dayOfWeek: Monday
- "@type": OpeningHoursSpecification
opens: '09:00'
closes: '21:00'
dayOfWeek: Tuesday
- "@type": OpeningHoursSpecification
opens: '09:00'
closes: '21:00'
dayOfWeek: Wednesday
- "@type": OpeningHoursSpecification
opens: '09:00'
closes: '21:00'
dayOfWeek: Thursday
- "@type": OpeningHoursSpecification
opens: '09:00'
closes: '21:00'
dayOfWeek: Friday
- "@type": OpeningHoursSpecification
opens: '09:00'
closes: '21:00'
dayOfWeek: Saturday
- name: Little Caesars Pizza
identifier: bc9f8d22-9e5a-4a8e-984c-49bdfd08e661
"@context": https://schema.org
"@type": FastFoodRestaurant
url: https://littlecaesars.com/en-us/store/8279
telephone: "+1-760-379-2345"
sameAs:
- https://www.facebook.com/LittleCaesars
- https://twitter.com/littlecaesars
- https://www.instagram.com/LittleCaesars
- https://www.linkedin.com/company/little-caesars
image:
- "@type": ImageObject
url: https://i.imgur.com/hTGamj4m.jpg
width: 320
height: 240