Referensi skema inti

Semua negara mendukung skema inti, lalu setiap negara memiliki item skema tambahan.

Nama Kolom Jenis Mode Deskripsi
point GEOGRAPHY NULLABLE Lokasi tempat sebagai objek jenis geografi Titik.
id STRING NULLABLE ID tempat unik. Lihat ID Tempat.
types STRING REPEATED Kumpulan tag jenis untuk tempat. Misalnya, "restaurant" dan "cafe". Untuk mengetahui daftar lengkap nilai yang mungkin, lihat Tabel A dan Tabel B di Jenis Tempat.
primary_type STRING NULLABLE Jenis utama tempat. Jenis ini harus berupa salah satu jenis yang didukung Places API. Misalnya, "restoran", "kafe", "bandara", dll. Suatu tempat hanya dapat memiliki satu jenis utama. Untuk mengetahui daftar lengkap nilai yang mungkin, lihat Tabel A dan Tabel B di Jenis Tempat.
country_code STRING NULLABLE Kode negara dalam format Unicode CLDR.
location RECORD NULLABLE Posisi tempat.
location.latitude FLOAT NULLABLE Lintang dalam derajat. Rentang dari -90,0 hingga 90,0.
location.longitude FLOAT NULLABLE Bujur dalam derajat. Rentang dari -180,0 hingga 180,0.
rating FLOAT NULLABLE Rating antara 1,0 dan 5,0, berdasarkan ulasan pengguna tentang tempat tersebut.
user_rating_count INTEGER NULLABLE Jumlah total ulasan untuk tempat.
price_level STRING NULLABLE Tingkat harga tempat. Nilai yang mungkin adalah "PRICE_LEVEL_FREE", "PRICE_LEVEL_INEXPENSIVE", "PRICE_LEVEL_MODERATE", "PRICE_LEVEL_EXPENSIVE", dan "PRICE_LEVEL_VERY_EXPENSIVE".
business_status STRING NULLABLE Status bisnis untuk tempat. Nilai yang mungkin adalah "OPERATIONAL", "CLOSED_TEMPORARILY", dan "CLOSED_PERMANENTLY".
takeout BOOLEAN NULLABLE Tempat mendukung opsi bawa pulang.
delivery BOOLEAN NULLABLE Tempat mendukung pesan antar.
dine_in BOOLEAN NULLABLE Tempat mendukung opsi tempat duduk di dalam atau di luar ruangan.
curbside_pickup BOOLEAN NULLABLE Tempat mendukung opsi ambil di tepi jalan.
reservable BOOLEAN NULLABLE Tempat mendukung reservasi.
serves_breakfast BOOLEAN NULLABLE Tempat ini menyajikan sarapan.
serves_lunch BOOLEAN NULLABLE Tempat ini menyajikan makan siang.
serves_dinner BOOLEAN NULLABLE Tempat ini menyajikan makan malam.
serves_beer BOOLEAN NULLABLE Tempat ini menyajikan bir.
serves_wine BOOLEAN NULLABLE Tempat ini menyajikan wine.
serves_brunch BOOLEAN NULLABLE Tempat ini menyajikan sarapan siang.
serves_vegetarian_food BOOLEAN NULLABLE Tempat ini menyajikan makanan vegetarian.
outdoor_seating BOOLEAN NULLABLE Tempat ini menyediakan tempat duduk outdoor.
live_music BOOLEAN NULLABLE Tempat ini menyediakan musik live.
menu_for_children BOOLEAN NULLABLE Tempat ini memiliki menu untuk anak-anak.
serves_cocktails BOOLEAN NULLABLE Tempat ini menyajikan koktail.
serves_dessert BOOLEAN NULLABLE Tempat ini menyajikan hidangan penutup.
serves_coffee BOOLEAN NULLABLE Tempat ini menyajikan kopi.
good_for_children BOOLEAN NULLABLE Tempatnya bagus untuk anak-anak.
allows_dogs BOOLEAN NULLABLE Tempat mengizinkan.
restroom BOOLEAN NULLABLE Tempat ini memiliki toilet.
good_for_groups BOOLEAN NULLABLE Tempat dapat menampung grup.
good_for_watching_sports BOOLEAN NULLABLE Tempat cocok untuk menonton acara olahraga.
accepts_credit_cards BOOLEAN NULLABLE Tempat menerima kartu kredit sebagai pembayaran.
accepts_debit_cards BOOLEAN NULLABLE Tempat menerima kartu debit sebagai pembayaran.
accepts_cash_only BOOLEAN NULLABLE Tempat ini hanya menerima pembayaran tunai. Tempat dengan atribut ini mungkin masih menerima metode pembayaran lainnya.
accepts_nfc BOOLEAN NULLABLE Tempat menerima pembayaran dengan NFC.
free_parking_lot BOOLEAN NULLABLE Tempat ini menawarkan tempat parkir gratis.
paid_parking_lot BOOLEAN NULLABLE Tempat ini menawarkan tempat parkir berbayar.
free_street_parking BOOLEAN NULLABLE Tempat ini menawarkan parkir di jalan gratis.
paid_street_parking BOOLEAN NULLABLE Tempat ini menawarkan tempat parkir di pinggir jalan berbayar.
valet_parking BOOLEAN NULLABLE Tempat ini menawarkan parkir valet.
free_garage_parking BOOLEAN NULLABLE Tempat ini menawarkan parkir garasi gratis.
paid_garage_parking BOOLEAN NULLABLE Tempat ini menawarkan parkir garasi berbayar.
wheelchair_accessible_parking BOOLEAN NULLABLE Tempat ini menawarkan parkir khusus pengguna kursi roda.
wheelchair_accessible_entrance BOOLEAN NULLABLE Tempat memiliki pintu masuk khusus pengguna kursi roda.
wheelchair_accessible_restroom BOOLEAN NULLABLE Tempat ini memiliki toilet khusus pengguna kursi roda.
wheelchair_accessible_seating BOOLEAN NULLABLE Tempat ini menyediakan tempat duduk khusus pengguna kursi roda.
regular_opening_hours RECORD NULLABLE Jam operasional reguler. Jam dipisahkan berdasarkan hari dalam seminggu. Untuk periode yang melampaui tengah malam, waktu berakhir akan dipotong menjadi '23:59:59.999999' dan hari berikutnya berisi interval yang dimulai pada '00:00:00.000000'. Misalnya, jika tempat buka pada hari Jumat dari pukul 08.00 hingga 12.00, lalu dari pukul 20.00 hingga 02.00, periode untuk regular_opening_hours.friday adalah: [{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]. Untuk membuat kueri tempat yang buka pada hari Jumat pukul 17.00, Anda dapat menjalankan kueri berikut: "SELECT WITH AGGREGATION_THRESHOLD COUNT(*) FROM `places` WHERE EXISTS(SELECT * FROM UNNEST(regular_opening_hours.friday) WHERE '17:00:00' BETWEEN start_time AND end_time)".
regular_opening_hours.monday RECORD REPEATED Daftar periode pada hari Senin saat tempat buka.
regular_opening_hours.monday.start_time TIME NULLABLE Awal periode.
regular_opening_hours.monday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours.tuesday RECORD REPEATED Daftar periode pada hari Selasa saat tempat buka.
regular_opening_hours.tuesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours.tuesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours.wednesday RECORD REPEATED Daftar periode pada hari Rabu saat tempat buka.
regular_opening_hours.wednesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours.wednesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours.thursday RECORD REPEATED Daftar periode pada hari Kamis saat tempat buka.
regular_opening_hours.thursday.start_time TIME NULLABLE Awal periode.
regular_opening_hours.thursday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours.friday RECORD REPEATED Daftar periode pada hari Jumat saat tempat buka.
regular_opening_hours.friday.start_time TIME NULLABLE Awal periode.
regular_opening_hours.friday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours.saturday RECORD REPEATED Daftar periode pada hari Sabtu saat tempat buka.
regular_opening_hours.saturday.start_time TIME NULLABLE Awal periode.
regular_opening_hours.saturday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours.sunday RECORD REPEATED Daftar periode pada hari Minggu saat tempat buka.
regular_opening_hours.sunday.start_time TIME NULLABLE Awal periode.
regular_opening_hours.sunday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_happy_hour RECORD NULLABLE Jam operasional reguler untuk jenis jam sekunder "HAPPY_HOUR". Jam dipisahkan berdasarkan hari dalam seminggu. Untuk periode yang melampaui tengah malam, waktu berakhir akan dipotong menjadi '23:59:59.999999' dan hari berikutnya berisi interval yang dimulai pada '00:00:00.000000'. Misalnya, jika tempat buka pada hari Jumat dari pukul 08.00 hingga 12.00, lalu dari pukul 20.00 hingga 02.00, periode untuk regular_opening_hours_happy_hour.friday adalah: [{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]. Untuk membuat kueri tempat yang buka pada hari Jumat pukul 17.00, Anda dapat menjalankan kueri berikut: "SELECT WITH AGGREGATION_THRESHOLD COUNT(*) FROM `places` WHERE EXISTS(SELECT * FROM UNNEST(regular_opening_hours_happy_hour.friday) WHERE '17:00:00' BETWEEN start_time AND end_time)".
regular_opening_hours_happy_hour.monday RECORD REPEATED Daftar periode pada hari Senin saat tempat buka.
regular_opening_hours_happy_hour.monday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_happy_hour.monday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_happy_hour.tuesday RECORD REPEATED Daftar periode pada hari Selasa saat tempat buka.
regular_opening_hours_happy_hour.tuesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_happy_hour.tuesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_happy_hour.wednesday RECORD REPEATED Daftar periode pada hari Rabu saat tempat buka.
regular_opening_hours_happy_hour.wednesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_happy_hour.wednesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_happy_hour.thursday RECORD REPEATED Daftar periode pada hari Kamis saat tempat buka.
regular_opening_hours_happy_hour.thursday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_happy_hour.thursday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_happy_hour.friday RECORD REPEATED Daftar periode pada hari Jumat saat tempat buka.
regular_opening_hours_happy_hour.friday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_happy_hour.friday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_happy_hour.saturday RECORD REPEATED Daftar periode pada hari Sabtu saat tempat buka.
regular_opening_hours_happy_hour.saturday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_happy_hour.saturday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_happy_hour.sunday RECORD REPEATED Daftar periode pada hari Minggu saat tempat buka.
regular_opening_hours_happy_hour.sunday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_happy_hour.sunday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_drive_through RECORD NULLABLE Jam operasional reguler untuk jenis jam sekunder "DRIVE_THROUGH". Jam dipisahkan berdasarkan hari dalam seminggu. Untuk periode yang melampaui tengah malam, waktu berakhir akan dipotong menjadi '23:59:59.999999' dan hari berikutnya berisi interval yang dimulai pada '00:00:00.000000'. Misalnya, jika suatu tempat buka pada hari Jumat dari pukul 08.00 hingga 12.00, lalu dari pukul 20.00 hingga 02.00, periode untuk regular_opening_hours_drive_through.friday adalah: [{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]. Untuk membuat kueri tempat yang buka pada hari Jumat pukul 17.00, Anda dapat menjalankan kueri berikut: "SELECT WITH AGGREGATION_THRESHOLD COUNT(*) FROM `places` WHERE EXISTS(SELECT * FROM UNNEST(regular_opening_hours_drive_through.friday) WHERE '17:00:00' BETWEEN start_time AND end_time)".
regular_opening_hours_drive_through.monday RECORD REPEATED Daftar periode pada hari Senin saat tempat buka.
regular_opening_hours_drive_through.monday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_drive_through.monday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_drive_through.tuesday RECORD REPEATED Daftar periode pada hari Selasa saat tempat buka.
regular_opening_hours_drive_through.tuesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_drive_through.tuesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_drive_through.wednesday RECORD REPEATED Daftar periode pada hari Rabu saat tempat buka.
regular_opening_hours_drive_through.wednesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_drive_through.wednesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_drive_through.thursday RECORD REPEATED Daftar periode pada hari Kamis saat tempat buka.
regular_opening_hours_drive_through.thursday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_drive_through.thursday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_drive_through.friday RECORD REPEATED Daftar periode pada hari Jumat saat tempat buka.
regular_opening_hours_drive_through.friday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_drive_through.friday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_drive_through.saturday RECORD REPEATED Daftar periode pada hari Sabtu saat tempat buka.
regular_opening_hours_drive_through.saturday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_drive_through.saturday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_drive_through.sunday RECORD REPEATED Daftar periode pada hari Minggu saat tempat buka.
regular_opening_hours_drive_through.sunday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_drive_through.sunday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_delivery RECORD NULLABLE Jam operasional reguler untuk jenis jam sekunder "PENGIRIMAN". Jam dipisahkan berdasarkan hari dalam seminggu. Untuk periode yang melampaui tengah malam, waktu berakhir akan dipotong menjadi '23:59:59.999999' dan hari berikutnya berisi interval yang dimulai pada '00:00:00.000000'. Misalnya, jika tempat buka pada hari Jumat dari pukul 08.00 hingga 12.00, lalu dari pukul 20.00 hingga 02.00, periode untuk regular_opening_hours_delivery.friday adalah: [{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]. Untuk membuat kueri tempat yang buka pada hari Jumat pukul 17.00, Anda dapat menjalankan kueri berikut: "SELECT WITH AGGREGATION_THRESHOLD COUNT(*) FROM `places` WHERE EXISTS(SELECT * FROM UNNEST(regular_opening_hours_delivery.friday) WHERE '17:00:00' BETWEEN start_time AND end_time)".
regular_opening_hours_delivery.monday RECORD REPEATED Daftar periode pada hari Senin saat tempat buka.
regular_opening_hours_delivery.monday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_delivery.monday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_delivery.tuesday RECORD REPEATED Daftar periode pada hari Selasa saat tempat buka.
regular_opening_hours_delivery.tuesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_delivery.tuesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_delivery.wednesday RECORD REPEATED Daftar periode pada hari Rabu saat tempat buka.
regular_opening_hours_delivery.wednesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_delivery.wednesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_delivery.thursday RECORD REPEATED Daftar periode pada hari Kamis saat tempat buka.
regular_opening_hours_delivery.thursday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_delivery.thursday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_delivery.friday RECORD REPEATED Daftar periode pada hari Jumat saat tempat buka.
regular_opening_hours_delivery.friday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_delivery.friday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_delivery.saturday RECORD REPEATED Daftar periode pada hari Sabtu saat tempat buka.
regular_opening_hours_delivery.saturday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_delivery.saturday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_delivery.sunday RECORD REPEATED Daftar periode pada hari Minggu saat tempat buka.
regular_opening_hours_delivery.sunday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_delivery.sunday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_takeout RECORD NULLABLE Jam operasional reguler untuk jenis jam sekunder "TAKEOUT". Jam dipisahkan berdasarkan hari dalam seminggu. Untuk periode yang melampaui tengah malam, waktu berakhir akan dipotong menjadi '23:59:59.999999' dan hari berikutnya berisi interval yang dimulai pada '00:00:00.000000'. Misalnya, jika tempat buka pada hari Jumat dari pukul 08.00 hingga 12.00, lalu dari pukul 20.00 hingga 02.00, periode untuk regular_opening_hours_takeout.friday adalah: [{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]. Untuk membuat kueri tempat yang buka pada hari Jumat pukul 17.00, Anda dapat menjalankan kueri berikut: "SELECT WITH AGGREGATION_THRESHOLD COUNT(*) FROM `places` WHERE EXISTS(SELECT * FROM UNNEST(regular_opening_hours_takeout.friday) WHERE '17:00:00' BETWEEN start_time AND end_time)".
regular_opening_hours_takeout.monday RECORD REPEATED Daftar periode pada hari Senin saat tempat buka.
regular_opening_hours_takeout.monday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_takeout.monday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_takeout.tuesday RECORD REPEATED Daftar periode pada hari Selasa saat tempat buka.
regular_opening_hours_takeout.tuesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_takeout.tuesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_takeout.wednesday RECORD REPEATED Daftar periode pada hari Rabu saat tempat buka.
regular_opening_hours_takeout.wednesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_takeout.wednesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_takeout.thursday RECORD REPEATED Daftar periode pada hari Kamis saat tempat buka.
regular_opening_hours_takeout.thursday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_takeout.thursday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_takeout.friday RECORD REPEATED Daftar periode pada hari Jumat saat tempat buka.
regular_opening_hours_takeout.friday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_takeout.friday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_takeout.saturday RECORD REPEATED Daftar periode pada hari Sabtu saat tempat buka.
regular_opening_hours_takeout.saturday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_takeout.saturday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_takeout.sunday RECORD REPEATED Daftar periode pada hari Minggu saat tempat buka.
regular_opening_hours_takeout.sunday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_takeout.sunday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_kitchen RECORD NULLABLE Jam operasional reguler untuk jenis jam sekunder "KITCHEN". Jam dipisahkan berdasarkan hari dalam seminggu. Untuk periode yang melampaui tengah malam, waktu berakhir akan dipotong menjadi '23:59:59.999999' dan hari berikutnya berisi interval yang dimulai pada '00:00:00.000000'. Misalnya, jika sebuah tempat buka pada hari Jumat dari pukul 08.00 hingga 12.00, lalu dari pukul 20.00 hingga 02.00, periode untuk regular_opening_hours_kitchen.friday adalah: [{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]. Untuk membuat kueri tempat yang buka pada hari Jumat pukul 17.00, Anda dapat menjalankan kueri berikut: "SELECT WITH AGGREGATION_THRESHOLD COUNT(*) FROM `places` WHERE EXISTS(SELECT * FROM UNNEST(regular_opening_hours_kitchen.friday) WHERE '17:00:00' BETWEEN start_time AND end_time)".
regular_opening_hours_kitchen.monday RECORD REPEATED Daftar periode pada hari Senin saat tempat buka.
regular_opening_hours_kitchen.monday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_kitchen.monday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_kitchen.tuesday RECORD REPEATED Daftar periode pada hari Selasa saat tempat buka.
regular_opening_hours_kitchen.tuesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_kitchen.tuesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_kitchen.wednesday RECORD REPEATED Daftar periode pada hari Rabu saat tempat buka.
regular_opening_hours_kitchen.wednesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_kitchen.wednesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_kitchen.thursday RECORD REPEATED Daftar periode pada hari Kamis saat tempat buka.
regular_opening_hours_kitchen.thursday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_kitchen.thursday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_kitchen.friday RECORD REPEATED Daftar periode pada hari Jumat saat tempat buka.
regular_opening_hours_kitchen.friday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_kitchen.friday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_kitchen.saturday RECORD REPEATED Daftar periode pada hari Sabtu saat tempat buka.
regular_opening_hours_kitchen.saturday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_kitchen.saturday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_kitchen.sunday RECORD REPEATED Daftar periode pada hari Minggu saat tempat buka.
regular_opening_hours_kitchen.sunday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_kitchen.sunday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_breakfast RECORD NULLABLE Jam operasional reguler untuk jenis jam sekunder "Sarapan". Jam dipisahkan berdasarkan hari dalam seminggu. Untuk periode yang melampaui tengah malam, waktu berakhir akan dipotong menjadi '23:59:59.999999' dan hari berikutnya berisi interval yang dimulai pada '00:00:00.000000'. Misalnya, jika tempat buka pada hari Jumat dari pukul 08.00 hingga 12.00, lalu dari pukul 20.00 hingga 02.00, periode untuk regular_opening_hours_breakfast.friday adalah: [{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]. Untuk membuat kueri tempat yang buka pada hari Jumat pukul 17.00, Anda dapat menjalankan kueri berikut: "SELECT WITH AGGREGATION_THRESHOLD COUNT(*) FROM `places` WHERE EXISTS(SELECT * FROM UNNEST(regular_opening_hours_breakfast.friday) WHERE '17:00:00' BETWEEN start_time AND end_time)".
regular_opening_hours_breakfast.monday RECORD REPEATED Daftar periode pada hari Senin saat tempat buka.
regular_opening_hours_breakfast.monday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_breakfast.monday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_breakfast.tuesday RECORD REPEATED Daftar periode pada hari Selasa saat tempat buka.
regular_opening_hours_breakfast.tuesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_breakfast.tuesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_breakfast.wednesday RECORD REPEATED Daftar periode pada hari Rabu saat tempat buka.
regular_opening_hours_breakfast.wednesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_breakfast.wednesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_breakfast.thursday RECORD REPEATED Daftar periode pada hari Kamis saat tempat buka.
regular_opening_hours_breakfast.thursday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_breakfast.thursday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_breakfast.friday RECORD REPEATED Daftar periode pada hari Jumat saat tempat buka.
regular_opening_hours_breakfast.friday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_breakfast.friday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_breakfast.saturday RECORD REPEATED Daftar periode pada hari Sabtu saat tempat buka.
regular_opening_hours_breakfast.saturday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_breakfast.saturday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_breakfast.sunday RECORD REPEATED Daftar periode pada hari Minggu saat tempat buka.
regular_opening_hours_breakfast.sunday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_breakfast.sunday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_lunch RECORD NULLABLE Jam operasional reguler untuk jenis jam sekunder "LUNCH". Jam dipisahkan berdasarkan hari dalam seminggu. Untuk periode yang melampaui tengah malam, waktu berakhir akan dipotong menjadi '23:59:59.999999' dan hari berikutnya berisi interval yang dimulai pada '00:00:00.000000'. Misalnya, jika tempat buka pada hari Jumat pukul 08.00–12.00, lalu pukul 20.00–02.00, periode untuk regular_opening_hours_lunch.friday adalah: [{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]. Untuk membuat kueri tempat yang buka pada hari Jumat pukul 17.00, Anda dapat menjalankan kueri berikut: "SELECT WITH AGGREGATION_THRESHOLD COUNT(*) FROM `places` WHERE EXISTS(SELECT * FROM UNNEST(regular_opening_hours_lunch.friday) WHERE '17:00:00' BETWEEN start_time AND end_time)".
regular_opening_hours_lunch.monday RECORD REPEATED Daftar periode pada hari Senin saat tempat buka.
regular_opening_hours_lunch.monday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_lunch.monday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_lunch.tuesday RECORD REPEATED Daftar periode pada hari Selasa saat tempat buka.
regular_opening_hours_lunch.tuesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_lunch.tuesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_lunch.wednesday RECORD REPEATED Daftar periode pada hari Rabu saat tempat buka.
regular_opening_hours_lunch.wednesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_lunch.wednesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_lunch.thursday RECORD REPEATED Daftar periode pada hari Kamis saat tempat buka.
regular_opening_hours_lunch.thursday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_lunch.thursday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_lunch.friday RECORD REPEATED Daftar periode pada hari Jumat saat tempat buka.
regular_opening_hours_lunch.friday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_lunch.friday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_lunch.saturday RECORD REPEATED Daftar periode pada hari Sabtu saat tempat buka.
regular_opening_hours_lunch.saturday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_lunch.saturday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_lunch.sunday RECORD REPEATED Daftar periode pada hari Minggu saat tempat buka.
regular_opening_hours_lunch.sunday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_lunch.sunday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_dinner RECORD NULLABLE Jam operasional reguler untuk jenis jam sekunder "MAKAN MALAM". Jam dipisahkan berdasarkan hari dalam seminggu. Untuk periode yang melampaui tengah malam, waktu berakhir akan dipotong menjadi '23:59:59.999999' dan hari berikutnya berisi interval yang dimulai pada '00:00:00.000000'. Misalnya, jika tempat buka pada hari Jumat dari pukul 08.00 hingga 12.00, lalu dari pukul 20.00 hingga 02.00, periode untuk regular_opening_hours_dinner.friday adalah: [{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]. Untuk membuat kueri tempat yang buka pada hari Jumat pukul 17.00, Anda dapat menjalankan kueri berikut: "SELECT WITH AGGREGATION_THRESHOLD COUNT(*) FROM `places` WHERE EXISTS(SELECT * FROM UNNEST(regular_opening_hours_dinner.friday) WHERE '17:00:00' BETWEEN start_time AND end_time)".
regular_opening_hours_dinner.monday RECORD REPEATED Daftar periode pada hari Senin saat tempat buka.
regular_opening_hours_dinner.monday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_dinner.monday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_dinner.tuesday RECORD REPEATED Daftar periode pada hari Selasa saat tempat buka.
regular_opening_hours_dinner.tuesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_dinner.tuesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_dinner.wednesday RECORD REPEATED Daftar periode pada hari Rabu saat tempat buka.
regular_opening_hours_dinner.wednesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_dinner.wednesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_dinner.thursday RECORD REPEATED Daftar periode pada hari Kamis saat tempat buka.
regular_opening_hours_dinner.thursday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_dinner.thursday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_dinner.friday RECORD REPEATED Daftar periode pada hari Jumat saat tempat buka.
regular_opening_hours_dinner.friday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_dinner.friday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_dinner.saturday RECORD REPEATED Daftar periode pada hari Sabtu saat tempat buka.
regular_opening_hours_dinner.saturday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_dinner.saturday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_dinner.sunday RECORD REPEATED Daftar periode pada hari Minggu saat tempat buka.
regular_opening_hours_dinner.sunday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_dinner.sunday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_brunch RECORD NULLABLE Jam operasional reguler untuk jenis jam sekunder "BRUNCH". Jam dipisahkan berdasarkan hari dalam seminggu. Untuk periode yang melampaui tengah malam, waktu berakhir akan dipotong menjadi '23:59:59.999999' dan hari berikutnya berisi interval yang dimulai pada '00:00:00.000000'. Misalnya, jika tempat buka pada hari Jumat dari pukul 08.00 hingga 12.00, lalu dari pukul 20.00 hingga 02.00, periode untuk regular_opening_hours_brunch.friday adalah: [{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]. Untuk membuat kueri tempat yang buka pada hari Jumat pukul 17.00, Anda dapat menjalankan kueri berikut: "SELECT WITH AGGREGATION_THRESHOLD COUNT(*) FROM `places` WHERE EXISTS(SELECT * FROM UNNEST(regular_opening_hours_brunch.friday) WHERE '17:00:00' BETWEEN start_time AND end_time)".
regular_opening_hours_brunch.monday RECORD REPEATED Daftar periode pada hari Senin saat tempat buka.
regular_opening_hours_brunch.monday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_brunch.monday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_brunch.tuesday RECORD REPEATED Daftar periode pada hari Selasa saat tempat buka.
regular_opening_hours_brunch.tuesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_brunch.tuesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_brunch.wednesday RECORD REPEATED Daftar periode pada hari Rabu saat tempat buka.
regular_opening_hours_brunch.wednesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_brunch.wednesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_brunch.thursday RECORD REPEATED Daftar periode pada hari Kamis saat tempat buka.
regular_opening_hours_brunch.thursday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_brunch.thursday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_brunch.friday RECORD REPEATED Daftar periode pada hari Jumat saat tempat buka.
regular_opening_hours_brunch.friday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_brunch.friday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_brunch.saturday RECORD REPEATED Daftar periode pada hari Sabtu saat tempat buka.
regular_opening_hours_brunch.saturday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_brunch.saturday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_brunch.sunday RECORD REPEATED Daftar periode pada hari Minggu saat tempat buka.
regular_opening_hours_brunch.sunday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_brunch.sunday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_pickup RECORD NULLABLE Jam operasional reguler untuk jenis jam sekunder "PICKUP". Jam dipisahkan berdasarkan hari dalam seminggu. Untuk periode yang melampaui tengah malam, waktu berakhir akan dipotong menjadi '23:59:59.999999' dan hari berikutnya berisi interval yang dimulai pada '00:00:00.000000'. Misalnya, jika tempat buka pada hari Jumat dari pukul 08.00 hingga 12.00, lalu dari pukul 20.00 hingga 02.00, periode untuk regular_opening_hours_pickup.friday adalah: [{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]. Untuk membuat kueri tempat yang buka pada hari Jumat pukul 17.00, Anda dapat menjalankan kueri berikut: "SELECT WITH AGGREGATION_THRESHOLD COUNT(*) FROM `places` WHERE EXISTS(SELECT * FROM UNNEST(regular_opening_hours_pickup.friday) WHERE '17:00:00' BETWEEN start_time AND end_time)".
regular_opening_hours_pickup.monday RECORD REPEATED Daftar periode pada hari Senin saat tempat buka.
regular_opening_hours_pickup.monday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_pickup.monday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_pickup.tuesday RECORD REPEATED Daftar periode pada hari Selasa saat tempat buka.
regular_opening_hours_pickup.tuesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_pickup.tuesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_pickup.wednesday RECORD REPEATED Daftar periode pada hari Rabu saat tempat buka.
regular_opening_hours_pickup.wednesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_pickup.wednesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_pickup.thursday RECORD REPEATED Daftar periode pada hari Kamis saat tempat buka.
regular_opening_hours_pickup.thursday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_pickup.thursday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_pickup.friday RECORD REPEATED Daftar periode pada hari Jumat saat tempat buka.
regular_opening_hours_pickup.friday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_pickup.friday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_pickup.saturday RECORD REPEATED Daftar periode pada hari Sabtu saat tempat buka.
regular_opening_hours_pickup.saturday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_pickup.saturday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_pickup.sunday RECORD REPEATED Daftar periode pada hari Minggu saat tempat buka.
regular_opening_hours_pickup.sunday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_pickup.sunday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_access RECORD NULLABLE Jam operasional reguler untuk jenis jam sekunder "AKSES". Jam dipisahkan berdasarkan hari dalam seminggu. Untuk periode yang melampaui tengah malam, waktu berakhir akan dipotong menjadi '23:59:59.999999' dan hari berikutnya berisi interval yang dimulai pada '00:00:00.000000'. Misalnya, jika suatu tempat buka pada hari Jumat dari pukul 08.00 hingga 12.00, lalu dari pukul 20.00 hingga 02.00, periode untuk regular_opening_hours_access.friday adalah: [{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]. Untuk membuat kueri tempat yang buka pada hari Jumat pukul 17.00, Anda dapat menjalankan kueri berikut: "SELECT WITH AGGREGATION_THRESHOLD COUNT(*) FROM `places` WHERE EXISTS(SELECT * FROM UNNEST(regular_opening_hours_access.friday) WHERE '17:00:00' BETWEEN start_time AND end_time)".
regular_opening_hours_access.monday RECORD REPEATED Daftar periode pada hari Senin saat tempat buka.
regular_opening_hours_access.monday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_access.monday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_access.tuesday RECORD REPEATED Daftar periode pada hari Selasa saat tempat buka.
regular_opening_hours_access.tuesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_access.tuesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_access.wednesday RECORD REPEATED Daftar periode pada hari Rabu saat tempat buka.
regular_opening_hours_access.wednesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_access.wednesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_access.thursday RECORD REPEATED Daftar periode pada hari Kamis saat tempat buka.
regular_opening_hours_access.thursday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_access.thursday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_access.friday RECORD REPEATED Daftar periode pada hari Jumat saat tempat buka.
regular_opening_hours_access.friday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_access.friday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_access.saturday RECORD REPEATED Daftar periode pada hari Sabtu saat tempat buka.
regular_opening_hours_access.saturday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_access.saturday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_access.sunday RECORD REPEATED Daftar periode pada hari Minggu saat tempat buka.
regular_opening_hours_access.sunday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_access.sunday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_senior_hours RECORD NULLABLE Jam operasional reguler untuk jenis jam sekunder "SENIOR_HOURS". Jam dipisahkan berdasarkan hari dalam seminggu. Untuk periode yang melampaui tengah malam, waktu berakhir akan dipotong menjadi '23:59:59.999999' dan hari berikutnya berisi interval yang dimulai pada '00:00:00.000000'. Misalnya, jika tempat buka pada hari Jumat dari pukul 08.00 hingga 12.00, lalu dari pukul 20.00 hingga 02.00, periode untuk regular_opening_hours_senior_hours.friday adalah: [{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]. Untuk membuat kueri tempat yang buka pada hari Jumat pukul 17.00, Anda dapat menjalankan kueri berikut: "SELECT WITH AGGREGATION_THRESHOLD COUNT(*) FROM `places` WHERE EXISTS(SELECT * FROM UNNEST(regular_opening_hours_senior_hours.friday) WHERE '17:00:00' BETWEEN start_time AND end_time)".
regular_opening_hours_senior_hours.monday RECORD REPEATED Daftar periode pada hari Senin saat tempat buka.
regular_opening_hours_senior_hours.monday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_senior_hours.monday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_senior_hours.tuesday RECORD REPEATED Daftar periode pada hari Selasa saat tempat buka.
regular_opening_hours_senior_hours.tuesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_senior_hours.tuesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_senior_hours.wednesday RECORD REPEATED Daftar periode pada hari Rabu saat tempat buka.
regular_opening_hours_senior_hours.wednesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_senior_hours.wednesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_senior_hours.thursday RECORD REPEATED Daftar periode pada hari Kamis saat tempat buka.
regular_opening_hours_senior_hours.thursday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_senior_hours.thursday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_senior_hours.friday RECORD REPEATED Daftar periode pada hari Jumat saat tempat buka.
regular_opening_hours_senior_hours.friday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_senior_hours.friday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_senior_hours.saturday RECORD REPEATED Daftar periode pada hari Sabtu saat tempat buka.
regular_opening_hours_senior_hours.saturday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_senior_hours.saturday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_senior_hours.sunday RECORD REPEATED Daftar periode pada hari Minggu saat tempat buka.
regular_opening_hours_senior_hours.sunday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_senior_hours.sunday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_online_service_hours RECORD NULLABLE Jam operasional reguler untuk jenis jam sekunder "ONLINE_SERVICE_HOURS". Jam dipisahkan berdasarkan hari dalam seminggu. Untuk periode yang melampaui tengah malam, waktu berakhir akan dipotong menjadi '23:59:59.999999' dan hari berikutnya berisi interval yang dimulai pada '00:00:00.000000'. Misalnya, jika suatu tempat buka pada hari Jumat dari pukul 08.00 hingga 12.00, lalu dari pukul 20.00 hingga 02.00, periode untuk regular_opening_hours_online_service_hours.friday adalah: [{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]. Untuk membuat kueri tempat yang buka pada hari Jumat pukul 17.00, Anda dapat menjalankan kueri berikut: "SELECT WITH AGGREGATION_THRESHOLD COUNT(*) FROM `places` WHERE EXISTS(SELECT * FROM UNNEST(regular_opening_hours_online_service_hours.friday) WHERE '17:00:00' BETWEEN start_time AND end_time)".
regular_opening_hours_online_service_hours.monday RECORD REPEATED Daftar periode pada hari Senin saat tempat buka.
regular_opening_hours_online_service_hours.monday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_online_service_hours.monday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_online_service_hours.tuesday RECORD REPEATED Daftar periode pada hari Selasa saat tempat buka.
regular_opening_hours_online_service_hours.tuesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_online_service_hours.tuesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_online_service_hours.wednesday RECORD REPEATED Daftar periode pada hari Rabu saat tempat buka.
regular_opening_hours_online_service_hours.wednesday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_online_service_hours.wednesday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_online_service_hours.thursday RECORD REPEATED Daftar periode pada hari Kamis saat tempat buka.
regular_opening_hours_online_service_hours.thursday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_online_service_hours.thursday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_online_service_hours.friday RECORD REPEATED Daftar periode pada hari Jumat saat tempat buka.
regular_opening_hours_online_service_hours.friday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_online_service_hours.friday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_online_service_hours.saturday RECORD REPEATED Daftar periode pada hari Sabtu saat tempat buka.
regular_opening_hours_online_service_hours.saturday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_online_service_hours.saturday.end_time TIME NULLABLE Akhir periode.
regular_opening_hours_online_service_hours.sunday RECORD REPEATED Daftar periode pada hari Minggu saat tempat buka.
regular_opening_hours_online_service_hours.sunday.start_time TIME NULLABLE Awal periode.
regular_opening_hours_online_service_hours.sunday.end_time TIME NULLABLE Akhir periode.
ev_charge_options RECORD NULLABLE Informasi tentang Stasiun Pengisian Kendaraan Listrik Umum yang diselenggarakan di tempat tersebut. Terminologi mengikuti https://afdc.energy.gov/fuels/electricity_infrastructure.html. Satu port dapat mengisi daya satu mobil dalam satu waktu. Satu port memiliki satu atau beberapa konektor. Satu stasiun memiliki satu atau beberapa port.
ev_charge_options.connector_count INTEGER NULLABLE Jumlah konektor di stasiun ini. Namun, karena beberapa port dapat memiliki beberapa konektor, tetapi hanya dapat mengisi daya satu mobil dalam satu waktu (misalnya), jumlah konektor mungkin lebih besar dari jumlah total mobil yang dapat mengisi daya secara bersamaan.
ev_charge_options.connector_aggregation RECORD REPEATED Daftar agregasi konektor pengisian daya kendaraan listrik yang berisi konektor dengan jenis dan tarif pengisian daya yang sama.
ev_charge_options.connector_aggregation.type STRING NULLABLE Jenis konektor agregasi ini.
ev_charge_options.connector_aggregation.max_charge_rate_kw FLOAT NULLABLE Kecepatan pengisian daya maksimum statis dalam kw dari setiap konektor dalam agregasi.
ev_charge_options.connector_aggregation.count INTEGER NULLABLE Jumlah konektor dalam agregasi ini.
brand_ids STRING REPEATED ID unik untuk merek.