核心架构参考

所有国家/地区都支持核心架构,而每个国家/地区都有额外的架构项

字段名称 类型 Mode 说明
point GEOGRAPHY NULLABLE 地点的位置(作为点地理位置类型的对象)。
id STRING NULLABLE 唯一的地点 ID。请参阅地点 ID
types STRING REPEATED 地点的一组类型标记。例如,“餐厅”和“咖啡馆”。如需查看可用值的完整列表,请参阅地点类型中的表 A 和表 B。
primary_type STRING NULLABLE 地点的主要类型。此类型必须是 Places API 支持的类型之一。例如,“餐厅”“咖啡馆”“机场”等。地点只能有一个主要类型。如需查看可用值的完整列表,请参阅地点类型中的表 A 和表 B。
country_code STRING NULLABLE 国家/地区代码,采用 Unicode CLDR 格式。
location RECORD NULLABLE 地点的位置。
location.latitude FLOAT NULLABLE 纬度(以度为单位),范围为 -90.0 到 90.0。
location.longitude FLOAT NULLABLE 经度(以度为单位),范围为 -180.0 到 180.0。
rating FLOAT NULLABLE 评分介于 1.0 到 5.0 之间,基于用户对地点的评价。
user_rating_count INTEGER NULLABLE 相应地点获得的总评价数。
price_level STRING NULLABLE 地点的价格水平。可能的值包括“PRICE_LEVEL_FREE”“PRICE_LEVEL_INEXPENSIVE”“PRICE_LEVEL_MODERATE”“PRICE_LEVEL_EXPENSIVE”和“PRICE_LEVEL_VERY_EXPENSIVE”。
business_status STRING NULLABLE 地点的营业状态。可能的值包括“OPERATIONAL”“CLOSED_TEMPORARILY”和“CLOSED_PERMANENTLY”。
takeout BOOLEAN NULLABLE 相应地点支持外卖。
delivery BOOLEAN NULLABLE 相应地点支持送货上门。
dine_in BOOLEAN NULLABLE 地点支持室内或室外座位选项。
curbside_pickup BOOLEAN NULLABLE 相应地点支持路边自提。
reservable BOOLEAN NULLABLE 相应地点支持预订。
serves_breakfast BOOLEAN NULLABLE 该地点供应早餐。
serves_lunch BOOLEAN NULLABLE 该地点供应午餐。
serves_dinner BOOLEAN NULLABLE 该地点供应晚餐。
serves_beer BOOLEAN NULLABLE 该地点供应啤酒。
serves_wine BOOLEAN NULLABLE 地点供应葡萄酒。
serves_brunch BOOLEAN NULLABLE 该地供应早午餐。
serves_vegetarian_food BOOLEAN NULLABLE 该地供应素食。
outdoor_seating BOOLEAN NULLABLE 提供户外座位。
live_music BOOLEAN NULLABLE 地点提供现场音乐表演。
menu_for_children BOOLEAN NULLABLE 餐厅提供儿童菜单。
serves_cocktails BOOLEAN NULLABLE 该地供应鸡尾酒。
serves_dessert BOOLEAN NULLABLE 相应地点提供甜点。
serves_coffee BOOLEAN NULLABLE 该地点供应咖啡。
good_for_children BOOLEAN NULLABLE 这个地方很适合儿童。
allows_dogs BOOLEAN NULLABLE 允许携带狗狗。
restroom BOOLEAN NULLABLE 该地点设有卫生间。
good_for_groups BOOLEAN NULLABLE 可容纳团体。
good_for_watching_sports BOOLEAN NULLABLE 地点适合观看体育赛事。
accepts_credit_cards BOOLEAN NULLABLE 相应地点接受信用卡付款。
accepts_debit_cards BOOLEAN NULLABLE 相应地点接受借记卡付款。
accepts_cash_only BOOLEAN NULLABLE 相应地点仅接受现金付款。具有此属性的地点可能仍接受其他付款方式。
accepts_nfc BOOLEAN NULLABLE 相应地点接受 NFC 付款。
free_parking_lot BOOLEAN NULLABLE 地点提供免费停车场。
paid_parking_lot BOOLEAN NULLABLE 地点提供付费停车场。
free_street_parking BOOLEAN NULLABLE 该地点提供免费路边停车位。
paid_street_parking BOOLEAN NULLABLE 相应地点提供收费路边停车位。
valet_parking BOOLEAN NULLABLE 该地点提供代客泊车服务。
free_garage_parking BOOLEAN NULLABLE 该地点提供免费车库停车位。
paid_garage_parking BOOLEAN NULLABLE 地点提供收费停车库。
wheelchair_accessible_parking BOOLEAN NULLABLE 地点提供无障碍停车位。
wheelchair_accessible_entrance BOOLEAN NULLABLE 地点有无障碍入口。
wheelchair_accessible_restroom BOOLEAN NULLABLE 地点设有无障碍卫生间。
wheelchair_accessible_seating BOOLEAN NULLABLE 地点设有无障碍座席。
regular_opening_hours RECORD NULLABLE 正常营业时间。时段以星期几分隔。对于超出午夜的时间段,结束时间会截断为“23:59:59.999999”,而次日包含从“00:00:00.000000”开始的时间段。例如,如果某个地点在星期五上午 8 点至中午 12 点和晚上 8 点至凌晨 2 点营业,则 regular_opening_hours.friday 的各个时间段为:[{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]。如需查询周五下午 5 点营业的地点,您可以运行以下查询:“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 地点在周一开放的时间段列表。
regular_opening_hours.monday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours.monday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours.tuesday RECORD REPEATED 地点在星期二开放的时间段列表。
regular_opening_hours.tuesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours.tuesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours.wednesday RECORD REPEATED 地点在周三开放的时间段列表。
regular_opening_hours.wednesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours.wednesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours.thursday RECORD REPEATED 地点在星期四的营业时间列表。
regular_opening_hours.thursday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours.thursday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours.friday RECORD REPEATED 地点在星期五营业的时间段列表。
regular_opening_hours.friday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours.friday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours.saturday RECORD REPEATED 地点在星期六营业的时间段列表。
regular_opening_hours.saturday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours.saturday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours.sunday RECORD REPEATED 地点在星期日营业的时间段列表。
regular_opening_hours.sunday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours.sunday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_happy_hour RECORD NULLABLE 次要时间类型“HAPPY_HOUR”的正常营业时间。时段以星期几分隔。对于超出午夜的时间段,结束时间会截断为“23:59:59.999999”,而次日包含从“00:00:00.000000”开始的时间段。例如,如果某个地点在星期五上午 8 点至中午 12 点和晚上 8 点至凌晨 2 点营业,则 regular_opening_hours_happy_hour.friday 的相关时段为:[{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]。如需查询周五下午 5 点营业的地点,您可以运行以下查询:“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 地点在周一开放的时间段列表。
regular_opening_hours_happy_hour.monday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_happy_hour.monday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_happy_hour.tuesday RECORD REPEATED 地点在星期二开放的时间段列表。
regular_opening_hours_happy_hour.tuesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_happy_hour.tuesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_happy_hour.wednesday RECORD REPEATED 地点在周三开放的时间段列表。
regular_opening_hours_happy_hour.wednesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_happy_hour.wednesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_happy_hour.thursday RECORD REPEATED 地点在星期四的营业时间列表。
regular_opening_hours_happy_hour.thursday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_happy_hour.thursday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_happy_hour.friday RECORD REPEATED 地点在星期五营业的时间段列表。
regular_opening_hours_happy_hour.friday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_happy_hour.friday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_happy_hour.saturday RECORD REPEATED 地点在星期六营业的时间段列表。
regular_opening_hours_happy_hour.saturday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_happy_hour.saturday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_happy_hour.sunday RECORD REPEATED 地点在星期日营业的时间段列表。
regular_opening_hours_happy_hour.sunday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_happy_hour.sunday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_drive_through RECORD NULLABLE 次要营业时间类型“DRIVE_THROUGH”的正常营业时间。时段以星期几分隔。对于超出午夜的时间段,结束时间会截断为“23:59:59.999999”,而次日包含从“00:00:00.000000”开始的时间段。例如,如果某个地点在星期五上午 8 点至中午 12 点和晚上 8 点至凌晨 2 点营业,则 regular_opening_hours_drive_through.friday 的日期范围为:[{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]。如需查询周五下午 5 点营业的地点,您可以运行以下查询:“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 地点在周一开放的时间段列表。
regular_opening_hours_drive_through.monday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_drive_through.monday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_drive_through.tuesday RECORD REPEATED 地点在星期二开放的时间段列表。
regular_opening_hours_drive_through.tuesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_drive_through.tuesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_drive_through.wednesday RECORD REPEATED 地点在周三开放的时间段列表。
regular_opening_hours_drive_through.wednesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_drive_through.wednesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_drive_through.thursday RECORD REPEATED 地点在星期四的营业时间列表。
regular_opening_hours_drive_through.thursday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_drive_through.thursday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_drive_through.friday RECORD REPEATED 地点在星期五营业的时间段列表。
regular_opening_hours_drive_through.friday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_drive_through.friday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_drive_through.saturday RECORD REPEATED 地点在星期六营业的时间段列表。
regular_opening_hours_drive_through.saturday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_drive_through.saturday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_drive_through.sunday RECORD REPEATED 地点在星期日营业的时间段列表。
regular_opening_hours_drive_through.sunday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_drive_through.sunday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_delivery RECORD NULLABLE 次要时间类型“DELIVERY”的正常营业时间。时段以星期几分隔。对于超出午夜的时间段,结束时间会截断为“23:59:59.999999”,而次日包含从“00:00:00.000000”开始的时间段。例如,如果某个地点在星期五上午 8 点至中午 12 点和晚上 8 点至凌晨 2 点营业,则 regular_opening_hours_delivery.friday 的日期范围为:[{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]。如需查询周五下午 5 点营业的地点,您可以运行以下查询:“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 地点在周一开放的时间段列表。
regular_opening_hours_delivery.monday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_delivery.monday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_delivery.tuesday RECORD REPEATED 地点在星期二开放的时间段列表。
regular_opening_hours_delivery.tuesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_delivery.tuesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_delivery.wednesday RECORD REPEATED 地点在周三开放的时间段列表。
regular_opening_hours_delivery.wednesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_delivery.wednesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_delivery.thursday RECORD REPEATED 地点在星期四的营业时间列表。
regular_opening_hours_delivery.thursday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_delivery.thursday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_delivery.friday RECORD REPEATED 地点在星期五营业的时间段列表。
regular_opening_hours_delivery.friday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_delivery.friday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_delivery.saturday RECORD REPEATED 地点在星期六营业的时间段列表。
regular_opening_hours_delivery.saturday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_delivery.saturday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_delivery.sunday RECORD REPEATED 地点在星期日营业的时间段列表。
regular_opening_hours_delivery.sunday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_delivery.sunday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_takeout RECORD NULLABLE 次要营业时间类型“外卖”的正常营业时间。时段以星期几分隔。对于超出午夜的时间段,结束时间会截断为“23:59:59.999999”,而次日包含从“00:00:00.000000”开始的时间段。例如,如果某个地点在星期五上午 8 点至中午 12 点和晚上 8 点至凌晨 2 点营业,则 regular_opening_hours_takeout.friday 的日期范围为:[{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]。如需查询周五下午 5 点营业的地点,您可以运行以下查询:“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 地点在周一开放的时间段列表。
regular_opening_hours_takeout.monday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_takeout.monday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_takeout.tuesday RECORD REPEATED 地点在星期二开放的时间段列表。
regular_opening_hours_takeout.tuesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_takeout.tuesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_takeout.wednesday RECORD REPEATED 地点在周三开放的时间段列表。
regular_opening_hours_takeout.wednesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_takeout.wednesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_takeout.thursday RECORD REPEATED 地点在星期四的营业时间列表。
regular_opening_hours_takeout.thursday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_takeout.thursday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_takeout.friday RECORD REPEATED 地点在星期五营业的时间段列表。
regular_opening_hours_takeout.friday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_takeout.friday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_takeout.saturday RECORD REPEATED 地点在星期六营业的时间段列表。
regular_opening_hours_takeout.saturday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_takeout.saturday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_takeout.sunday RECORD REPEATED 地点在星期日营业的时间段列表。
regular_opening_hours_takeout.sunday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_takeout.sunday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_kitchen RECORD NULLABLE 次要营业时间类型“KITCHEN”的正常营业时间。时段以星期几分隔。对于超出午夜的时间段,结束时间会截断为“23:59:59.999999”,而次日包含从“00:00:00.000000”开始的时间段。例如,如果某个地点在星期五上午 8 点至中午 12 点和晚上 8 点至凌晨 2 点营业,则 regular_opening_hours_kitchen.friday 的各个时间段为:[{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]。如需查询周五下午 5 点营业的地点,您可以运行以下查询:“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 地点在周一开放的时间段列表。
regular_opening_hours_kitchen.monday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_kitchen.monday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_kitchen.tuesday RECORD REPEATED 地点在星期二开放的时间段列表。
regular_opening_hours_kitchen.tuesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_kitchen.tuesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_kitchen.wednesday RECORD REPEATED 地点在周三开放的时间段列表。
regular_opening_hours_kitchen.wednesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_kitchen.wednesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_kitchen.thursday RECORD REPEATED 地点在星期四的营业时间列表。
regular_opening_hours_kitchen.thursday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_kitchen.thursday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_kitchen.friday RECORD REPEATED 地点在星期五营业的时间段列表。
regular_opening_hours_kitchen.friday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_kitchen.friday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_kitchen.saturday RECORD REPEATED 地点在星期六营业的时间段列表。
regular_opening_hours_kitchen.saturday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_kitchen.saturday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_kitchen.sunday RECORD REPEATED 地点在星期日营业的时间段列表。
regular_opening_hours_kitchen.sunday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_kitchen.sunday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_breakfast RECORD NULLABLE 次要营业时间类型“BREAKFAST”的正常营业时间。时段以星期几分隔。对于超出午夜的时间段,结束时间会截断为“23:59:59.999999”,而次日包含从“00:00:00.000000”开始的时间段。例如,如果某个地点在星期五上午 8 点至中午 12 点和晚上 8 点至凌晨 2 点营业,则 regular_opening_hours_breakfast.friday 的各个时间段为:[{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]。如需查询周五下午 5 点营业的地点,您可以运行以下查询:“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 地点在周一开放的时间段列表。
regular_opening_hours_breakfast.monday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_breakfast.monday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_breakfast.tuesday RECORD REPEATED 地点在星期二开放的时间段列表。
regular_opening_hours_breakfast.tuesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_breakfast.tuesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_breakfast.wednesday RECORD REPEATED 地点在周三开放的时间段列表。
regular_opening_hours_breakfast.wednesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_breakfast.wednesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_breakfast.thursday RECORD REPEATED 地点在星期四的营业时间列表。
regular_opening_hours_breakfast.thursday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_breakfast.thursday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_breakfast.friday RECORD REPEATED 地点在星期五营业的时间段列表。
regular_opening_hours_breakfast.friday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_breakfast.friday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_breakfast.saturday RECORD REPEATED 地点在星期六营业的时间段列表。
regular_opening_hours_breakfast.saturday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_breakfast.saturday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_breakfast.sunday RECORD REPEATED 地点在星期日营业的时间段列表。
regular_opening_hours_breakfast.sunday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_breakfast.sunday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_lunch RECORD NULLABLE 次要时间类型“午餐”的正常营业时间。时段以星期几分隔。对于超出午夜的时间段,结束时间会截断为“23:59:59.999999”,而次日包含从“00:00:00.000000”开始的时间段。例如,如果某个地点在星期五上午 8 点至中午 12 点和晚上 8 点至凌晨 2 点营业,则 regular_opening_hours_lunch.friday 的各个时间段为:[{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]。如需查询周五下午 5 点营业的地点,您可以运行以下查询:“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 地点在周一开放的时间段列表。
regular_opening_hours_lunch.monday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_lunch.monday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_lunch.tuesday RECORD REPEATED 地点在星期二开放的时间段列表。
regular_opening_hours_lunch.tuesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_lunch.tuesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_lunch.wednesday RECORD REPEATED 地点在周三开放的时间段列表。
regular_opening_hours_lunch.wednesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_lunch.wednesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_lunch.thursday RECORD REPEATED 地点在星期四的营业时间列表。
regular_opening_hours_lunch.thursday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_lunch.thursday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_lunch.friday RECORD REPEATED 地点在星期五营业的时间段列表。
regular_opening_hours_lunch.friday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_lunch.friday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_lunch.saturday RECORD REPEATED 地点在星期六营业的时间段列表。
regular_opening_hours_lunch.saturday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_lunch.saturday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_lunch.sunday RECORD REPEATED 地点在星期日营业的时间段列表。
regular_opening_hours_lunch.sunday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_lunch.sunday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_dinner RECORD NULLABLE 次要营业时间类型“晚餐”的正常营业时间。时段以星期几分隔。对于超出午夜的时间段,结束时间会截断为“23:59:59.999999”,而次日包含从“00:00:00.000000”开始的时间段。例如,如果某个地点在星期五上午 8 点至中午 12 点和晚上 8 点至凌晨 2 点营业,则 regular_opening_hours_dinner.friday 的相关时段为:[{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]。如需查询周五下午 5 点营业的地点,您可以运行以下查询:“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 地点在周一开放的时间段列表。
regular_opening_hours_dinner.monday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_dinner.monday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_dinner.tuesday RECORD REPEATED 地点在星期二开放的时间段列表。
regular_opening_hours_dinner.tuesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_dinner.tuesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_dinner.wednesday RECORD REPEATED 地点在周三开放的时间段列表。
regular_opening_hours_dinner.wednesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_dinner.wednesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_dinner.thursday RECORD REPEATED 地点在星期四的营业时间列表。
regular_opening_hours_dinner.thursday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_dinner.thursday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_dinner.friday RECORD REPEATED 地点在星期五营业的时间段列表。
regular_opening_hours_dinner.friday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_dinner.friday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_dinner.saturday RECORD REPEATED 地点在星期六营业的时间段列表。
regular_opening_hours_dinner.saturday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_dinner.saturday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_dinner.sunday RECORD REPEATED 地点在星期日营业的时间段列表。
regular_opening_hours_dinner.sunday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_dinner.sunday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_brunch RECORD NULLABLE 次要时间类型“BRUNCH”的正常营业时间。时段以星期几分隔。对于超出午夜的时间段,结束时间会截断为“23:59:59.999999”,而次日包含从“00:00:00.000000”开始的时间段。例如,如果某个地点在星期五上午 8 点至中午 12 点和晚上 8 点至凌晨 2 点营业,则 regular_opening_hours_brunch.friday 的日期范围为:[{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]。如需查询周五下午 5 点营业的地点,您可以运行以下查询:“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 地点在周一开放的时间段列表。
regular_opening_hours_brunch.monday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_brunch.monday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_brunch.tuesday RECORD REPEATED 地点在星期二开放的时间段列表。
regular_opening_hours_brunch.tuesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_brunch.tuesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_brunch.wednesday RECORD REPEATED 地点在周三开放的时间段列表。
regular_opening_hours_brunch.wednesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_brunch.wednesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_brunch.thursday RECORD REPEATED 地点在星期四的营业时间列表。
regular_opening_hours_brunch.thursday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_brunch.thursday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_brunch.friday RECORD REPEATED 地点在星期五营业的时间段列表。
regular_opening_hours_brunch.friday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_brunch.friday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_brunch.saturday RECORD REPEATED 地点在星期六营业的时间段列表。
regular_opening_hours_brunch.saturday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_brunch.saturday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_brunch.sunday RECORD REPEATED 地点在星期日营业的时间段列表。
regular_opening_hours_brunch.sunday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_brunch.sunday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_pickup RECORD NULLABLE 次要营业时间类型“PICKUP”的常规营业时间。时段以星期几分隔。对于超出午夜的时间段,结束时间会截断为“23:59:59.999999”,而次日包含从“00:00:00.000000”开始的时间段。例如,如果某个地点在星期五上午 8 点至中午 12 点和晚上 8 点至凌晨 2 点营业,则 regular_opening_hours_pickup.friday 的日期范围为:[{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]。如需查询周五下午 5 点营业的地点,您可以运行以下查询:“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 地点在周一开放的时间段列表。
regular_opening_hours_pickup.monday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_pickup.monday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_pickup.tuesday RECORD REPEATED 地点在星期二开放的时间段列表。
regular_opening_hours_pickup.tuesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_pickup.tuesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_pickup.wednesday RECORD REPEATED 地点在周三开放的时间段列表。
regular_opening_hours_pickup.wednesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_pickup.wednesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_pickup.thursday RECORD REPEATED 地点在星期四的营业时间列表。
regular_opening_hours_pickup.thursday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_pickup.thursday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_pickup.friday RECORD REPEATED 地点在星期五营业的时间段列表。
regular_opening_hours_pickup.friday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_pickup.friday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_pickup.saturday RECORD REPEATED 地点在星期六营业的时间段列表。
regular_opening_hours_pickup.saturday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_pickup.saturday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_pickup.sunday RECORD REPEATED 地点在星期日营业的时间段列表。
regular_opening_hours_pickup.sunday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_pickup.sunday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_access RECORD NULLABLE 次要时间类型“ACCESS”的正常营业时间。时段以星期几分隔。对于超出午夜的时间段,结束时间会截断为“23:59:59.999999”,而次日包含从“00:00:00.000000”开始的时间段。例如,如果某个地点在星期五上午 8 点至中午 12 点和晚上 8 点至凌晨 2 点营业,则 regular_opening_hours_access.friday 的相关时段为:[{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]。如需查询周五下午 5 点营业的地点,您可以运行以下查询:“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 地点在周一开放的时间段列表。
regular_opening_hours_access.monday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_access.monday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_access.tuesday RECORD REPEATED 地点在星期二开放的时间段列表。
regular_opening_hours_access.tuesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_access.tuesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_access.wednesday RECORD REPEATED 地点在周三开放的时间段列表。
regular_opening_hours_access.wednesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_access.wednesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_access.thursday RECORD REPEATED 地点在星期四的营业时间列表。
regular_opening_hours_access.thursday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_access.thursday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_access.friday RECORD REPEATED 地点在星期五营业的时间段列表。
regular_opening_hours_access.friday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_access.friday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_access.saturday RECORD REPEATED 地点在星期六营业的时间段列表。
regular_opening_hours_access.saturday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_access.saturday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_access.sunday RECORD REPEATED 地点在星期日营业的时间段列表。
regular_opening_hours_access.sunday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_access.sunday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_senior_hours RECORD NULLABLE 次要营业时间类型“SENIOR_HOURS”的正常营业时间。时段以星期几分隔。对于超出午夜的时间段,结束时间会截断为“23:59:59.999999”,而次日包含从“00:00:00.000000”开始的时间段。例如,如果某个地点在星期五上午 8 点至中午 12 点和晚上 8 点至凌晨 2 点营业,则 regular_opening_hours_senior_hours.friday 的相关时段为:[{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]。如需查询周五下午 5 点营业的地点,您可以运行以下查询:“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 地点在周一开放的时间段列表。
regular_opening_hours_senior_hours.monday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_senior_hours.monday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_senior_hours.tuesday RECORD REPEATED 地点在星期二开放的时间段列表。
regular_opening_hours_senior_hours.tuesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_senior_hours.tuesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_senior_hours.wednesday RECORD REPEATED 地点在周三开放的时间段列表。
regular_opening_hours_senior_hours.wednesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_senior_hours.wednesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_senior_hours.thursday RECORD REPEATED 地点在星期四的营业时间列表。
regular_opening_hours_senior_hours.thursday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_senior_hours.thursday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_senior_hours.friday RECORD REPEATED 地点在星期五营业的时间段列表。
regular_opening_hours_senior_hours.friday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_senior_hours.friday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_senior_hours.saturday RECORD REPEATED 地点在星期六营业的时间段列表。
regular_opening_hours_senior_hours.saturday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_senior_hours.saturday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_senior_hours.sunday RECORD REPEATED 地点在星期日营业的时间段列表。
regular_opening_hours_senior_hours.sunday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_senior_hours.sunday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_online_service_hours RECORD NULLABLE 次要服务时间类型“ONLINE_SERVICE_HOURS”的正常营业时间。时段以星期几分隔。对于超出午夜的时间段,结束时间会截断为“23:59:59.999999”,而次日包含从“00:00:00.000000”开始的时间段。例如,如果某个地点在星期五上午 8 点至中午 12 点和晚上 8 点至凌晨 2 点营业,则 regular_opening_hours_online_service_hours.friday 的各个时间段为:[{start_time: '08:00:00', end_time: '12:00:00'}, {start_time: '20:00:00', end_time: '23:59:59.999999'}]。如需查询周五下午 5 点营业的地点,您可以运行以下查询:“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 地点在周一开放的时间段列表。
regular_opening_hours_online_service_hours.monday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_online_service_hours.monday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_online_service_hours.tuesday RECORD REPEATED 地点在星期二开放的时间段列表。
regular_opening_hours_online_service_hours.tuesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_online_service_hours.tuesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_online_service_hours.wednesday RECORD REPEATED 地点在周三开放的时间段列表。
regular_opening_hours_online_service_hours.wednesday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_online_service_hours.wednesday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_online_service_hours.thursday RECORD REPEATED 地点在星期四的营业时间列表。
regular_opening_hours_online_service_hours.thursday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_online_service_hours.thursday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_online_service_hours.friday RECORD REPEATED 地点在星期五营业的时间段列表。
regular_opening_hours_online_service_hours.friday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_online_service_hours.friday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_online_service_hours.saturday RECORD REPEATED 地点在星期六营业的时间段列表。
regular_opening_hours_online_service_hours.saturday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_online_service_hours.saturday.end_time TIME NULLABLE 时段的结束时间。
regular_opening_hours_online_service_hours.sunday RECORD REPEATED 地点在星期日营业的时间段列表。
regular_opening_hours_online_service_hours.sunday.start_time TIME NULLABLE 时段的开始时间。
regular_opening_hours_online_service_hours.sunday.end_time TIME NULLABLE 时段的结束时间。
ev_charge_options RECORD NULLABLE 相应地点托管的电动车辆充电站的相关信息。术语遵循 https://afdc.energy.gov/fuels/electricity_infrastructure.html。一个充电桩一次只能为一部汽车充电。一个端口有一个或多个连接器。一个充电站包含一个或多个充电桩。
ev_charge_options.connector_count INTEGER NULLABLE 此充电站的充电桩数量。不过,由于某些充电桩可以有多个充电桩,但一次只能为一部汽车充电(例如),因此充电桩数量可能会大于可同时充电的汽车总数。
ev_charge_options.connector_aggregation RECORD REPEATED 包含相同类型和相同充电速率的充电桩汇总的电动汽车充电桩列表。
ev_charge_options.connector_aggregation.type STRING NULLABLE 此汇总的连接器类型。
ev_charge_options.connector_aggregation.max_charge_rate_kw FLOAT NULLABLE 汇总中的每个连接器的静态最大充电速率(以千瓦为单位)。
ev_charge_options.connector_aggregation.count INTEGER NULLABLE 此汇总中的连接器数量。
brand_ids STRING REPEATED 品牌的唯一标识符。