diff --git a/.DS_Store b/.DS_Store index b1f6b53..d76e629 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/.gitignore b/.gitignore index c1d85ff..01cefbc 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ venv/ # Ignore all __pycache__ directories __pycache__/ **/__pycache__/ +**/**/__pycache__/ # Ignore logs directory logs/ @@ -24,3 +25,6 @@ logs/ /storage/input_json/restaurants/.gitkeep /storage/input_json/user/.gitkeep /storage/output_feedback_json/.gitkeep + +# CatBoost 관련 파일 무시 +catboost_info/ \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 2c37b5c..6753762 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,17 @@ ENV PYTHONUNBUFFERED=1 # 컨테이너 내 작업 디렉토리 설정 WORKDIR /app +# MongoDB 환경 변수 설정 +ENV MONGO_HOST=$MONGO_HOST +ENV MONGO_PORT=$MONGO_PORT +ENV MONGO_USER=$MONGO_USER +ENV MONGO_PASSWORD=$MONGO_PASSWORD +ENV MONGO_DATABASE=$MONGO_DATABASE +ENV MONGO_COLLECTION=$MONGO_COLLECTION + +# 터널링 비활성화 (명시적으로 설정) +ENV USE_SSH_TUNNEL=false + # libgomp 설치: LightGBM 등에서 필요한 OpenMP 라이브러리 설치 RUN apt-get update && apt-get install -y libgomp1 && rm -rf /var/lib/apt/lists/* diff --git a/app/config.py b/app/config.py deleted file mode 100644 index c27653b..0000000 --- a/app/config.py +++ /dev/null @@ -1,49 +0,0 @@ -# app/config.py - -from dotenv import load_dotenv -from pathlib import Path -import os -import logging -from fastapi import HTTPException # flask abort 대신 fastapi HTTPException 사용 - -# settings.py에서 하이퍼파라미터 값들을 가져옴 -from app.setting import A_VALUE, B_VALUE, REVIEW_WEIGHT, CAUTION_WEIGHT, CONVENIENCE_WEIGHT - -# 로거 설정 -logger = logging.getLogger(__name__) - -# .env 파일 로드 -load_dotenv() - -# Docker 환경 감지 및 BASE_DIR 설정 -try: - # Docker 환경인지 확인 (Linux의 /proc/1/cgroup 파일 존재 여부 활용) - with open('/proc/1/cgroup', 'rt') as f: - cgroup_content = f.read() - if 'docker' in cgroup_content: - BASE_DIR = Path("/app") - logger.info("Docker 환경으로 감지되었습니다.") - else: - BASE_DIR = Path(__file__).resolve().parent.parent - logger.info("로컬 환경으로 감지되었습니다.") -except FileNotFoundError: - BASE_DIR = Path(__file__).resolve().parent.parent - logger.info("로컬 환경으로 간주합니다. BASE_DIR를 기본값으로 설정합니다.") -except Exception as e: - logger.error(f"환경 감지 중 오류 발생: {e}") - raise HTTPException(status_code=500, detail="환경 감지 중 오류 발생") # abort 대신 HTTPException 사용 - -# JSON 데이터를 받을 디렉토리 (업로드 디렉토리) -UPLOAD_DIR = BASE_DIR / os.getenv("UPLOAD_DIR", "storage/input_json") - -# 추천 결과(피드백)를 저장할 디렉토리 -FEEDBACK_DIR = BASE_DIR / os.getenv("FEEDBACK_DIR", "storage/output_feedback_json") - -# 디렉토리 존재 여부 확인 및 생성 -try: - for directory in [UPLOAD_DIR, FEEDBACK_DIR]: - directory.mkdir(parents=True, exist_ok=True) - logger.info(f"디렉토리가 준비되었습니다: {directory}") -except Exception as e: - logger.error(f"디렉토리 생성 실패: {e}") - raise HTTPException(status_code=500, detail="디렉토리 생성 실패") # abort 대신 HTTPException 사용 diff --git a/app/config/__init__.py b/app/config/__init__.py new file mode 100644 index 0000000..94037dd --- /dev/null +++ b/app/config/__init__.py @@ -0,0 +1,70 @@ +from dotenv import load_dotenv +from pathlib import Path +import os +import logging + +# settings.py에서 하이퍼파라미터 값들을 가져옴 +try: + from app.setting import A_VALUE, B_VALUE, REVIEW_WEIGHT, CAUTION_WEIGHT, CONVENIENCE_WEIGHT +except ImportError: + # 설정 값이 없을 경우 기본값 설정 + A_VALUE, B_VALUE = 1.0, 1.0 + REVIEW_WEIGHT, CAUTION_WEIGHT, CONVENIENCE_WEIGHT = 1.0, 1.0, 1.0 + +# 로거 설정 +logger = logging.getLogger("app.config") + +# .env 파일 로드 +load_dotenv() + +# Docker 환경 감지 및 BASE_DIR 설정 +try: + # Docker 환경인지 확인 (Linux의 /proc/1/cgroup 파일 존재 여부 활용) + with open('/proc/1/cgroup', 'rt') as f: + cgroup_content = f.read() + if 'docker' in cgroup_content: + BASE_DIR = Path("/app") + logger.info("Docker 환경으로 감지되었습니다.") + else: + BASE_DIR = Path(__file__).resolve().parent.parent.parent + logger.info("로컬 환경으로 감지되었습니다.") +except FileNotFoundError: + BASE_DIR = Path(__file__).resolve().parent.parent.parent + logger.info("로컬 환경으로 간주합니다. BASE_DIR를 기본값으로 설정합니다.") +except Exception as e: + logger.error(f"환경 감지 중 오류 발생: {e}") + raise Exception("환경 감지 중 오류 발생") + +# 환경 변수에서 설정을 로드하거나 기본값 사용 +def get_env_path(env_var, default_path, create=True): + path_str = os.environ.get(env_var) + + if path_str: + path = Path(path_str) + logger.info(f"{env_var} 환경 변수로부터 경로를 설정합니다: {path}") + else: + path = Path(BASE_DIR) / default_path + logger.info(f"로컬 환경으로 간주합니다. {env_var}를 기본값으로 설정합니다.") + + if create and not path.exists(): + path.mkdir(parents=True, exist_ok=True) + logger.info(f"디렉토리가 생성되었습니다: {path}") + + if path.exists(): + logger.info(f"디렉토리가 준비되었습니다: {path}") + + return path + +# 저장소 기본 디렉토리 +STORAGE_DIR = get_env_path('STORAGE_DIR', 'storage') + +# 레스토랑 데이터 저장 디렉토리 +RESTAURANTS_DIR = get_env_path('RESTAURANTS_DIR', 'storage/input_json/restaurants') + +# 사용자 데이터 저장 디렉토리 +USER_DIR = get_env_path('USER_DIR', 'storage/input_json/user') + +# 피드백 JSON 파일 디렉토리 (추천 결과 저장) +FEEDBACK_DIR = get_env_path('FEEDBACK_DIR', 'storage/output_feedback_json') + +# 추가 설정이 필요한 경우 여기에 정의 \ No newline at end of file diff --git a/app/config/mongo_config.py b/app/config/mongo_config.py new file mode 100644 index 0000000..2ac00cc --- /dev/null +++ b/app/config/mongo_config.py @@ -0,0 +1,50 @@ +# app/config/mongo_config.py + +from dotenv import load_dotenv +from pathlib import Path +import os +import logging + +# 로거 설정 +logger = logging.getLogger("app.config.mongo") + +# .env 파일 로드 +load_dotenv() + +# MongoDB 설정 +MONGO_HOST = os.environ.get('MONGO_HOST') +MONGO_PORT = int(os.environ.get('MONGO_PORT', 27017)) +MONGO_USER = os.environ.get('MONGO_USER') +MONGO_PASSWORD = os.environ.get('MONGO_PASSWORD') +MONGO_DATABASE = os.environ.get('MONGO_DATABASE') +MONGO_COLLECTION = os.environ.get('MONGO_COLLECTION', 'recsys_data') + +# 필수 환경 변수 확인 +if not all([MONGO_HOST, MONGO_USER, MONGO_PASSWORD, MONGO_DATABASE]): + logger.warning("MongoDB 연결에 필요한 일부 환경 변수가 설정되지 않았습니다.") + logger.warning("설정을 확인하거나 .env 파일을 추가해 주세요.") + +# SSH 터널링 설정 +USE_SSH_TUNNEL = os.environ.get('USE_SSH_TUNNEL', 'false').lower() == 'true' +SSH_HOST = os.environ.get('SSH_HOST') +SSH_PORT = int(os.environ.get('SSH_PORT', 22)) +SSH_USER = os.environ.get('SSH_USER') +SSH_PASSWORD = os.environ.get('SSH_PASSWORD') +SSH_KEY_PATH = os.environ.get('SSH_KEY_PATH') + +# SSH 터널링이 활성화된 경우 필수 환경 변수 확인 +if USE_SSH_TUNNEL and not all([SSH_HOST, SSH_USER]) and not (SSH_PASSWORD or SSH_KEY_PATH): + logger.warning("SSH 터널링이 활성화되었지만 필요한 환경 변수가 설정되지 않았습니다.") + logger.warning("SSH_HOST, SSH_USER 및 SSH_PASSWORD 또는 SSH_KEY_PATH를 확인해주세요.") + +# 동기화 설정 +SYNC_INTERVAL_HOURS = float(os.environ.get('SYNC_INTERVAL_HOURS', 1.0)) +SYNC_ON_STARTUP = os.environ.get('SYNC_ON_STARTUP', 'false').lower() == 'true' + +# MongoDB 설정 로드 알림 (민감한 정보는 로깅하지 않음) +if MONGO_HOST: + logger.info(f"MongoDB 설정 로드: {MONGO_HOST}:{MONGO_PORT}/{MONGO_DATABASE}") +if USE_SSH_TUNNEL and SSH_HOST: + logger.info(f"SSH 터널링 활성화: {SSH_HOST}:{SSH_PORT}") +else: + logger.info("SSH 터널링 비활성화") \ No newline at end of file diff --git a/app/config/queries.py b/app/config/queries.py new file mode 100644 index 0000000..677bcfe --- /dev/null +++ b/app/config/queries.py @@ -0,0 +1,106 @@ +# SQL 쿼리 설정 파일 +# 각 테이블에서 필요한 필드만 선택하는 쿼리 정의 + +# 식당 데이터 쿼리 (이미 정상 작동) +RESTAURANT_QUERY = """ +SELECT + r.id as restaurant_id, + r.name, + r.address, + r.average_price, + r.caution, + r.convenience, + r.expanded_days, + r.is_deleted, + r.operating_hour, + r.phone_number, + r.rating as score, + r.review_count as review, + r.time_range as duration_hours, + rc.category_id +FROM restaurant r +JOIN restaurant_category rc ON r.id = rc.restaurant_id +WHERE r.is_deleted = 0 +""" + +# 사용자 기본 정보 쿼리 (테이블명 수정) +USER_QUERY = """ +SELECT + id as user_id, + sex, + status, + is_deleted, + empty_ticket_count, + normal_ticket_count +FROM user +WHERE status = 'ACTIVE' AND is_deleted = 0 +""" + +# 사용자 가격 범위 선호도 쿼리 (테이블명 수정, deleted_at 조건 제거) +USER_PREFERENCES_QUERY = """ +SELECT + user_id, + min_price, + max_price +FROM user_preference +""" + +# 사용자 카테고리 선호도 쿼리 (테이블명 수정, deleted_at 조건 제거) +USER_PREFERENCE_CATEGORIES_QUERY = """ +SELECT + user_preference_id, + category_id +FROM user_preference_category +""" + +# 찜 데이터 쿼리 (deleted_at 조건 제거) +LIKES_QUERY = """ +SELECT + user_id, + restaurant_id +FROM likes +""" + +# 예약 데이터 쿼리 (테이블명 수정, deleted_at 조건 제거) +RESERVATIONS_QUERY = """ +SELECT + user_id, + restaurant_id, + status, + reservation_time_id, + reservation_date, + seat_type_id +FROM reservation +WHERE status = 'COMPLETED' +""" + +# 파라미터가 있는 쿼리 함수도 수정 +def get_user_reservations_query(user_id): + """특정 사용자의 예약 데이터를 가져오는 쿼리""" + return f""" + SELECT + user_id, + restaurant_id, + status, + reservation_time_id, + reservation_date, + seat_type_id + FROM reservation + WHERE user_id = {user_id} + AND status = 'COMPLETED' + """ + +def get_reservations_by_date_range_query(start_date, end_date): + """특정 날짜 범위의 예약 데이터를 가져오는 쿼리""" + return f""" + SELECT + user_id, + restaurant_id, + status, + reservation_time_id, + reservation_date, + seat_type_id + FROM reservation + WHERE reservation_date BETWEEN '{start_date}' AND '{end_date}' + AND status = 'COMPLETED' + """ \ No newline at end of file diff --git a/app/router/recommendation_api.py b/app/router/recommendation_api.py index 0258cf4..1697637 100644 --- a/app/router/recommendation_api.py +++ b/app/router/recommendation_api.py @@ -1,14 +1,18 @@ +# app/router/recommendation_api.py + import os import time import json import logging -from fastapi import APIRouter, HTTPException -from app.config import UPLOAD_DIR, FEEDBACK_DIR +import pandas as pd +from fastapi import APIRouter, HTTPException, BackgroundTasks +from app.config import RESTAURANTS_DIR, USER_DIR, FEEDBACK_DIR from app.schema.recommendation_schema import UserData, RecommendationItem, CATEGORY_MAPPING -from app.services.preprocess.data_loader import load_and_merge_json_files -from app.services.preprocess.preprocessor import preprocess_data +from app.services.preprocess.restaurant.data_loader import load_restaurant_json_files, load_user_json_files +from app.services.preprocess.restaurant.preprocessor import preprocess_data from app.services.model_trainer import train_model from app.services.model_trainer.recommendation import generate_recommendations +from app.services.preprocess.user.user_preprocess import user_preprocess_data # 사용자 데이터 전처리 모듈 추가 from typing import List, Dict, Any # 라우터 설정 @@ -17,35 +21,102 @@ # 글로벌 변수 초기화 globals_dict = {} +model_initializing = False # 모델 초기화 상태를 추적하는 전역 변수 # 초기 데이터 로딩 및 모델 학습 def initialize_model(): - global globals_dict - json_directory = str(UPLOAD_DIR) - + global globals_dict, model_initializing + try: - df_raw = load_and_merge_json_files(json_directory) - df_final = preprocess_data(df_raw) # 병합된 DataFrame 전달 - globals_dict = train_model(df_final) + # 초기화 상태 설정 + model_initializing = True + + # 식당 데이터 로드 + df_raw = load_restaurant_json_files(str(RESTAURANTS_DIR)) + + # 사용자 데이터 로드 및 전처리 + user_data_frames = load_user_json_files(str(USER_DIR)) + + # 사용자 데이터 전처리 및 특성 추출 + try: + # 전처리된 사용자 특성 파일 경로 + user_features_path = os.path.join(str(USER_DIR), "preprocessed_user_features.csv") + + # 이미 전처리된 파일이 있는지 확인 + if os.path.exists(user_features_path): + logger.info(f"기존 전처리된 사용자 특성 파일 로드: {user_features_path}") + user_features_df = pd.read_csv(user_features_path) + else: + # 사용자 데이터 전처리 실행 + logger.info("사용자 데이터 전처리 시작") + user_features_df = user_preprocess_data( + user_data_frames, + save_path=user_features_path + ) + logger.info(f"사용자 데이터 전처리 완료: {len(user_features_df)}명의 사용자 데이터") + + # 전역 변수에 사용자 특성 데이터 저장 + globals_dict["user_features_df"] = user_features_df + except Exception as user_err: + logger.error(f"사용자 데이터 전처리 중 오류 발생: {user_err}", exc_info=True) + # 오류가 발생해도 계속 진행 (기본 추천은 가능하도록) + globals_dict["user_features_df"] = None + + # 식당 데이터 전처리 + df_final = preprocess_data(df_raw) + + # 모델 학습 + model_dict = train_model(df_final) + + # 모델 관련 객체 저장 + globals_dict.update(model_dict) + + # 원본 사용자 데이터 저장 (필요시) + globals_dict["user_data_frames"] = user_data_frames + logger.info("모델 초기화 성공") + # 초기화 완료 상태로 설정 + model_initializing = False except Exception as e: logger.error(f"Error during initialization: {e}", exc_info=True) globals_dict = {} + # 초기화 실패 상태로 설정 + model_initializing = False # 서버 시작 시 모델 초기화 initialize_model() -@router.post("", - response_model=Dict[str, Any], # 구체적인 응답 모델이 필요하다면 별도로 정의 +# recommend 함수 내부 수정 +@router.post("", + response_model=Dict[str, Any], responses={ 200: {"description": "Success"}, 400: {"description": "Bad Request"}, - 500: {"description": "Internal Server Error"} + 503: {"description": "Service Unavailable - Model not initialized yet"} }) -async def recommend(user_data: UserData): - """사용자 데이터를 받아 추천 결과를 생성하고, 결과를 파일로 저장합니다.""" +async def recommend(user_data: UserData, background_tasks: BackgroundTasks): + """사용자 데이터를 받아 개인화된 추천 결과를 생성하고, 결과를 파일로 저장합니다.""" + global model_initializing + try: + # 모델 초기화 상태 확인 + if not globals_dict or "stacking_reg" not in globals_dict or "df_model" not in globals_dict: + # 모델이 초기화 중인지, 아니면 초기화에 실패했는지 구분 + if model_initializing: + raise HTTPException( + status_code=503, + detail="모델 초기화가 진행 중입니다. 잠시 후 다시 시도해주세요.", + headers={"Retry-After": "30"} # 30초 후 재시도 권장 + ) + else: + # 초기화 실패 또는 아직 시작되지 않음 + raise HTTPException( + status_code=503, + detail="모델 데이터가 초기화되지 않았습니다. 서버 관리자에게 문의하세요.", + headers={"Retry-After": "300"} # 5분 후 재시도 권장 + ) + user_id = user_data.user_id preferred_categories = user_data.preferred_categories @@ -59,39 +130,46 @@ async def recommend(user_data: UserData): raise HTTPException(status_code=400, detail="유효한 선호 카테고리를 입력해주세요.") df_model = globals_dict.get("df_model") - if df_model is None: - raise HTTPException(status_code=500, detail="모델 데이터가 초기화되지 않았습니다.") + # 사용자가 선호하는 카테고리의 식당만 필터링 filtered_df = df_model[df_model["category_id"].isin(preferred_ids)].copy() if filtered_df.empty: raise HTTPException(status_code=400, detail="해당 선호 카테고리에 해당하는 식당 데이터가 없습니다.") - # 추천 결과 생성 (generate_recommendations는 JSON 문자열을 반환) + # 전처리된 사용자 특성 데이터 가져오기 + user_features_df = globals_dict.get("user_features_df") + + # 추천 결과 생성 (개인화된 추천) result_json = generate_recommendations( filtered_df, globals_dict["stacking_reg"], globals_dict["model_features"], user_id, - globals_dict["scaler"] + globals_dict["scaler"], + user_features=user_features_df # 사용자 특성 데이터 전달 (없으면 None) ) - - # 추천 결과를 FEEDBACK_DIR에 파일로 저장 - timestamp = int(time.time()) - feedback_filename = f"recommendation_{user_id}_{timestamp}.json" - feedback_filepath = os.path.join(str(FEEDBACK_DIR), feedback_filename) - try: - os.makedirs(str(FEEDBACK_DIR), exist_ok=True) - with open(feedback_filepath, "w", encoding="utf-8") as f: - f.write(result_json) - logger.info(f"추천 결과가 {feedback_filepath}에 저장되었습니다.") - except Exception as file_err: - logger.error(f"추천 결과 저장 실패: {file_err}", exc_info=True) + # 백그라운드 작업으로 추천 결과 저장 + async def save_recommendation(): + try: + timestamp = int(time.time()) + feedback_filename = f"recommendation_{user_id}_{timestamp}.json" + feedback_filepath = os.path.join(str(FEEDBACK_DIR), feedback_filename) + + # 디렉토리는 이미 config에서 생성됨 + with open(feedback_filepath, "w", encoding="utf-8") as f: + f.write(result_json) + logger.info(f"추천 결과가 {feedback_filepath}에 저장되었습니다.") + except Exception as file_err: + logger.error(f"추천 결과 저장 실패: {file_err}", exc_info=True) + + # 백그라운드 작업으로 추가 + background_tasks.add_task(save_recommendation) # JSON 문자열을 Python 객체로 변환하여 반환 result_data = json.loads(result_json) return result_data - + except HTTPException: # 이미 생성된 HTTPException은 그대로 다시 발생시킴 raise diff --git a/app/services/background_tasks.py b/app/services/background_tasks.py new file mode 100644 index 0000000..06ab5d3 --- /dev/null +++ b/app/services/background_tasks.py @@ -0,0 +1,60 @@ +# app/servies/background_tasks.py + +import asyncio +import logging +from datetime import datetime +import time + +from app.services.mongo_data_sync import fetch_data_from_mongodb +from app.services.model_initialization import initialize_model + +logger = logging.getLogger(__name__) + +async def periodic_data_sync(hours_interval=24): + """주기적인 데이터 동기화 및 모델 재학습 수행""" + try: + # 초기 지연 (5초) + await asyncio.sleep(5) + + while True: + try: + logger.info(f"주기적 데이터 동기화 시작 (간격: {hours_interval}시간)") + # MongoDB에서 데이터 가져오기 + sync_result = await asyncio.get_event_loop().run_in_executor(None, fetch_data_from_mongodb) + + if sync_result: + logger.info("데이터 동기화 완료, 모델 재학습 시작") + # 직접 MongoDB 사용 옵션을 False로 하여 JSON 파일로부터 모델 초기화 + await initialize_model(force_reload=True, use_direct_mongodb=False) + logger.info(f"모델 재학습 완료 ({datetime.now().isoformat()})") + else: + logger.error("데이터 동기화 실패, 모델 재학습 스킵") + + except Exception as e: + logger.error(f"주기적 동기화 중 오류: {str(e)}", exc_info=True) + + # 다음 실행까지 대기 (시간 -> 초) + next_sync_seconds = hours_interval * 3600 + logger.info(f"다음 동기화까지 {next_sync_seconds}초 대기") + await asyncio.sleep(next_sync_seconds) + + except asyncio.CancelledError: + logger.info("주기적 동기화 태스크 취소됨") + +async def run_initial_sync(): + """애플리케이션 시작 시 데이터 동기화 및 모델 초기화 수행""" + try: + logger.info("초기 데이터 동기화 시작") + # MongoDB에서 데이터 가져오기 + sync_result = await asyncio.get_event_loop().run_in_executor(None, fetch_data_from_mongodb) + + if sync_result: + logger.info("초기 데이터 동기화 완료, 모델 초기화 시작") + # 직접 MongoDB 사용 옵션을 True로 설정하여 MongoDB에서 직접 데이터를 가져와 모델 초기화 + await initialize_model(force_reload=True, use_direct_mongodb=True) + logger.info("초기화 완료") + else: + logger.error("초기 데이터 동기화 실패, 모델 초기화 스킵") + + except Exception as e: + logger.error(f"초기 동기화 중 오류: {str(e)}", exc_info=True) \ No newline at end of file diff --git a/app/services/direct_mongodb.py b/app/services/direct_mongodb.py new file mode 100644 index 0000000..86550d5 --- /dev/null +++ b/app/services/direct_mongodb.py @@ -0,0 +1,151 @@ +# app/servies/mongodb/direct_mongodb.py + +import logging +import pandas as pd +import numpy as np +from datetime import datetime +from pymongo import MongoClient + +# SSH 터널링이 필요한 경우에만 import +try: + import sshtunnel + has_sshtunnel = True +except ImportError: + has_sshtunnel = False + +from app.config.mongo_config import ( + MONGO_HOST, MONGO_PORT, MONGO_USER, MONGO_PASSWORD, MONGO_DATABASE, MONGO_COLLECTION, + USE_SSH_TUNNEL, SSH_HOST, SSH_PORT, SSH_USER, SSH_PASSWORD, SSH_KEY_PATH +) +from app.services.mongodb.connection import get_mongodb_connection +from app.services.mongodb.data_converter import convert_numpy_types + +logger = logging.getLogger("direct_mongodb") + +def get_restaurants_from_mongodb(): + """MongoDB에서 레스토랑 데이터를 직접 가져와 DataFrame으로 반환""" + try: + # MongoDB 연결 + result = get_mongodb_connection() + + # SSH 터널링을 사용하는 경우 + if len(result) == 3: + client, db, tunnel = result + cleanup_tunnel = True + else: + client, db = result + cleanup_tunnel = False + + try: + # 레스토랑 컬렉션에서 데이터 가져오기 + restaurant_collection = db['restaurants'] + restaurant_data = list(restaurant_collection.find({}, {'_id': 0})) + + if not restaurant_data: + logger.warning("MongoDB에서 식당 데이터를 찾을 수 없습니다.") + return pd.DataFrame() + + logger.info(f"MongoDB에서 {len(restaurant_data)}개의 레스토랑 레코드 가져옴") + + # DataFrame으로 변환 + df_restaurant = pd.DataFrame(restaurant_data) + return df_restaurant + + finally: + # MongoDB 연결 종료 + client.close() + logger.info("MongoDB 연결 종료") + + # SSH 터널이 있는 경우 터널도 종료 + if cleanup_tunnel: + tunnel.stop() + logger.info("SSH 터널 종료") + + except Exception as e: + logger.error(f"MongoDB 레스토랑 데이터 가져오기 오류: {str(e)}", exc_info=True) + return pd.DataFrame() + +def get_user_data_from_mongodb(): + """MongoDB에서 사용자 관련 데이터를 직접 가져와 DataFrame 사전으로 반환""" + try: + # MongoDB 연결 + result = get_mongodb_connection() + + # SSH 터널링을 사용하는 경우 + if len(result) == 3: + client, db, tunnel = result + cleanup_tunnel = True + else: + client, db = result + cleanup_tunnel = False + + user_data_frames = {} + + try: + # 1. 사용자 기본 정보 + users_collection = db['users'] + user_data = list(users_collection.find({}, {'_id': 0})) + + if user_data: + logger.info(f"MongoDB에서 {len(user_data)}개의 사용자 레코드 가져옴") + user_data_frames['users'] = pd.DataFrame(user_data) + else: + logger.warning("MongoDB에서 사용자 데이터를 찾을 수 없습니다.") + + # 2. 사용자 선호도 정보 + user_preferences_collection = db['user_preferences'] + user_preferences_data = list(user_preferences_collection.find({}, {'_id': 0})) + + if user_preferences_data: + logger.info(f"MongoDB에서 {len(user_preferences_data)}개의 사용자 선호도 레코드 가져옴") + user_data_frames['user_preferences'] = pd.DataFrame(user_preferences_data) + else: + logger.warning("MongoDB에서 사용자 선호도 데이터를 찾을 수 없습니다.") + + # 3. 찜 데이터 + likes_collection = db['likes'] + likes_data = list(likes_collection.find({}, {'_id': 0})) + + if likes_data: + logger.info(f"MongoDB에서 {len(likes_data)}개의 찜 레코드 가져옴") + user_data_frames['likes'] = pd.DataFrame(likes_data) + else: + logger.warning("MongoDB에서 찜 데이터를 찾을 수 없습니다.") + + # 4. 예약 데이터 + reservations_collection = db['reservations'] + reservations_data = list(reservations_collection.find({}, {'_id': 0})) + + if reservations_data: + logger.info(f"MongoDB에서 {len(reservations_data)}개의 예약 레코드 가져옴") + user_data_frames['reservations'] = pd.DataFrame(reservations_data) + else: + logger.warning("MongoDB에서 예약 데이터를 찾을 수 없습니다.") + + # 5. 추천 시스템 통합 데이터 (선택사항) + recsys_collection = db[MONGO_COLLECTION] + recsys_data = list(recsys_collection.find({}, {'_id': 0})) + + if recsys_data: + logger.info(f"MongoDB에서 {len(recsys_data)}개의 추천 시스템 레코드 가져옴") + # 데이터가 복잡한 중첩 구조를 가질 수 있으므로 변환 필요 + recsys_data = convert_numpy_types(recsys_data) + user_data_frames['recsys_data'] = pd.DataFrame(recsys_data) + else: + logger.warning("MongoDB에서 추천 시스템 데이터를 찾을 수 없습니다.") + + return user_data_frames + + finally: + # MongoDB 연결 종료 + client.close() + logger.info("MongoDB 연결 종료") + + # SSH 터널이 있는 경우 터널도 종료 + if cleanup_tunnel: + tunnel.stop() + logger.info("SSH 터널 종료") + + except Exception as e: + logger.error(f"MongoDB 사용자 데이터 가져오기 오류: {str(e)}", exc_info=True) + return {} \ No newline at end of file diff --git a/app/services/model_initialization.py b/app/services/model_initialization.py new file mode 100644 index 0000000..e72b6ef --- /dev/null +++ b/app/services/model_initialization.py @@ -0,0 +1,120 @@ +# app/servies/model_initalization.py + +import logging +import asyncio +from typing import Dict, Any +import concurrent.futures +from concurrent.futures import ThreadPoolExecutor + +from app.config import RESTAURANTS_DIR, USER_DIR +from app.services.preprocess.restaurant.data_loader import load_restaurant_json_files, load_user_json_files +from app.services.preprocess.restaurant.preprocessor import preprocess_data +from app.services.model_trainer import train_model +from app.services.direct_mongodb import get_restaurants_from_mongodb, get_user_data_from_mongodb + +logger = logging.getLogger(__name__) + +# 전역 변수로 모델 상태 관리 +globals_dict = {} +is_initializing = False +last_initialization = None + +async def initialize_model(force_reload=False, use_direct_mongodb=False): + """모델 초기화 및 로딩 함수 (비동기 지원) + + Parameters: + ----------- + force_reload : bool, optional + True인 경우 모델을 강제로 다시 로드합니다. + use_direct_mongodb : bool, optional + True인 경우 직접 MongoDB에서 데이터를 가져옵니다. False인 경우 JSON 파일에서 로드합니다. + """ + global globals_dict, is_initializing, last_initialization + + # 이미 초기화 중이면 대기 + if is_initializing and not force_reload: + logger.info("모델 초기화가 이미 진행 중입니다. 완료될 때까지 대기합니다.") + while is_initializing: + await asyncio.sleep(1) + return globals_dict + + # 초기화 플래그 설정 + is_initializing = True + + try: + logger.info(f"모델 초기화 시작 (직접 MongoDB 사용: {use_direct_mongodb})") + + # ThreadPoolExecutor를 사용하여 데이터 로딩을 비동기로 실행 + with ThreadPoolExecutor() as executor: + if use_direct_mongodb: + # 1. MongoDB에서 직접 식당 데이터 로드 + future_restaurant = executor.submit(get_restaurants_from_mongodb) + + # 2. MongoDB에서 직접 사용자 관련 데이터 로드 + future_user_data = executor.submit(get_user_data_from_mongodb) + else: + # 1. 식당 데이터 로드 (restaurants 디렉토리에서) + future_restaurant = executor.submit(load_restaurant_json_files, str(RESTAURANTS_DIR)) + + # 2. 사용자 관련 데이터 로드 (user 디렉토리에서) + future_user_data = executor.submit(load_user_json_files, str(USER_DIR)) + + # 결과 대기 + df_restaurant = await asyncio.get_event_loop().run_in_executor( + None, + lambda: future_restaurant.result() + ) + + user_data_frames = await asyncio.get_event_loop().run_in_executor( + None, + lambda: future_user_data.result() + ) + + # 식당 데이터가 비어 있는지 확인 + if df_restaurant.empty: + logger.error("가져온 식당 데이터가 비어 있습니다.") + is_initializing = False + return globals_dict + + # 3. 식당 데이터 전처리 + df_processed = await asyncio.get_event_loop().run_in_executor( + None, + lambda: preprocess_data(df_restaurant) + ) + + # 4. 모델 학습 + result_dict = await asyncio.get_event_loop().run_in_executor( + None, + lambda: train_model(df_processed) + ) + + # 5. 결과 저장 + globals_dict = result_dict + + # 6. 사용자 관련 데이터 추가 + globals_dict["user_data_frames"] = user_data_frames + + # 7. 모델 학습 완료 로깅 + logger.info("모델 초기화 완료") + model_info = { + "df_model_shape": globals_dict["df_model"].shape if "df_model" in globals_dict else None, + "model_features": globals_dict.get("model_features"), + "user_data_count": {k: len(v) for k, v in user_data_frames.items()} + } + logger.info(f"모델 정보: {model_info}") + + last_initialization = asyncio.get_event_loop().time() + + except Exception as e: + logger.error(f"모델 초기화 중 오류: {str(e)}", exc_info=True) + finally: + is_initializing = False + + return globals_dict + +def get_model(): + """모델 및 관련 데이터 가져오기 (동기 함수)""" + if not globals_dict: + logger.warning("모델이 초기화되지 않았습니다.") + + return globals_dict \ No newline at end of file diff --git a/app/services/model_trainer/data_preparation.py b/app/services/model_trainer/data_preparation.py index 2bf5814..3ee948d 100644 --- a/app/services/model_trainer/data_preparation.py +++ b/app/services/model_trainer/data_preparation.py @@ -1,5 +1,5 @@ # app/services/model_trainer/data_preparation.py -# # 데이터 전처리(결측치 보완, 스케일링, 데이터 분할 등) +# 데이터 전처리(결측치 보완, 스케일링, 데이터 분할 등) import numpy as np import pandas as pd diff --git a/app/services/model_trainer/recommendation.py b/app/services/model_trainer/recommendation.py index 4ba09ba..3a52760 100644 --- a/app/services/model_trainer/recommendation.py +++ b/app/services/model_trainer/recommendation.py @@ -1,4 +1,6 @@ -from app.config import A_VALUE, B_VALUE, REVIEW_WEIGHT, CAUTION_WEIGHT, CONVENIENCE_WEIGHT +# app/services/model_trainer/recommendation.py + +from app.setting import A_VALUE, B_VALUE, REVIEW_WEIGHT, CAUTION_WEIGHT, CONVENIENCE_WEIGHT import numpy as np import json import pandas as pd @@ -31,8 +33,55 @@ def sigmoid_transform(x, a, b): logger.error(f"sigmoid_transform 오류: {e}", exc_info=True) raise -def generate_recommendations(data_filtered: pd.DataFrame, stacking_reg, model_features: list, user_id: str, scaler) -> dict: +def generate_recommendations(data_filtered: pd.DataFrame, stacking_reg, model_features: list, user_id: str, scaler, user_features: pd.DataFrame = None) -> dict: + """ + 사용자 ID와 식당 데이터를 기반으로 개인화된 추천 생성 + + Args: + data_filtered: 필터링된 식당 데이터 DataFrame + stacking_reg: 학습된, 적재된 스태킹 모델 + model_features: 모델 학습에 사용된 특성 목록 + user_id: 사용자 ID + scaler: 특성 스케일링에 사용된 스케일러 + user_features: 전처리된 사용자 특성 데이터 DataFrame (없으면 일반 추천 제공) + + Returns: + dict: 추천 결과를 담은 JSON 문자열 + """ try: + # 사용자 데이터가 있는 경우 개인화 적용 + user_row = None + if user_features is not None: + user_row = user_features[user_features['user_id'] == user_id] + + if not user_row.empty: + logger.info(f"사용자 ID {user_id}의 개인화 추천 생성 중...") + + # 1. 가격 필터링: 사용자 max_price 이하인 식당만 선택 + if 'price' in data_filtered.columns and 'max_price' in user_row.columns: + max_price = user_row['max_price'].values[0] + if max_price > 0: + logger.debug(f"사용자 최대 가격 {max_price}원 이하의 식당으로 필터링") + data_filtered = data_filtered[data_filtered['price'] <= max_price].copy() + + # 2. 카테고리 보너스 점수 초기화 + data_filtered['category_bonus'] = 0.0 + + # 3. 사용자 선호 카테고리에 보너스 점수 부여 + for i in range(1, 13): + category_col = f"category_{i}" + if category_col in user_row.columns and user_row[category_col].values[0] == 1: + # 사용자 선호 카테고리와 일치하는 식당에 보너스 + data_filtered.loc[data_filtered['category_id'] == i, 'category_bonus'] = 0.3 + logger.debug(f"카테고리 {i}에 기본 보너스 0.3 적용") + + # EDA에서 중요도가 높은 카테고리에 추가 보너스 + if i in [4, 7, 9, 10]: + data_filtered.loc[data_filtered['category_id'] == i, 'category_bonus'] += 0.2 + logger.debug(f"중요 카테고리 {i}에 추가 보너스 0.2 적용") + else: + logger.warning(f"사용자 ID {user_id}에 대한 정보가 없습니다. 기본 추천을 제공합니다.") + # 필요한 모든 피처가 있는지 확인하고 없으면 추가 (0으로 채움) for feature in model_features: if feature not in data_filtered.columns: @@ -62,27 +111,50 @@ def generate_recommendations(data_filtered: pd.DataFrame, stacking_reg, model_fe data_filtered['composite_score'] = data_filtered.apply( lambda row: compute_composite_score(row, REVIEW_WEIGHT, CAUTION_WEIGHT, CONVENIENCE_WEIGHT), axis=1 ) + + # 사용자 선호도 보너스 적용 (사용자 데이터가 있고 개인화가 적용된 경우) + if user_row is not None and not user_row.empty and 'category_bonus' in data_filtered.columns: + logger.info("사용자 선호도 보너스 점수 적용 중...") + + # 카테고리 보너스 적용 + data_filtered['composite_score'] += data_filtered['category_bonus'] + + # 사용자의 completed_reservations 값이 높을수록 예약 가능한 식당에 가중치 + if 'completed_reservations' in user_row.columns: + completed_reservations = user_row['completed_reservations'].values[0] + if completed_reservations > 3: # 예약 경험이 많은 사용자 + logger.debug(f"예약 경험이 많은 사용자({completed_reservations}회)에게 예약 가능 식당 가중치 부여") + data_filtered.loc[data_filtered['caution_예약가능'] == 1, 'composite_score'] += 0.2 + + # 사용자의 like_to_reservation_ratio가 높을수록 인기 식당에 가중치 + if 'like_to_reservation_ratio' in user_row.columns: + ratio = user_row['like_to_reservation_ratio'].values[0] + if ratio > 2.0: # 찜을 많이 하는 사용자 + logger.debug(f"찜 대비 예약 비율이 높은 사용자({ratio})에게 인기 식당 가중치 부여") + # 리뷰가 많은 식당에 추가 보너스 (로그 스케일) + data_filtered['popularity_bonus'] = 0.15 * (np.log(data_filtered['review'] + 1) / np.log(1000)) + data_filtered['composite_score'] += data_filtered['popularity_bonus'] + + # 최종 점수 시그모이드 변환 data_filtered['composite_score'] = data_filtered['composite_score'].apply( lambda x: sigmoid_transform(x, A_VALUE, B_VALUE) ) - # composite_score 기준 오름차순 정렬 후 상위 15개 추천 추출 + # composite_score 기준 내림차순 정렬 후 상위 15개 추천 추출 recommendations_all = data_filtered.sort_values(by='composite_score', ascending=False) top15 = recommendations_all[['category_id', 'restaurant_id', 'score', 'predicted_score', 'composite_score']].head(15).copy() # 추천 결과 추출 후, 필요한 컬럼을 정수로 변환 top15['category_id'] = top15['category_id'].astype(int) top15['restaurant_id'] = top15['restaurant_id'].astype(int) - top15['score'] = top15['score'].astype(float) # 만약 score가 정수여야 한다면 + top15['score'] = top15['score'].astype(float) top15['predicted_score'] = top15['predicted_score'].round(3) top15['composite_score'] = top15['composite_score'].round(3) - # OrderedDict을 사용하여 user_id가 첫 번째 키로 오도록 구성 - # 각 레코드를 OrderedDict로 변환하여 필드 순서 보장 # 사용자 정보와 추천 결과를 딕셔너리로 구성 result_dict = { - "user": user_id, # 앞에서 입력받은 사용자 ID + "user": user_id, "recommendations": json.loads(top15.to_json(orient='records', force_ascii=False)) } diff --git a/app/services/model_trainer/train_model.py b/app/services/model_trainer/train_model.py index e8601ae..7ac619e 100644 --- a/app/services/model_trainer/train_model.py +++ b/app/services/model_trainer/train_model.py @@ -42,7 +42,27 @@ def train_model(df_final): raise e try: - # 모델 학습에 필요한 새로운 피처 생성 + # duration_hours가 문자열인 경우 숫자로 변환 + if df_prepared['duration_hours'].dtype == 'object': + # "12:00 ~ 24:00" 형식에서 시간 차이 계산 + def extract_hours_diff(time_str): + try: + if isinstance(time_str, str) and '~' in time_str: + start, end = time_str.split('~') + start_hour = float(start.strip().split(':')[0]) + end_hour = float(end.strip().split(':')[0]) + if end_hour < start_hour: # 예: 22:00 ~ 02:00 + return (24 - start_hour) + end_hour + else: + return end_hour - start_hour + else: + return 8.0 # 기본값 + except: + return 8.0 # 변환 실패 시 기본값 + + df_prepared['duration_hours'] = df_prepared['duration_hours'].apply(extract_hours_diff) + + # 이제 숫자 연산 수행 df_prepared['log_review'] = np.log(df_prepared['review'] + 1) df_prepared['review_duration'] = df_prepared['review'] * df_prepared['duration_hours'] logger.debug("Feature 계산이 완료되었습니다.") diff --git a/app/services/mongo_data_sync.py b/app/services/mongo_data_sync.py new file mode 100644 index 0000000..8be6ceb --- /dev/null +++ b/app/services/mongo_data_sync.py @@ -0,0 +1,58 @@ +# app/servies/mongo_data_sync.py + +import logging +from datetime import datetime +from app.services.mongodb.connection import get_mongodb_connection +from app.services.mongodb.data_collector import process_restaurant_data, process_user_data + +logger = logging.getLogger("data_sync") + +def fetch_data_from_mongodb(): + """MongoDB에서 식당 데이터와 사용자 관련 데이터를 가져와 JSON 파일로 저장""" + try: + logger.info("MongoDB에서 데이터 가져오기 시작") + + # MongoDB 연결 (SSH 터널링 자동 설정) + result = get_mongodb_connection() + + # SSH 터널링을 사용하는 경우 + if len(result) == 3: + client, db, tunnel = result + cleanup_tunnel = True + else: + client, db = result + cleanup_tunnel = False + + try: + # 타임스탬프 생성 (모든 파일에 동일한 타임스탬프 사용) + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + + # 1. 레스토랑 데이터 처리 + success_restaurant = process_restaurant_data(db, timestamp) + + # 2. 사용자 관련 데이터 처리 + try: + success_user = process_user_data(db, timestamp) + if success_user: + logger.info("사용자 데이터 동기화 완료") + else: + logger.warning("일부 사용자 데이터 동기화 실패") + except Exception as e: + logger.warning(f"사용자 데이터 동기화 중 오류 발생: {e}") + success_user = False + + return success_restaurant + + finally: + # MongoDB 연결 종료 + client.close() + logger.info("MongoDB 연결 종료") + + # SSH 터널이 있는 경우 터널도 종료 + if cleanup_tunnel: + tunnel.stop() + logger.info("SSH 터널 종료") + + except Exception as e: + logger.error(f"MongoDB 데이터 가져오기 오류: {str(e)}", exc_info=True) + return False \ No newline at end of file diff --git a/app/services/mongodb/connection.py b/app/services/mongodb/connection.py new file mode 100644 index 0000000..764d9db --- /dev/null +++ b/app/services/mongodb/connection.py @@ -0,0 +1,112 @@ +# app/servies/mongodb/connection.py + +import os +import logging +from dotenv import load_dotenv +from pymongo import MongoClient + +# SSH 터널링이 필요한 경우에만 import +try: + import sshtunnel + has_sshtunnel = True +except ImportError: + has_sshtunnel = False + +logger = logging.getLogger(__name__) +load_dotenv() + +def get_mongodb_connection(): + """SSH 터널링 설정에 따라 MongoDB 연결 생성""" + # 환경 변수로 SSH 터널링 사용 여부 결정 + use_ssh_tunnel = os.environ.get('USE_SSH_TUNNEL', 'true').lower() == 'true' + + # SSH 터널링이 필요하지만 패키지가 설치되지 않은 경우 + if use_ssh_tunnel and not has_sshtunnel: + logger.error("SSH 터널링이 필요하지만 'sshtunnel' 패키지가 설치되지 않았습니다. 'pip install sshtunnel'을 실행해주세요.") + raise ImportError("sshtunnel 패키지가 필요합니다.") + + # SSH 터널링을 사용하는 경우 + if use_ssh_tunnel: + return get_mongodb_via_ssh() + # 직접 연결하는 경우 + else: + return get_mongodb_direct() + +def get_mongodb_direct(): + """직접 MongoDB에 연결""" + # MongoDB 연결 정보 + mongo_host = os.environ.get('MONGO_HOST') + mongo_port = int(os.environ.get('MONGO_PORT', 27017)) + mongo_user = os.environ.get('MONGO_USER') + mongo_password = os.environ.get('MONGO_PASSWORD') + mongo_database = os.environ.get('MONGO_DATABASE') + + # 필수 환경 변수 확인 + if not all([mongo_host, mongo_user, mongo_password, mongo_database]): + logger.error("MongoDB 연결에 필요한 환경 변수가 설정되지 않았습니다.") + raise ValueError("MongoDB 연결 설정이 부족합니다.") + + # MongoDB 연결 문자열 생성 + mongo_uri = f"mongodb://{mongo_user}:{mongo_password}@{mongo_host}:{mongo_port}/{mongo_database}" + + # MongoDB 클라이언트 연결 + client = MongoClient(mongo_uri) + db = client[mongo_database] + logger.info(f"MongoDB {mongo_database} 직접 연결 성공") + + return client, db + +def get_mongodb_via_ssh(): + """SSH 터널을 통해 MongoDB에 연결""" + # SSH 연결 정보 + ssh_host = os.environ.get('SSH_HOST') + ssh_port = int(os.environ.get('SSH_PORT', 22)) + ssh_user = os.environ.get('SSH_USER') + ssh_password = os.environ.get('SSH_PASSWORD') + ssh_key_path = os.environ.get('SSH_KEY_PATH') + + # MongoDB 연결 정보 + mongo_host = os.environ.get('MONGO_HOST') + mongo_port = int(os.environ.get('MONGO_PORT', 27017)) + mongo_user = os.environ.get('MONGO_USER') + mongo_password = os.environ.get('MONGO_PASSWORD') + mongo_database = os.environ.get('MONGO_DATABASE') + + # 필수 환경 변수 확인 + if not all([ssh_host, ssh_user, mongo_host, mongo_user, mongo_password, mongo_database]): + logger.error("SSH 터널링 또는 MongoDB 연결에 필요한 환경 변수가 설정되지 않았습니다.") + raise ValueError("SSH 또는 MongoDB 연결 설정이 부족합니다.") + + # SSH 인증 방식 확인 (비밀번호 또는 키 파일) + if not ssh_password and not ssh_key_path: + logger.error("SSH 연결을 위한 비밀번호 또는 키 파일 경로가 필요합니다.") + raise ValueError("SSH 인증 정보가 부족합니다.") + + # SSH 터널 설정 + tunnel = sshtunnel.SSHTunnelForwarder( + (ssh_host, ssh_port), + ssh_username=ssh_user, + ssh_password=ssh_password if ssh_password else None, + ssh_pkey=ssh_key_path if ssh_key_path else None, + remote_bind_address=(mongo_host, mongo_port) + ) + + # 터널 시작 + tunnel.start() + logger.info(f"SSH 터널 설정 완료 (local port: {tunnel.local_bind_port})") + + # MongoDB 연결 문자열 생성 (localhost와 터널링된 포트 사용) + mongo_uri = f"mongodb://{mongo_user}:{mongo_password}@127.0.0.1:{tunnel.local_bind_port}/{mongo_database}" + + try: + # MongoDB 클라이언트 연결 + client = MongoClient(mongo_uri) + db = client[mongo_database] + logger.info(f"MongoDB {mongo_database} SSH 터널 연결 성공") + + # 터널과 클라이언트를 함께 반환 (종료를 위해) + return client, db, tunnel + except Exception as e: + # 오류 발생 시 터널 종료 + tunnel.stop() + raise e \ No newline at end of file diff --git a/app/services/mongodb/data_collector.py b/app/services/mongodb/data_collector.py new file mode 100644 index 0000000..21dd32f --- /dev/null +++ b/app/services/mongodb/data_collector.py @@ -0,0 +1,124 @@ +# app/servies/mongodb/data_collector.py + +import logging +from pathlib import Path +from datetime import datetime +from app.config import RESTAURANTS_DIR, USER_DIR +from app.services.mongodb.data_converter import process_and_save_data, cleanup_old_files + +logger = logging.getLogger(__name__) + +def process_restaurant_data(db, timestamp): + """MongoDB에서 레스토랑 관련 데이터 처리 및 저장""" + try: + # 디렉토리 경로 + restaurant_dir = Path(RESTAURANTS_DIR) + restaurant_dir.mkdir(parents=True, exist_ok=True) + + # 레스토랑 컬렉션에서 데이터 가져오기 + restaurant_collection = db['restaurants'] + restaurant_data = list(restaurant_collection.find({}, {'_id': 0})) + + if not restaurant_data: + logger.warning("MongoDB에서 식당 데이터를 찾을 수 없습니다.") + return False + + logger.info(f"MongoDB에서 {len(restaurant_data)}개의 레스토랑 레코드 가져옴") + + # 데이터 처리 및 저장 + rest_filepath = restaurant_dir / f"restaurant_data_{timestamp}.json" + success = process_and_save_data( + restaurant_data, + rest_filepath, + "식당 데이터" + ) + + if success: + # 오래된 파일 정리 (최신 3개만 유지) + cleanup_old_files(str(restaurant_dir), "restaurant_data_", 3) + return True + else: + return False + + except Exception as e: + logger.error(f"레스토랑 데이터 처리 오류: {str(e)}", exc_info=True) + return False + +def process_user_data(db, timestamp): + """MongoDB에서 사용자 관련 데이터 처리 및 저장""" + # 디렉토리 경로 + user_dir = Path(USER_DIR) + user_dir.mkdir(parents=True, exist_ok=True) + + # 적어도 하나의 쿼리가 성공했는지 추적 + success_count = 0 + total_queries = 5 # 총 실행할 쿼리 수 + + # 1. 사용자 기본 정보 가져오기 및 저장 + success_count += process_collection( + db, 'users', + user_dir / f"user_data_{timestamp}.json", + "사용자 기본 정보", + user_dir, "user_data_", 3 + ) + + # 2. 사용자 선호도 데이터 가져오기 및 저장 + success_count += process_collection( + db, 'user_preferences', + user_dir / f"user_preferences_{timestamp}.json", + "사용자 선호도 데이터", + user_dir, "user_preferences_", 3 + ) + + # 3. 찜 데이터 가져오기 및 저장 + success_count += process_collection( + db, 'likes', + user_dir / f"likes_{timestamp}.json", + "찜 데이터", + user_dir, "likes_", 3 + ) + + # 4. 예약 데이터 가져오기 및 저장 + success_count += process_collection( + db, 'reservations', + user_dir / f"reservations_{timestamp}.json", + "예약 데이터", + user_dir, "reservations_", 3 + ) + + # 5. 추천 시스템 통합 데이터 가져오기 및 저장 (선택사항) + success_count += process_collection( + db, 'recsys_data', + user_dir / f"recsys_data_{timestamp}.json", + "추천 시스템 데이터", + user_dir, "recsys_data_", 3 + ) + + # 일부 쿼리라도 성공했으면 일부 성공으로 간주 + if success_count > 0: + logger.info(f"사용자 데이터 동기화: {success_count}/{total_queries} 쿼리 성공") + return True + else: + logger.warning("모든 사용자 데이터 쿼리 실패") + return False + +def process_collection(db, collection_name, filepath, prefix, dir_path, file_prefix, keep_count): + """특정 컬렉션에서 데이터를 가져와 저장하는 헬퍼 함수""" + try: + collection = db[collection_name] + data = list(collection.find({}, {'_id': 0})) + + if data: + logger.info(f"MongoDB에서 {len(data)}개의 {prefix} 레코드 가져옴") + + if process_and_save_data(data, filepath, prefix): + # 파일이 생성되었다면 정리 로직도 실행 + cleanup_old_files(str(dir_path), file_prefix, keep_count) + return 1 + else: + logger.warning(f"MongoDB에서 {collection_name} 데이터를 찾을 수 없습니다.") + + return 0 + except Exception as e: + logger.warning(f"{prefix} 처리 실패: {e}") + return 0 \ No newline at end of file diff --git a/app/services/mongodb/data_converter.py b/app/services/mongodb/data_converter.py new file mode 100644 index 0000000..4cb1683 --- /dev/null +++ b/app/services/mongodb/data_converter.py @@ -0,0 +1,99 @@ +# app/servies/mongodb/data_converter.py + +import json +import logging +import numpy as np +from datetime import datetime, date +from pathlib import Path + +logger = logging.getLogger(__name__) + +class DateTimeEncoder(json.JSONEncoder): + """날짜/시간 객체를 JSON으로 직렬화하기 위한 커스텀 인코더""" + def default(self, obj): + if isinstance(obj, (datetime, date)): + return obj.isoformat() + return super().default(obj) + +def convert_bytes_to_str(data): + """데이터에서 bytes 타입을 문자열로 변환""" + if isinstance(data, bytes): + return data.decode('utf-8', errors='replace') + elif isinstance(data, dict): + return {key: convert_bytes_to_str(value) for key, value in data.items()} + elif isinstance(data, list): + return [convert_bytes_to_str(item) for item in data] + elif isinstance(data, tuple): + return tuple(convert_bytes_to_str(item) for item in data) + else: + return data + +def convert_datetime(data): + """데이터에서 날짜/시간 객체를 문자열로 변환""" + if isinstance(data, (datetime, date)): + return data.isoformat() + elif isinstance(data, dict): + return {key: convert_datetime(value) for key, value in data.items()} + elif isinstance(data, list): + return [convert_datetime(item) for item in data] + elif isinstance(data, tuple): + return tuple(convert_datetime(item) for item in data) + else: + return data + +def convert_numpy_types(data): + """NumPy 타입을 Python 네이티브 타입으로 변환""" + if isinstance(data, dict): + return {k: convert_numpy_types(v) for k, v in data.items()} + elif isinstance(data, list): + return [convert_numpy_types(v) for v in data] + elif isinstance(data, np.integer): # NumPy 정수형 + return int(data) + elif isinstance(data, np.floating): # NumPy 실수형 + return float(data) + elif isinstance(data, np.ndarray): # NumPy 배열 + return convert_numpy_types(data.tolist()) + elif isinstance(data, (datetime, date)): # 날짜/시간 객체 + return data.isoformat() + else: + return data + +def process_and_save_data(data, filepath, prefix): + """데이터 전처리 및 파일 저장을 처리하는 헬퍼 함수""" + try: + # 바이트 데이터를 문자열로 변환 + data = convert_bytes_to_str(data) + # 날짜/시간 객체와 NumPy 타입을 변환 + data = convert_datetime(data) + data = convert_numpy_types(data) + + # 디렉토리 확인 및 생성 + filepath.parent.mkdir(parents=True, exist_ok=True) + + # JSON으로 저장 + with open(filepath, 'w', encoding='utf-8') as f: + json.dump(data, f, ensure_ascii=False, indent=2) + + logger.info(f"{prefix} 저장 완료: {len(data)}개 항목") + return True + except Exception as e: + logger.error(f"{prefix} 저장 중 오류: {e}") + return False + +def cleanup_old_files(directory, prefix, keep_count): + """특정 접두사를 가진 파일 중 최신 파일 n개만 유지""" + try: + dir_path = Path(directory) + files = [f for f in dir_path.glob(f"{prefix}*.json")] + + # 파일의 생성 시간에 따라 정렬 + files.sort(key=lambda x: x.stat().st_mtime, reverse=True) + + # 유지할 파일 수보다 많으면 오래된 파일 삭제 + if len(files) > keep_count: + for old_file in files[keep_count:]: + old_file.unlink() + logger.info(f"오래된 파일 삭제: {old_file}") + + except Exception as e: + logger.error(f"파일 정리 중 오류: {str(e)}", exc_info=True) \ No newline at end of file diff --git a/app/services/preprocess/data_loader.py b/app/services/preprocess/data_loader.py deleted file mode 100644 index 2422a44..0000000 --- a/app/services/preprocess/data_loader.py +++ /dev/null @@ -1,47 +0,0 @@ -# app/services/preprocess/data_loader.py -# 임시로 디텍토리 안에 있는 데이터 활용 - 추후 BE에서 데이터 받아와서 테스트 할것. -# 2차 고도화때. - -import os -import json -import glob -import pandas as pd -import logging - -logger = logging.getLogger(__name__) - -def load_and_merge_json_files(directory: str) -> pd.DataFrame: - """ - 주어진 디렉토리 내의 모든 <카테고리명>_restaurants_table.json 파일들을 읽어 - 데이터를 합쳐 하나의 DataFrame으로 반환합니다. - """ - # 디렉토리 내의 모든 JSON 파일 경로 찾기 - file_pattern = os.path.join(directory, "restaurants_table*.json") - json_files = glob.glob(file_pattern) - - if not json_files: - logger.error(f"No JSON files found in directory: {directory}", exc_info=True) - - merged_data = [] - for file_path in json_files: - try: - with open(file_path, 'r', encoding='utf-8') as f: - data = json.load(f) - # 데이터가 리스트인지 아닌지 확인 - if isinstance(data, list): - merged_data.extend(data) - else: - merged_data.append(data) - except Exception as e: - logger.error(f"Error reading {file_path}: {e}", exc_info=True) - # 필요에 따라 계속 진행하거나 예외를 재발생할 수 있음. - raise e - - try: - df = pd.DataFrame(merged_data) - logger.debug("json 데이터가 병합이 완료되었습니다.") - except Exception as e: - logger.error(f"Error converting merged data to DataFrame: {e}", exc_info=True) - raise e # 에러 발생 시 예외를 재발생시킵니다. - - return df diff --git a/app/services/preprocess/encoding.py b/app/services/preprocess/encoding.py deleted file mode 100644 index fa02250..0000000 --- a/app/services/preprocess/encoding.py +++ /dev/null @@ -1,13 +0,0 @@ -# app/services/preprocess/encoding.py - -def select_final_columns(df, conv_cols, caution_cols): - """최종 출력할 컬럼 목록을 구성하여 DataFrame에서 선택합니다.""" - final_columns = [ - "db_category_id", "restaurant_id", "name", "category_id", "score", "review", "address", - "operating_hour", "expanded_days", "open_time", "close_time", - "duration", "duration_hours", "time_range", "phone_number", - "image_urls", "convenience", "caution", "is_deleted", - "operating_days_count", "open_hour", "close_hour" - ] - final_columns += conv_cols + caution_cols - return df[final_columns] diff --git a/app/services/preprocess/__init__.py b/app/services/preprocess/restaurant/__init__.py similarity index 100% rename from app/services/preprocess/__init__.py rename to app/services/preprocess/restaurant/__init__.py diff --git a/app/services/preprocess/caution.py b/app/services/preprocess/restaurant/caution.py similarity index 91% rename from app/services/preprocess/caution.py rename to app/services/preprocess/restaurant/caution.py index 840afda..73cc242 100644 --- a/app/services/preprocess/caution.py +++ b/app/services/preprocess/restaurant/caution.py @@ -1,4 +1,4 @@ -# app/services/preprocess/caution.py +# app/services/preprocess/restaurant/caution.py from collections import Counter def normalize_caution(val): diff --git a/app/services/preprocess/convenience.py b/app/services/preprocess/restaurant/convenience.py similarity index 90% rename from app/services/preprocess/convenience.py rename to app/services/preprocess/restaurant/convenience.py index 5cf7b7c..221c10c 100644 --- a/app/services/preprocess/convenience.py +++ b/app/services/preprocess/restaurant/convenience.py @@ -1,4 +1,5 @@ -# app/services/preprocess/convenience.py +# app/services/preprocess/restaurant/convenience.py + from collections import Counter def normalize_convenience(val): diff --git a/app/services/preprocess/convert_category.py b/app/services/preprocess/restaurant/convert_category.py similarity index 93% rename from app/services/preprocess/convert_category.py rename to app/services/preprocess/restaurant/convert_category.py index 0ab71ee..7797629 100644 --- a/app/services/preprocess/convert_category.py +++ b/app/services/preprocess/restaurant/convert_category.py @@ -1,4 +1,4 @@ -# app/services/preprocess/convert_category.py +# app/services/preprocess/restaurant/convert_category.py import logging diff --git a/app/services/preprocess/restaurant/data_loader.py b/app/services/preprocess/restaurant/data_loader.py new file mode 100644 index 0000000..e5b8864 --- /dev/null +++ b/app/services/preprocess/restaurant/data_loader.py @@ -0,0 +1,130 @@ +# app/services/preprocess/restaurant/data_loader.py + +import os +import json +import glob +import pandas as pd +import logging +from pathlib import Path +from typing import Dict, Tuple + +logger = logging.getLogger(__name__) + +def load_restaurant_json_files(directory: str) -> pd.DataFrame: + """ + 주어진 디렉토리 내의 모든 <카테고리명>_restaurant_data.json 파일들을 읽어 + 데이터를 합쳐 하나의 DataFrame으로 반환합니다. + """ + # 디렉토리 내의 모든 JSON 파일 경로 찾기 + file_pattern = os.path.join(directory, "restaurant_data*.json") + json_files = glob.glob(file_pattern) + + if not json_files: + logger.error(f"No restaurant JSON files found in directory: {directory}") + raise FileNotFoundError(f"No restaurant JSON files found in directory: {directory}") + + merged_data = [] + for file_path in json_files: + try: + with open(file_path, 'r', encoding='utf-8') as f: + data = json.load(f) + # 데이터가 리스트인지 아닌지 확인 + if isinstance(data, list): + merged_data.extend(data) + else: + merged_data.append(data) + except Exception as e: + logger.error(f"Error reading {file_path}: {e}", exc_info=True) + # 필요에 따라 계속 진행하거나 예외를 재발생할 수 있음. + raise e + + try: + df = pd.DataFrame(merged_data) + logger.debug(f"식당 데이터 병합 완료: {len(df)}개 항목") + except Exception as e: + logger.error(f"Error converting restaurant data to DataFrame: {e}", exc_info=True) + raise e # 에러 발생 시 예외를 재발생시킵니다. + + return df + +def load_user_json_files(directory: str) -> Dict[str, pd.DataFrame]: + """ + 사용자 관련 데이터 파일들을 로드하여 DataFrame 딕셔너리로 반환합니다. + + 로드되는 데이터: + - user_preference: 사용자 가격 범위 선호도 (min_price, max_price) + - user_preference_categories: 사용자 카테고리 선호도 (category_id) + - likes: 사용자가 찜한 식당 정보 (restaurant_id) + - reservations: 사용자 예약 정보 (restaurant_id, status) + """ + try: + dir_path = Path(directory) + user_data_frames = {} + + # 1. 사용자 가격 범위 선호도 데이터 + pref_files = [f for f in dir_path.glob('user_preference_*.json')] + if pref_files: + latest_file = max(pref_files, key=lambda x: x.stat().st_mtime) + with open(latest_file, 'r', encoding='utf-8') as f: + data = json.load(f) + user_data_frames["user_preference"] = pd.DataFrame(data) + logger.info(f"사용자 가격 범위 선호도 데이터 로드 완료: {len(data)}개 항목") + else: + logger.warning("사용자 가격 범위 선호도 데이터 파일을 찾을 수 없습니다.") + + # 2. 사용자 카테고리 선호도 데이터 + cat_pref_files = [f for f in dir_path.glob('user_preference_categories_*.json')] + if cat_pref_files: + latest_file = max(cat_pref_files, key=lambda x: x.stat().st_mtime) + with open(latest_file, 'r', encoding='utf-8') as f: + data = json.load(f) + user_data_frames["user_preference_categories"] = pd.DataFrame(data) + logger.info(f"사용자 카테고리 선호도 데이터 로드 완료: {len(data)}개 항목") + else: + logger.warning("사용자 카테고리 선호도 데이터 파일을 찾을 수 없습니다.") + + # 3. 찜 데이터 + like_files = [f for f in dir_path.glob('likes_*.json')] + if like_files: + latest_file = max(like_files, key=lambda x: x.stat().st_mtime) + with open(latest_file, 'r', encoding='utf-8') as f: + data = json.load(f) + user_data_frames["likes"] = pd.DataFrame(data) + logger.info(f"찜 데이터 로드 완료: {len(data)}개 항목") + else: + logger.warning("찜 데이터 파일을 찾을 수 없습니다.") + + # 4. 예약 데이터 + reservation_files = [f for f in dir_path.glob('reservations_*.json')] + if reservation_files: + latest_file = max(reservation_files, key=lambda x: x.stat().st_mtime) + with open(latest_file, 'r', encoding='utf-8') as f: + data = json.load(f) + user_data_frames["reservations"] = pd.DataFrame(data) + logger.info(f"예약 데이터 로드 완료: {len(data)}개 항목") + + # 완료된 예약만 필터링 + if "reservations" in user_data_frames and "status" in user_data_frames["reservations"].columns: + user_data_frames["reservations"] = user_data_frames["reservations"][ + user_data_frames["reservations"]["status"] == "Complete" + ] + logger.info(f"완료된 예약만 필터링: {len(user_data_frames['reservations'])}개 항목") + else: + logger.warning("예약 데이터 파일을 찾을 수 없습니다.") + + # 사용자 관련 데이터 수 확인 + if not user_data_frames: + logger.warning("사용자 관련 데이터가 없습니다. 기본 추천만 제공됩니다.") + + return user_data_frames + + except Exception as e: + logger.error(f"사용자 데이터 로드 중 오류 발생: {str(e)}", exc_info=True) + return {} + +def get_latest_file(directory: Path, prefix: str) -> Path: + """특정 접두사를 가진 파일 중 가장 최신 파일 반환""" + files = list(directory.glob(f"{prefix}*.json")) + if not files: + return None + return max(files, key=lambda x: x.stat().st_mtime) \ No newline at end of file diff --git a/app/services/preprocess/restaurant/encoding.py b/app/services/preprocess/restaurant/encoding.py new file mode 100644 index 0000000..0ae68e0 --- /dev/null +++ b/app/services/preprocess/restaurant/encoding.py @@ -0,0 +1,27 @@ +# app/services/preprocess/restaurant/encoding.py + +def select_final_columns(df, conv_cols, caution_cols): + # 최종 컬럼 목록 + final_columns = [ + 'restaurant_id', 'name', 'category_id', 'address', + 'phone_number', 'score', 'review', 'operating_days_count', + 'duration_hours' # time_range 대신 duration_hours 사용 + ] + + # db_category_id와 image_urls가 있는 경우에만 추가 + if 'db_category_id' in df.columns: + final_columns.append('db_category_id') + + if 'image_urls' in df.columns: + final_columns.append('image_urls') + + # 모든 convenience 컬럼 추가 + final_columns.extend(conv_cols) + + # 모든 caution 컬럼 추가 + final_columns.extend(caution_cols) + + # 데이터프레임에 있는 컬럼만 필터링 + available_columns = [col for col in final_columns if col in df.columns] + + return df[available_columns] \ No newline at end of file diff --git a/app/services/preprocess/operating_days.py b/app/services/preprocess/restaurant/operating_days.py similarity index 94% rename from app/services/preprocess/operating_days.py rename to app/services/preprocess/restaurant/operating_days.py index 768dfb8..762a8a5 100644 --- a/app/services/preprocess/operating_days.py +++ b/app/services/preprocess/restaurant/operating_days.py @@ -1,4 +1,4 @@ -# app/services/preprocess/operating_days.py +# app/services/preprocess/restaurant/operating_days.py def count_operating_days(expanded_days): """expanded_days 문자열을 바탕으로 영업일 수를 계산합니다.""" diff --git a/app/services/preprocess/phone_format.py b/app/services/preprocess/restaurant/phone_format.py similarity index 82% rename from app/services/preprocess/phone_format.py rename to app/services/preprocess/restaurant/phone_format.py index 2b01aa4..4cfc70e 100644 --- a/app/services/preprocess/phone_format.py +++ b/app/services/preprocess/restaurant/phone_format.py @@ -1,4 +1,4 @@ -# app/services/preprocess/phone_format.py +# app/services/preprocess/restaurant/phone_format.py import pandas as pd def format_phone(num): diff --git a/app/services/preprocess/preprocessor.py b/app/services/preprocess/restaurant/preprocessor.py similarity index 61% rename from app/services/preprocess/preprocessor.py rename to app/services/preprocess/restaurant/preprocessor.py index 40fae41..ba96f81 100644 --- a/app/services/preprocess/preprocessor.py +++ b/app/services/preprocess/restaurant/preprocessor.py @@ -1,16 +1,16 @@ -# app/services/preprocess/preprocessor.py +# app/services/preprocess/restaurant/preprocessor.py import pandas as pd -from app.services.preprocess.data_loader import load_and_merge_json_files -from app.services.preprocess.convert_category import convert_category -from app.services.preprocess.phone_format import format_phone -from app.services.preprocess.convenience import normalize_convenience -from app.services.preprocess.caution import normalize_caution -from app.services.preprocess.operating_days import count_operating_days -from app.services.preprocess.time_range import ( +from app.services.preprocess.restaurant.data_loader import load_restaurant_json_files +from app.services.preprocess.restaurant.convert_category import convert_category +from app.services.preprocess.restaurant.phone_format import format_phone +from app.services.preprocess.restaurant.convenience import normalize_convenience +from app.services.preprocess.restaurant.caution import normalize_caution +from app.services.preprocess.restaurant.operating_days import count_operating_days +from app.services.preprocess.restaurant.time_range import ( extract_open_time, extract_close_time, convert_to_minutes, compute_duration ) -from app.services.preprocess.encoding import select_final_columns +from app.services.preprocess.restaurant.encoding import select_final_columns from sklearn.preprocessing import MultiLabelBinarizer import logging @@ -80,14 +80,39 @@ def preprocess_data(df: pd.DataFrame) -> pd.DataFrame: # 6. time_range 처리 try: - df['open_time'] = df['time_range'].apply(extract_open_time) - df['close_time'] = df['time_range'].apply(extract_close_time) - df['open_minutes'] = df['open_time'].apply(convert_to_minutes) - df['close_minutes'] = df['close_time'].apply(convert_to_minutes) - df['duration'] = df.apply( - lambda row: compute_duration(row['open_minutes'], row['close_minutes']), axis=1 - ) - df['duration_hours'] = df['duration'] / 60.0 + if 'time_range' in df.columns: + # 기존 코드: time_range 필드가 있는 경우 + df['open_time'] = df['time_range'].apply(extract_open_time) + df['close_time'] = df['time_range'].apply(extract_close_time) + df['open_minutes'] = df['open_time'].apply(convert_to_minutes) + df['close_minutes'] = df['close_time'].apply(convert_to_minutes) + df['duration'] = df.apply( + lambda row: compute_duration(row['open_minutes'], row['close_minutes']), axis=1 + ) + df['duration_hours'] = df['duration'] / 60.0 + elif 'duration_hours' in df.columns and isinstance(df['duration_hours'].iloc[0], str): + # duration_hours가 문자열 형식인 경우 ("12:00 ~ 24:00" 형식) + # 영업 시작 시간과 종료 시간 추출 + df['open_time'] = df['duration_hours'].apply(lambda x: x.split(' ~ ')[0] if isinstance(x, str) and ' ~ ' in x else '00:00') + df['close_time'] = df['duration_hours'].apply(lambda x: x.split(' ~ ')[1] if isinstance(x, str) and ' ~ ' in x else '00:00') + df['open_minutes'] = df['open_time'].apply(convert_to_minutes) + df['close_minutes'] = df['close_time'].apply(convert_to_minutes) + df['duration'] = df.apply( + lambda row: compute_duration(row['open_minutes'], row['close_minutes']), axis=1 + ) + # duration_hours가 이미 있으므로 재계산 불필요 + else: + # 둘 다 없거나 duration_hours가 이미 숫자 형식인 경우 + logger.warning("time_range 필드가 없고 duration_hours가 문자열 형식이 아닙니다. 기본값을 설정합니다.") + df['open_time'] = '00:00' + df['close_time'] = '24:00' + df['open_minutes'] = 0 + df['close_minutes'] = 1440 # 24시간 * 60분 + df['duration'] = 1440 + if 'duration_hours' not in df.columns: + df['duration_hours'] = 24.0 + + # 공통 처리: open_hour와 close_hour 계산 df['open_hour'] = df['open_time'].apply(lambda x: float(x.split(":")[0]) if x and ":" in x else None) df['close_hour'] = df['close_time'].apply(lambda x: None if x=="24:00" else (float(x.split(":")[0]) if x and ":" in x else None)) except Exception as e: diff --git a/app/services/preprocess/time_range.py b/app/services/preprocess/restaurant/time_range.py similarity index 95% rename from app/services/preprocess/time_range.py rename to app/services/preprocess/restaurant/time_range.py index 7c5a7bc..2f80fe4 100644 --- a/app/services/preprocess/time_range.py +++ b/app/services/preprocess/restaurant/time_range.py @@ -1,4 +1,4 @@ -# app/services/preprocess/time_range.py +# app/services/preprocess/restaurant/time_range.py def extract_open_time(time_range): """시간 범위에서 open_time 추출""" diff --git a/app/services/preprocess/user/__init__.py b/app/services/preprocess/user/__init__.py new file mode 100644 index 0000000..873d895 --- /dev/null +++ b/app/services/preprocess/user/__init__.py @@ -0,0 +1,18 @@ +import logging +from .user_preprocess import user_preprocess_data +from .user_data_loader import user_load_data +from .user_feature_extractor import user_extract_features +from .user_category_encoder import user_encode_categories +from .user_data_processor import user_convert_to_dataframe, user_save_to_csv + +# 패키지 로거 설정 +logger = logging.getLogger(__name__) + +__all__ = [ + 'user_preprocess_data', + 'user_load_data', + 'user_extract_features', + 'user_encode_categories', + 'user_convert_to_dataframe', + 'user_save_to_csv', +] \ No newline at end of file diff --git a/app/services/preprocess/user/user_category_encoder.py b/app/services/preprocess/user/user_category_encoder.py new file mode 100644 index 0000000..67e3662 --- /dev/null +++ b/app/services/preprocess/user/user_category_encoder.py @@ -0,0 +1,31 @@ +# app/services/preprocess/user/user_category_encoder.py + +import logging + +# 모듈 로거 설정 +logger = logging.getLogger(__name__) + +def user_encode_categories(features, categories, category_count=12): + """ + 사용자 선호 카테고리 원-핫 인코딩 + + Args: + features: 특성 딕셔너리 (수정됨) + categories: 카테고리 ID 리스트 + category_count: 총 카테고리 수 + """ + user_id = features.get("user_id", "알 수 없음") + logger.debug(f"사용자 ID {user_id}의 카테고리 원-핫 인코딩 시작") + + # 모든 카테고리 초기화 + for i in range(1, category_count + 1): + features[f"category_{i}"] = 0 + + # 선호 카테고리 설정 + for category in categories: + if 1 <= category <= category_count: + features[f"category_{category}"] = 1 + else: + logger.warning(f"사용자 ID {user_id}의 카테고리 ID {category}가 범위를 벗어납니다. (범위: 1-{category_count})") + + logger.debug(f"사용자 ID {user_id}의 카테고리 원-핫 인코딩 완료") \ No newline at end of file diff --git a/app/services/preprocess/user/user_data_loader.py b/app/services/preprocess/user/user_data_loader.py new file mode 100644 index 0000000..f25d624 --- /dev/null +++ b/app/services/preprocess/user/user_data_loader.py @@ -0,0 +1,72 @@ +# app/services/preprocess/user/user_data_loader.py + +import json +import os +import glob +import logging + +# 모듈 로거 설정 +logger = logging.getLogger(__name__) + +def get_latest_user_data_file(directory_path="storage/input_json/user/"): + """ + 지정된 디렉토리에서 가장 최근에 생성된 recsys_data 파일을 찾는 함수 + """ + logger.info(f"디렉토리에서 최신 사용자 데이터 파일 검색 중: {directory_path}") + + # recsys_data로 시작하는 모든 JSON 파일 검색 + file_pattern = os.path.join(directory_path, "recsys_data_*.json") + json_files = glob.glob(file_pattern) + + if not json_files: + error_msg = f"지정된 디렉토리에 recsys_data JSON 파일이 없습니다: {directory_path}" + logger.error(error_msg) + raise FileNotFoundError(error_msg) + + # 수정 시간을 기준으로 가장 최근 파일 선택 + latest_file = max(json_files, key=os.path.getmtime) + logger.info(f"최신 사용자 데이터 파일 발견: {latest_file}") + + return latest_file + +def user_load_data(data_source): + """ + 다양한 형태의 사용자 데이터를 로드하는 함수 + + Args: + data_source: 파일 경로, JSON 문자열, 또는 파이썬 객체(dict/list) + + Returns: + list: 사용자 데이터 리스트 + """ + # 디렉토리만 지정된 경우 최신 파일 자동 검색 + if isinstance(data_source, str) and os.path.isdir(data_source): + data_source = get_latest_user_data_file(data_source) + + # 문자열인 경우 파일 로드 또는 JSON 파싱 + if isinstance(data_source, str): + # 파일 경로인지 확인 + if os.path.exists(data_source): + logger.info(f"파일에서 사용자 데이터 로드 중: {data_source}") + with open(data_source, 'r', encoding='utf-8') as f: + data = json.load(f) + else: + # JSON 문자열로 간주 + logger.info("JSON 문자열에서 사용자 데이터 파싱 중") + try: + data = json.loads(data_source) + except json.JSONDecodeError: + logger.error(f"유효하지 않은 JSON 문자열 또는 파일 경로: {data_source}") + raise ValueError(f"유효한 JSON 문자열 또는 파일 경로가 아닙니다: {data_source}") + else: + # 이미 파이썬 객체인 경우 + logger.info("파이썬 객체에서 사용자 데이터 처리 중") + data = data_source + + # 단일 사용자 데이터(dict)인 경우 리스트로 변환 + if isinstance(data, dict): + logger.debug("단일 사용자 데이터를 리스트로 변환") + data = [data] + + logger.info(f"총 {len(data)}명의 사용자 데이터 로드 완료") + return data \ No newline at end of file diff --git a/app/services/preprocess/user/user_data_processor.py b/app/services/preprocess/user/user_data_processor.py new file mode 100644 index 0000000..a64f099 --- /dev/null +++ b/app/services/preprocess/user/user_data_processor.py @@ -0,0 +1,47 @@ +# app/services/preprocess/user/user_data_processor.py + +import pandas as pd +import logging + +# 모듈 로거 설정 +logger = logging.getLogger(__name__) + +def user_convert_to_dataframe(features_list): + """사용자 특성 리스트를 데이터프레임으로 변환""" + logger.info(f"{len(features_list)}개의 사용자 특성을 데이터프레임으로 변환 중") + + try: + df = pd.DataFrame(features_list) + logger.debug(f"데이터프레임 생성 완료. 크기: {df.shape}") + return df + except Exception as e: + logger.error(f"데이터프레임 변환 중 오류 발생: {str(e)}") + raise + +def user_check_missing_features(df, required_features): + """사용자 데이터의 필수 특성이 누락되었는지 확인하고 필요시 추가""" + logger.info("필수 특성 누락 여부 확인 중") + + missing_columns = [col for col in required_features if col not in df.columns] + + if missing_columns: + logger.warning(f"다음 필수 열이 누락되었습니다: {', '.join(missing_columns)}") + # 누락된 열을 0으로 채움 + for col in missing_columns: + df[col] = 0 + logger.debug(f"누락된 열 '{col}'을 0으로 채움") + else: + logger.info("모든 필수 특성이 존재합니다.") + + return df + +def user_save_to_csv(df, output_path="preprocessed_user_features.csv"): + """사용자 데이터프레임을 CSV 파일로 저장""" + logger.info(f"전처리된 사용자 데이터를 {output_path}에 저장 중") + + try: + df.to_csv(output_path, index=False) + logger.info(f"데이터 저장 완료: {output_path} (행: {df.shape[0]}, 열: {df.shape[1]})") + except Exception as e: + logger.error(f"데이터 저장 중 오류 발생: {str(e)}") + raise \ No newline at end of file diff --git a/app/services/preprocess/user/user_feature_extractor.py b/app/services/preprocess/user/user_feature_extractor.py new file mode 100644 index 0000000..11d575c --- /dev/null +++ b/app/services/preprocess/user/user_feature_extractor.py @@ -0,0 +1,163 @@ +# app/services/preprocess/user/user_feature_extractor.py + +from .user_category_encoder import user_encode_categories +import logging + +# 모듈 로거 설정 +logger = logging.getLogger(__name__) + +def user_extract_features(user_data_list): + """ + 사용자 데이터 리스트에서 필요한 특성 추출 + + Args: + user_data_list: 사용자 데이터 리스트 + + Returns: + list: 추출된 특성 딕셔너리 리스트 + """ + logger.info(f"총 {len(user_data_list)}명의 사용자에 대한 특성 추출 시작") + user_features_list = [] + + for i, user in enumerate(user_data_list): + # 기본 사용자 정보 추출 + features = user_extract_basic_info(user) + + # 가격 및 카테고리 정보 추출 + user_extract_preferences(user, features) + + # 예약 정보 추출 + user_extract_reservation_info(user, features) + + # 찜 정보 추출 + user_extract_like_info(user, features) + + # 파생 변수 계산 + user_calculate_derived_features(features) + + user_features_list.append(features) + + # 로깅 - 진행 상황 (100명마다 로그) + if (i+1) % 100 == 0 or i+1 == len(user_data_list): + logger.debug(f"사용자 특성 추출 진행 중: {i+1}/{len(user_data_list)}") + + logger.info(f"사용자 특성 추출 완료. 총 {len(user_features_list)}개의 특성 집합 생성") + return user_features_list + +def user_extract_basic_info(user): + """사용자의 기본 정보 추출""" + try: + # 기존 구조로 시도 + if "user_info" in user and "user_id" in user["user_info"]: + user_id = user["user_info"]["user_id"] + logger.debug(f"사용자 ID {user_id}의 기본 정보 추출 (user_info 구조)") + return { + "user_id": user_id + } + # 다른 가능한 구조로 시도 + elif "user_id" in user: + user_id = user["user_id"] + logger.debug(f"사용자 ID {user_id}의 기본 정보 추출 (직접 user_id)") + return { + "user_id": user_id + } + else: + # 데이터 구조 디버깅을 위한 로깅 + logger.error(f"알 수 없는 사용자 데이터 구조: {list(user.keys())}") + # 임시 ID 생성 + return { + "user_id": f"unknown_{hash(str(user))}" + } + except Exception as e: + logger.error(f"사용자 기본 정보 추출 중 오류: {e}") + logger.debug(f"데이터 구조: {user}") + # 오류 발생 시 임시 ID 생성 + return { + "user_id": f"error_{hash(str(user))}" + } + +def user_extract_preferences(user, features): + """사용자의 가격 및 카테고리 선호도 정보 추출""" + user_id = features["user_id"] + + if "preferences" in user: + logger.debug(f"사용자 ID {user_id}의 선호도 정보 추출") + + # 가격 정보 - max_price만 사용 + features["max_price"] = user["preferences"]["max_price"] + + # 카테고리 정보 + preferred_categories = user["preferences"]["preferred_categories"] + logger.debug(f"사용자 ID {user_id}의 선호 카테고리: {preferred_categories}") + user_encode_categories(features, preferred_categories) + else: + logger.warning(f"사용자 ID {user_id}에 선호도 정보가 없습니다. 기본값 사용") + features["max_price"] = 0 + user_encode_categories(features, []) + +def user_extract_reservation_info(user, features): + """사용자의 예약 정보 추출""" + user_id = features["user_id"] + + try: + if "reservations" in user: + user_reservations = user["reservations"] + + # 데이터 유형 검사 + if user_reservations and isinstance(user_reservations, list): + if all(isinstance(r, dict) for r in user_reservations): + # 딕셔너리 목록인 경우 (예상된 구조) + completed_reservations = [r for r in user_reservations if r.get("status") == "COMPLETED"] + features["completed_reservations"] = len(completed_reservations) + else: + # 문자열 등의 목록인 경우 + logger.warning(f"사용자 ID {user_id}의 예약 정보가 예상 형식이 아닙니다. 첫 번째 항목 유형: {type(user_reservations[0])}") + features["completed_reservations"] = len(user_reservations) # 모든 예약을 완료로 간주 + else: + # 빈 목록이거나 목록이 아닌 경우 + logger.warning(f"사용자 ID {user_id}의 예약 정보가 비어 있거나 목록이 아닙니다: {type(user_reservations)}") + features["completed_reservations"] = 0 + + logger.debug(f"사용자 ID {user_id}의 완료된 예약 수: {features['completed_reservations']}") + else: + logger.warning(f"사용자 ID {user_id}에 예약 정보가 없습니다. 기본값 사용") + features["completed_reservations"] = 0 + except Exception as e: + logger.error(f"사용자 ID {user_id}의 예약 정보 추출 중 오류: {e}") + # 오류 발생 시 기본값 사용 + features["completed_reservations"] = 0 + +def user_extract_like_info(user, features): + """사용자의 찜 정보 추출""" + user_id = features["user_id"] + + try: + if "likes" in user: + user_likes = user["likes"] + + # 데이터 유형 검사 + if isinstance(user_likes, list): + features["total_likes"] = len(user_likes) + else: + logger.warning(f"사용자 ID {user_id}의 찜 정보가 목록이 아닙니다: {type(user_likes)}") + features["total_likes"] = 0 + + logger.debug(f"사용자 ID {user_id}의 찜 수: {features['total_likes']}") + else: + logger.warning(f"사용자 ID {user_id}에 찜 정보가 없습니다. 기본값 사용") + features["total_likes"] = 0 + except Exception as e: + logger.error(f"사용자 ID {user_id}의 찜 정보 추출 중 오류: {e}") + features["total_likes"] = 0 + +def user_calculate_derived_features(features): + """파생 변수 계산""" + user_id = features["user_id"] + + # like_to_reservation_ratio 계산 (찜 대비 예약 비율) + if features["completed_reservations"] > 0: + features["like_to_reservation_ratio"] = features["total_likes"] / features["completed_reservations"] + else: + features["like_to_reservation_ratio"] = 5.0 # 예약 없이 찜만 있는 경우 최대값 설정 + + logger.debug(f"사용자 ID {user_id}의 파생 변수 계산 완료") \ No newline at end of file diff --git a/app/services/preprocess/user/user_preprocess.py b/app/services/preprocess/user/user_preprocess.py new file mode 100644 index 0000000..7dadc68 --- /dev/null +++ b/app/services/preprocess/user/user_preprocess.py @@ -0,0 +1,71 @@ +# app/services/preprocess/user/user_preprocess.py + +import logging +from .user_data_loader import user_load_data, get_latest_user_data_file +from .user_feature_extractor import user_extract_features +from .user_data_processor import user_convert_to_dataframe, user_check_missing_features, user_save_to_csv + +# 모듈 로거 설정 +logger = logging.getLogger(__name__) + +def user_preprocess_data(data_source, save_path=None): + """ + 사용자 데이터 전처리 통합 함수 + + Args: + data_source: 파일 경로, JSON 문자열, 또는 파이썬 객체 + save_path: 저장할 CSV 파일 경로 (None이면 저장하지 않음) + + Returns: + DataFrame: 전처리된 사용자 특성 데이터프레임 + """ + logger.info("사용자 데이터 전처리 시작") + + # 데이터 소스가 지정되지 않은 경우 기본 경로 사용 + if data_source is None: + try: + data_source = get_latest_user_data_file("storage/input_json/user/") + logger.info(f"기본 경로에서 최신 사용자 데이터 파일 사용: {data_source}") + except FileNotFoundError as e: + logger.error(f"기본 경로에서 사용자 데이터 파일을 찾을 수 없습니다: {str(e)}") + raise + + # 필수 특성 목록 - 최종 변수 목록으로 업데이트 + required_features = [ + "user_id", + "max_price", + "category_1", "category_2", "category_3", "category_4", + "category_5", "category_6", "category_7", "category_8", + "category_9", "category_10", "category_11", "category_12", + "completed_reservations", + "reservation_completion_rate", # 선택적 변수 + "total_likes", + "like_to_reservation_ratio" + ] + + # 1. 데이터 로드 + logger.info("1단계: 사용자 데이터 로드") + user_data_list = user_load_data(data_source) + + # 2. 특성 추출 + logger.info("2단계: 사용자 특성 추출") + user_features_list = user_extract_features(user_data_list) + + # 3. 데이터프레임으로 변환 + logger.info("3단계: 특성 데이터프레임 변환") + user_features_df = user_convert_to_dataframe(user_features_list) + + # 4. 결측 특성 확인 및 처리 + logger.info("4단계: 결측 특성 확인 및 처리") + user_features_df = user_check_missing_features(user_features_df, required_features) + + # 5. 결과 요약 + logger.info(f"사용자 데이터 전처리 완료: 총 {len(user_features_df)} 명의 사용자, {len(user_features_df.columns)} 개의 특성") + logger.debug(f"추출된 특성: {', '.join(user_features_df.columns)}") + + # 6. 저장 (지정된 경우) + if save_path: + logger.info("5단계: 전처리된 데이터 저장") + user_save_to_csv(user_features_df, save_path) + + return user_features_df \ No newline at end of file diff --git a/main.py b/main.py index c7384d2..3c724f3 100644 --- a/main.py +++ b/main.py @@ -13,6 +13,7 @@ import uvicorn import logging import logging.config +import asyncio # 로깅 설정 # JSON 기반 로깅 설정 적용 @@ -23,7 +24,12 @@ logging.config.dictConfig(logging_config) logger = logging.getLogger("recommendation_api") -app = FastAPI() +app = FastAPI( + title="Restaurant Recommendation API", + description="식당 추천 API", + version="1.0", + docs_url="/docs" # Swagger UI 경로 +) # 모든 출처를 허용하는 CORS 설정 (자격 증명 포함 불가) app.add_middleware( @@ -47,7 +53,7 @@ @app.get("/") def read_root(): logger.info("Root endpoint accessed") - return {"message": "Hello, Toby!"} + return {"message": "Restaurant Recommendation API", "docs_url": "/docs"} # 요청 로깅 미들웨어 @app.middleware("http") @@ -76,17 +82,40 @@ async def recommendation_processing_exception_handler(request: Request, exc: Rec @app.exception_handler(Exception) async def general_exception_handler(request: Request, exc: Exception): - logging.error(f"Unhandled error: {exc}", exc_info=True) + logger.error(f"Unhandled error: {exc}", exc_info=True) return JSONResponse( status_code=500, content={"detail": "서버 내부 오류가 발생했습니다."}, ) -# 서버 실행 -if __name__ == "__main__": +# 서버 시작 이벤트 +@app.on_event("startup") +async def startup_event(): + logger.info("애플리케이션 시작") + # FEEDBACK_DIR이 존재하는지 확인하고 없으면 생성 os.makedirs(str(FEEDBACK_DIR), exist_ok=True) + + # 시작 시 데이터 동기화 (설정에 따라) + sync_on_startup = os.environ.get('SYNC_ON_STARTUP', 'false').lower() == 'true' + if sync_on_startup: + logger.info("시작 시 데이터 동기화 활성화") + # RDS 대신 MongoDB 사용 + from app.services.background_tasks import run_initial_sync + asyncio.create_task(run_initial_sync()) + + # 주기적 데이터 동기화 작업 시작 + sync_interval = float(os.environ.get('SYNC_INTERVAL_HOURS', '24')) + if sync_interval > 0: + from app.services.background_tasks import periodic_data_sync + asyncio.create_task(periodic_data_sync(sync_interval)) + logger.info(f"주기적 데이터 동기화 태스크 시작 (간격: {sync_interval}시간)") + + logger.info("애플리케이션 초기화 완료") + +# 서버 실행 +if __name__ == "__main__": uvicorn.run( "main:app", host="0.0.0.0", diff --git a/requirements.txt b/requirements.txt index 52dcc01..95b07bc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,4 +9,8 @@ lightgbm python-decouple python-dotenv pillow -catboost==1.2.7 \ No newline at end of file +pymysql +catboost==1.2.7 +asyncio +sshtunnel +pymongo \ No newline at end of file diff --git a/storage/input_json/restaurants/.gitkeep b/storage/input_json/restaurants/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/storage/input_json/restaurants/restaurant_data_20250330_212302.json b/storage/input_json/restaurants/restaurant_data_20250330_212302.json new file mode 100644 index 0000000..5a31387 --- /dev/null +++ b/storage/input_json/restaurants/restaurant_data_20250330_212302.json @@ -0,0 +1,36098 @@ +[ + { + "restaurant_id": 1, + "name": "이가네양꼬치 판교본점", + "address": "경기 성남시 분당구 분당내곡로 155 KCC웰츠타워 104호", + "average_price": 15166, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 24:00", + "phone_number": "0507-1359-9688", + "score": 4.0, + "review": 570, + "duration_hours": "12:00 ~ 24:00", + "category_id": 1 + }, + { + "restaurant_id": 2, + "name": "동청담 삼평직영점", + "address": "경기 성남시 분당구 대왕판교로606번길 45 푸르지오시티 2층 206호", + "average_price": 31800, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-705-7777", + "score": 3.2, + "review": 39, + "duration_hours": "15:00 ~ 17:00", + "category_id": 1 + }, + { + "restaurant_id": 3, + "name": "차알 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 판교아비뉴프랑 2층 214-215호", + "average_price": 18700, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-701-7679", + "score": 2.9, + "review": 690, + "duration_hours": "15:00 ~ 17:00", + "category_id": 1 + }, + { + "restaurant_id": 4, + "name": "몽중헌 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 2층", + "average_price": 29761, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "031-601-7574", + "score": 3.7, + "review": 356, + "duration_hours": "15:00 ~ 17:30", + "category_id": 1 + }, + { + "restaurant_id": 5, + "name": "최고집짬뽕", + "address": "경기 성남시 분당구 판교역로10번길 12-9", + "average_price": 14476, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:30 ~ 16:30", + "phone_number": null, + "score": 3.3, + "review": 65, + "duration_hours": "15:30 ~ 16:30", + "category_id": 1 + }, + { + "restaurant_id": 6, + "name": "청계산수타", + "address": "경기 성남시 분당구 판교공원로5길 22 1층", + "average_price": 10200, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:40 ~ 21:00", + "phone_number": "031-707-7647", + "score": 3.3, + "review": 16, + "duration_hours": "10:40 ~ 21:00", + "category_id": 1 + }, + { + "restaurant_id": 7, + "name": "신승반점 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 20000, + "caution": "예약불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 16:30", + "phone_number": "031-5170-1051", + "score": 3.5, + "review": 379, + "duration_hours": "15:00 ~ 16:30", + "category_id": 1 + }, + { + "restaurant_id": 8, + "name": "베이징스토리", + "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 1층 120-1호", + "average_price": 11700, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-696-0306", + "score": 2.6, + "review": 51, + "duration_hours": "15:00 ~ 17:00", + "category_id": 1 + }, + { + "restaurant_id": 9, + "name": "마라공방 판교점", + "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋센터 2층 206호", + "average_price": 13092, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-8061-0780", + "score": 3.7, + "review": 121, + "duration_hours": "11:00 ~ 22:00", + "category_id": 1 + }, + { + "restaurant_id": 10, + "name": "명품조박사짬뽕짜장", + "address": "경기 성남시 분당구 동판교로 153 1층", + "average_price": 11600, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "070-7718-5446", + "score": 3.7, + "review": 36, + "duration_hours": "10:00 ~ 22:00", + "category_id": 1 + }, + { + "restaurant_id": 11, + "name": "전국5대짬뽕연화산", + "address": "경기 성남시 분당구 서판교로58번길 14", + "average_price": 31833, + "caution": "예약가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-781-6350", + "score": 3.4, + "review": 67, + "duration_hours": "11:00 ~ 21:00", + "category_id": 1 + }, + { + "restaurant_id": 12, + "name": "왕스덕", + "address": "경기 성남시 분당구 대왕판교로645번길 36 지하1층", + "average_price": 10666, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-606-8517", + "score": 3.1, + "review": 183, + "duration_hours": "11:00 ~ 22:00", + "category_id": 1 + }, + { + "restaurant_id": 13, + "name": "공화춘 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 5층", + "average_price": 10833, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-5170-1580", + "score": 3.2, + "review": 134, + "duration_hours": "15:00 ~ 17:00", + "category_id": 1 + }, + { + "restaurant_id": 14, + "name": "차엔", + "address": "경기 성남시 분당구 판교역로 235 H스퀘어 N동 1층", + "average_price": 12461, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-696-7667", + "score": 3.6, + "review": 31, + "duration_hours": "11:00 ~ 21:00", + "category_id": 1 + }, + { + "restaurant_id": 15, + "name": "하이보", + "address": "경기 성남시 분당구 판교역로192번길 14-1 2층", + "average_price": 12833, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-8017-8615", + "score": 3.5, + "review": 162, + "duration_hours": "11:00 ~ 22:00", + "category_id": 1 + }, + { + "restaurant_id": 16, + "name": "덕후선생 판교아비뉴프랑", + "address": "경기 성남시 분당구 동판교로177번길 25 판교호밋써밋플레이스 2층 233-2,234,235호", + "average_price": 40750, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:00", + "phone_number": "031-605-5252", + "score": 4.2, + "review": 72, + "duration_hours": "14:30 ~ 17:00", + "category_id": 1 + }, + { + "restaurant_id": 17, + "name": "js가든 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 9층", + "average_price": 84666, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-5170-1957", + "score": 4.2, + "review": 11, + "duration_hours": "15:00 ~ 17:00", + "category_id": 1 + }, + { + "restaurant_id": 18, + "name": "팔복판교", + "address": "경기 성남시 분당구 판교역로241번길 22 판교엠타워 1층", + "average_price": 72523, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": null, + "score": 4.0, + "review": 318, + "duration_hours": "15:00 ~ 17:00", + "category_id": 1 + }, + { + "restaurant_id": 19, + "name": "이가네양꼬치 유스페이스점", + "address": "경기 성남시 분당구 대왕판교로 660 2층 212호", + "average_price": 16800, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:00 ~ 02:00", + "phone_number": "031-724-2688", + "score": 4.2, + "review": 42, + "duration_hours": "14:00 ~ 02:00", + "category_id": 1 + }, + { + "restaurant_id": 20, + "name": "미성양꼬치 판교점", + "address": "경기 성남시 분당구 판교역로192번길 22 판교효성해링턴타워 1층 107호", + "average_price": 38000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 24:00", + "phone_number": "031-708-5888", + "score": 3.7, + "review": 111, + "duration_hours": "12:00 ~ 24:00", + "category_id": 1 + }, + { + "restaurant_id": 21, + "name": "양우양꼬치", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 144호, 152~154호", + "average_price": 19200, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 24:00", + "phone_number": "031-724-2500", + "score": 4.4, + "review": 19, + "duration_hours": "14:00 ~ 24:00", + "category_id": 1 + }, + { + "restaurant_id": 22, + "name": "하파 판교점", + "address": "경기 성남시 분당구 판교역로 145 알파리움2단지 2층 204,205호", + "average_price": 18600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:40 ~ 17:00", + "phone_number": "031-705-1117", + "score": 3.6, + "review": 21, + "duration_hours": "14:40 ~ 17:00", + "category_id": 1 + }, + { + "restaurant_id": 23, + "name": "진궁 운중점", + "address": "경기 성남시 분당구 운중로125번길 3-5 1층", + "average_price": 23600, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": "031-8016-8181", + "score": 3.3, + "review": 10, + "duration_hours": "10:30 ~ 21:00", + "category_id": 1 + }, + { + "restaurant_id": 24, + "name": "페이딤 판교점", + "address": "경기 성남시 분당구 판교역로 152 알파돔타워 2층 9호", + "average_price": 40550, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "010-8192-8528", + "score": 3.4, + "review": 191, + "duration_hours": "15:00 ~ 17:00", + "category_id": 1 + }, + { + "restaurant_id": 25, + "name": "칭따오", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림W시티 지하1층 105호", + "average_price": 8638, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 20:30", + "phone_number": "031-628-7750", + "score": 3.4, + "review": 253, + "duration_hours": "11:00 ~ 20:30", + "category_id": 1 + }, + { + "restaurant_id": 26, + "name": "찬", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 157~158호", + "average_price": 28600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-698-2551", + "score": 4.7, + "review": 35, + "duration_hours": "15:00 ~ 17:00", + "category_id": 1 + }, + { + "restaurant_id": 27, + "name": "동사부마라탕", + "address": "경기 성남시 분당구 판교역로192번길 14-2 골드타워 2층 211호", + "average_price": 9583, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 22:00", + "phone_number": "031-8016-5506", + "score": 4.5, + "review": 34, + "duration_hours": "10:30 ~ 22:00", + "category_id": 1 + }, + { + "restaurant_id": 28, + "name": "최고야전국5대짬뽕 판교4호점", + "address": "경기 성남시 분당구 판교로227번길 6", + "average_price": 7800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:30", + "phone_number": null, + "score": 1.9, + "review": 5, + "duration_hours": "11:00 ~ 21:30", + "category_id": 1 + }, + { + "restaurant_id": 29, + "name": "왕징양다리양꼬치 판교직영점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움1단지 타워1동 2층 205~206호", + "average_price": 34166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 23:00", + "phone_number": "031-705-5688", + "score": 4.7, + "review": 86, + "duration_hours": "11:00 ~ 23:00", + "category_id": 1 + }, + { + "restaurant_id": 30, + "name": "골드피쉬 얌차하우스", + "address": "경기 성남시 분당구 동판교로177번길 25 아브뉴프랑 1층 112호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "010-5393-5266", + "score": 3.4, + "review": 331, + "duration_hours": "15:00 ~ 17:30", + "category_id": 1 + }, + { + "restaurant_id": 31, + "name": "홍짜장 서판교역점", + "address": "경기 성남시 분당구 운중로 135 더원스퀘어 105호", + "average_price": 0, + "caution": "포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,금,일 11:00 ~ 20:00", + "phone_number": "031-703-2200", + "score": 2.6, + "review": 8, + "duration_hours": "11:00 ~ 20:00", + "category_id": 1 + }, + { + "restaurant_id": 32, + "name": "차이펑", + "address": "경기 성남시 분당구 판교로319번길 13", + "average_price": 21380, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "02-1577-0000", + "score": 5.0, + "review": 28, + "duration_hours": "15:00 ~ 17:00", + "category_id": 1 + }, + { + "restaurant_id": 33, + "name": "고수양꼬치", + "address": "경기 성남시 분당구 판교역로 145", + "average_price": 17600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-707-4111", + "score": 3.7, + "review": 81, + "duration_hours": "11:00 ~ 23:00", + "category_id": 1 + }, + { + "restaurant_id": 34, + "name": "쌍팔반점 동판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 58 1층 103호", + "average_price": 8575, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:30 ~ 22:00", + "phone_number": "031-708-8189", + "score": 4.4, + "review": 70, + "duration_hours": "10:30 ~ 22:00", + "category_id": 1 + }, + { + "restaurant_id": 35, + "name": "일미양꼬치 판교역점", + "address": "경기 성남시 분당구 대왕판교로606번길 31 1층 115~117호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 02:00", + "phone_number": "031-711-8188", + "score": 4.3, + "review": 14, + "duration_hours": "11:00 ~ 02:00", + "category_id": 1 + }, + { + "restaurant_id": 36, + "name": "다원", + "address": "경기 성남시 분당구 판교로 393 봇들마을2단지EG더원아파트 상가 1동 1층 B117호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 20:30", + "phone_number": "031-706-0774", + "score": 4.3, + "review": 3, + "duration_hours": "10:00 ~ 20:30", + "category_id": 1 + }, + { + "restaurant_id": 37, + "name": "오한수우육면가 판교점", + "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어 S동 지하1층", + "average_price": 8444, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:30 ~ 16:30", + "phone_number": "031-789-3505", + "score": 4.1, + "review": 76, + "duration_hours": "15:30 ~ 16:30", + "category_id": 1 + }, + { + "restaurant_id": 38, + "name": "양하오양꼬치", + "address": "경기 성남시 분당구 판교공원로2길 52 1층", + "average_price": 15400, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 23:00", + "phone_number": "031-8016-3339", + "score": 3.4, + "review": 10, + "duration_hours": "11:00 ~ 23:00", + "category_id": 1 + }, + { + "restaurant_id": 39, + "name": "보배반점 판교점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 1층 128호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-697-0616", + "score": 2.3, + "review": 29, + "duration_hours": "11:00 ~ 22:00", + "category_id": 1 + }, + { + "restaurant_id": 40, + "name": "락앤웍 테크노밸리점", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 지하1층", + "average_price": 12600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:00", + "phone_number": "031-8018-4444", + "score": 2.6, + "review": 13, + "duration_hours": "14:30 ~ 17:00", + "category_id": 1 + }, + { + "restaurant_id": 41, + "name": "라홍방마라탕 서판교운중점", + "address": "경기 성남시 분당구 운중로 124 204호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-703-7779", + "score": 5.0, + "review": 45, + "duration_hours": "11:00 ~ 22:00", + "category_id": 1 + }, + { + "restaurant_id": 42, + "name": "미메이라", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 120호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 3.1, + "review": 14, + "duration_hours": "null", + "category_id": 1 + }, + { + "restaurant_id": 43, + "name": "마라장룡 삼평점", + "address": "경기 성남시 분당구 삼평동 718 봇들마을4단지아파트 2층 202호", + "average_price": 4944, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:30", + "phone_number": "031-707-8910", + "score": 4.4, + "review": 13, + "duration_hours": "11:30 ~ 22:30", + "category_id": 1 + }, + { + "restaurant_id": 44, + "name": "마라장룡 마라샹궈마라탕", + "address": "경기 성남시 분당구 운중로125번길 4-9", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:30", + "phone_number": null, + "score": 3.8, + "review": 7, + "duration_hours": "11:00 ~ 23:30", + "category_id": 1 + }, + { + "restaurant_id": 45, + "name": "마부마라탕 판교점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 214호", + "average_price": 0, + "caution": "예약가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:30 ~ 23:00", + "phone_number": "031-739-8988", + "score": 2.8, + "review": 0, + "duration_hours": "10:30 ~ 23:00", + "category_id": 1 + }, + { + "restaurant_id": 46, + "name": "호우섬 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 9층", + "average_price": 13666, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-5170-1963", + "score": 2.8, + "review": 440, + "duration_hours": "10:30 ~ 22:00", + "category_id": 1 + }, + { + "restaurant_id": 47, + "name": "중경별곡", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 2층 222호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-739-8988", + "score": 2.0, + "review": 1, + "duration_hours": "null", + "category_id": 1 + }, + { + "restaurant_id": 48, + "name": "신라마라탕", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 지하1층", + "average_price": 13140, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:00", + "phone_number": "031-789-3688", + "score": 3.7, + "review": 8, + "duration_hours": "10:00 ~ 21:00", + "category_id": 1 + }, + { + "restaurant_id": 49, + "name": "제프리웍", + "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어 에스동 1층 125호", + "average_price": 15600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": null, + "score": 0.0, + "review": 12, + "duration_hours": "11:00 ~ 21:00", + "category_id": 1 + }, + { + "restaurant_id": 50, + "name": "마라장룡 운중점", + "address": "경기 성남시 분당구 운중로125번길 4-9", + "average_price": 3125, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:30", + "phone_number": "0507-2086-9742", + "score": 0.0, + "review": 3, + "duration_hours": "11:00 ~ 23:30", + "category_id": 1 + }, + { + "restaurant_id": 51, + "name": "리치앤", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 122호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": null, + "score": 4.0, + "review": 20, + "duration_hours": "15:00 ~ 17:00", + "category_id": 1 + }, + { + "restaurant_id": 52, + "name": "딩딤1968 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 11384, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-2027", + "score": 3.0, + "review": 42, + "duration_hours": "10:30 ~ 20:00", + "category_id": 1 + }, + { + "restaurant_id": 53, + "name": "왕푸징마라탕 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 지하1층", + "average_price": 10000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 20:00", + "phone_number": "031-5170-1000", + "score": 3.2, + "review": 10, + "duration_hours": "10:30 ~ 20:00", + "category_id": 1 + }, + { + "restaurant_id": 54, + "name": "중경별곡마라탕상궈", + "address": "경기 성남시 분당구 대왕판교로 670", + "average_price": 13040, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-739-8988", + "score": 2.5, + "review": 11, + "duration_hours": "null", + "category_id": 1 + }, + { + "restaurant_id": 55, + "name": "진차이객잔", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스몰1 지하1층 B128-4호", + "average_price": 9800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,목", + "is_deleted": "\u0000", + "operating_hour": "월,화,목 10:30 ~ 20:30", + "phone_number": "031-628-1960", + "score": 2.4, + "review": 1, + "duration_hours": "10:30 ~ 20:30", + "category_id": 1 + }, + { + "restaurant_id": 56, + "name": "마라환 판교점", + "address": "경기 성남시 분당구 판교공원로3길 9", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "050-7897-7718", + "score": 0.0, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 1 + }, + { + "restaurant_id": 57, + "name": "마라장룡 마라상궈마라탕", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 1 + }, + { + "restaurant_id": 58, + "name": "메이루", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교복합몰 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 1.0, + "review": 0, + "duration_hours": "null", + "category_id": 1 + }, + { + "restaurant_id": 59, + "name": "비스트로청", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 2201호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 1 + }, + { + "restaurant_id": 60, + "name": "삿뽀로 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 2033호", + "average_price": 39222, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:30", + "phone_number": "031-8016-5990", + "score": 3.5, + "review": 93, + "duration_hours": "11:30 ~ 21:30", + "category_id": 2 + }, + { + "restaurant_id": 61, + "name": "긴자 판교점", + "address": "경기 성남시 분당구 판교로 185 신화푸드빌리지 3층 301호", + "average_price": 47166, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-702-9317", + "score": 3.3, + "review": 105, + "duration_hours": "11:30 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 62, + "name": "도원참치", + "address": "경기 성남시 분당구 판교역로192번길 14-2", + "average_price": 33588, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 23:00", + "phone_number": "031-8016-4588", + "score": 4.2, + "review": 975, + "duration_hours": "11:00 ~ 23:00", + "category_id": 2 + }, + { + "restaurant_id": 63, + "name": "다이호시", + "address": "경기 성남시 분당구 판교역로10번길 6 1층", + "average_price": 34000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "031-705-8322", + "score": 3.8, + "review": 0, + "duration_hours": "15:00 ~ 17:30", + "category_id": 2 + }, + { + "restaurant_id": 64, + "name": "후라토식당 아브뉴프랑판교", + "address": "경기 성남시 분당구 동판교로177번길 25 2층 220호", + "average_price": 14666, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-607-7090", + "score": 3.7, + "review": 525, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 65, + "name": "아나바", + "address": "경기 성남시 분당구 대왕판교로606번길 58", + "average_price": 21333, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:20 ~ 17:00", + "phone_number": "031-626-6002", + "score": 4.2, + "review": 131, + "duration_hours": "14:20 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 66, + "name": "판교매일식당 판교본점", + "address": "경기 성남시 분당구 판교역로192번길 14-2 1층", + "average_price": 14200, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": null, + "score": 3.5, + "review": 81, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 67, + "name": "스시쿤 판교", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스몰 1차 지하1층 115호", + "average_price": 65000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 18:00", + "phone_number": "031-628-6972", + "score": 0.0, + "review": 128, + "duration_hours": "15:00 ~ 18:00", + "category_id": 2 + }, + { + "restaurant_id": 68, + "name": "스시가좋아서", + "address": "경기 성남시 분당구 판교로 372 스타식스코아 2층 202호", + "average_price": 19283, + "caution": "포장가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 15:00 ~ 17:00", + "phone_number": "031-781-4920", + "score": 4.7, + "review": 33, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 69, + "name": "스시혼 판교본점", + "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층 137,138호", + "average_price": 34909, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": null, + "score": 3.5, + "review": 3, + "duration_hours": "11:30 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 70, + "name": "카츠쇼쿠도우 판교본점", + "address": "경기 성남시 분당구 판교역로 152 알파돔타워3 지하1층 9호", + "average_price": 17500, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 21:30", + "phone_number": "031-622-7134", + "score": 4.0, + "review": 79, + "duration_hours": "11:30 ~ 21:30", + "category_id": 2 + }, + { + "restaurant_id": 71, + "name": "오복수산 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 2층 3호", + "average_price": 25416, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "0507-1398-7544", + "score": 4.1, + "review": 353, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 72, + "name": "판교초밥", + "address": "경기 성남시 분당구 운중로125번길 4-7 1층", + "average_price": 20833, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-703-7607", + "score": 3.5, + "review": 18, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 73, + "name": "이춘복참치 판교", + "address": "경기 성남시 분당구 동판교로177번길 25 2층 216호", + "average_price": 60000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 16:30", + "phone_number": "031-704-4558", + "score": 0.0, + "review": 141, + "duration_hours": "14:30 ~ 16:30", + "category_id": 2 + }, + { + "restaurant_id": 74, + "name": "히카루후", + "address": "경기 성남시 분당구 동판교로177번길 25 아브뉴프랑 판교점 2층 217호", + "average_price": 23833, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-626-0073", + "score": 3.9, + "review": 305, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 75, + "name": "스시선", + "address": "경기 성남시 분당구 판교로 375 메가스페이스1 1층 105호", + "average_price": 2000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-701-8880", + "score": 4.4, + "review": 31, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 76, + "name": "오마카세 오사이초밥 판교점", + "address": "경기 성남시 분당구 판교역로 180 알파타워 1층 106호", + "average_price": 24000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "0507-1402-0542", + "score": 0.0, + "review": 0, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 77, + "name": "규카츠정 판교점", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 115호", + "average_price": 10312, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "070-4323-6201", + "score": 4.8, + "review": 735, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 78, + "name": "소바니우동", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하 122호", + "average_price": 10535, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:30", + "phone_number": "031-724-2711", + "score": 4.1, + "review": 73, + "duration_hours": "14:00 ~ 17:30", + "category_id": 2 + }, + { + "restaurant_id": 79, + "name": "서호돈가스 판교점", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 s동 1층", + "average_price": 12000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:50 ~ 17:00", + "phone_number": "031-789-3630", + "score": 3.9, + "review": 19, + "duration_hours": "14:50 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 80, + "name": "풍류 더 블랙", + "address": "경기 성남시 분당구 대왕판교로606번길 39 럭스타워 지하1층", + "average_price": 33000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 24:00", + "phone_number": "010-4030-7311", + "score": 0.0, + "review": 30, + "duration_hours": "17:00 ~ 24:00", + "category_id": 2 + }, + { + "restaurant_id": 81, + "name": "클준빛날영", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 126호", + "average_price": 10500, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": "050-6718-9296", + "score": 4.3, + "review": 64, + "duration_hours": "14:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 82, + "name": "킨파", + "address": "경기 성남시 분당구 판교로227번길 6 판교테크노밸리브릿지타워 1층 106호", + "average_price": 13166, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:10 ~ 21:00", + "phone_number": "0507-1321-3677", + "score": 4.2, + "review": 61, + "duration_hours": "11:10 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 83, + "name": "천야", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 B동 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-739-8335", + "score": 3.6, + "review": 37, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 84, + "name": "초루", + "address": "경기 성남시 분당구 서판교로44번길 3-19 1층", + "average_price": 40000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:30 ~ 17:00", + "phone_number": "031-705-7676", + "score": 0.0, + "review": 89, + "duration_hours": "14:30 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 85, + "name": "스시쇼우민", + "address": "경기 성남시 분당구 운중로125번길 14-10 1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-781-8070", + "score": 4.5, + "review": 79, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 86, + "name": "미스터신돈까스", + "address": "경기 성남시 분당구 판교공원로5길 35 1층", + "average_price": 9200, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 15:30 ~ 17:00", + "phone_number": "031-8016-3389", + "score": 3.6, + "review": 30, + "duration_hours": "15:30 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 87, + "name": "스시가오", + "address": "경기 성남시 분당구 판교로255번길 9-22", + "average_price": 13916, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:30", + "phone_number": "031-628-7828", + "score": 3.3, + "review": 20, + "duration_hours": "14:00 ~ 17:30", + "category_id": 2 + }, + { + "restaurant_id": 88, + "name": "기요항 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 1-90호", + "average_price": 21777, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-707-8589", + "score": 4.3, + "review": 383, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 89, + "name": "오마카세 스시이찌 판교점", + "address": "경기 성남시 분당구 판교역로192번길 22 판교효성 해링턴타워 2층 201호", + "average_price": 31500, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-778-8002", + "score": 4.0, + "review": 25, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 90, + "name": "메종드도쿄", + "address": "경기 성남시 분당구 판교로25번길 16 1층", + "average_price": 36200, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-705-1030", + "score": 4.1, + "review": 25, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 91, + "name": "댓짱돈까스", + "address": "경기 성남시 분당구 운중로166번길 10", + "average_price": 11300, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-781-8259", + "score": 3.1, + "review": 5, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 92, + "name": "하루", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 131호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:30 ~ 17:00", + "phone_number": "031-696-7588", + "score": 4.3, + "review": 40, + "duration_hours": "14:30 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 93, + "name": "일상화식", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 226호", + "average_price": 17000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": "031-739-8340", + "score": 3.6, + "review": 55, + "duration_hours": "14:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 94, + "name": "흥도식당 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 2층 12호", + "average_price": 13200, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:30", + "phone_number": null, + "score": 4.4, + "review": 282, + "duration_hours": "15:00 ~ 17:30", + "category_id": 2 + }, + { + "restaurant_id": 95, + "name": "야키토리 야키준", + "address": "경기 성남시 분당구 판교역로 178 서건타워 1층 101호", + "average_price": 6966, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 18:00 ~ 23:00", + "phone_number": "031-707-6447", + "score": 4.2, + "review": 84, + "duration_hours": "18:00 ~ 23:00", + "category_id": 2 + }, + { + "restaurant_id": 96, + "name": "스시코호시", + "address": "경기 성남시 분당구 판교역로 230 1층 124호", + "average_price": 80000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 18:30", + "phone_number": "031-698-4777", + "score": 3.2, + "review": 125, + "duration_hours": "15:00 ~ 18:30", + "category_id": 2 + }, + { + "restaurant_id": 97, + "name": "스시다케루", + "address": "경기 성남시 분당구 판교역로10번길 12 1층 102호", + "average_price": 0, + "caution": "예약가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 15:00 ~ 17:00", + "phone_number": "031-701-7017", + "score": 0.0, + "review": 128, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 98, + "name": "오레노카츠 판교점", + "address": "경기 성남시 분당구 판교로 372 1층 104~105호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 16:30", + "phone_number": "031-701-5989", + "score": 2.4, + "review": 215, + "duration_hours": "14:30 ~ 16:30", + "category_id": 2 + }, + { + "restaurant_id": 99, + "name": "스시이야시", + "address": "경기 성남시 분당구 판교역로 136 1층 1059호", + "average_price": 90000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 12:00 ~ 22:00", + "phone_number": "031-778-7017", + "score": 4.4, + "review": 31, + "duration_hours": "12:00 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 100, + "name": "네코부루 본점", + "address": "경기 성남시 분당구 판교로319번길 13 디테라스 1층 112호", + "average_price": 15600, + "caution": "예약가능, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "031-606-0112", + "score": 4.2, + "review": 19, + "duration_hours": "11:30 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 101, + "name": "서호돈가스", + "address": "경기 성남시 분당구 판교로255번길 9-22 판교우림W-CITY 지하1층 106호", + "average_price": 12200, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-628-7729", + "score": 3.9, + "review": 30, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 102, + "name": "야끼니꾸 쿄우", + "address": "경기 성남시 분당구 판교역로 138 힐스테이트 주차타워 201동 1층 105호", + "average_price": 20500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 24:00", + "phone_number": null, + "score": 4.5, + "review": 53, + "duration_hours": "17:00 ~ 24:00", + "category_id": 2 + }, + { + "restaurant_id": 103, + "name": "카소 미야 서판교점", + "address": "경기 성남시 분당구 판교공원로3길 2 1층 101호", + "average_price": 14000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-707-7545", + "score": 4.0, + "review": 39, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 104, + "name": "백소정 판교점", + "address": "경기 성남시 분당구 판교역로 240 110호", + "average_price": 12585, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": null, + "score": 1.0, + "review": 16, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 105, + "name": "효 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 9층", + "average_price": 69833, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-5170-1970", + "score": 2.8, + "review": 29, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 106, + "name": "스시가오", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 지하1층 121호", + "average_price": 13916, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 22:00", + "phone_number": "031-724-2822", + "score": 3.6, + "review": 23, + "duration_hours": "11:30 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 107, + "name": "소코아 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크아파트 상가동 1층 65호", + "average_price": 12860, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "0507-1479-7752", + "score": 4.2, + "review": 367, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 108, + "name": "배키욘방 판교직영점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 119~121호", + "average_price": 16285, + "caution": "예약불가", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": null, + "score": 0.0, + "review": 889, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 109, + "name": "모로모로", + "address": "경기 성남시 분당구 운중로 129", + "average_price": 0, + "caution": "포장가능", + "convenience": "휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 24:00", + "phone_number": "031-8017-1267", + "score": 4.7, + "review": 7, + "duration_hours": "10:00 ~ 24:00", + "category_id": 2 + }, + { + "restaurant_id": 110, + "name": "연어로만 운중동점", + "address": "경기 성남시 분당구 운중로 128 1층", + "average_price": 10840, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 16:30", + "phone_number": null, + "score": 4.1, + "review": 9, + "duration_hours": "15:00 ~ 16:30", + "category_id": 2 + }, + { + "restaurant_id": 111, + "name": "예술작품을 빚다 비즐", + "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어 S동 1층 126호", + "average_price": 13850, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-789-3530", + "score": 4.0, + "review": 125, + "duration_hours": "11:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 112, + "name": "아세야마 판교우림W점", + "address": "경기 성남시 분당구 판교로255번길 9-22 2층 209호", + "average_price": 10900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 21:30", + "phone_number": "031-628-8123", + "score": 3.4, + "review": 16, + "duration_hours": "11:30 ~ 21:30", + "category_id": 2 + }, + { + "restaurant_id": 113, + "name": "하즈벤 판교점", + "address": "경기 성남시 분당구 판교역로 136 힐스테이트판교역 판매시설 1층 1002호", + "average_price": 14250, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 19:50", + "phone_number": "070-7766-9397", + "score": 4.5, + "review": 5, + "duration_hours": "10:30 ~ 19:50", + "category_id": 2 + }, + { + "restaurant_id": 114, + "name": "역전우동0410 판교역점", + "address": "경기 성남시 분당구 대왕판교로606번길 31 102호", + "average_price": 0, + "caution": "예약불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 21:00", + "phone_number": "031-781-6999", + "score": 4.3, + "review": 20, + "duration_hours": "10:30 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 115, + "name": "빅피쉬", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 1동 1층 145호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 16:00 ~ 01:00", + "phone_number": "0507-1328-8917", + "score": 4.5, + "review": 17, + "duration_hours": "16:00 ~ 01:00", + "category_id": 2 + }, + { + "restaurant_id": 116, + "name": "스시집막내아들", + "address": "경기 성남시 분당구 판교역로 136 힐스테이트 상가 7-1블럭 1층 1037호", + "average_price": 26761, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-8023-9877", + "score": 3.1, + "review": 27, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 117, + "name": "하나시", + "address": "경기 성남시 분당구 동판교로52번길 21-2 1층 101,102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 01:00", + "phone_number": "031-717-8233", + "score": 4.5, + "review": 13, + "duration_hours": "16:00 ~ 01:00", + "category_id": 2 + }, + { + "restaurant_id": 118, + "name": "츠키야", + "address": "경기 성남시 분당구 분당내곡로 151 삼도타워 1층 111호", + "average_price": 15000, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": "031-708-0827", + "score": 5.0, + "review": 45, + "duration_hours": "14:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 119, + "name": "카도", + "address": "경기 성남시 분당구 판교역로 184 1층 103호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:30 ~ 24:00", + "phone_number": "070-4243-0707", + "score": 4.3, + "review": 84, + "duration_hours": "17:30 ~ 24:00", + "category_id": 2 + }, + { + "restaurant_id": 120, + "name": "포크포크 매콤돈가스&칡불냉면 판교점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 지하1층 104호", + "average_price": 9138, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 21:30", + "phone_number": "031-628-6629", + "score": 2.8, + "review": 12, + "duration_hours": "10:00 ~ 21:30", + "category_id": 2 + }, + { + "restaurant_id": 121, + "name": "이즈미 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 9층", + "average_price": 33000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:50 ~ 16:30", + "phone_number": "031-5170-1980", + "score": 3.5, + "review": 22, + "duration_hours": "14:50 ~ 16:30", + "category_id": 2 + }, + { + "restaurant_id": 122, + "name": "교소바", + "address": "경기 성남시 분당구 대왕판교로645번길 36 NS홈쇼핑 별관 지하1층", + "average_price": 15166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-606-8521", + "score": 3.2, + "review": 25, + "duration_hours": "11:00 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 123, + "name": "카츠쇼신", + "address": "경기 성남시 분당구 동판교로177번길 25 아브뉴프랑 판교 2층 204호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": null, + "score": 4.2, + "review": 425, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 124, + "name": "스시히로", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 109호", + "average_price": 110000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:30 ~ 16:00", + "phone_number": null, + "score": 4.0, + "review": 27, + "duration_hours": "14:30 ~ 16:00", + "category_id": 2 + }, + { + "restaurant_id": 125, + "name": "하츠", + "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움 라스트리트 상가동 1층 111호", + "average_price": 7760, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-8039-7776", + "score": 3.8, + "review": 30, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 126, + "name": "고쿠텐 판교점", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 B104,B105호", + "average_price": 12000, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": "031-8039-5747", + "score": 0.0, + "review": 61, + "duration_hours": "14:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 127, + "name": "진가와 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20", + "average_price": 10000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 20:00", + "phone_number": "031-5170-1011", + "score": 2.6, + "review": 51, + "duration_hours": "10:30 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 128, + "name": "스시나나", + "address": "경기 성남시 분당구 판교공원로1길 61", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 14:50 ~ 17:30", + "phone_number": "031-707-1626", + "score": 4.6, + "review": 73, + "duration_hours": "14:50 ~ 17:30", + "category_id": 2 + }, + { + "restaurant_id": 129, + "name": "정돈 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 9층", + "average_price": 19000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-5170-2896", + "score": 4.1, + "review": 556, + "duration_hours": "10:30 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 130, + "name": "하코야 판교아브뉴프랑점", + "address": "경기 성남시 분당구 동판교로177번길 25 아브뉴프랑 2층 222호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": null, + "score": 2.7, + "review": 45, + "duration_hours": "11:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 131, + "name": "미도인 판교테크원", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 지하1층 31호", + "average_price": 12920, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-601-7407", + "score": 3.3, + "review": 0, + "duration_hours": "11:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 132, + "name": "마츠노하나 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 16200, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 20:30", + "phone_number": "031-5170-2032", + "score": 3.8, + "review": 406, + "duration_hours": "10:30 ~ 20:30", + "category_id": 2 + }, + { + "restaurant_id": 133, + "name": "쿄다이라멘", + "address": "경기 성남시 분당구 판교공원로5길 1", + "average_price": 8333, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:00", + "phone_number": "031-607-1396", + "score": 3.7, + "review": 142, + "duration_hours": "11:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 134, + "name": "고다이주방 판교본점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 B102호", + "average_price": 10000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,금,일 15:00 ~ 17:00", + "phone_number": "031-698-4945", + "score": 5.0, + "review": 7, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 135, + "name": "정직유부 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 31 1층 123호", + "average_price": 5942, + "caution": "배달가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": "031-705-7911", + "score": 5.0, + "review": 1, + "duration_hours": "10:30 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 136, + "name": "코이라멘 판교점", + "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 지하층 B113호", + "average_price": 7700, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 20:00", + "phone_number": "031-698-2979", + "score": 3.0, + "review": 12, + "duration_hours": "11:00 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 137, + "name": "이황식당", + "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 1층 104호", + "average_price": 10428, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": null, + "score": 3.9, + "review": 75, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 138, + "name": "미스터빠삭 서판교점", + "address": "경기 성남시 분당구 운중로 140 101,102호", + "average_price": 9571, + "caution": "배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:50 ~ 22:00", + "phone_number": "031-707-1123", + "score": 3.1, + "review": 19, + "duration_hours": "10:50 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 139, + "name": "우쿠야 유스페이스점", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 20:00", + "phone_number": "031-628-1966", + "score": 3.3, + "review": 6, + "duration_hours": "11:00 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 140, + "name": "아이가사", + "address": "경기 성남시 분당구 판교역로192번길 22 판교효성해링턴타워 1층 118호", + "average_price": 24750, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": "070-8877-1194", + "score": 4.7, + "review": 24, + "duration_hours": "14:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 141, + "name": "면학", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 1층 103호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": null, + "score": 4.4, + "review": 145, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 142, + "name": "오이소", + "address": "경기 성남시 분당구 판교역로 230 지하1층 B102, B102-1호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 23:00", + "phone_number": null, + "score": 0.0, + "review": 23, + "duration_hours": "10:00 ~ 23:00", + "category_id": 2 + }, + { + "restaurant_id": 143, + "name": "본가스시 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 14833, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-2023", + "score": 2.0, + "review": 49, + "duration_hours": "10:30 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 144, + "name": "지산초밥", + "address": "경기 성남시 분당구 동판교로 52 제이스타빌딩 1층 107호", + "average_price": 12100, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:00", + "phone_number": "031-702-2001", + "score": 0.0, + "review": 0, + "duration_hours": "11:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 145, + "name": "혼키라멘", + "address": "경기 성남시 분당구 대왕판교로645번길 36 NS복합건축물 주건축물제1동 지하1층", + "average_price": 10572, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 20:30", + "phone_number": "031-606-8520", + "score": 3.6, + "review": 40, + "duration_hours": "11:00 ~ 20:30", + "category_id": 2 + }, + { + "restaurant_id": 146, + "name": "리윤스시이도&구전동화 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 호반써밋플레이스 지하1층 B101호", + "average_price": 97500, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 17:30 ~ 20:30", + "phone_number": "031-707-5563", + "score": 4.5, + "review": 95, + "duration_hours": "17:30 ~ 20:30", + "category_id": 2 + }, + { + "restaurant_id": 147, + "name": "모모야", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층 H키친", + "average_price": 14900, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-1581", + "score": 3.9, + "review": 3, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 148, + "name": "훈스시 판교M타워점", + "address": "경기 성남시 분당구 판교역로241번길 22 엠타워빌딩 107호", + "average_price": 10000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 149, + "name": "지직 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 47 SG타워 1층 102-2호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 01:00", + "phone_number": null, + "score": 4.3, + "review": 3, + "duration_hours": "17:00 ~ 01:00", + "category_id": 2 + }, + { + "restaurant_id": 150, + "name": "도제", + "address": "경기 성남시 분당구 판교역로 230", + "average_price": 4600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-698-4832", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 151, + "name": "미소야 서판교점", + "address": "경기 성남시 분당구 운중로138번길 28-7 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 20:30", + "phone_number": "031-702-3477", + "score": 3.1, + "review": 8, + "duration_hours": "11:30 ~ 20:30", + "category_id": 2 + }, + { + "restaurant_id": 152, + "name": "차차식당", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 B-119-1호", + "average_price": 12150, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 14:00 ~ 17:00", + "phone_number": null, + "score": 4.2, + "review": 23, + "duration_hours": "14:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 153, + "name": "이치노야", + "address": "경기 성남시 분당구 판교역로241번길 22", + "average_price": 23722, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": null, + "score": 5.0, + "review": 13, + "duration_hours": "14:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 154, + "name": "카레공방 판교테크노밸리점", + "address": "경기 성남시 분당구 판교역로 240", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": "031-698-2801", + "score": 4.0, + "review": 3, + "duration_hours": "14:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 155, + "name": "스시이도 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 156, + "name": "돈돈정 판교아브뉴프랑점", + "address": "경기 성남시 분당구 동판교로177번길 25 2층 203호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-708-0418", + "score": 2.8, + "review": 2, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 157, + "name": "토나리우동 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 11230, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 20:00", + "phone_number": "031-5170-1013", + "score": 2.2, + "review": 408, + "duration_hours": "10:30 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 158, + "name": "큐슈울트라아멘 판교점", + "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어 에스동 지하1층 B110호", + "average_price": 11027, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "0507-1460-0984", + "score": 3.2, + "review": 23, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 159, + "name": "부타이 3막", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 지하동", + "average_price": 15400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "0507-1345-1087", + "score": 2.5, + "review": 81, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 160, + "name": "효카츠", + "address": "경기 성남시 분당구 판교역로 240", + "average_price": 10750, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-698-1136", + "score": 5.0, + "review": 10, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 161, + "name": "우나기 강 판교점", + "address": "경기 성남시 분당구 판교역로241번길 22 1층", + "average_price": 45300, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 162, + "name": "길우동", + "address": "경기 성남시 분당구 운중로 123", + "average_price": 6916, + "caution": "포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:00", + "phone_number": null, + "score": 0.0, + "review": 2, + "duration_hours": "10:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 163, + "name": "수요리식당", + "address": "경기 성남시 분당구 판교역로 230 B동 지하1층 b126호", + "average_price": 55000, + "caution": "유의사항 정보 없음", + "convenience": "동물출입\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-697-8996", + "score": 5.0, + "review": 3, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 164, + "name": "키친쥰", + "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 지하1층 B103호", + "average_price": 11272, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-698-4407", + "score": 5.0, + "review": 33, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 165, + "name": "하코야 판교우림점", + "address": "경기 성남시 분당구 판교로255번길 9-22 판교우림 W시티 2층 219호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 3.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 166, + "name": "타코비 서판교점", + "address": "경기 성남시 분당구 운중로 124 마크시티블루 109호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 22:00", + "phone_number": "031-8016-5060", + "score": 0.0, + "review": 3, + "duration_hours": "12:00 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 167, + "name": "야끼니꾸오", + "address": "경기 성남시 분당구 대왕판교로606번길 10 1층 131호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.0, + "review": 12, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 168, + "name": "통영물회 회덮밥", + "address": "경기 성남시 분당구 판교공원로2길 38-1", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:00", + "phone_number": "050-7966-6306", + "score": 0.0, + "review": 0, + "duration_hours": "11:30 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 169, + "name": "나베모노 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 12250, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 20:00", + "phone_number": null, + "score": 1.6, + "review": 25, + "duration_hours": "10:30 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 170, + "name": "데판본가 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 12233, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-5170-1022", + "score": 3.5, + "review": 20, + "duration_hours": "10:30 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 171, + "name": "타비타비 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:00 ~ 20:30", + "phone_number": "031-5170-1000", + "score": 5.0, + "review": 1, + "duration_hours": "10:00 ~ 20:30", + "category_id": 2 + }, + { + "restaurant_id": 172, + "name": "더바다횟집", + "address": "경기 성남시 분당구 동판교로 92", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-5551", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 173, + "name": "신기소 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 58 푸르지오월드마크 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-789-3737", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 174, + "name": "요일 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-1038", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 175, + "name": "겐지야 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-1013", + "score": 3.0, + "review": 2, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 176, + "name": "도원참치 판교본점", + "address": "경기 성남시 분당구 판교역로192번길 14-2", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 23:00", + "phone_number": null, + "score": 0.0, + "review": 5, + "duration_hours": "11:00 ~ 23:00", + "category_id": 2 + }, + { + "restaurant_id": 177, + "name": "토호", + "address": "경기 성남시 분당구 판교로319번길 13", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 4.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 178, + "name": "율", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 B112호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 179, + "name": "서울마구로동 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-1013", + "score": 0.0, + "review": 6, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 180, + "name": "방가흑돈김치찜", + "address": "경기 성남시 분당구 운중로146번길 19-2", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 181, + "name": "스시노백쉐프 분당백현48호점", + "address": "경기 성남시 분당구 동판교로 52 제이스타빌딩 2층 203호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 182, + "name": "프라이빗", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 3층 316호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 183, + "name": "쿠시쿠시", + "address": "경기 성남시 분당구 판교공원로2길 62", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8017-6655", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 184, + "name": "쿠스코퍼레이션", + "address": "경기 성남시 분당구 판교역로192번길 22", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 185, + "name": "엔소쿠", + "address": "경기 성남시 분당구 동판교로52번길 17-4", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-0720", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 186, + "name": "두툼바삭가츠 판교운중점", + "address": "경기 성남시 분당구 운중로 117", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 19:00", + "phone_number": "050-4525-8082", + "score": 0.0, + "review": 0, + "duration_hours": "10:30 ~ 19:00", + "category_id": 2 + }, + { + "restaurant_id": 187, + "name": "베럴온더라이스 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-2233", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 188, + "name": "센다이", + "address": "경기 성남시 분당구 판교역로192번길 22", + "average_price": 19500, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-704-4550", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 189, + "name": "오뎅에필꼬치면", + "address": "경기 성남시 분당구 판교공원로1길 61", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-4699-1333", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 190, + "name": "엔야 동판교 직영점", + "address": "경기 성남시 분당구 판교역로2번길 33", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 191, + "name": "롤스롤스 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-1011", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 192, + "name": "나베모노by사이카보 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-1013", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 193, + "name": "봇들일식 판교점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 205호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-6122", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 194, + "name": "하이스끼", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스A동 1층 118호", + "average_price": 23500, + "caution": "포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-698-3550", + "score": 0.0, + "review": 0, + "duration_hours": "10:00 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 195, + "name": "참초가", + "address": "경기 성남시 분당구 운중로125번길 5", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 196, + "name": "수타우동겐 본점", + "address": "경기 성남시 분당구 야탑로 72 야탑시장주차장 1층 3호", + "average_price": 15000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-704-5545", + "score": 4.1, + "review": 497, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 197, + "name": "긴자 백현점", + "address": "경기 성남시 분당구 판교백현로 37", + "average_price": 35750, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-705-6606", + "score": 3.3, + "review": 85, + "duration_hours": "11:30 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 198, + "name": "사누키진우동", + "address": "경기 성남시 분당구 황새울로335번길 8 덕산빌딩 1층 104호", + "average_price": 10083, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 17:00", + "phone_number": "031-708-1357", + "score": 4.0, + "review": 288, + "duration_hours": "11:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 199, + "name": "최가돈까스", + "address": "경기 성남시 분당구 정자일로 210 동양파라곤 1단지상가 지하1층 104호", + "average_price": 12750, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-715-1104", + "score": 4.0, + "review": 101, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 200, + "name": "니고라멘", + "address": "경기 성남시 분당구 황새울로214번길 8 MS프라자 1층 107호", + "average_price": 8600, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 17:00", + "phone_number": "070-4149-2525", + "score": 3.8, + "review": 322, + "duration_hours": "14:30 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 201, + "name": "고쿠텐 서현점", + "address": "경기 성남시 분당구 황새울로335번길 5 앤타운빌딩 1층 105-1호", + "average_price": 18600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 17:30", + "phone_number": "031-696-1297", + "score": 3.2, + "review": 337, + "duration_hours": "14:30 ~ 17:30", + "category_id": 2 + }, + { + "restaurant_id": 202, + "name": "호시", + "address": "경기 성남시 분당구 분당로53번길 14", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 14:30 ~ 17:00", + "phone_number": "031-707-7682", + "score": 4.0, + "review": 126, + "duration_hours": "14:30 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 203, + "name": "유타로 서현본점", + "address": "경기 성남시 분당구 황새울로335번길 8 덕산빌딩 101호", + "average_price": 8562, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 17:00", + "phone_number": "031-708-5999", + "score": 3.1, + "review": 183, + "duration_hours": "14:30 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 204, + "name": "마초야 수내", + "address": "경기 성남시 분당구 백현로101번길 13", + "average_price": 9200, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:00", + "phone_number": "031-717-3366", + "score": 3.7, + "review": 140, + "duration_hours": "11:30 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 205, + "name": "유촌참치마을 서현점", + "address": "경기 성남시 분당구 서현로 204 1층", + "average_price": 61666, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 24:00", + "phone_number": "031-702-5588", + "score": 3.9, + "review": 17, + "duration_hours": "11:30 ~ 24:00", + "category_id": 2 + }, + { + "restaurant_id": 206, + "name": "김초생초", + "address": "경기 성남시 분당구 대왕판교로 255", + "average_price": 28000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-711-2234", + "score": 3.9, + "review": 52, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 207, + "name": "스시언", + "address": "경기 성남시 분당구 정자일로213번길 18 성원상떼뷰리젠시 201동 102호", + "average_price": 60000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 18:00", + "phone_number": "010-7132-9069", + "score": 4.4, + "review": 120, + "duration_hours": "15:00 ~ 18:00", + "category_id": 2 + }, + { + "restaurant_id": 208, + "name": "미스터스시 정자점", + "address": "경기 성남시 분당구 정자일로213번길 10 성원상떼뷰 101동 102호", + "average_price": 64333, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-714-6679", + "score": 4.2, + "review": 120, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 209, + "name": "스시료코", + "address": "경기 성남시 분당구 수내로 38 두산위브센티움1 1층 101호", + "average_price": 84166, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "031-719-2013", + "score": 4.1, + "review": 120, + "duration_hours": "15:00 ~ 17:30", + "category_id": 2 + }, + { + "restaurant_id": 210, + "name": "상무초밥 분당서현점", + "address": "경기 성남시 분당구 황새울로 348 세현주차빌딩 1층", + "average_price": 11000, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:50 ~ 21:30", + "phone_number": "031-781-0077", + "score": 4.1, + "review": 0, + "duration_hours": "10:50 ~ 21:30", + "category_id": 2 + }, + { + "restaurant_id": 211, + "name": "돈까스클럽 성남시청점", + "address": "경기 성남시 수정구 탄천로307번길 16", + "average_price": 13970, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 15:30 ~ 16:30", + "phone_number": "031-751-1769", + "score": 3.2, + "review": 111, + "duration_hours": "15:30 ~ 16:30", + "category_id": 2 + }, + { + "restaurant_id": 212, + "name": "코이라멘 지로2호점", + "address": "경기 성남시 분당구 정자일로198번길 15 제나프라자 111호", + "average_price": 10000, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-715-0869", + "score": 3.2, + "review": 11, + "duration_hours": "11:00 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 213, + "name": "사카나", + "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 1층 104호", + "average_price": 20200, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:30 ~ 17:00", + "phone_number": "031-714-0968", + "score": 4.8, + "review": 79, + "duration_hours": "14:30 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 214, + "name": "미카도", + "address": "경기 성남시 분당구 성남대로343번길 10-6 동원빌딩 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:00 ~ 17:00", + "phone_number": "031-712-5288", + "score": 4.3, + "review": 7, + "duration_hours": "14:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 215, + "name": "블루핀튜나", + "address": "경기 성남시 분당구 황새울로200번길 28 오너스타워 103,104호", + "average_price": 61200, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-712-9996", + "score": 4.2, + "review": 32, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 216, + "name": "스시강", + "address": "경기 성남시 분당구 수내로 38 1층", + "average_price": 5300, + "caution": "예약가능, 포장가능", + "convenience": "WIFI", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-711-9907", + "score": 3.9, + "review": 17, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 217, + "name": "스시홍", + "address": "경기 성남시 분당구 황새울로360번길 28 은성프라자 1층 109~111호", + "average_price": 22850, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-706-7077", + "score": 3.8, + "review": 37, + "duration_hours": "11:30 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 218, + "name": "주누돈까스냉면", + "address": "경기 성남시 분당구 서현로210번길 14", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:30 ~ 16:30", + "phone_number": "031-706-7749", + "score": 3.4, + "review": 121, + "duration_hours": "15:30 ~ 16:30", + "category_id": 2 + }, + { + "restaurant_id": 219, + "name": "스시고산", + "address": "경기 성남시 분당구 백현로101번길 16 2층", + "average_price": 40000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": "031-717-4353", + "score": 3.3, + "review": 88, + "duration_hours": "14:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 220, + "name": "참치랜드", + "address": "경기 성남시 분당구 수내로46번길 11 대덕글로리빌딩 1층 103, 104호", + "average_price": 46666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-713-9429", + "score": 0.0, + "review": 126, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 221, + "name": "속초오징어어시장", + "address": "경기 성남시 분당구 느티로 27", + "average_price": 38000, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 24:00", + "phone_number": "031-711-8909", + "score": 3.0, + "review": 24, + "duration_hours": "11:00 ~ 24:00", + "category_id": 2 + }, + { + "restaurant_id": 222, + "name": "스시앤스시 본점", + "address": "경기 성남시 분당구 백현로101번길 11 1층", + "average_price": 5833, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-717-8812", + "score": 2.8, + "review": 41, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 223, + "name": "은뜸", + "address": "경기 성남시 분당구 분당로53번길 15 산호트윈스 1층 107~109호", + "average_price": 21600, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:30 ~ 17:00", + "phone_number": "070-8233-7732", + "score": 3.8, + "review": 0, + "duration_hours": "15:30 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 224, + "name": "나지미돈부리", + "address": "경기 성남시 분당구 황새울로200번길 32 삼라마이다스빌 1층 101호", + "average_price": 18100, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-711-3938", + "score": 3.0, + "review": 60, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 225, + "name": "부성초밥", + "address": "경기 성남시 분당구 서현로210번길 20 코코프라자 1층 105호", + "average_price": 12833, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-703-1999", + "score": 0.0, + "review": 185, + "duration_hours": "11:00 ~ 21:30", + "category_id": 2 + }, + { + "restaurant_id": 226, + "name": "차슈멘연구소", + "address": "경기 성남시 분당구 황새울로330번길 16 천지오피스텔 2층 203, 204호", + "average_price": 7483, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-709-3292", + "score": 3.1, + "review": 64, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 227, + "name": "미카도스시 정자점", + "address": "경기 성남시 분당구 느티로 16 젤존타워 1층 113,114호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:00", + "phone_number": "031-712-5656", + "score": 3.1, + "review": 8, + "duration_hours": "14:30 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 228, + "name": "스시이안앤 분당서현점", + "address": "경기 성남시 분당구 서현로 184 2층 209호", + "average_price": 17733, + "caution": "포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "0507-1309-7443", + "score": 3.7, + "review": 0, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 229, + "name": "라멘모토", + "address": "경기 성남시 분당구 정자일로 220 1층", + "average_price": 6272, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 17:00", + "phone_number": null, + "score": 4.1, + "review": 48, + "duration_hours": "14:30 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 230, + "name": "나라돈까스", + "address": "경기 성남시 분당구 서현로 192", + "average_price": 6625, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:30 ~ 21:00", + "phone_number": "031-701-4743", + "score": 4.7, + "review": 63, + "duration_hours": "10:30 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 231, + "name": "연돈볼카츠 분당서현점", + "address": "경기 성남시 분당구 서현로 184 1층 105호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:30", + "phone_number": null, + "score": 3.0, + "review": 17, + "duration_hours": "11:30 ~ 22:30", + "category_id": 2 + }, + { + "restaurant_id": 232, + "name": "바삭돈카츠 서현점", + "address": "경기 성남시 분당구 분당로53번길 14", + "average_price": 11666, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:50 ~ 21:20", + "phone_number": "031-706-5795", + "score": 4.3, + "review": 222, + "duration_hours": "10:50 ~ 21:20", + "category_id": 2 + }, + { + "restaurant_id": 233, + "name": "오늘초밥 분당서현점", + "address": "경기 성남시 분당구 분당로53번길 12 서현나산플라자 2층 210~215호", + "average_price": 1790, + "caution": "배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-781-1334", + "score": 3.9, + "review": 88, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 234, + "name": "참치플러스", + "address": "경기 성남시 분당구 황새울로330번길 16 지하1층", + "average_price": 41166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 23:00", + "phone_number": "031-702-3738", + "score": 4.4, + "review": 12, + "duration_hours": "17:00 ~ 23:00", + "category_id": 2 + }, + { + "restaurant_id": 235, + "name": "브라운돈까스 서현점", + "address": "경기 성남시 분당구 황새울로342번길 11 금호리빙스텔 2층 206호", + "average_price": 9200, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 21:00", + "phone_number": "031-781-0223", + "score": 3.2, + "review": 26, + "duration_hours": "10:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 236, + "name": "효세이로무시", + "address": "경기 성남시 분당구 느티로 2 102,103호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 17:30", + "phone_number": "031-712-2755", + "score": 3.0, + "review": 5, + "duration_hours": "14:30 ~ 17:30", + "category_id": 2 + }, + { + "restaurant_id": 237, + "name": "생선가게 1호점", + "address": "경기 성남시 분당구 대왕판교로 255 1층", + "average_price": 39400, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,금,토", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,금,토 15:00 ~ 17:00", + "phone_number": "031-702-0300", + "score": 3.7, + "review": 20, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 238, + "name": "돈까스브라더스", + "address": "경기 성남시 분당구 내정로165번길 38 금호상가 지하1층 20호", + "average_price": 9000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 16:30", + "phone_number": null, + "score": 3.9, + "review": 13, + "duration_hours": "15:00 ~ 16:30", + "category_id": 2 + }, + { + "restaurant_id": 239, + "name": "라멘시간", + "address": "경기 성남시 분당구 느티로 16", + "average_price": 7916, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 16:30", + "phone_number": "031-716-6231", + "score": 3.1, + "review": 326, + "duration_hours": "15:00 ~ 16:30", + "category_id": 2 + }, + { + "restaurant_id": 240, + "name": "스시니와", + "address": "경기 성남시 분당구 느티로51번길 4-9", + "average_price": 14600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수요일", + "is_deleted": "\u0000", + "operating_hour": "수요일", + "phone_number": "031-713-7634", + "score": 4.1, + "review": 8, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 241, + "name": "스시쵸우센", + "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 1층 104호", + "average_price": 65000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-704-0207", + "score": 3.2, + "review": 39, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 242, + "name": "미도인 서현", + "address": "경기 성남시 분당구 분당로53번길 10 2층 202호", + "average_price": 13600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:00", + "phone_number": "031-703-1990", + "score": 0.0, + "review": 0, + "duration_hours": "11:30 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 243, + "name": "돈가스에미치다 수내본점", + "address": "경기 성남시 분당구 백현로101번길 11 동현프라자 1층", + "average_price": 9812, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-721-0307", + "score": 2.6, + "review": 151, + "duration_hours": "11:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 244, + "name": "참치대가 서현점", + "address": "경기 성남시 분당구 서현로 192 야베스밸리 2층 204호", + "average_price": 35600, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 22:30", + "phone_number": "031-708-3733", + "score": 4.8, + "review": 142, + "duration_hours": "11:30 ~ 22:30", + "category_id": 2 + }, + { + "restaurant_id": 245, + "name": "오마카세오사이초밥 정자역점", + "address": "경기 성남시 분당구 정자일로213번길 10 성원상떼뷰리젠시 101동 107호", + "average_price": 24000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:00", + "phone_number": "0507-1490-0544", + "score": 4.1, + "review": 0, + "duration_hours": "11:30 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 246, + "name": "동경키친슈", + "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 2층", + "average_price": 8600, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 16:30", + "phone_number": null, + "score": 4.6, + "review": 63, + "duration_hours": "14:30 ~ 16:30", + "category_id": 2 + }, + { + "restaurant_id": 247, + "name": "니꼬", + "address": "경기 성남시 분당구 황새울로 325 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 17:00", + "phone_number": null, + "score": 4.3, + "review": 23, + "duration_hours": "14:30 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 248, + "name": "긴자료코 수내점", + "address": "경기 성남시 분당구 황새울로258번길 10-9 1층 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 16:00", + "phone_number": "031-711-5045", + "score": 4.0, + "review": 39, + "duration_hours": "15:00 ~ 16:00", + "category_id": 2 + }, + { + "restaurant_id": 249, + "name": "호랑이굴 서현점", + "address": "경기 성남시 분당구 서현로 204 엘지에클라트2 1층 102호", + "average_price": 15900, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-703-5582", + "score": 4.1, + "review": 0, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 250, + "name": "맛집돈까스소바", + "address": "경기 성남시 분당구 황새울로258번길 10-9 2층", + "average_price": 7000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-712-6625", + "score": 4.3, + "review": 22, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 251, + "name": "오끼참치 분당본점", + "address": "경기 성남시 분당구 서현로210번길 2 2층", + "average_price": 13700, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 16:00", + "phone_number": "031-711-3735", + "score": 3.3, + "review": 16, + "duration_hours": "14:00 ~ 16:00", + "category_id": 2 + }, + { + "restaurant_id": 252, + "name": "스시하루쿠", + "address": "경기 성남시 분당구 판교대장로7길 5-19 1층 102호", + "average_price": 115000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 18:00", + "phone_number": "031-713-3562", + "score": 5.0, + "review": 52, + "duration_hours": "15:00 ~ 18:00", + "category_id": 2 + }, + { + "restaurant_id": 253, + "name": "에도마에텐동하마다 서현점", + "address": "경기 성남시 분당구 분당로53번길 10 동호프라자 2층 201호", + "average_price": 16500, + "caution": "배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-701-7233", + "score": 3.8, + "review": 81, + "duration_hours": "11:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 254, + "name": "울진항", + "address": "경기 성남시 분당구 서현로 170 분당풍림아이원플러스오피스텔 212호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 2, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 255, + "name": "바바스시 비스트로", + "address": "경기 성남시 분당구 황새울로 315 대현빌딩 2층 203호", + "average_price": 27875, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-701-9913", + "score": 4.1, + "review": 18, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 256, + "name": "서현초밥", + "address": "경기 성남시 분당구 서현로 192 야베스밸리 1층 102호", + "average_price": 38000, + "caution": "예약가능, 포장가능", + "convenience": "동물출입\n주차\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:30 ~ 16:30", + "phone_number": null, + "score": 4.3, + "review": 18, + "duration_hours": "15:30 ~ 16:30", + "category_id": 2 + }, + { + "restaurant_id": 257, + "name": "참치대가", + "address": "경기 성남시 분당구 백현로101번길 13", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:00", + "phone_number": "031-717-3733", + "score": 4.3, + "review": 7, + "duration_hours": "14:30 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 258, + "name": "수내초밥", + "address": "경기 성남시 분당구 수내로46번길 11 대덕글로리 1층 102호", + "average_price": 15142, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-711-3721", + "score": 4.8, + "review": 71, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 259, + "name": "참치정육점하이튜나", + "address": "경기 성남시 분당구 백현로 152", + "average_price": 57714, + "caution": "배달가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 15:00 ~ 24:00", + "phone_number": "031-717-8237", + "score": 4.0, + "review": 0, + "duration_hours": "15:00 ~ 24:00", + "category_id": 2 + }, + { + "restaurant_id": 260, + "name": "역전우동0410 분당서현점", + "address": "경기 성남시 분당구 서현로 192 야베스벨리 109호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 22:00", + "phone_number": "070-4236-8288", + "score": 2.7, + "review": 9, + "duration_hours": "09:00 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 261, + "name": "금호생선초밥", + "address": "경기 성남시 분당구 내정로165번길 38 금호행복시장 2층", + "average_price": 20600, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:30 ~ 21:00", + "phone_number": "031-711-8093", + "score": 2.5, + "review": 5, + "duration_hours": "09:30 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 262, + "name": "미아리우동집 서현점", + "address": "경기 성남시 분당구 황새울로 337 1층", + "average_price": 6366, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 20:30", + "phone_number": "031-706-5951", + "score": 2.0, + "review": 8, + "duration_hours": "10:00 ~ 20:30", + "category_id": 2 + }, + { + "restaurant_id": 263, + "name": "다께야", + "address": "경기 성남시 분당구 분당로53번길 19 피아자코코 106호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 16:00", + "phone_number": "031-697-8776", + "score": 4.3, + "review": 10, + "duration_hours": "15:00 ~ 16:00", + "category_id": 2 + }, + { + "restaurant_id": 264, + "name": "정직유부 수내점", + "address": "경기 성남시 분당구 내정로165번길 50 1층 103호", + "average_price": 5942, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": "031-717-7911", + "score": 4.5, + "review": 3, + "duration_hours": "10:30 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 265, + "name": "야미카츠 판교점", + "address": "경기 성남시 수정구 대왕판교로 815 기업지원허브 1층 106호", + "average_price": 12900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "0507-1324-4790", + "score": 4.7, + "review": 55, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 266, + "name": "하루초밥 이매점", + "address": "경기 성남시 분당구 판교로 442 우일프라자 1층 102호", + "average_price": 8009, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 17:00", + "phone_number": "070-7672-3222", + "score": 4.9, + "review": 1, + "duration_hours": "14:30 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 267, + "name": "신독", + "address": "경기 성남시 분당구 성남대로 381 폴라리스빌딩 1층 104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 18:00 ~ 24:00", + "phone_number": "010-2678-0381", + "score": 0.0, + "review": 41, + "duration_hours": "18:00 ~ 24:00", + "category_id": 2 + }, + { + "restaurant_id": 268, + "name": "백소정 서현역지점", + "address": "경기 성남시 분당구 분당로53번길 12 1층", + "average_price": 0, + "caution": "예약불가, 포장가능", + "convenience": "주차\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": null, + "score": 2.8, + "review": 76, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 269, + "name": "후토루 분당수내점", + "address": "경기 성남시 분당구 황새울로200번길 9-7 1층", + "average_price": 11531, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:00", + "phone_number": "031-726-2587", + "score": 5.0, + "review": 144, + "duration_hours": "11:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 270, + "name": "가츠몽", + "address": "경기 성남시 분당구 성남대로 389", + "average_price": 9285, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:00", + "phone_number": "031-716-7990", + "score": 4.2, + "review": 2, + "duration_hours": "10:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 271, + "name": "멘츠루 서현점", + "address": "경기 성남시 분당구 서현로210번길 14 유성트윈프라자2차 1층 110-111호", + "average_price": 11785, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-709-9289", + "score": 4.1, + "review": 22, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 272, + "name": "쿠시야", + "address": "경기 성남시 분당구 황새울로342번길 11", + "average_price": 15600, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 01:00", + "phone_number": "031-707-9859", + "score": 2.8, + "review": 71, + "duration_hours": "17:00 ~ 01:00", + "category_id": 2 + }, + { + "restaurant_id": 273, + "name": "가츠몽 서현점", + "address": "경기 성남시 분당구 중앙공원로39번길 49 지엔느상가 1층 104호", + "average_price": 9833, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:30 ~ 16:30", + "phone_number": "031-704-1950", + "score": 4.7, + "review": 10, + "duration_hours": "15:30 ~ 16:30", + "category_id": 2 + }, + { + "restaurant_id": 274, + "name": "오로지라멘 판교대장점", + "address": "경기 성남시 분당구 판교대장로7길 6-23 1층 101-1호", + "average_price": 10333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 13:00", + "phone_number": "031-711-0701", + "score": 0.0, + "review": 4, + "duration_hours": "11:00 ~ 13:00", + "category_id": 2 + }, + { + "restaurant_id": 275, + "name": "미어가 참치전문점", + "address": "경기 성남시 분당구 백현로101번길 20 그린프라자 201호", + "average_price": 93333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 12:00 ~ 22:00", + "phone_number": "031-719-7930", + "score": 4.6, + "review": 0, + "duration_hours": "12:00 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 276, + "name": "삼미당 정자점", + "address": "경기 성남시 분당구 성남대로343번길 12-8", + "average_price": 11875, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": null, + "score": 4.3, + "review": 50, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 277, + "name": "청수", + "address": "경기 성남시 분당구 정자일로 234 태남프라자 103,104호", + "average_price": 0, + "caution": "예약가능", + "convenience": "WIFI\n동물출입\n주차\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 20:30", + "phone_number": "031-717-2474", + "score": 4.7, + "review": 12, + "duration_hours": "11:00 ~ 20:30", + "category_id": 2 + }, + { + "restaurant_id": 278, + "name": "스시바라", + "address": "경기 성남시 분당구 내정로165번길 38", + "average_price": 8200, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-712-8442", + "score": 4.8, + "review": 3, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 279, + "name": "토끼정", + "address": "경기 성남시 수정구 창업로 17", + "average_price": 0, + "caution": "예약불가, 포장불가", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.5, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 280, + "name": "돈화당 분당서현점", + "address": "경기 성남시 분당구 분당로53번길 15 산호트윈스 1층 102~103,105호", + "average_price": 12081, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-724-0278", + "score": 3.8, + "review": 18, + "duration_hours": "11:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 281, + "name": "참다랑어막주는집 참치정육점 분당서현점", + "address": "경기 성남시 분당구 중앙공원로39번길 49 1층 107-2호", + "average_price": 55000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 23:00", + "phone_number": "031-701-3963", + "score": 4.7, + "review": 1, + "duration_hours": "15:00 ~ 23:00", + "category_id": 2 + }, + { + "restaurant_id": 282, + "name": "황작가", + "address": "경기 성남시 분당구 서현로210번길 10 다두프라자 3층 308호", + "average_price": 27150, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 02:00", + "phone_number": "031-703-3682", + "score": 3.8, + "review": 91, + "duration_hours": "17:00 ~ 02:00", + "category_id": 2 + }, + { + "restaurant_id": 283, + "name": "미소야 분당서현점", + "address": "경기 성남시 분당구 분당로53번길 13 산호트윈스11 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-706-0277", + "score": 1.7, + "review": 27, + "duration_hours": "11:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 284, + "name": "소소한식당 정자점", + "address": "경기 성남시 분당구 정자일로 230 동양파라곤아파트 106동 상가 1층 117호", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-715-5358", + "score": 3.7, + "review": 10, + "duration_hours": "11:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 285, + "name": "다께야", + "address": "경기 성남시 분당구 백현로101번길 20 그린프라자빌딩 1층 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 3.9, + "review": 7, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 286, + "name": "세희네돈까스", + "address": "경기 성남시 분당구 판교대장로7길 16 힐스테이트 엘포레 6단지 상가 1층 107호", + "average_price": 13400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 14:00 ~ 17:30", + "phone_number": null, + "score": 4.7, + "review": 43, + "duration_hours": "14:00 ~ 17:30", + "category_id": 2 + }, + { + "restaurant_id": 287, + "name": "카레모리", + "address": "경기 성남시 분당구 황새울로360번길 28 은성프라자 2층 208호", + "average_price": 8000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 20:00", + "phone_number": null, + "score": 4.8, + "review": 44, + "duration_hours": "11:30 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 288, + "name": "은강참치", + "address": "경기 성남시 분당구 성남대로772번길 5 지하1층", + "average_price": 12666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": "031-703-3566", + "score": 4.0, + "review": 6, + "duration_hours": "14:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 289, + "name": "은화수식당 분당야탑점", + "address": "경기 성남시 분당구 야탑로 22 1층", + "average_price": 10000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:30 ~ 17:00", + "phone_number": "031-706-5150", + "score": 5.0, + "review": 3, + "duration_hours": "14:30 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 290, + "name": "오도루네코", + "address": "경기 성남시 분당구 내정로173번길 49 궁전프라자3 1층 128호", + "average_price": 0, + "caution": "포장가능", + "convenience": "WIFI\n주차\n흡연실", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:30 ~ 20:00", + "phone_number": "070-7769-2074", + "score": 5.0, + "review": 14, + "duration_hours": "11:30 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 291, + "name": "에바돈가츠 성남고등점", + "address": "경기 성남시 수정구 청계산로4길 59 109호", + "average_price": 14900, + "caution": "배달가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-8023-9876", + "score": 4.2, + "review": 9, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 292, + "name": "하치로돈부리", + "address": "경기 성남시 분당구 분당로53번길 14 1층", + "average_price": 10000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 16:30", + "phone_number": null, + "score": 3.7, + "review": 216, + "duration_hours": "14:30 ~ 16:30", + "category_id": 2 + }, + { + "restaurant_id": 293, + "name": "길동우동 정자점", + "address": "경기 성남시 분당구 성남대로 389 폴라리스빌딩2 1층 110호", + "average_price": 7750, + "caution": "포장가능", + "convenience": "WIFI\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-719-5989", + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 294, + "name": "101번지남산돈까스 판교파미어스몰점", + "address": "경기 성남시 수정구 창업로 17 지하1층", + "average_price": 11906, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 20:00", + "phone_number": null, + "score": 1.1, + "review": 40, + "duration_hours": "11:00 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 295, + "name": "도시참치", + "address": "경기 성남시 분당구 느티로51번길 6 1층 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 16:00 ~ 03:00", + "phone_number": "010-4762-1171", + "score": 4.1, + "review": 21, + "duration_hours": "16:00 ~ 03:00", + "category_id": 2 + }, + { + "restaurant_id": 296, + "name": "이백장돈가스 분당아름마을점", + "address": "경기 성남시 분당구 판교로 437 숭문상가 1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-707-0290", + "score": 4.4, + "review": 4, + "duration_hours": "11:00 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 297, + "name": "하루", + "address": "경기 성남시 분당구 백현로150번길 5 1층 103호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 23:00", + "phone_number": "031-714-7222", + "score": 4.7, + "review": 5, + "duration_hours": "11:30 ~ 23:00", + "category_id": 2 + }, + { + "restaurant_id": 298, + "name": "카츠살룬", + "address": "경기 성남시 분당구 느티로69번길 9 1층", + "average_price": 13666, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": null, + "score": 4.6, + "review": 11, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 299, + "name": "육덮밥", + "address": "경기 성남시 분당구 내정로173번길 11", + "average_price": 8500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 20:00", + "phone_number": "070-8827-0348", + "score": 4.8, + "review": 0, + "duration_hours": "11:00 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 300, + "name": "타코비 분당점", + "address": "경기 성남시 분당구 황새울로360번길 12 1층 110호", + "average_price": 0, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 23:00", + "phone_number": null, + "score": 4.8, + "review": 35, + "duration_hours": "12:00 ~ 23:00", + "category_id": 2 + }, + { + "restaurant_id": 301, + "name": "면식당 분당서현점", + "address": "경기 성남시 분당구 서현로210번길 14 유성트윈프라자2차 2층202호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-702-1242", + "score": 5.0, + "review": 20, + "duration_hours": "11:00 ~ 23:00", + "category_id": 2 + }, + { + "restaurant_id": 302, + "name": "석스시", + "address": "경기 성남시 분당구 성남대로 393", + "average_price": 25000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 303, + "name": "바돈바돈가스", + "address": "경기 성남시 수정구 창업로 43", + "average_price": 10527, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-726-8887", + "score": 3.0, + "review": 9, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 304, + "name": "라라멘 수내점", + "address": "경기 성남시 분당구 황새울로258번길 10-9 영성라벤더 1층 102호", + "average_price": 7250, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-711-9530", + "score": 3.8, + "review": 8, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 305, + "name": "미소야 분당정자파크뷰점", + "address": "경기 성남시 분당구 정자일로 248 1층 110호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-718-2021", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 306, + "name": "일식당 소솜", + "address": "경기 성남시 분당구 백현로101번길 16", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-4179-2392", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 307, + "name": "카츠젠", + "address": "경기 성남시 분당구 내정로173번길 11", + "average_price": 8000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 20:20", + "phone_number": "031-717-7709", + "score": 3.6, + "review": 2, + "duration_hours": "11:00 ~ 20:20", + "category_id": 2 + }, + { + "restaurant_id": 308, + "name": "시마스시 롯데백화점분당점", + "address": "경기 성남시 분당구 황새울로200번길 45 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-738-2021", + "score": 3.0, + "review": 9, + "duration_hours": "10:30 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 309, + "name": "시계토끼", + "address": "경기 성남시 분당구 느티로 27 하나프라자 208호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 20:00", + "phone_number": "031-8022-6333", + "score": 3.8, + "review": 101, + "duration_hours": "11:00 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 310, + "name": "술마실고양", + "address": "경기 성남시 분당구 서현로210번길 16 유성트윈프라자 1차 302호", + "average_price": 14500, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 02:00", + "phone_number": "0502-5551-0585", + "score": 5.0, + "review": 3, + "duration_hours": "17:00 ~ 02:00", + "category_id": 2 + }, + { + "restaurant_id": 311, + "name": "호키네유부 판교점", + "address": "경기 성남시 수정구 창업로 18 C1동 1층 116호", + "average_price": 9200, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-757-0320", + "score": 2.6, + "review": 6, + "duration_hours": "10:30 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 312, + "name": "사보텐 AK분당점", + "address": "경기 성남시 분당구 황새울로360번길 42 7층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 19:55", + "phone_number": "031-8023-2777", + "score": 2.0, + "review": 12, + "duration_hours": "10:30 ~ 19:55", + "category_id": 2 + }, + { + "restaurant_id": 313, + "name": "와라쿠샤샤", + "address": "경기 성남시 분당구 황새울로360번길 42 AK플라자 분당점 지하1층", + "average_price": 14166, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 314, + "name": "고향카츠 판교테크노밸리점", + "address": "경기 성남시 수정구 창업로 18 파미어스몰 C1동 1층 114,115호", + "average_price": 22900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.9, + "review": 5, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 315, + "name": "무다이 분당점", + "address": "경기 성남시 분당구 내정로165번길 38 금호상가 지하1층 58,60호", + "average_price": 10500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 19:30", + "phone_number": "070-7720-7235", + "score": 4.5, + "review": 15, + "duration_hours": "11:00 ~ 19:30", + "category_id": 2 + }, + { + "restaurant_id": 316, + "name": "백소정 정자역점", + "address": "경기 성남시 분당구 정자일로 234 태남프라자 101~102호", + "average_price": 13266, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": null, + "score": 3.8, + "review": 15, + "duration_hours": "11:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 317, + "name": "히노아지 판교파미어스몰점", + "address": "경기 성남시 수정구 창업로 17 판교아이스퀘어 B동 201-2호", + "average_price": 13500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-719-4161", + "score": 0.0, + "review": 8, + "duration_hours": "15:00 ~ 17:00", + "category_id": 2 + }, + { + "restaurant_id": 318, + "name": "이자카야엔", + "address": "경기 성남시 분당구 정자일로 220 1층 119호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 18:00 ~ 02:00", + "phone_number": "031-715-1520", + "score": 4.0, + "review": 0, + "duration_hours": "18:00 ~ 02:00", + "category_id": 2 + }, + { + "restaurant_id": 319, + "name": "스시아지 AK플라자 분당점", + "address": "경기 성남시 분당구 황새울로360번길 42 7층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8023-2700", + "score": 1.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 320, + "name": "하루엔소쿠 성남고등지구점", + "address": "경기 성남시 수정구 청계산로 686 반도아이비밸리 1층 104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:00", + "phone_number": "031-751-1110", + "score": 4.3, + "review": 5, + "duration_hours": "11:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 321, + "name": "돈까스공방&파스타", + "address": "경기 성남시 분당구 내정로173번길 11", + "average_price": 8625, + "caution": "배달가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 322, + "name": "미카동", + "address": "경기 성남시 분당구 황새울로 337 1층 107호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 21:00", + "phone_number": null, + "score": 5.0, + "review": 5, + "duration_hours": "10:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 323, + "name": "길동우동 고등점", + "address": "경기 성남시 수정구 청계산로 689 지엠프라자 1층 108호", + "average_price": 6300, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:30 ~ 20:30", + "phone_number": "031-757-3424", + "score": 3.2, + "review": 5, + "duration_hours": "10:30 ~ 20:30", + "category_id": 2 + }, + { + "restaurant_id": 324, + "name": "왕돈까스", + "address": "경기 성남시 분당구 내정로165번길 38 양지마을아파트 602동상가 2층 217호", + "average_price": 14000, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "주차\n휠체어사용", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-712-3339", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 325, + "name": "돼지돼지 수제왕돈가스", + "address": "경기 성남시 분당구 내정로165번길 35", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-713-4234", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 326, + "name": "깡우동 분당수내역점", + "address": "경기 성남시 분당구 수내로46번길 11 대덕글로리 107호", + "average_price": 10500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 327, + "name": "조나단돈까스", + "address": "경기 성남시 분당구 내정로173번길 11 주상복합상가 603동 B03호", + "average_price": 4500, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 21:00", + "phone_number": null, + "score": 4.0, + "review": 125, + "duration_hours": "11:00 ~ 21:00", + "category_id": 2 + }, + { + "restaurant_id": 328, + "name": "카레공방 수내점", + "address": "경기 성남시 분당구 내정로165번길 38 602동 지하1층 29호", + "average_price": 9866, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 19:30", + "phone_number": null, + "score": 4.0, + "review": 17, + "duration_hours": "11:30 ~ 19:30", + "category_id": 2 + }, + { + "restaurant_id": 329, + "name": "하즈벤 AK플라자 분당점", + "address": "경기 성남시 분당구 황새울로360번길 42 지하1층", + "average_price": 15176, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": null, + "score": 2.7, + "review": 3, + "duration_hours": "10:30 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 330, + "name": "나고야", + "address": "경기 성남시 수정구 대왕판교로 846", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-721-9903", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 331, + "name": "유브유부 분당점", + "address": "경기 성남시 분당구 황새울로200번길 45 롯데백화점 분당점 지하1충", + "average_price": 6660, + "caution": "포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-738-2002", + "score": 1.0, + "review": 1, + "duration_hours": "10:30 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 332, + "name": "거제도참치", + "address": "경기 성남시 분당구 판교대장로7길 15-15 103호", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 24:00", + "phone_number": "031-711-2919", + "score": 0.0, + "review": 0, + "duration_hours": "16:00 ~ 24:00", + "category_id": 2 + }, + { + "restaurant_id": 333, + "name": "하루엔소쿠 이매점", + "address": "경기 성남시 분당구 양현로 220 상가B동 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 334, + "name": "하루엔소쿠 판교점", + "address": "경기 성남시 수정구 창업로 42", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 20:00", + "phone_number": null, + "score": 1.0, + "review": 7, + "duration_hours": "10:30 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 335, + "name": "다쯔미 AK분당점", + "address": "경기 성남시 분당구 황새울로360번길 42 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-781-2660", + "score": 3.7, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 336, + "name": "하루엔소쿠 분당이매점", + "address": "경기 성남시 분당구 양현로 220 상가B동 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-8211-3266", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 337, + "name": "참치마연어야", + "address": "경기 성남시 분당구 내정로173번길 5 궁전쇼핑타운 106호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-714-3737", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 338, + "name": "용우동 하이패스센터점", + "address": "경기 성남시 분당구 궁내동 257-2", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 339, + "name": "미야코", + "address": "경기 성남시 분당구 백현로101번길 16 대덕프라자 1층 111호", + "average_price": 11444, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 16:30", + "phone_number": "010-8846-4948", + "score": 3.0, + "review": 2, + "duration_hours": "14:30 ~ 16:30", + "category_id": 2 + }, + { + "restaurant_id": 340, + "name": "이학복집", + "address": "경기 성남시 분당구 성남대로772번길 8-1", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 341, + "name": "허수아비돈까스 분당점", + "address": "경기 성남시 분당구 분당로53번길 10 동호프라자2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 342, + "name": "사조참치 정자점", + "address": "경기 성남시 분당구 느티로 27", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 343, + "name": "백두제면소 수내점", + "address": "경기 성남시 분당구 내정로173번길 11 양지마을 603동 지하1층 B03호", + "average_price": 7600, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 20:30", + "phone_number": "0507-1442-7654", + "score": 0.0, + "review": 0, + "duration_hours": "11:00 ~ 20:30", + "category_id": 2 + }, + { + "restaurant_id": 344, + "name": "놈즈", + "address": "경기 성남시 분당구 황새울로360번길 12 대명프라자320호", + "average_price": 0, + "caution": "정보 없음", + "convenience": "정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 345, + "name": "모미모미 롯데백화점분당점", + "address": "경기 성남시 분당구 황새울로200번길 45 지하 1층", + "average_price": 16333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-738-2002", + "score": 1.0, + "review": 2, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 346, + "name": "분당카레온 수내점", + "address": "경기 성남시 분당구 황새울로 216 휴맥스빌리지 지하1층 B101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 20:00", + "phone_number": null, + "score": 0.0, + "review": 2, + "duration_hours": "10:00 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 347, + "name": "초밥사랑", + "address": "경기 성남시 수정구 설개로 10", + "average_price": 21200, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 348, + "name": "아라도참치", + "address": "경기 성남시 분당구 느티로 16 젤존타워I 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 349, + "name": "정세이카츠 돈카츠", + "address": "경기 성남시 분당구 수내로 39", + "average_price": 8000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 18:00", + "phone_number": null, + "score": 5.0, + "review": 2, + "duration_hours": "14:30 ~ 18:00", + "category_id": 2 + }, + { + "restaurant_id": 350, + "name": "돈미", + "address": "경기 성남시 분당구 분당로53번길 15", + "average_price": 8300, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 351, + "name": "야마모리야 배우김강현점", + "address": "경기 성남시 분당구 정자일로 248 파크뷰 상가 2층 224호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 12:50 ~ 19:30", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "12:50 ~ 19:30", + "category_id": 2 + }, + { + "restaurant_id": 352, + "name": "연어로운 분당시범단지점", + "address": "경기 성남시 분당구 중앙공원로31번길 42", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 20:00", + "phone_number": "0503-7262-5997", + "score": 0.0, + "review": 0, + "duration_hours": "11:00 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 353, + "name": "일생청춘", + "address": "경기 성남시 분당구 정자일로 220", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-715-2722", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 354, + "name": "지존타코야끼", + "address": "경기 성남시 분당구 판교로 478", + "average_price": 5700, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 4.1, + "review": 2, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 355, + "name": "모리야", + "address": "경기 성남시 분당구 느티로 27", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 356, + "name": "이까", + "address": "경기 성남시 분당구 정자일로 192 지파크프라자 1층 108호", + "average_price": 16800, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 357, + "name": "호시참치", + "address": "경기 성남시 분당구 황새울로214번길 8", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 358, + "name": "고등스시", + "address": "경기 성남시 수정구 청계산로4길 59", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": null, + "score": 2.5, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 2 + }, + { + "restaurant_id": 359, + "name": "심플프로젝트컴퍼니", + "address": "경기 성남시 수정구 창업로 17", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 360, + "name": "롤집", + "address": "경기 성남시 분당구 분당로53번길 11", + "average_price": 9933, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 361, + "name": "복참치", + "address": "경기 성남시 분당구 성남대로772번길 5", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 362, + "name": "강민수산", + "address": "경기 성남시 분당구 백현로150번길 7", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-712-8829", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 363, + "name": "한스에프디", + "address": "경기 성남시 분당구 황새울로335번길 5 106호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 364, + "name": "스끼야끼AM11", + "address": "경기 성남시 분당구 황새울로312번길 20", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 365, + "name": "에이온파트너스", + "address": "경기 성남시 분당구 정자일로 192", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-7786-5050", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 366, + "name": "배들집", + "address": "경기 성남시 분당구 황새울로258번길 43", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-4203-2345", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 367, + "name": "키노시타", + "address": "경기 성남시 분당구 백현로101번길 13", + "average_price": 21300, + "caution": "포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 368, + "name": "스시가이", + "address": "경기 성남시 분당구 내정로173번길 11", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 369, + "name": "두툼바삭가츠 분당시범단지점", + "address": "경기 성남시 분당구 중앙공원로31번길 42", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 20:00", + "phone_number": "0503-7262-5995", + "score": 0.0, + "review": 0, + "duration_hours": "10:00 ~ 20:00", + "category_id": 2 + }, + { + "restaurant_id": 370, + "name": "스시보이", + "address": "경기 성남시 분당구 서현로 184", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 371, + "name": "미유", + "address": "경기 성남시 분당구 황새울로214번길 8", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-715-2569", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 372, + "name": "푸름파크키친 분당휴맥스점", + "address": "경기 성남시 분당구 황새울로 216", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 373, + "name": "에스에스벤처스", + "address": "경기 성남시 분당구 백현로101번길 16", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 2 + }, + { + "restaurant_id": 374, + "name": "수하담", + "address": "경기 성남시 분당구 판교로 190-8 1-2층", + "average_price": 6000, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 19:00", + "phone_number": "031-8016-6170", + "score": 3.5, + "review": 108, + "duration_hours": "09:00 ~ 19:00", + "category_id": 3 + }, + { + "restaurant_id": 375, + "name": "오픈커피 판교본점", + "address": "경기 성남시 분당구 판교역로14번길 15 성음아트센터 1-2층 105~107,201호", + "average_price": 6500, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 22:00", + "phone_number": null, + "score": 3.8, + "review": 170, + "duration_hours": "10:00 ~ 22:00", + "category_id": 3 + }, + { + "restaurant_id": 376, + "name": "리스카페", + "address": "경기 성남시 분당구 판교역로2번길 29 1층", + "average_price": 3250, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "010-6654-6300", + "score": 4.5, + "review": 776, + "duration_hours": "15:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 377, + "name": "아임홈 분당백현동본점", + "address": "경기 성남시 분당구 판교역로10번길 3-1 1층", + "average_price": 5000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "수요일", + "is_deleted": "\u0000", + "operating_hour": "수요일", + "phone_number": "070-4418-0415", + "score": 3.6, + "review": 27, + "duration_hours": "null", + "category_id": 3 + }, + { + "restaurant_id": 378, + "name": "무궁화파이브", + "address": "경기 성남시 분당구 동판교로52번길 9-9 1층", + "average_price": 15000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 17:00", + "phone_number": "031-705-3367", + "score": 4.1, + "review": 795, + "duration_hours": "09:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 379, + "name": "잼앤브레드", + "address": "경기 성남시 분당구 판교공원로1길 14 1층", + "average_price": 7500, + "caution": "예약불가, 포장가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 08:00 ~ 15:00", + "phone_number": "031-707-6113", + "score": 4.5, + "review": 110, + "duration_hours": "08:00 ~ 15:00", + "category_id": 3 + }, + { + "restaurant_id": 380, + "name": "아르틴", + "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 107호", + "average_price": 21333, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 10:00 ~ 22:00", + "phone_number": "010-8996-2243", + "score": 3.4, + "review": 167, + "duration_hours": "10:00 ~ 22:00", + "category_id": 3 + }, + { + "restaurant_id": 381, + "name": "카페마마스 판교점", + "address": "경기 성남시 분당구 분당내곡로 117 그레이츠 판교 1층", + "average_price": 15240, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 21:30", + "phone_number": "031-622-7545", + "score": 0.0, + "review": 147, + "duration_hours": "08:00 ~ 21:30", + "category_id": 3 + }, + { + "restaurant_id": 382, + "name": "카페 악토버", + "address": "경기 성남시 분당구 동판교로52번길 9 1층", + "average_price": 10166, + "caution": "예약불가, 포장가능", + "convenience": "동물출입\n주차", + "expanded_days": "월,화,수,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,금,토,일 11:00 ~ 17:00", + "phone_number": null, + "score": 4.6, + "review": 139, + "duration_hours": "11:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 383, + "name": "비앙또아", + "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 127호", + "average_price": 9800, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:00", + "phone_number": "031-707-1088", + "score": 3.4, + "review": 287, + "duration_hours": "10:00 ~ 21:00", + "category_id": 3 + }, + { + "restaurant_id": 384, + "name": "에리아", + "address": "경기 성남시 분당구 판교역로18번길 12 지하1층", + "average_price": 6500, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:30", + "phone_number": "031-708-9927", + "score": 4.3, + "review": 38, + "duration_hours": "11:00 ~ 22:30", + "category_id": 3 + }, + { + "restaurant_id": 385, + "name": "아미코", + "address": "경기 성남시 분당구 운중로138번길 28-3 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 10:00 ~ 22:00", + "phone_number": "031-704-7999", + "score": 3.4, + "review": 233, + "duration_hours": "10:00 ~ 22:00", + "category_id": 3 + }, + { + "restaurant_id": 386, + "name": "메리가든 판교", + "address": "경기 성남시 분당구 판교역로 10 1층", + "average_price": 38550, + "caution": "예약가능, 배달가능, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-781-5090", + "score": 0.0, + "review": 235, + "duration_hours": "11:00 ~ 21:00", + "category_id": 3 + }, + { + "restaurant_id": 387, + "name": "카페소시올로지", + "address": "경기 성남시 분당구 판교역로 145 라스트리트 1층", + "average_price": 18666, + "caution": "예약가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 22:00", + "phone_number": "031-708-3737", + "score": 4.6, + "review": 101, + "duration_hours": "10:00 ~ 22:00", + "category_id": 3 + }, + { + "restaurant_id": 388, + "name": "쿠잉", + "address": "경기 성남시 분당구 판교역로10번길 12-7 1층", + "average_price": 11428, + "caution": "유의사항 정보 없음", + "convenience": "동물출입\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 23:00", + "phone_number": "031-706-7750", + "score": 3.9, + "review": 21, + "duration_hours": "10:00 ~ 23:00", + "category_id": 3 + }, + { + "restaurant_id": 389, + "name": "아방베이커리 판교카카오점", + "address": "경기 성남시 분당구 판교역로 166 카카오판교아지트 1층 3호", + "average_price": 14000, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-601-7220", + "score": 3.8, + "review": 207, + "duration_hours": "15:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 390, + "name": "에잇이얼스", + "address": "경기 성남시 분당구 판교역로2번길 12 1층", + "average_price": 4833, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 09:00 ~ 17:00", + "phone_number": "031-781-8254", + "score": 4.7, + "review": 152, + "duration_hours": "09:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 391, + "name": "프론트 판교", + "address": "경기 성남시 분당구 운중로138번길 24-1 1층 101호", + "average_price": 10625, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 08:00 ~ 17:00", + "phone_number": "010-7935-4758", + "score": 0.0, + "review": 115, + "duration_hours": "08:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 392, + "name": "플랩잭팬트리 본점", + "address": "경기 성남시 분당구 서판교로44번길 17-11 1층", + "average_price": 17400, + "caution": "예약가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금 10:00 ~ 21:00", + "phone_number": "031-8016-0168", + "score": 0.0, + "review": 8, + "duration_hours": "10:00 ~ 21:00", + "category_id": 3 + }, + { + "restaurant_id": 393, + "name": "올덴그레이", + "address": "경기 성남시 분당구 동판교로52번길 17-5 1층", + "average_price": 16000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "070-4388-9689", + "score": 0.0, + "review": 132, + "duration_hours": "15:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 394, + "name": "미더스", + "address": "경기 성남시 분당구 동판교로52번길 9-6 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 19:00", + "phone_number": null, + "score": 4.4, + "review": 301, + "duration_hours": "08:00 ~ 19:00", + "category_id": 3 + }, + { + "restaurant_id": 395, + "name": "소담시루", + "address": "경기 성남시 분당구 판교공원로1길 10 1층", + "average_price": 4166, + "caution": "유의사항 정보 없음", + "convenience": "WIFI\n동물출입", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 08:00 ~ 17:00", + "phone_number": "031-707-7373", + "score": 4.0, + "review": 1, + "duration_hours": "08:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 396, + "name": "위스크 판교점", + "address": "경기 성남시 분당구 판교공원로3길 36 102호", + "average_price": 16800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수요일", + "is_deleted": "\u0000", + "operating_hour": "수요일", + "phone_number": "0503-7150-0404", + "score": 4.7, + "review": 28, + "duration_hours": "null", + "category_id": 3 + }, + { + "restaurant_id": 397, + "name": "스윗", + "address": "경기 성남시 분당구 운중로146번길 11 지하1층,1층", + "average_price": 7683, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 09:00 ~ 17:00", + "phone_number": "031-707-9949", + "score": 3.7, + "review": 58, + "duration_hours": "09:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 398, + "name": "멀멀 판교", + "address": "경기 성남시 분당구 판교역로2번길 6 태훈빌딩 1층", + "average_price": 13875, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 18:00", + "phone_number": "070-8822-0313", + "score": 5.0, + "review": 28, + "duration_hours": "10:00 ~ 18:00", + "category_id": 3 + }, + { + "restaurant_id": 399, + "name": "무튼", + "address": "경기 성남시 분당구 동판교로52번길 13-10 1층", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 20:00", + "phone_number": null, + "score": 3.2, + "review": 205, + "duration_hours": "10:30 ~ 20:00", + "category_id": 3 + }, + { + "restaurant_id": 400, + "name": "아프레", + "address": "경기 성남시 분당구 판교로25번길 18-4 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수요일", + "is_deleted": "\u0000", + "operating_hour": "수요일", + "phone_number": "0503-7150-4636", + "score": 0.0, + "review": 73, + "duration_hours": "null", + "category_id": 3 + }, + { + "restaurant_id": 401, + "name": "카페두레브", + "address": "경기 성남시 분당구 판교로255번길 9-22 판교우림 WCITY 1층 141호", + "average_price": 9816, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 07:00 ~ 20:00", + "phone_number": null, + "score": 4.2, + "review": 8, + "duration_hours": "07:00 ~ 20:00", + "category_id": 3 + }, + { + "restaurant_id": 402, + "name": "클로이샌드위치", + "address": "경기 성남시 분당구 판교공원로3길 4 1층 102호", + "average_price": 11000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,토,일 09:00 ~ 17:30", + "phone_number": "0507-1390-1549", + "score": 4.9, + "review": 32, + "duration_hours": "09:00 ~ 17:30", + "category_id": 3 + }, + { + "restaurant_id": 403, + "name": "브리즈 카페", + "address": "경기 성남시 분당구 운중로138번길 31", + "average_price": 5316, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 09:00 ~ 18:00", + "phone_number": null, + "score": 0.0, + "review": 18, + "duration_hours": "09:00 ~ 18:00", + "category_id": 3 + }, + { + "restaurant_id": 404, + "name": "원즈오운 판교", + "address": "경기 성남시 분당구 동판교로52번길 9 1층", + "average_price": 10680, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:30 ~ 21:00", + "phone_number": "010-4859-3190", + "score": 5.0, + "review": 94, + "duration_hours": "10:30 ~ 21:00", + "category_id": 3 + }, + { + "restaurant_id": 405, + "name": "일로이 키친", + "address": "경기 성남시 분당구 판교공원로3길 10 1층", + "average_price": 6166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수", + "is_deleted": "\u0000", + "operating_hour": "화~수 09:00 ~ 18:00", + "phone_number": "031-704-1124", + "score": 3.2, + "review": 73, + "duration_hours": "09:00 ~ 18:00", + "category_id": 3 + }, + { + "restaurant_id": 406, + "name": "사라베스 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 2층", + "average_price": 15200, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-1234", + "score": 2.6, + "review": 17, + "duration_hours": "10:30 ~ 20:00", + "category_id": 3 + }, + { + "restaurant_id": 407, + "name": "히글리", + "address": "경기 성남시 분당구 판교로227번길 6 브릿지타워 지하1층 B101호", + "average_price": 5857, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:30 ~ 20:00", + "phone_number": null, + "score": 4.9, + "review": 79, + "duration_hours": "08:30 ~ 20:00", + "category_id": 3 + }, + { + "restaurant_id": 408, + "name": "팜플래닛 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 테크원 3층 302호", + "average_price": 10133, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 20:00", + "phone_number": "031-601-7546", + "score": 5.0, + "review": 16, + "duration_hours": "08:00 ~ 20:00", + "category_id": 3 + }, + { + "restaurant_id": 409, + "name": "모닝페이지", + "address": "경기 성남시 분당구 판교공원로1길 12 1층 102호", + "average_price": 7119, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 09:00 ~ 17:00", + "phone_number": null, + "score": 5.0, + "review": 10, + "duration_hours": "09:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 410, + "name": "엘핀", + "address": "경기 성남시 분당구 판교로319번길 14 성남판교경기행복주택 근린생활시설 1층 8호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 22:30", + "phone_number": "0503-7151-0285", + "score": 5.0, + "review": 8, + "duration_hours": "08:00 ~ 22:30", + "category_id": 3 + }, + { + "restaurant_id": 411, + "name": "데니쉬미드", + "address": "경기 성남시 분당구 판교공원로1길 22-1", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-706-9892", + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 3 + }, + { + "restaurant_id": 412, + "name": "카페두레브", + "address": "경기 성남시 분당구 판교백현로 57 1,2층", + "average_price": 9816, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 08:00 ~ 22:00", + "phone_number": "031-705-1711", + "score": 3.2, + "review": 56, + "duration_hours": "08:00 ~ 22:00", + "category_id": 3 + }, + { + "restaurant_id": 413, + "name": "몽델리부티크", + "address": "경기 성남시 분당구 백현로 26 더블트리 바이힐튼호텔 판교 지하1층 2호", + "average_price": 10863, + "caution": "포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": null, + "score": 3.6, + "review": 222, + "duration_hours": "10:00 ~ 22:00", + "category_id": 3 + }, + { + "restaurant_id": 414, + "name": "호텔더일마", + "address": "경기 성남시 수정구 사송로77번길 35 1층", + "average_price": 4500, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n흡연실", + "expanded_days": "2025년 2월 3일 ~ 2025년 3월 31일 휴무", + "is_deleted": "\u0000", + "operating_hour": "2025년 2월 3일 ~ 2025년 3월 31일 휴무", + "phone_number": "010-2190-5867", + "score": 3.4, + "review": 723, + "duration_hours": "null", + "category_id": 3 + }, + { + "restaurant_id": 415, + "name": "푸른언덕", + "address": "경기 성남시 수정구 사송로80번길 23 1,2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 20:00", + "phone_number": null, + "score": 3.3, + "review": 19, + "duration_hours": "10:00 ~ 20:00", + "category_id": 3 + }, + { + "restaurant_id": 416, + "name": "파네트리김영모", + "address": "경기 성남시 수정구 설개로14번길 23", + "average_price": 8633, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 22:00", + "phone_number": "031-741-1110", + "score": 3.6, + "review": 648, + "duration_hours": "09:00 ~ 22:00", + "category_id": 3 + }, + { + "restaurant_id": 417, + "name": "올가정원", + "address": "경기 성남시 수정구 사송로 76", + "average_price": 5700, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:00", + "phone_number": null, + "score": 4.0, + "review": 19, + "duration_hours": "10:00 ~ 21:00", + "category_id": 3 + }, + { + "restaurant_id": 418, + "name": "토브나인", + "address": "경기 성남시 수정구 사송로 56 1,2층", + "average_price": 13600, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "070-8870-9990", + "score": 4.1, + "review": 95, + "duration_hours": "15:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 419, + "name": "버터핑거팬케익스 정자동점", + "address": "경기 성남시 분당구 정자일로 239 아이파크 1단지 101동 상가 105호", + "average_price": 20000, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 09:00 ~ 18:00", + "phone_number": "031-785-9994", + "score": 3.5, + "review": 104, + "duration_hours": "09:00 ~ 18:00", + "category_id": 3 + }, + { + "restaurant_id": 420, + "name": "카페드로잉", + "address": "경기 성남시 분당구 정자일로 220 동양파라곤 1층", + "average_price": 21544, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:30 ~ 23:30", + "phone_number": "031-718-4308", + "score": 2.8, + "review": 393, + "duration_hours": "09:30 ~ 23:30", + "category_id": 3 + }, + { + "restaurant_id": 421, + "name": "리스카페 정자", + "address": "경기 성남시 분당구 정자일로 210 1층 120호", + "average_price": 27110, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 20:00", + "phone_number": null, + "score": 4.3, + "review": 952, + "duration_hours": "10:00 ~ 20:00", + "category_id": 3 + }, + { + "restaurant_id": 422, + "name": "37.5 분당수내점", + "address": "경기 성남시 분당구 수내로 39 지웰푸르지오 상가 2층", + "average_price": 24366, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:30 ~ 17:00", + "phone_number": "031-711-3705", + "score": 1.4, + "review": 60, + "duration_hours": "15:30 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 423, + "name": "젠젠 분당점", + "address": "경기 성남시 분당구 분당로53번길 15 산호트윈스 3층 308, 309호", + "average_price": 17000, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-701-5207", + "score": 4.0, + "review": 771, + "duration_hours": "11:00 ~ 21:30", + "category_id": 3 + }, + { + "restaurant_id": 424, + "name": "브런치빈 분당서현점", + "address": "경기 성남시 분당구 분당로53번길 16 정일빌딩 4층 402호", + "average_price": 12900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 21:00", + "phone_number": "031-778-7420", + "score": 2.7, + "review": 136, + "duration_hours": "09:00 ~ 21:00", + "category_id": 3 + }, + { + "restaurant_id": 425, + "name": "로우테라스", + "address": "경기 성남시 수정구 청계산로5길 8 1층", + "average_price": 13642, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 15:00 ~ 17:00", + "phone_number": "070-8691-3028", + "score": 4.1, + "review": 276, + "duration_hours": "15:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 426, + "name": "대한민국명장김영모 다이닝테이블", + "address": "경기 성남시 수정구 설개로14번길 25", + "average_price": 8633, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 21:00", + "phone_number": "031-722-1120", + "score": 4.2, + "review": 218, + "duration_hours": "09:00 ~ 21:00", + "category_id": 3 + }, + { + "restaurant_id": 427, + "name": "뮤징", + "address": "경기 성남시 분당구 대왕판교로 334 3층", + "average_price": 8000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": null, + "score": 0.0, + "review": 13, + "duration_hours": "11:00 ~ 22:00", + "category_id": 3 + }, + { + "restaurant_id": 428, + "name": "유캔두잇 분당수내점", + "address": "경기 성남시 분당구 수내로 39 1층 123호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 22:00", + "phone_number": "031-625-5620", + "score": 3.8, + "review": 34, + "duration_hours": "08:00 ~ 22:00", + "category_id": 3 + }, + { + "restaurant_id": 429, + "name": "카페엠", + "address": "경기 성남시 분당구 정자일로213번길 18 성원상떼뷰리젠시 201동 1층 105호", + "average_price": 4600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": null, + "score": 3.8, + "review": 59, + "duration_hours": "11:00 ~ 23:00", + "category_id": 3 + }, + { + "restaurant_id": 430, + "name": "콩킨누스", + "address": "경기 성남시 수정구 청계산로 752 101~104, 116호", + "average_price": 30846, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:30", + "phone_number": "031-752-0009", + "score": 5.0, + "review": 172, + "duration_hours": "14:30 ~ 17:30", + "category_id": 3 + }, + { + "restaurant_id": 431, + "name": "소공원 롯데백화점 분당점", + "address": "경기 성남시 분당구 황새울로200번길 45 3층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-738-2366", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 3 + }, + { + "restaurant_id": 432, + "name": "카페온더데스크", + "address": "경기 성남시 분당구 서현로237번길 3 1층", + "average_price": 17600, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-709-3355", + "score": 3.5, + "review": 123, + "duration_hours": "10:30 ~ 22:00", + "category_id": 3 + }, + { + "restaurant_id": 433, + "name": "델리카운터213", + "address": "경기 성남시 분당구 정자일로213번길 10 성원상떼뷰리젠시 101동 1층 108호", + "average_price": 9660, + "caution": "포장가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 09:30 ~ 22:00", + "phone_number": "031-708-0708", + "score": 4.6, + "review": 71, + "duration_hours": "09:30 ~ 22:00", + "category_id": 3 + }, + { + "restaurant_id": 434, + "name": "데이원 분당서현점", + "address": "경기 성남시 분당구 황새울로359번길 11 미래에셋플레이스 1층 102호", + "average_price": 11550, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 07:00 ~ 21:00", + "phone_number": "031-701-1124", + "score": 0.0, + "review": 75, + "duration_hours": "07:00 ~ 21:00", + "category_id": 3 + }, + { + "restaurant_id": 435, + "name": "카페랄로 판교점", + "address": "경기 성남시 분당구 하오개로 246", + "average_price": 16452, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-709-5711", + "score": 0.0, + "review": 451, + "duration_hours": "10:00 ~ 22:00", + "category_id": 3 + }, + { + "restaurant_id": 436, + "name": "그랜마스 정자직영점", + "address": "경기 성남시 분당구 정자일로 197 1층 116, 117호", + "average_price": 10671, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 09:00 ~ 19:30", + "phone_number": "031-712-5535", + "score": 3.7, + "review": 76, + "duration_hours": "09:00 ~ 19:30", + "category_id": 3 + }, + { + "restaurant_id": 437, + "name": "아볼롱떼", + "address": "경기 성남시 분당구 탄천로 27", + "average_price": 4500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수,일요일", + "is_deleted": "\u0000", + "operating_hour": "수,일요일", + "phone_number": null, + "score": 5.0, + "review": 18, + "duration_hours": "null", + "category_id": 3 + }, + { + "restaurant_id": 438, + "name": "카랑코에", + "address": "경기 성남시 분당구 쇳골로 70-1 아셈메디칼빌딩2 1층", + "average_price": 7777, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:00", + "phone_number": "031-711-7924", + "score": 3.9, + "review": 79, + "duration_hours": "10:00 ~ 21:00", + "category_id": 3 + }, + { + "restaurant_id": 439, + "name": "살롱드사송", + "address": "경기 성남시 수정구 탄천로307번길 10 1,2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-756-2225", + "score": 3.0, + "review": 36, + "duration_hours": "10:00 ~ 22:00", + "category_id": 3 + }, + { + "restaurant_id": 440, + "name": "러셀브런치", + "address": "경기 성남시 분당구 서현로237번길 24-7 1층", + "average_price": 11900, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 09:00 ~ 20:00", + "phone_number": "010-9977-8472", + "score": 4.0, + "review": 98, + "duration_hours": "09:00 ~ 20:00", + "category_id": 3 + }, + { + "restaurant_id": 441, + "name": "식구", + "address": "경기 성남시 분당구 쇳골로 50 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-713-7288", + "score": 3.7, + "review": 58, + "duration_hours": "15:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 442, + "name": "카페보꾸", + "address": "경기 성남시 분당구 서현로237번길 5 1층", + "average_price": 5333, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 12:00 ~ 20:00", + "phone_number": "010-8442-4959", + "score": 4.3, + "review": 140, + "duration_hours": "12:00 ~ 20:00", + "category_id": 3 + }, + { + "restaurant_id": 443, + "name": "벙크오프", + "address": "경기 성남시 수정구 고등로1길 12 1층", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 12:00 ~ 24:00", + "phone_number": "0507-1490-0803", + "score": 0.0, + "review": 192, + "duration_hours": "12:00 ~ 24:00", + "category_id": 3 + }, + { + "restaurant_id": 444, + "name": "이디야커피 궁내크리스탈DI점", + "address": "경기 성남시 분당구 대왕판교로 221 동일빌딩 1층", + "average_price": 3200, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 07:00 ~ 22:00", + "phone_number": "031-8023-9660", + "score": 4.5, + "review": 58, + "duration_hours": "07:00 ~ 22:00", + "category_id": 3 + }, + { + "restaurant_id": 445, + "name": "멜랑", + "address": "경기 성남시 분당구 야탑로111번길 5-3 1층", + "average_price": 5807, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-778-7109", + "score": 4.3, + "review": 90, + "duration_hours": "15:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 446, + "name": "카페콩", + "address": "경기 성남시 분당구 내정로174번길 6", + "average_price": 3800, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-714-0602", + "score": 4.8, + "review": 0, + "duration_hours": "null", + "category_id": 3 + }, + { + "restaurant_id": 447, + "name": "코그노센티", + "address": "경기 성남시 수정구 고등로1길 20 1층", + "average_price": 13500, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "수요일", + "is_deleted": "\u0000", + "operating_hour": "수요일", + "phone_number": "010-2222-7161", + "score": 0.0, + "review": 145, + "duration_hours": "null", + "category_id": 3 + }, + { + "restaurant_id": 448, + "name": "빈앤빈즈", + "address": "경기 성남시 분당구 새마을로7번길 5 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 02:00", + "phone_number": null, + "score": 2.3, + "review": 15, + "duration_hours": "16:00 ~ 02:00", + "category_id": 3 + }, + { + "restaurant_id": 449, + "name": "마이페이보릿네이버", + "address": "경기 성남시 분당구 판교대장로4길 22 1층 102호", + "average_price": 9040, + "caution": "배달불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 09:00 ~ 17:00", + "phone_number": null, + "score": 3.2, + "review": 210, + "duration_hours": "09:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 450, + "name": "콜빈스", + "address": "경기 성남시 분당구 판교대장로4길 12-3 1층", + "average_price": 5000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 09:00 ~ 18:00", + "phone_number": "031-712-2513", + "score": 4.7, + "review": 7, + "duration_hours": "09:00 ~ 18:00", + "category_id": 3 + }, + { + "restaurant_id": 451, + "name": "델리슈샤", + "address": "경기 성남시 분당구 정자일로 136 정자역엠코헤리츠 3단지 1층 C109호", + "average_price": 11800, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:30 ~ 18:00", + "phone_number": null, + "score": 3.4, + "review": 103, + "duration_hours": "09:30 ~ 18:00", + "category_id": 3 + }, + { + "restaurant_id": 452, + "name": "카페마더후드", + "address": "경기 성남시 분당구 운중로166번길 6 1층 101호", + "average_price": 7750, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "010-3146-5770", + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 3 + }, + { + "restaurant_id": 453, + "name": "카페브런치", + "address": "경기 성남시 분당구 방아로 29 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 21:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "10:30 ~ 21:00", + "category_id": 3 + }, + { + "restaurant_id": 454, + "name": "샐러드나인", + "address": "경기 성남시 분당구 판교공원로2길 32 1층", + "average_price": 11777, + "caution": "예약가능, 포장가능", + "convenience": "WIFI", + "expanded_days": "월,화,수,목,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,토,일 15:00 ~ 17:00", + "phone_number": "031-708-1358", + "score": 5.0, + "review": 1, + "duration_hours": "15:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 455, + "name": "콜드앤브런치", + "address": "경기 성남시 수정구 대왕판교로 815 판교창조경제밸리 기업지원허브 1층 110호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 3 + }, + { + "restaurant_id": 456, + "name": "갤러리카페다미안", + "address": "경기 성남시 분당구 쇳골로 64 2층", + "average_price": 12888, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,토", + "is_deleted": "\u0000", + "operating_hour": "화,수,목,토 10:00 ~ 17:00", + "phone_number": "031-718-0188", + "score": 3.7, + "review": 4, + "duration_hours": "10:00 ~ 17:00", + "category_id": 3 + }, + { + "restaurant_id": 457, + "name": "프랑제리 NC야탑점", + "address": "경기 성남시 분당구 야탑로81번길 11 8층", + "average_price": 4420, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:00", + "phone_number": "031-607-9902", + "score": 4.1, + "review": 115, + "duration_hours": "10:00 ~ 21:00", + "category_id": 3 + }, + { + "restaurant_id": 458, + "name": "뚜에이오", + "address": "경기 성남시 분당구 판교공원로3길 24-2", + "average_price": 25133, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-8016-1865", + "score": 4.2, + "review": 873, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 459, + "name": "파파라구", + "address": "경기 성남시 분당구 판교역로10번길 22-3 1층 101,102호", + "average_price": 17111, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금 15:00 ~ 17:00", + "phone_number": "031-709-5624", + "score": 3.7, + "review": 521, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 460, + "name": "라비떼", + "address": "경기 성남시 분당구 판교공원로3길 16 1층", + "average_price": 21466, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 15:00 ~ 17:30", + "phone_number": null, + "score": 3.9, + "review": 274, + "duration_hours": "15:00 ~ 17:30", + "category_id": 4 + }, + { + "restaurant_id": 461, + "name": "빈티지1988", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 101호", + "average_price": 64000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:30", + "phone_number": "0507-1387-1993", + "score": 3.1, + "review": 442, + "duration_hours": "14:30 ~ 17:30", + "category_id": 4 + }, + { + "restaurant_id": 462, + "name": "세렌", + "address": "경기 성남시 분당구 운중로188번길 11 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "031-709-0775", + "score": 3.8, + "review": 300, + "duration_hours": "15:00 ~ 17:30", + "category_id": 4 + }, + { + "restaurant_id": 463, + "name": "푸치니", + "address": "경기 성남시 분당구 판교로25번길 6-3 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 15:00 ~ 17:30", + "phone_number": "031-701-3398", + "score": 4.2, + "review": 52, + "duration_hours": "15:00 ~ 17:30", + "category_id": 4 + }, + { + "restaurant_id": 464, + "name": "오스테리아 워모잡", + "address": "경기 성남시 분당구 판교공원로2길 40-1 1층", + "average_price": 80316, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "010-3005-9541", + "score": 3.4, + "review": 250, + "duration_hours": "15:00 ~ 17:30", + "category_id": 4 + }, + { + "restaurant_id": 465, + "name": "라그릴리아 판교점", + "address": "경기 성남시 분당구 판교역로 166 카카오 판교 아지트 1층 17호", + "average_price": 24961, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:00", + "phone_number": "031-707-0999", + "score": 4.2, + "review": 112, + "duration_hours": "11:30 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 466, + "name": "라스토리아1001", + "address": "경기 성남시 분당구 판교공원로3길 24 1층", + "average_price": 27333, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "수,목,금", + "is_deleted": "\u0000", + "operating_hour": "수~금 15:00 ~ 17:00", + "phone_number": "0502-5551-6969", + "score": 0.0, + "review": 266, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 467, + "name": "이탈리 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 지하1층", + "average_price": 8066, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-1061", + "score": 3.2, + "review": 231, + "duration_hours": "10:30 ~ 20:00", + "category_id": 4 + }, + { + "restaurant_id": 468, + "name": "베네쿠치", + "address": "경기 성남시 분당구 운중로146번길 19 1층", + "average_price": 21900, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 11:30 ~ 21:30", + "phone_number": null, + "score": 4.1, + "review": 48, + "duration_hours": "11:30 ~ 21:30", + "category_id": 4 + }, + { + "restaurant_id": 469, + "name": "피제리아 비니스", + "address": "경기 성남시 분당구 판교공원로1길 70 1층", + "average_price": 12133, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "수~일 15:30 ~ 17:30", + "phone_number": "031-701-0345", + "score": 4.5, + "review": 598, + "duration_hours": "15:30 ~ 17:30", + "category_id": 4 + }, + { + "restaurant_id": 470, + "name": "더플레이스 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 1층", + "average_price": 36425, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-701-0421", + "score": 4.4, + "review": 169, + "duration_hours": "10:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 471, + "name": "메즈클라", + "address": "경기 성남시 분당구 운중로146번길 35-1", + "average_price": 23200, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 15:00 ~ 17:30", + "phone_number": "0507-1360-7544", + "score": 3.9, + "review": 0, + "duration_hours": "15:00 ~ 17:30", + "category_id": 4 + }, + { + "restaurant_id": 472, + "name": "에이치541", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 9층", + "average_price": 22500, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:30", + "phone_number": "031-5170-2541", + "score": 3.5, + "review": 10, + "duration_hours": "10:30 ~ 21:30", + "category_id": 4 + }, + { + "restaurant_id": 473, + "name": "체르또", + "address": "경기 성남시 분당구 동판교로52번길 13-10 1층 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 14:30 ~ 17:00", + "phone_number": "0502-5550-1744", + "score": 4.6, + "review": 23, + "duration_hours": "14:30 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 474, + "name": "에이치이에이", + "address": "경기 성남시 분당구 판교공원로1길 67 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-781-0122", + "score": 5.0, + "review": 467, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 475, + "name": "더이탈리안클럽 판교테크원점", + "address": "경기 성남시 분당구 분당내곡로 131 1층 5-2호", + "average_price": 32384, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:30", + "phone_number": null, + "score": 3.6, + "review": 207, + "duration_hours": "15:00 ~ 17:30", + "category_id": 4 + }, + { + "restaurant_id": 476, + "name": "챠오바라이트", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 125호", + "average_price": 14916, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 10:00", + "phone_number": "031-628-4545", + "score": 3.0, + "review": 10, + "duration_hours": "11:30 ~ 10:00", + "category_id": 4 + }, + { + "restaurant_id": 477, + "name": "비스트로바이콘", + "address": "경기 성남시 분당구 대왕판교로645번길 36 1층", + "average_price": 23333, + "caution": "유의사항 정보 없음", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-606-8511", + "score": 4.3, + "review": 18, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 478, + "name": "까사파스토", + "address": "경기 성남시 분당구 판교역로10번길 14-5 1층 102호", + "average_price": 18666, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 15:00 ~ 17:00", + "phone_number": "031-726-9155", + "score": 4.9, + "review": 36, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 479, + "name": "비스트로허디거디", + "address": "경기 성남시 분당구 산운로32번길 14", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8017-3214", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 480, + "name": "판교의하루일과", + "address": "경기 성남시 분당구 분당내곡로 131 2층 11호", + "average_price": 22600, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-601-7559", + "score": 3.5, + "review": 84, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 481, + "name": "구세뻬", + "address": "경기 성남시 분당구 판교로33번길 21 1층", + "average_price": 11511, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 20:00", + "phone_number": null, + "score": 3.6, + "review": 4, + "duration_hours": "10:00 ~ 20:00", + "category_id": 4 + }, + { + "restaurant_id": 482, + "name": "스너그", + "address": "경기 성남시 분당구 운중로113번길 12-2 1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "010-7257-2055", + "score": 3.7, + "review": 28, + "duration_hours": "10:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 483, + "name": "더 키친 일뽀르노 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 5층", + "average_price": 22904, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": "031-5170-1592", + "score": 3.8, + "review": 87, + "duration_hours": "10:30 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 484, + "name": "라빌란치아 이탈리안음식전문점", + "address": "경기 성남시 분당구 판교공원로2길 49 1층", + "average_price": 35200, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:00", + "phone_number": null, + "score": 4.8, + "review": 2, + "duration_hours": "11:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 485, + "name": "105파스타 서판교점", + "address": "경기 성남시 분당구 판교공원로5길 3 1층 102호", + "average_price": 7905, + "caution": "포장가능", + "convenience": "WIFI", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-707-0105", + "score": 4.2, + "review": 3, + "duration_hours": "11:30 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 486, + "name": "빔스", + "address": "경기 성남시 분당구 대왕판교로606번길 39 12층 1201호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 4.5, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 487, + "name": "파토리아1964", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 9층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-1938", + "score": 2.9, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 488, + "name": "오말리 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 47", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-625-1232", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 489, + "name": "라 피아디나", + "address": "경기 성남시 분당구 판교역로146번길 20", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 490, + "name": "라디오베이", + "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋타워 2층", + "average_price": 31854, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-8061-0773", + "score": 3.3, + "review": 247, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 491, + "name": "울프스덴", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 215호", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:30", + "phone_number": "0507-1401-1887", + "score": 3.4, + "review": 355, + "duration_hours": "14:30 ~ 17:30", + "category_id": 4 + }, + { + "restaurant_id": 492, + "name": "판교매일식당 판교본점", + "address": "경기 성남시 분당구 판교역로192번길 14-2 1층", + "average_price": 14200, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": null, + "score": 3.5, + "review": 81, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 493, + "name": "닥터로빈 시그니처 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 108호", + "average_price": 17388, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-781-3105", + "score": 3.3, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 494, + "name": "어글리스토브 판교라스트리트점", + "address": "경기 성남시 분당구 판교역로 145 2동 2층 219호", + "average_price": 42900, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-706-8459", + "score": 3.2, + "review": 342, + "duration_hours": "11:00 ~ 21:30", + "category_id": 4 + }, + { + "restaurant_id": 495, + "name": "리스카페", + "address": "경기 성남시 분당구 판교역로2번길 29 1층", + "average_price": 3250, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "010-6654-6300", + "score": 4.5, + "review": 776, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 496, + "name": "리얼스페인 판교점", + "address": "경기 성남시 분당구 판교역로10번길 12-5 1층", + "average_price": 15880, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:30 ~ 17:00", + "phone_number": "031-8017-3614", + "score": 3.2, + "review": 135, + "duration_hours": "15:30 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 497, + "name": "샤슬릭", + "address": "경기 성남시 분당구 판교공원로2길 45 1층", + "average_price": 21166, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 15:00 ~ 17:00", + "phone_number": "031-8016-6262", + "score": 3.8, + "review": 152, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 498, + "name": "무궁화파이브", + "address": "경기 성남시 분당구 동판교로52번길 9-9 1층", + "average_price": 15000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 17:00", + "phone_number": "031-705-3367", + "score": 4.1, + "review": 795, + "duration_hours": "09:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 499, + "name": "레스토랑마고", + "address": "경기 성남시 분당구 정자일로 230 동양파라곤 105동 지하 103호", + "average_price": 76000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "010-4526-0589", + "score": 4.2, + "review": 161, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 500, + "name": "더라운지", + "address": "경기 성남시 분당구 서판교로 162 랜드리스타워 1층", + "average_price": 16000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-8016-8059", + "score": 3.3, + "review": 1, + "duration_hours": "10:30 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 501, + "name": "아웃백스테이크하우스 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 지하1층", + "average_price": 30793, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-601-7401", + "score": 1.2, + "review": 303, + "duration_hours": "11:00 ~ 21:30", + "category_id": 4 + }, + { + "restaurant_id": 502, + "name": "비비", + "address": "경기 성남시 분당구 산운로160번길 12 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-609-6789", + "score": 3.7, + "review": 19, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 503, + "name": "매드포갈릭 판교라스트리트점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 1동 2층 219호", + "average_price": 55922, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-703-8920", + "score": 3.7, + "review": 101, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 504, + "name": "구우트", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 지하1층 B109,110호", + "average_price": 21294, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:00 ~ 17:00", + "phone_number": "0507-1397-0922", + "score": 4.6, + "review": 135, + "duration_hours": "14:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 505, + "name": "아르틴", + "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 107호", + "average_price": 21333, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 10:00 ~ 22:00", + "phone_number": "010-8996-2243", + "score": 3.4, + "review": 167, + "duration_hours": "10:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 506, + "name": "탭퍼블릭 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 1층", + "average_price": 21190, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 24:00", + "phone_number": "031-601-7549", + "score": 3.4, + "review": 181, + "duration_hours": "11:00 ~ 24:00", + "category_id": 4 + }, + { + "restaurant_id": 507, + "name": "오리지널팬케이크하우스 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 1층 5-1호", + "average_price": 10700, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 09:00 ~ 21:00", + "phone_number": "031-601-7451", + "score": 3.8, + "review": 747, + "duration_hours": "09:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 508, + "name": "해미옥 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 41 지하1층 B01호", + "average_price": 55000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:50 ~ 17:00", + "phone_number": "031-709-0728", + "score": 4.8, + "review": 414, + "duration_hours": "14:50 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 509, + "name": "목탄장 판교점", + "address": "경기 성남시 분당구 분당내곡로 155 KCC웰츠타워 1층 102호", + "average_price": 20600, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 23:00", + "phone_number": "070-7543-4339", + "score": 3.7, + "review": 111, + "duration_hours": "17:00 ~ 23:00", + "category_id": 4 + }, + { + "restaurant_id": 510, + "name": "메이빌 분당점", + "address": "경기 성남시 분당구 서현로210번길 16 유성트윈프라자 2층", + "average_price": 12600, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:30", + "phone_number": "031-705-4267", + "score": 4.0, + "review": 84, + "duration_hours": "11:30 ~ 21:30", + "category_id": 4 + }, + { + "restaurant_id": 511, + "name": "헤비스테이크 판교테크노밸리점", + "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어에스동 1층 107호", + "average_price": 12000, + "caution": "포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-789-3909", + "score": 3.6, + "review": 37, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 512, + "name": "정희 판교아브뉴프랑점", + "address": "경기 성남시 분당구 동판교로177번길 25 1층 150호", + "average_price": 12525, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "070-4151-7778", + "score": 3.0, + "review": 849, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 513, + "name": "제로투나인", + "address": "경기 성남시 분당구 운중로146번길 19-3", + "average_price": 43187, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "031-702-6625", + "score": 4.1, + "review": 41, + "duration_hours": "15:00 ~ 17:30", + "category_id": 4 + }, + { + "restaurant_id": 514, + "name": "올드스탠드", + "address": "경기 성남시 분당구 판교역로10번길 27 1층", + "average_price": 38500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 16:00 ~ 23:00", + "phone_number": "031-703-9707", + "score": 3.9, + "review": 44, + "duration_hours": "16:00 ~ 23:00", + "category_id": 4 + }, + { + "restaurant_id": 515, + "name": "카페 악토버", + "address": "경기 성남시 분당구 동판교로52번길 9 1층", + "average_price": 10166, + "caution": "예약불가", + "convenience": "동물출입\n주차", + "expanded_days": "월,화,수,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,금,토,일 11:00 ~ 17:00", + "phone_number": null, + "score": 4.6, + "review": 139, + "duration_hours": "11:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 516, + "name": "피자헛 분당백현점", + "address": "경기 성남시 분당구 동판교로52번길 11", + "average_price": 22706, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-8017-8770", + "score": 3.5, + "review": 6, + "duration_hours": "11:00 ~ 23:00", + "category_id": 4 + }, + { + "restaurant_id": 517, + "name": "비앙또아", + "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 127호", + "average_price": 9800, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:00", + "phone_number": "031-707-1088", + "score": 3.4, + "review": 287, + "duration_hours": "10:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 518, + "name": "토브나인", + "address": "경기 성남시 수정구 사송로 56 1,2층", + "average_price": 13600, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "070-8870-9990", + "score": 4.1, + "review": 95, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 519, + "name": "데이빗앤룰스 판교점", + "address": "경기 성남시 분당구 판교로319번길 13 지하1층 B101~B103호", + "average_price": 31875, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "031-602-8915", + "score": 0.0, + "review": 94, + "duration_hours": "15:00 ~ 17:30", + "category_id": 4 + }, + { + "restaurant_id": 520, + "name": "엠오엠", + "address": "경기 성남시 분당구 판교역로 145 알파리움타워 2동 1층 126~128호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": null, + "score": 3.6, + "review": 746, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 521, + "name": "풍류 더 블랙", + "address": "경기 성남시 분당구 대왕판교로606번길 39 럭스타워 지하1층", + "average_price": 33000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 24:00", + "phone_number": "010-4030-7311", + "score": 0.0, + "review": 30, + "duration_hours": "17:00 ~ 24:00", + "category_id": 4 + }, + { + "restaurant_id": 522, + "name": "메종드도쿄", + "address": "경기 성남시 분당구 판교로25번길 16 1층", + "average_price": 36200, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-705-1030", + "score": 4.1, + "review": 25, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 523, + "name": "메리가든 판교", + "address": "경기 성남시 분당구 판교역로 10 1층", + "average_price": 38550, + "caution": "예약가능, 배달가능, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-781-5090", + "score": 0.0, + "review": 235, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 524, + "name": "오늘와인한잔 판교역점", + "address": "경기 성남시 분당구 대왕판교로606번길 45 판교역푸르지오시티오피스텔 1층 103,104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 02:00", + "phone_number": null, + "score": 2.9, + "review": 9, + "duration_hours": "17:00 ~ 02:00", + "category_id": 4 + }, + { + "restaurant_id": 525, + "name": "카페소시올로지", + "address": "경기 성남시 분당구 판교역로 145 라스트리트 1층", + "average_price": 18666, + "caution": "예약가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 22:00", + "phone_number": "031-708-3737", + "score": 4.6, + "review": 101, + "duration_hours": "10:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 526, + "name": "피제리아살레르노 서판교점", + "address": "경기 성남시 분당구 판교공원로3길 35", + "average_price": 19685, + "caution": "예약가능, 포장가능", + "convenience": "WIFI", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": null, + "score": 4.4, + "review": 243, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 527, + "name": "저스트 기네스", + "address": "경기 성남시 분당구 대왕판교로606번길 45 판교푸르지오시티 119호", + "average_price": 16090, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 01:00", + "phone_number": "031-706-8259", + "score": 4.7, + "review": 41, + "duration_hours": "17:00 ~ 01:00", + "category_id": 4 + }, + { + "restaurant_id": 528, + "name": "야키토리잔잔 판교점", + "address": "경기 성남시 분당구 분당내곡로 151 1층 107~109호", + "average_price": 28428, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 17:00 ~ 01:00", + "phone_number": null, + "score": 4.4, + "review": 44, + "duration_hours": "17:00 ~ 01:00", + "category_id": 4 + }, + { + "restaurant_id": 529, + "name": "어슬청담 판교아브뉴프랑점", + "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 2층 221호", + "average_price": 25888, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-778-6997", + "score": 3.9, + "review": 108, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 530, + "name": "함바그집", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 132호", + "average_price": 16800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:30 ~ 17:00", + "phone_number": null, + "score": 4.2, + "review": 45, + "duration_hours": "14:30 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 531, + "name": "돈파스타", + "address": "경기 성남시 분당구 황새울로342번길 11 금호리빙스텔 2층 201호", + "average_price": 19000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 11:30 ~ 15:00", + "phone_number": "031-701-2155", + "score": 3.9, + "review": 64, + "duration_hours": "11:30 ~ 15:00", + "category_id": 4 + }, + { + "restaurant_id": 532, + "name": "올덴그레이", + "address": "경기 성남시 분당구 동판교로52번길 17-5 1층", + "average_price": 16000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "070-4388-9689", + "score": 0.0, + "review": 132, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 533, + "name": "핑거크로스", + "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층 114호", + "average_price": 20000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:00", + "phone_number": "031-701-9588", + "score": 4.1, + "review": 395, + "duration_hours": "10:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 534, + "name": "롤링파스타 서현역점", + "address": "경기 성남시 분당구 분당로53번길 14 서현프라자 2층", + "average_price": 8444, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-707-3547", + "score": 4.4, + "review": 184, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 535, + "name": "무튼", + "address": "경기 성남시 분당구 동판교로52번길 13-10 1층", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 20:00", + "phone_number": null, + "score": 3.2, + "review": 205, + "duration_hours": "10:30 ~ 20:00", + "category_id": 4 + }, + { + "restaurant_id": 536, + "name": "노모어피자 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 58 1층 109호", + "average_price": 20800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 02:00", + "phone_number": null, + "score": 4.7, + "review": 20, + "duration_hours": "10:00 ~ 02:00", + "category_id": 4 + }, + { + "restaurant_id": 537, + "name": "칠리로29 판교점", + "address": "경기 성남시 분당구 판교공원로1길 69 1층 101호", + "average_price": 9800, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "수요일", + "is_deleted": "\u0000", + "operating_hour": "수요일", + "phone_number": "031-778-6463", + "score": 4.7, + "review": 91, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 538, + "name": "브루클린", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 1층 106호, 107호", + "average_price": 13500, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-628-6399", + "score": 3.8, + "review": 8, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 539, + "name": "멀멀 판교", + "address": "경기 성남시 분당구 판교역로2번길 6 태훈빌딩 1층", + "average_price": 13875, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 18:00", + "phone_number": "070-8822-0313", + "score": 5.0, + "review": 28, + "duration_hours": "10:00 ~ 18:00", + "category_id": 4 + }, + { + "restaurant_id": 540, + "name": "잭슨피자 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층 149호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-706-0717", + "score": 4.2, + "review": 34, + "duration_hours": "11:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 541, + "name": "오션문", + "address": "경기 성남시 분당구 운중로146번길 15-4 1층", + "average_price": 17666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 24:00", + "phone_number": null, + "score": 4.1, + "review": 65, + "duration_hours": "10:00 ~ 24:00", + "category_id": 4 + }, + { + "restaurant_id": 542, + "name": "스윗", + "address": "경기 성남시 분당구 운중로146번길 11 지하1층,1층", + "average_price": 7683, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 09:00 ~ 17:00", + "phone_number": "031-707-9949", + "score": 3.7, + "review": 58, + "duration_hours": "09:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 543, + "name": "샐러디 서판교점", + "address": "경기 성남시 분당구 운중로 129 마크시티옐로우 1층 110호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 09:00 ~ 21:00", + "phone_number": "031-607-1709", + "score": 4.9, + "review": 15, + "duration_hours": "09:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 544, + "name": "굽네치킨 서판교점", + "address": "경기 성남시 분당구 운중로178번길 1 1층 107호", + "average_price": 18128, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수", + "is_deleted": "\u0000", + "operating_hour": "수~수 11:30 ~ 23:00", + "phone_number": "031-709-9294", + "score": 3.5, + "review": 1, + "duration_hours": "11:30 ~ 23:00", + "category_id": 4 + }, + { + "restaurant_id": 545, + "name": "픽유어온샐러드", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 1층 120호", + "average_price": 9400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 08:40 ~ 20:00", + "phone_number": "031-698-4555", + "score": 4.3, + "review": 19, + "duration_hours": "08:40 ~ 20:00", + "category_id": 4 + }, + { + "restaurant_id": 546, + "name": "피자헛 판교중앙점", + "address": "경기 성남시 분당구 운중로 237", + "average_price": 22706, + "caution": "배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-724-0503", + "score": 2.3, + "review": 4, + "duration_hours": "11:00 ~ 23:00", + "category_id": 4 + }, + { + "restaurant_id": 547, + "name": "스튜디오지구", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 116호", + "average_price": 9500, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:30", + "phone_number": "031-628-1000", + "score": 4.6, + "review": 18, + "duration_hours": "14:00 ~ 17:30", + "category_id": 4 + }, + { + "restaurant_id": 548, + "name": "비스트로42", + "address": "경기 성남시 분당구 판교역로192번길 12 2층 202호", + "average_price": 30333, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 24:00", + "phone_number": "031-8061-0711", + "score": 4.0, + "review": 44, + "duration_hours": "17:00 ~ 24:00", + "category_id": 4 + }, + { + "restaurant_id": 549, + "name": "더테라스LA", + "address": "경기 성남시 분당구 판교역로 138 1층", + "average_price": 17000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 17:00 ~ 24:00", + "phone_number": null, + "score": 3.5, + "review": 111, + "duration_hours": "17:00 ~ 24:00", + "category_id": 4 + }, + { + "restaurant_id": 550, + "name": "퀴즈노스 랩 판교테크노밸리점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 111,112호", + "average_price": 7500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 21:00", + "phone_number": "031-724-2724", + "score": 3.1, + "review": 43, + "duration_hours": "08:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 551, + "name": "연어로만 운중동점", + "address": "경기 성남시 분당구 운중로 128 1층", + "average_price": 10840, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 20:00", + "phone_number": null, + "score": 4.1, + "review": 9, + "duration_hours": "10:00 ~ 20:00", + "category_id": 4 + }, + { + "restaurant_id": 552, + "name": "루카즈", + "address": "경기 성남시 분당구 판교역로 6-5 1층", + "average_price": 13125, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "수~일 15:30 ~ 17:30", + "phone_number": null, + "score": 3.4, + "review": 52, + "duration_hours": "15:30 ~ 17:30", + "category_id": 4 + }, + { + "restaurant_id": 553, + "name": "오시", + "address": "경기 성남시 분당구 동판교로52번길 21-2", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 15:00 ~ 17:00", + "phone_number": null, + "score": 5.0, + "review": 779, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 554, + "name": "아프레", + "address": "경기 성남시 분당구 판교로25번길 18-4 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수요일", + "is_deleted": "\u0000", + "operating_hour": "수요일", + "phone_number": "0503-7150-4636", + "score": 0.0, + "review": 73, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 555, + "name": "콘노이", + "address": "경기 성남시 분당구 운중로138번길 24-1 1층", + "average_price": 25714, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 24:00", + "phone_number": "0507-1326-0064", + "score": 4.0, + "review": 20, + "duration_hours": "17:00 ~ 24:00", + "category_id": 4 + }, + { + "restaurant_id": 556, + "name": "다크앤라이트", + "address": "경기 성남시 수정구 달래내로 252 2층", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "수~일 15:00 ~ 17:30", + "phone_number": "031-708-8730", + "score": 4.5, + "review": 162, + "duration_hours": "15:00 ~ 17:30", + "category_id": 4 + }, + { + "restaurant_id": 557, + "name": "굽네치킨 동판교점", + "address": "경기 성남시 분당구 동판교로 155 봇들마을7단지아파트 상가동 1층 105호", + "average_price": 19733, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 01:40", + "phone_number": "031-701-9293", + "score": 2.4, + "review": 3, + "duration_hours": "09:00 ~ 01:40", + "category_id": 4 + }, + { + "restaurant_id": 558, + "name": "사라베스 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 2층", + "average_price": 15200, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-1234", + "score": 2.6, + "review": 17, + "duration_hours": "10:30 ~ 20:00", + "category_id": 4 + }, + { + "restaurant_id": 559, + "name": "투고샐러드 판교유스페이스점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 2층 230호", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 20:00", + "phone_number": "031-724-2588", + "score": 5.0, + "review": 16, + "duration_hours": "08:00 ~ 20:00", + "category_id": 4 + }, + { + "restaurant_id": 560, + "name": "원즈오운 판교", + "address": "경기 성남시 분당구 동판교로52번길 9 1층", + "average_price": 10680, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:30 ~ 21:00", + "phone_number": "010-4859-3190", + "score": 5.0, + "review": 94, + "duration_hours": "10:30 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 561, + "name": "일로이 키친", + "address": "경기 성남시 분당구 판교공원로3길 10 1층", + "average_price": 6166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수", + "is_deleted": "\u0000", + "operating_hour": "화~수 09:00 ~ 18:00", + "phone_number": "031-704-1124", + "score": 3.2, + "review": 73, + "duration_hours": "09:00 ~ 18:00", + "category_id": 4 + }, + { + "restaurant_id": 562, + "name": "이치노야", + "address": "경기 성남시 분당구 판교역로241번길 22", + "average_price": 23722, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": null, + "score": 5.0, + "review": 13, + "duration_hours": "14:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 563, + "name": "미도인 판교테크원", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 지하1층 31호", + "average_price": 12920, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-601-7407", + "score": 3.3, + "review": 0, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 564, + "name": "피자스쿨", + "address": "경기 성남시 분당구 운중로 128 1층", + "average_price": 12947, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-709-0303", + "score": 5.0, + "review": 6, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 565, + "name": "피자스쿨 판교백현마을점", + "address": "경기 성남시 분당구 동판교로 58 나이스프라자 1층", + "average_price": 13566, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:40", + "phone_number": "031-704-1566", + "score": 5.0, + "review": 3, + "duration_hours": "11:00 ~ 21:40", + "category_id": 4 + }, + { + "restaurant_id": 566, + "name": "몽델리부티크", + "address": "경기 성남시 분당구 백현로 26 더블트리 바이힐튼호텔 판교 지하1층 2호", + "average_price": 10863, + "caution": "포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": null, + "score": 3.6, + "review": 222, + "duration_hours": "10:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 567, + "name": "비눔", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 B106호", + "average_price": 15000, + "caution": "예약가능, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": "0507-1435-6693", + "score": 5.0, + "review": 143, + "duration_hours": "14:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 568, + "name": "정직유부 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 31 1층 123호", + "average_price": 5942, + "caution": "배달가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": "031-705-7911", + "score": 5.0, + "review": 1, + "duration_hours": "10:30 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 569, + "name": "샐러디 판교테크노밸리점", + "address": "경기 성남시 분당구 대왕판교로 670 1층 114호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 20:30", + "phone_number": "031-739-8687", + "score": 2.2, + "review": 20, + "duration_hours": "08:00 ~ 20:30", + "category_id": 4 + }, + { + "restaurant_id": 570, + "name": "아르고", + "address": "경기 성남시 분당구 판교역로 145 알파리움 2동 117호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 23:30", + "phone_number": "031-701-1114", + "score": 4.8, + "review": 15, + "duration_hours": "17:00 ~ 23:30", + "category_id": 4 + }, + { + "restaurant_id": 571, + "name": "호화식탁 서판교", + "address": "경기 성남시 분당구 판교로25번길 18-6 1층", + "average_price": 26857, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": null, + "score": 4.0, + "review": 13, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 572, + "name": "식스밀 판교H스퀘어점", + "address": "경기 성남시 분당구 판교역로 235 N동 1층 104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 20:00", + "phone_number": "031-1661-6667", + "score": 3.6, + "review": 7, + "duration_hours": "11:00 ~ 20:00", + "category_id": 4 + }, + { + "restaurant_id": 573, + "name": "올레샐러드", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 8352, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-628-1475", + "score": 5.0, + "review": 16, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 574, + "name": "삐에뜨라", + "address": "경기 성남시 분당구 판교역로2번길 5 101호", + "average_price": 25000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 15:00 ~ 17:00", + "phone_number": "031-781-3080", + "score": 3.4, + "review": 133, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 575, + "name": "호화식탁", + "address": "경기 성남시 분당구 판교공원로3길 4 1층", + "average_price": 25800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": null, + "score": 5.0, + "review": 11, + "duration_hours": "11:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 576, + "name": "반올림피자 판교점", + "address": "경기 성남시 분당구 판교공원로1길 3 1층 101호", + "average_price": 22066, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 23:00", + "phone_number": "031-704-7773", + "score": 5.0, + "review": 2, + "duration_hours": "12:00 ~ 23:00", + "category_id": 4 + }, + { + "restaurant_id": 577, + "name": "샐러디 판교역점", + "address": "경기 성남시 분당구 대왕판교로606번길 58 1-20, 29호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 3, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 578, + "name": "미츠스테이크 서현", + "address": "경기 성남시 분당구 분당로53번길 11 서원플라자 5층", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-708-6617", + "score": 4.4, + "review": 121, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 579, + "name": "프레퍼스다이어트푸드 판교점", + "address": "경기 성남시 분당구 판교역로 231", + "average_price": 11233, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "0507-2083-8506", + "score": 1.9, + "review": 27, + "duration_hours": "10:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 580, + "name": "라그릴리아 롯데백화점분당점", + "address": "경기 성남시 분당구 황새울로200번길 45 1층", + "average_price": 38752, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": "031-738-2051", + "score": 3.9, + "review": 30, + "duration_hours": "10:30 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 581, + "name": "낙원테산도 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 5층", + "average_price": 14566, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-5170-1527", + "score": 0.0, + "review": 254, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 582, + "name": "차차식당", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 B-119-1호", + "average_price": 12150, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 14:00 ~ 17:00", + "phone_number": null, + "score": 4.2, + "review": 23, + "duration_hours": "14:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 583, + "name": "카사준", + "address": "경기 성남시 분당구 판교공원로2길 46-1 1층", + "average_price": 21500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 30, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 584, + "name": "스파게티스토리", + "address": "경기 성남시 분당구 서현로210번길 16 1층", + "average_price": 6075, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "070-8835-2302", + "score": 3.3, + "review": 10, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 585, + "name": "루체까사", + "address": "경기 성남시 분당구 판교역로18번길 2", + "average_price": 23969, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 3, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 586, + "name": "남자피자 판교백현점", + "address": "경기 성남시 분당구 동판교로 122", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:50 ~ 22:50", + "phone_number": null, + "score": 2.0, + "review": 0, + "duration_hours": "10:50 ~ 22:50", + "category_id": 4 + }, + { + "restaurant_id": 587, + "name": "파스타테이블", + "address": "경기 성남시 분당구 분당로53번길 21 산호프라자 2층 207호", + "average_price": 19142, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 15:00 ~ 17:00", + "phone_number": "0502-5550-2093", + "score": 4.8, + "review": 21, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 588, + "name": "105파스타", + "address": "경기 성남시 분당구 양현로 126 1층", + "average_price": 7750, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:30 ~ 20:40", + "phone_number": "031-707-9105", + "score": 4.3, + "review": 10, + "duration_hours": "11:30 ~ 20:40", + "category_id": 4 + }, + { + "restaurant_id": 589, + "name": "미태리 분당아름마을점", + "address": "경기 성남시 분당구 판교로 441 남서울프라자 1층 110호", + "average_price": 6200, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-703-7333", + "score": 5.0, + "review": 24, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 590, + "name": "파스타마마 수내점", + "address": "경기 성남시 분당구 백현로101번길 16 1층", + "average_price": 6900, + "caution": "포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 20:00", + "phone_number": "031-712-3700", + "score": 3.4, + "review": 7, + "duration_hours": "10:00 ~ 20:00", + "category_id": 4 + }, + { + "restaurant_id": 591, + "name": "구전동화 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 지하1층 비101호", + "average_price": 60000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.0, + "review": 3, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 592, + "name": "남자피자 판교점", + "address": "경기 성남시 분당구 서판교로 160", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 593, + "name": "몬테쿠치나", + "address": "경기 성남시 분당구 안양판교로828번길 20", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-0987", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 594, + "name": "올데이파스타", + "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 지하1층 B107호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 595, + "name": "어퍼그레이 AK플라자 분당점", + "address": "경기 성남시 분당구 황새울로360번길 42 7층", + "average_price": 21408, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 20:30", + "phone_number": "031-8023-2700", + "score": 4.5, + "review": 22, + "duration_hours": "11:00 ~ 20:30", + "category_id": 4 + }, + { + "restaurant_id": 596, + "name": "파스타어때", + "address": "경기 성남시 분당구 백현로101번길 16 대덕프라자 지하1층 B102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 00:00 ~ 24:00", + "phone_number": null, + "score": 0.0, + "review": 5, + "duration_hours": "00:00 ~ 24:00", + "category_id": 4 + }, + { + "restaurant_id": 597, + "name": "미태리파스타 분당아름마을점", + "address": "경기 성남시 분당구 판교로 441 남서울프라자 1층 110호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 598, + "name": "마리에뜨다이닝", + "address": "경기 성남시 분당구 황새울로360번길 42", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 599, + "name": "파스타제면소", + "address": "경기 성남시 분당구 백현로101번길 16", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-7775-4004", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 600, + "name": "그릴러", + "address": "경기 성남시 분당구 황새울로 315 대현빌딩 2층 205호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 601, + "name": "지오쿠치나", + "address": "경기 성남시 분당구 황새울로200번길 34 코포모빌딩 1층 101,102호", + "average_price": 25000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 21:50", + "phone_number": "031-711-9488", + "score": 0.0, + "review": 189, + "duration_hours": "11:30 ~ 21:50", + "category_id": 4 + }, + { + "restaurant_id": 602, + "name": "비스트로도마", + "address": "경기 성남시 분당구 하오개로 383 1층", + "average_price": 44475, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-702-6009", + "score": 4.1, + "review": 201, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 603, + "name": "도쿄스테이크 서현역점", + "address": "경기 성남시 분당구 분당로53번길 19 피아자코코빌딩 2층 202호", + "average_price": 11416, + "caution": "배달가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-705-2828", + "score": 3.3, + "review": 0, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 604, + "name": "서울미트볼&파스타", + "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 1층 107호", + "average_price": 11180, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:30 ~ 17:00", + "phone_number": "031-715-0526", + "score": 4.7, + "review": 45, + "duration_hours": "15:30 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 605, + "name": "카페두레브", + "address": "경기 성남시 분당구 판교백현로 57 1,2층", + "average_price": 9816, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 08:00 ~ 22:00", + "phone_number": "031-705-1711", + "score": 3.2, + "review": 56, + "duration_hours": "08:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 606, + "name": "푸른언덕", + "address": "경기 성남시 수정구 사송로80번길 23 1,2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 20:00", + "phone_number": null, + "score": 3.3, + "review": 19, + "duration_hours": "10:00 ~ 20:00", + "category_id": 4 + }, + { + "restaurant_id": 607, + "name": "매드포갈릭 분당서현점", + "address": "경기 성남시 분당구 분당로53번길 22 블루홀플라자 지하1층", + "average_price": 55922, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:00", + "phone_number": "031-705-8120", + "score": 3.9, + "review": 95, + "duration_hours": "11:30 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 608, + "name": "105파스타 서현점", + "address": "경기 성남시 분당구 황새울로312번길 20 분당태성빌딩 2층 203호", + "average_price": 12050, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 11:00 ~ 22:00", + "phone_number": "031-707-0105", + "score": 4.0, + "review": 4, + "duration_hours": "11:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 609, + "name": "아웃백스테이크하우스 분당AK점", + "address": "경기 성남시 분당구 황새울로360번길 42 AK플라자 5층", + "average_price": 30793, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:30", + "phone_number": "031-8023-2800", + "score": 3.2, + "review": 274, + "duration_hours": "10:30 ~ 21:30", + "category_id": 4 + }, + { + "restaurant_id": 610, + "name": "더블트리 바이 힐튼 서울 판교 닉스", + "address": "경기 성남시 분당구 백현로 26 21층", + "average_price": 62400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 24:00", + "phone_number": null, + "score": 4.2, + "review": 219, + "duration_hours": "11:30 ~ 24:00", + "category_id": 4 + }, + { + "restaurant_id": 611, + "name": "달빛한잔 본점", + "address": "경기 성남시 분당구 황새울로360번길 12 대명프라자 3층 320호", + "average_price": 14718, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:30 ~ 04:00", + "phone_number": null, + "score": 4.5, + "review": 54, + "duration_hours": "17:30 ~ 04:00", + "category_id": 4 + }, + { + "restaurant_id": 612, + "name": "쉐프쿠치나", + "address": "경기 성남시 분당구 하오개로349번길 4", + "average_price": 34200, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 7, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 613, + "name": "훈스파이 본점", + "address": "경기 성남시 분당구 궁내로 22 1층", + "average_price": 6550, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-714-8249", + "score": 4.0, + "review": 17, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 614, + "name": "소베뉴", + "address": "경기 성남시 분당구 판교백현로 61 1-2층", + "average_price": 60000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "수~일 10:00 ~ 19:00", + "phone_number": "031-707-3770", + "score": 3.8, + "review": 76, + "duration_hours": "10:00 ~ 19:00", + "category_id": 4 + }, + { + "restaurant_id": 615, + "name": "더몰트하우스 서핑시티 판교점", + "address": "경기 성남시 수정구 창업로 18 파미어스몰 1층", + "average_price": 22500, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-755-5818", + "score": 3.7, + "review": 122, + "duration_hours": "11:00 ~ 23:00", + "category_id": 4 + }, + { + "restaurant_id": 616, + "name": "샐러디 분당서현점", + "address": "경기 성남시 분당구 황새울로359번길 11 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-704-1147", + "score": 2.2, + "review": 31, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 617, + "name": "틈 서현", + "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 106호", + "average_price": 20025, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 17:00 ~ 02:00", + "phone_number": "0503-7150-4886", + "score": 4.7, + "review": 232, + "duration_hours": "17:00 ~ 02:00", + "category_id": 4 + }, + { + "restaurant_id": 618, + "name": "미도인 서현", + "address": "경기 성남시 분당구 분당로53번길 10 2층 202호", + "average_price": 13600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:00", + "phone_number": "031-703-1990", + "score": 0.0, + "review": 0, + "duration_hours": "11:30 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 619, + "name": "모티이", + "address": "경기 성남시 분당구 황새울로311번길 28", + "average_price": 17285, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 01:00", + "phone_number": "031-707-9297", + "score": 4.7, + "review": 381, + "duration_hours": "11:00 ~ 01:00", + "category_id": 4 + }, + { + "restaurant_id": 620, + "name": "브런치빈 분당서현점", + "address": "경기 성남시 분당구 분당로53번길 16 정일빌딩 4층 402호", + "average_price": 12900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 21:00", + "phone_number": "031-778-7420", + "score": 2.7, + "review": 136, + "duration_hours": "09:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 621, + "name": "서가앤쿡 판교파이어스몰점", + "address": "경기 성남시 수정구 창업로 17 아이스퀘어 A동 106호", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-721-0401", + "score": 2.9, + "review": 0, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 622, + "name": "긴자료코 수내점", + "address": "경기 성남시 분당구 황새울로258번길 10-9 1층 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:00", + "phone_number": "031-711-5045", + "score": 4.0, + "review": 39, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 623, + "name": "언버튼", + "address": "경기 성남시 수정구 창업로 43 글로벌비즈센터 A동 1층 107호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "070-8230-4448", + "score": 5.0, + "review": 33, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 624, + "name": "샐러디 판교제2테크노밸리점", + "address": "경기 성남시 수정구 창업로 57 103호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 07:00 ~ 20:00", + "phone_number": "031-705-5733", + "score": 4.5, + "review": 22, + "duration_hours": "07:00 ~ 20:00", + "category_id": 4 + }, + { + "restaurant_id": 625, + "name": "번쩍피자 수내점", + "address": "경기 성남시 분당구 수내로46번길 20 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-719-2595", + "score": 3.7, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 626, + "name": "파스타예요 분당점", + "address": "경기 성남시 분당구 황새울로319번길 6", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 24:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "10:00 ~ 24:00", + "category_id": 4 + }, + { + "restaurant_id": 627, + "name": "굽네치킨 야탑1,2동점", + "address": "경기 성남시 분당구 판교로 443 중앙빌딩 106-1,107-1호", + "average_price": 19733, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 01:30", + "phone_number": "031-708-5777", + "score": 3.0, + "review": 1, + "duration_hours": "11:30 ~ 01:30", + "category_id": 4 + }, + { + "restaurant_id": 628, + "name": "고동경양 분당수내점", + "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 1층", + "average_price": 13333, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": null, + "score": 3.2, + "review": 118, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 629, + "name": "스탭밀", + "address": "경기 성남시 수정구 창업로 43 1층 B-105,106호", + "average_price": 8520, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 14:00", + "phone_number": "0507-1313-8613", + "score": 4.9, + "review": 31, + "duration_hours": "11:30 ~ 14:00", + "category_id": 4 + }, + { + "restaurant_id": 630, + "name": "피자스쿨 분당정자1점", + "address": "경기 성남시 분당구 성남대로 389 폴라리스2 105호", + "average_price": 13566, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-711-7766", + "score": 4.1, + "review": 1, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 631, + "name": "조셉스테이크 더블트리바이힐튼점", + "address": "경기 성남시 분당구 백현로 26", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 18:00", + "phone_number": "031-8039-7397", + "score": 5.0, + "review": 40, + "duration_hours": "15:00 ~ 18:00", + "category_id": 4 + }, + { + "restaurant_id": 632, + "name": "에뿔라이(epulae)", + "address": "경기 성남시 분당구 황새울로335번길 5", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 1, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 633, + "name": "샐러디 수내점", + "address": "경기 성남시 분당구 황새울로200번길 9-7 1층", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 21:00", + "phone_number": "031-712-8831", + "score": 3.9, + "review": 29, + "duration_hours": "10:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 634, + "name": "정직유부 수내점", + "address": "경기 성남시 분당구 내정로165번길 50 1층 103호", + "average_price": 5942, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": "031-717-7911", + "score": 4.5, + "review": 3, + "duration_hours": "10:30 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 635, + "name": "피자먹다 서현점", + "address": "경기 성남시 분당구 황새울로342번길 9 1층", + "average_price": 0, + "caution": "배달가능, 포장가능", + "convenience": "WIFI", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-708-0913", + "score": 3.8, + "review": 20, + "duration_hours": "11:00 ~ 23:00", + "category_id": 4 + }, + { + "restaurant_id": 636, + "name": "토끼정", + "address": "경기 성남시 수정구 창업로 17", + "average_price": 0, + "caution": "예약불가, 포장불가", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.5, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 637, + "name": "피자스쿨 분당아름점", + "address": "경기 성남시 분당구 판교로 437 숭문상가 103호", + "average_price": 13566, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-708-7088", + "score": 5.0, + "review": 2, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 638, + "name": "델리커리 판교점", + "address": "경기 성남시 수정구 창업로 18 파미어스몰 P1동 2층 210-1호", + "average_price": 10460, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": null, + "score": 4.0, + "review": 40, + "duration_hours": "10:30 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 639, + "name": "빽보이피자 분당서현점", + "address": "경기 성남시 분당구 서현로 184 105호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "016684595", + "score": 2.8, + "review": 2, + "duration_hours": "11:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 640, + "name": "찬찬", + "address": "경기 성남시 분당구 황새울로258번길 43", + "average_price": 4000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 18:00 ~ 02:00", + "phone_number": "02-3281-1300", + "score": 4.7, + "review": 6, + "duration_hours": "18:00 ~ 02:00", + "category_id": 4 + }, + { + "restaurant_id": 641, + "name": "이백장돈가스 분당아름마을점", + "address": "경기 성남시 분당구 판교로 437 숭문상가 1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-707-0290", + "score": 4.4, + "review": 4, + "duration_hours": "11:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 642, + "name": "한스델리 서현1호점", + "address": "경기 성남시 분당구 분당로53번길 12", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-701-2772", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 643, + "name": "먼키 분당휴맥스점", + "address": "경기 성남시 분당구 황새울로 216 휴맥스빌리지 지하1층", + "average_price": 14310, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "0507-1471-7118", + "score": 5.0, + "review": 5, + "duration_hours": "15:00 ~ 17:00", + "category_id": 4 + }, + { + "restaurant_id": 644, + "name": "고향카츠 판교테크노밸리점", + "address": "경기 성남시 수정구 창업로 18 파미어스몰 C1동 1층 114,115호", + "average_price": 22900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.9, + "review": 5, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 645, + "name": "샐러디 판교도시첨단점", + "address": "경기 성남시 수정구 금토로80번길 51 판교위너스에비뉴 1층 105호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 20:00", + "phone_number": "031-709-8090", + "score": 5.0, + "review": 0, + "duration_hours": "10:00 ~ 20:00", + "category_id": 4 + }, + { + "restaurant_id": 646, + "name": "핑크덤벨헬스푸드", + "address": "경기 성남시 분당구 황새울로342번길 19 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": null, + "score": 4.0, + "review": 8, + "duration_hours": "11:00 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 647, + "name": "돼지게티 분당야탑점", + "address": "경기 성남시 분당구 판교로 433 206호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:20 ~ 01:20", + "phone_number": "031-781-8660", + "score": 3.0, + "review": 1, + "duration_hours": "11:20 ~ 01:20", + "category_id": 4 + }, + { + "restaurant_id": 648, + "name": "피치타임 수내역점", + "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 1층 104호", + "average_price": 16733, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 24:00", + "phone_number": "031-719-9232", + "score": 0.0, + "review": 47, + "duration_hours": "12:00 ~ 24:00", + "category_id": 4 + }, + { + "restaurant_id": 649, + "name": "오마드", + "address": "경기 성남시 분당구 황새울로312번길 20", + "average_price": 9566, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:30 ~ 21:00", + "phone_number": "02-518-8520", + "score": 0.0, + "review": 7, + "duration_hours": "10:30 ~ 21:00", + "category_id": 4 + }, + { + "restaurant_id": 650, + "name": "바순", + "address": "경기 성남시 분당구 서현로 170 풍림아이원플러스 2층", + "average_price": 16100, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 21:30", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "08:00 ~ 21:30", + "category_id": 4 + }, + { + "restaurant_id": 651, + "name": "샐러딧 판교파미어스점", + "address": "경기 성남시 수정구 창업로 17 판교아이스퀘어 B동 103-1호", + "average_price": 10625, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 07:00 ~ 20:00", + "phone_number": "031-721-7924", + "score": 5.0, + "review": 24, + "duration_hours": "07:00 ~ 20:00", + "category_id": 4 + }, + { + "restaurant_id": 652, + "name": "파파밸리피자 롯데백화점분당점", + "address": "경기 성남시 분당구 황새울로200번길 45 지하 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-738-2088", + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 653, + "name": "에덴의이슬", + "address": "경기 성남시 분당구 판교로 436 홍우프라자 1층 12호", + "average_price": 4583, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 1, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 654, + "name": "맘스피자 이매역점", + "address": "경기 성남시 분당구 양현로 126 미림프라자 2층 203~204호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-707-6663", + "score": 0.0, + "review": 0, + "duration_hours": "10:00 ~ 22:00", + "category_id": 4 + }, + { + "restaurant_id": 655, + "name": "꽃물 서현점", + "address": "경기 성남시 분당구 서현로210번길 14 유성트윈프라자 지하1호,2호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 656, + "name": "웰돈", + "address": "경기 성남시 분당구 서현로 192", + "average_price": 12600, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 4 + }, + { + "restaurant_id": 657, + "name": "뚜에이오", + "address": "경기 성남시 분당구 판교공원로3길 24-2", + "average_price": 25133, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:20", + "phone_number": "031-8016-1865", + "score": 4.2, + "review": 873, + "duration_hours": "11:00 ~ 21:20", + "category_id": 5 + }, + { + "restaurant_id": 658, + "name": "파파라구", + "address": "경기 성남시 분당구 판교역로10번길 22-3 1층 101,102호", + "average_price": 17111, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 11:30 ~ 21:00", + "phone_number": "031-709-5624", + "score": 3.7, + "review": 521, + "duration_hours": "11:30 ~ 21:00", + "category_id": 5 + }, + { + "restaurant_id": 659, + "name": "라비떼", + "address": "경기 성남시 분당구 판교공원로3길 16 1층", + "average_price": 21466, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 15:00 ~ 17:30", + "phone_number": null, + "score": 3.9, + "review": 274, + "duration_hours": "15:00 ~ 17:30", + "category_id": 5 + }, + { + "restaurant_id": 660, + "name": "빈티지1988", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 101호", + "average_price": 64000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:30", + "phone_number": "0507-1387-1993", + "score": 3.1, + "review": 442, + "duration_hours": "14:30 ~ 17:30", + "category_id": 5 + }, + { + "restaurant_id": 661, + "name": "세렌", + "address": "경기 성남시 분당구 운중로188번길 11 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "031-709-0775", + "score": 3.8, + "review": 300, + "duration_hours": "15:00 ~ 17:30", + "category_id": 5 + }, + { + "restaurant_id": 662, + "name": "푸치니", + "address": "경기 성남시 분당구 판교로25번길 6-3 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 15:00 ~ 17:30", + "phone_number": "031-701-3398", + "score": 4.2, + "review": 52, + "duration_hours": "15:00 ~ 17:30", + "category_id": 5 + }, + { + "restaurant_id": 663, + "name": "오스테리아 워모잡", + "address": "경기 성남시 분당구 판교공원로2길 40-1 1층", + "average_price": 80316, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "010-3005-9541", + "score": 3.4, + "review": 250, + "duration_hours": "15:00 ~ 17:30", + "category_id": 5 + }, + { + "restaurant_id": 664, + "name": "라그릴리아 판교점", + "address": "경기 성남시 분당구 판교역로 166 카카오 판교 아지트 1층 17호", + "average_price": 24961, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:00", + "phone_number": "031-707-0999", + "score": 4.2, + "review": 112, + "duration_hours": "11:30 ~ 21:00", + "category_id": 5 + }, + { + "restaurant_id": 665, + "name": "라스토리아1001", + "address": "경기 성남시 분당구 판교공원로3길 24 1층", + "average_price": 27333, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "수~일 11:00 ~ 21:00", + "phone_number": "0502-5551-6969", + "score": 0.0, + "review": 266, + "duration_hours": "11:00 ~ 21:00", + "category_id": 5 + }, + { + "restaurant_id": 666, + "name": "이탈리 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 지하1층", + "average_price": 8066, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-1061", + "score": 3.2, + "review": 231, + "duration_hours": "10:30 ~ 20:00", + "category_id": 5 + }, + { + "restaurant_id": 667, + "name": "베네쿠치", + "address": "경기 성남시 분당구 운중로146번길 19 1층", + "average_price": 21900, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 11:30 ~ 21:30", + "phone_number": null, + "score": 4.1, + "review": 48, + "duration_hours": "11:30 ~ 21:30", + "category_id": 5 + }, + { + "restaurant_id": 668, + "name": "피제리아 비니스", + "address": "경기 성남시 분당구 판교공원로1길 70 1층", + "average_price": 12133, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "수~일 15:30 ~ 17:30", + "phone_number": "031-701-0345", + "score": 4.5, + "review": 598, + "duration_hours": "15:30 ~ 17:30", + "category_id": 5 + }, + { + "restaurant_id": 669, + "name": "더플레이스 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 1층", + "average_price": 36425, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-701-0421", + "score": 4.4, + "review": 169, + "duration_hours": "10:00 ~ 22:00", + "category_id": 5 + }, + { + "restaurant_id": 670, + "name": "메즈클라", + "address": "경기 성남시 분당구 운중로146번길 35-1", + "average_price": 23200, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 15:00 ~ 17:30", + "phone_number": "0507-1360-7544", + "score": 3.9, + "review": 0, + "duration_hours": "15:00 ~ 17:30", + "category_id": 5 + }, + { + "restaurant_id": 671, + "name": "에이치541", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 9층", + "average_price": 22500, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:30", + "phone_number": "031-5170-2541", + "score": 3.5, + "review": 10, + "duration_hours": "10:30 ~ 21:30", + "category_id": 5 + }, + { + "restaurant_id": 672, + "name": "체르또", + "address": "경기 성남시 분당구 동판교로52번길 13-10 1층 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 11:00 ~ 21:30", + "phone_number": "0502-5550-1744", + "score": 4.6, + "review": 23, + "duration_hours": "11:00 ~ 21:30", + "category_id": 5 + }, + { + "restaurant_id": 673, + "name": "에이치이에이", + "address": "경기 성남시 분당구 판교공원로1길 67 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-781-0122", + "score": 5.0, + "review": 467, + "duration_hours": "11:00 ~ 23:00", + "category_id": 5 + }, + { + "restaurant_id": 674, + "name": "더이탈리안클럽 판교테크원점", + "address": "경기 성남시 분당구 분당내곡로 131 1층 5-2호", + "average_price": 32384, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:30", + "phone_number": null, + "score": 3.6, + "review": 207, + "duration_hours": "15:00 ~ 17:30", + "category_id": 5 + }, + { + "restaurant_id": 675, + "name": "비스트로바이콘", + "address": "경기 성남시 분당구 대왕판교로645번길 36 1층", + "average_price": 23333, + "caution": "유의사항 정보 없음", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-606-8511", + "score": 4.3, + "review": 18, + "duration_hours": "11:00 ~ 21:00", + "category_id": 5 + }, + { + "restaurant_id": 676, + "name": "까사파스토", + "address": "경기 성남시 분당구 판교역로10번길 14-5 1층 102호", + "average_price": 18666, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 10:30 ~ 21:00", + "phone_number": "031-726-9155", + "score": 4.9, + "review": 36, + "duration_hours": "10:30 ~ 21:00", + "category_id": 5 + }, + { + "restaurant_id": 677, + "name": "판교의하루일과", + "address": "경기 성남시 분당구 분당내곡로 131 2층 11호", + "average_price": 22600, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 24:00", + "phone_number": "031-601-7559", + "score": 3.5, + "review": 84, + "duration_hours": "11:30 ~ 24:00", + "category_id": 5 + }, + { + "restaurant_id": 678, + "name": "구세뻬", + "address": "경기 성남시 분당구 판교로33번길 21 1층", + "average_price": 11511, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 20:00", + "phone_number": null, + "score": 3.6, + "review": 4, + "duration_hours": "10:00 ~ 20:00", + "category_id": 5 + }, + { + "restaurant_id": 679, + "name": "챠오바라이트", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 125호", + "average_price": 14916, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 10:00", + "phone_number": "031-628-4545", + "score": 3.0, + "review": 10, + "duration_hours": "11:30 ~ 10:00", + "category_id": 5 + }, + { + "restaurant_id": 680, + "name": "스너그", + "address": "경기 성남시 분당구 운중로113번길 12-2 1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "010-7257-2055", + "score": 3.7, + "review": 28, + "duration_hours": "10:00 ~ 22:00", + "category_id": 5 + }, + { + "restaurant_id": 681, + "name": "더 키친 일뽀르노 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 5층", + "average_price": 22904, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": "031-5170-1592", + "score": 3.8, + "review": 87, + "duration_hours": "10:30 ~ 21:00", + "category_id": 5 + }, + { + "restaurant_id": 682, + "name": "라빌란치아 이탈리안음식전문점", + "address": "경기 성남시 분당구 판교공원로2길 49 1층", + "average_price": 35200, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:00", + "phone_number": null, + "score": 4.8, + "review": 2, + "duration_hours": "11:00 ~ 22:00", + "category_id": 5 + }, + { + "restaurant_id": 683, + "name": "비스트로허디거디", + "address": "경기 성남시 분당구 산운로32번길 14", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8017-3214", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 5 + }, + { + "restaurant_id": 684, + "name": "빔스", + "address": "경기 성남시 분당구 대왕판교로606번길 39 12층 1201호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 4.5, + "review": 0, + "duration_hours": "null", + "category_id": 5 + }, + { + "restaurant_id": 685, + "name": "105파스타 서판교점", + "address": "경기 성남시 분당구 판교공원로5길 3 1층 102호", + "average_price": 7905, + "caution": "포장가능", + "convenience": "WIFI", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-707-0105", + "score": 4.2, + "review": 3, + "duration_hours": "11:30 ~ 22:00", + "category_id": 5 + }, + { + "restaurant_id": 686, + "name": "파토리아1964", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 9층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-1938", + "score": 2.9, + "review": 0, + "duration_hours": "null", + "category_id": 5 + }, + { + "restaurant_id": 687, + "name": "오말리 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 47", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-625-1232", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 5 + }, + { + "restaurant_id": 688, + "name": "라 피아디나", + "address": "경기 성남시 분당구 판교역로146번길 20", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 5 + }, + { + "restaurant_id": 689, + "name": "레스토랑마고", + "address": "경기 성남시 분당구 정자일로 230 동양파라곤 105동 지하 103호", + "average_price": 76000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "010-4526-0589", + "score": 4.2, + "review": 161, + "duration_hours": "11:30 ~ 22:00", + "category_id": 5 + }, + { + "restaurant_id": 690, + "name": "메이빌 분당점", + "address": "경기 성남시 분당구 서현로210번길 16 유성트윈프라자 2층", + "average_price": 12600, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:30", + "phone_number": "031-705-4267", + "score": 4.0, + "review": 84, + "duration_hours": "11:30 ~ 21:30", + "category_id": 5 + }, + { + "restaurant_id": 691, + "name": "토브나인", + "address": "경기 성남시 수정구 사송로 56 1,2층", + "average_price": 13600, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": "070-8870-9990", + "score": 4.1, + "review": 95, + "duration_hours": "10:30 ~ 21:00", + "category_id": 5 + }, + { + "restaurant_id": 692, + "name": "쏘렐라파스타 본점", + "address": "경기 성남시 분당구 정자일로 177 인텔리지빌딩 상가 3층 306호", + "average_price": 17000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "031-782-5882", + "score": 3.8, + "review": 33, + "duration_hours": "11:30 ~ 22:00", + "category_id": 5 + }, + { + "restaurant_id": 693, + "name": "돈파스타", + "address": "경기 성남시 분당구 황새울로342번길 11 금호리빙스텔 2층 201호", + "average_price": 19000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 11:30 ~ 15:00", + "phone_number": "031-701-2155", + "score": 3.9, + "review": 64, + "duration_hours": "11:30 ~ 15:00", + "category_id": 5 + }, + { + "restaurant_id": 694, + "name": "꼰떼넨떼", + "address": "경기 성남시 분당구 정자일로 210 2단지 101호", + "average_price": 37444, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "031-718-2777", + "score": 3.4, + "review": 211, + "duration_hours": "15:00 ~ 17:30", + "category_id": 5 + }, + { + "restaurant_id": 695, + "name": "롤링파스타 서현역점", + "address": "경기 성남시 분당구 분당로53번길 14 서현프라자 2층", + "average_price": 8444, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-707-3547", + "score": 4.4, + "review": 184, + "duration_hours": "11:00 ~ 21:00", + "category_id": 5 + }, + { + "restaurant_id": 696, + "name": "투파인드피터 서현점", + "address": "경기 성남시 분당구 황새울로360번길 26 4층 401호", + "average_price": 13166, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-778-6263", + "score": 4.7, + "review": 621, + "duration_hours": "11:00 ~ 22:00", + "category_id": 5 + }, + { + "restaurant_id": 697, + "name": "다크앤라이트", + "address": "경기 성남시 수정구 달래내로 252 2층", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "수~일 15:00 ~ 17:30", + "phone_number": "031-708-8730", + "score": 4.5, + "review": 162, + "duration_hours": "15:00 ~ 17:30", + "category_id": 5 + }, + { + "restaurant_id": 698, + "name": "닐리파스타앤피자 정자역점", + "address": "경기 성남시 분당구 정자일로 210 정자동양파라곤 1층 108호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-712-1944", + "score": 3.5, + "review": 27, + "duration_hours": "11:00 ~ 22:00", + "category_id": 5 + }, + { + "restaurant_id": 699, + "name": "몽델리부티크", + "address": "경기 성남시 분당구 백현로 26 더블트리 바이힐튼호텔 판교 지하1층 2호", + "average_price": 10863, + "caution": "포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": null, + "score": 3.6, + "review": 222, + "duration_hours": "10:00 ~ 22:00", + "category_id": 5 + }, + { + "restaurant_id": 700, + "name": "미츠스테이크 서현", + "address": "경기 성남시 분당구 분당로53번길 11 서원플라자 5층", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-708-6617", + "score": 4.4, + "review": 121, + "duration_hours": "11:30 ~ 22:00", + "category_id": 5 + }, + { + "restaurant_id": 701, + "name": "라그릴리아 롯데백화점분당점", + "address": "경기 성남시 분당구 황새울로200번길 45 1층", + "average_price": 38752, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": "031-738-2051", + "score": 3.9, + "review": 30, + "duration_hours": "10:30 ~ 21:00", + "category_id": 5 + }, + { + "restaurant_id": 702, + "name": "스파게티스토리", + "address": "경기 성남시 분당구 서현로210번길 16 1층", + "average_price": 6075, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "070-8835-2302", + "score": 3.3, + "review": 10, + "duration_hours": "11:00 ~ 21:00", + "category_id": 5 + }, + { + "restaurant_id": 703, + "name": "롤링파스타 분당정자점", + "address": "경기 성남시 분당구 황새울로108번길 5 1층", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-717-3547", + "score": 3.8, + "review": 1, + "duration_hours": "11:00 ~ 21:00", + "category_id": 5 + }, + { + "restaurant_id": 704, + "name": "파스타테이블", + "address": "경기 성남시 분당구 분당로53번길 21 산호프라자 2층 207호", + "average_price": 19142, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 21:30", + "phone_number": "0502-5550-2093", + "score": 4.8, + "review": 21, + "duration_hours": "11:00 ~ 21:30", + "category_id": 5 + }, + { + "restaurant_id": 705, + "name": "105파스타", + "address": "경기 성남시 분당구 양현로 126 1층", + "average_price": 7750, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:30 ~ 20:40", + "phone_number": "031-707-9105", + "score": 4.3, + "review": 10, + "duration_hours": "11:30 ~ 20:40", + "category_id": 5 + }, + { + "restaurant_id": 706, + "name": "미태리 분당아름마을점", + "address": "경기 성남시 분당구 판교로 441 남서울프라자 1층 110호", + "average_price": 6200, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-703-7333", + "score": 5.0, + "review": 24, + "duration_hours": "11:00 ~ 21:00", + "category_id": 5 + }, + { + "restaurant_id": 707, + "name": "파스타마마 수내점", + "address": "경기 성남시 분당구 백현로101번길 16 1층", + "average_price": 6900, + "caution": "포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 20:00", + "phone_number": "031-712-3700", + "score": 3.4, + "review": 7, + "duration_hours": "10:00 ~ 20:00", + "category_id": 5 + }, + { + "restaurant_id": 708, + "name": "라까사데파스타", + "address": "경기 성남시 분당구 중앙공원로31번길 42", + "average_price": 12500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 11:30 ~ 21:00", + "phone_number": "010-8741-8588", + "score": 4.7, + "review": 0, + "duration_hours": "11:30 ~ 21:00", + "category_id": 5 + }, + { + "restaurant_id": 709, + "name": "요녀석파스타 분당점", + "address": "경기 성남시 분당구 느티로87번길 17 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수,토", + "is_deleted": "\u0000", + "operating_hour": "수,토 09:30 ~ 02:00", + "phone_number": "031-712-6667", + "score": 4.7, + "review": 0, + "duration_hours": "09:30 ~ 02:00", + "category_id": 5 + }, + { + "restaurant_id": 710, + "name": "몬테쿠치나", + "address": "경기 성남시 분당구 안양판교로828번길 20", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-0987", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 5 + }, + { + "restaurant_id": 711, + "name": "올데이파스타", + "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 지하1층 B107호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 5 + }, + { + "restaurant_id": 712, + "name": "파스타어때", + "address": "경기 성남시 분당구 백현로101번길 16 대덕프라자 지하1층 B102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 00:00 ~ 24:00", + "phone_number": null, + "score": 0.0, + "review": 5, + "duration_hours": "00:00 ~ 24:00", + "category_id": 5 + }, + { + "restaurant_id": 713, + "name": "다리오42", + "address": "경기 성남시 분당구 느티로51번길 8-3", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 23:00", + "phone_number": null, + "score": 0.0, + "review": 4, + "duration_hours": "11:00 ~ 23:00", + "category_id": 5 + }, + { + "restaurant_id": 714, + "name": "어퍼그레이 AK플라자 분당점", + "address": "경기 성남시 분당구 황새울로360번길 42 7층", + "average_price": 21408, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 20:30", + "phone_number": "031-8023-2700", + "score": 4.5, + "review": 22, + "duration_hours": "11:00 ~ 20:30", + "category_id": 5 + }, + { + "restaurant_id": 715, + "name": "미태리파스타 분당아름마을점", + "address": "경기 성남시 분당구 판교로 441 남서울프라자 1층 110호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 5 + }, + { + "restaurant_id": 716, + "name": "마리에뜨다이닝", + "address": "경기 성남시 분당구 황새울로360번길 42", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 5 + }, + { + "restaurant_id": 717, + "name": "괴짜쉐프파스타", + "address": "경기 성남시 분당구 내정로119번길 18 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 02:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "10:00 ~ 02:00", + "category_id": 5 + }, + { + "restaurant_id": 718, + "name": "파스타제면소", + "address": "경기 성남시 분당구 백현로101번길 16", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-7775-4004", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 5 + }, + { + "restaurant_id": 719, + "name": "그릴러", + "address": "경기 성남시 분당구 황새울로 315 대현빌딩 2층 205호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 5 + }, + { + "restaurant_id": 720, + "name": "사쿠라테이엔 판교직영점", + "address": "경기 성남시 분당구 대왕판교로606번길 45 1층 105호", + "average_price": 31400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:30 ~ 02:00", + "phone_number": "031-704-3005", + "score": 2.6, + "review": 1, + "duration_hours": "17:30 ~ 02:00", + "category_id": 6 + }, + { + "restaurant_id": 721, + "name": "청담이상 판교점", + "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋센터 2층 203호", + "average_price": 29200, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 01:00", + "phone_number": "031-8061-0708", + "score": 3.2, + "review": 22, + "duration_hours": "17:00 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 722, + "name": "유다 판교점", + "address": "경기 성남시 분당구 산운로160번길 20-4 1층", + "average_price": 16000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 17:00 ~ 03:00", + "phone_number": "031-8016-1370", + "score": 3.0, + "review": 16, + "duration_hours": "17:00 ~ 03:00", + "category_id": 6 + }, + { + "restaurant_id": 723, + "name": "단", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 160호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 24:00", + "phone_number": "031-628-1431", + "score": 4.2, + "review": 35, + "duration_hours": "11:30 ~ 24:00", + "category_id": 6 + }, + { + "restaurant_id": 724, + "name": "야키토리잔잔 판교점", + "address": "경기 성남시 분당구 분당내곡로 151 1층 107~109호", + "average_price": 28428, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 17:00 ~ 01:00", + "phone_number": null, + "score": 4.4, + "review": 44, + "duration_hours": "17:00 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 725, + "name": "청담이상 서판교점", + "address": "경기 성남시 분당구 판교로25번길 22 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 03:00", + "phone_number": "031-8017-8878", + "score": 3.7, + "review": 7, + "duration_hours": "17:00 ~ 03:00", + "category_id": 6 + }, + { + "restaurant_id": 726, + "name": "사쿠라테이엔 판교본점", + "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 1층 109호", + "average_price": 27800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 01:00", + "phone_number": null, + "score": 3.6, + "review": 439, + "duration_hours": "17:00 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 727, + "name": "야키토리 화련", + "address": "경기 성남시 분당구 판교역로192번길 22 판교효성해링턴타워 1층 106호", + "average_price": 11300, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 18:00 ~ 24:00", + "phone_number": "010-8610-3302", + "score": 4.7, + "review": 83, + "duration_hours": "18:00 ~ 24:00", + "category_id": 6 + }, + { + "restaurant_id": 728, + "name": "시치", + "address": "경기 성남시 분당구 대왕판교로606번길 31 호반메트로큐브 1층 129,130호", + "average_price": 27285, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 23:30", + "phone_number": "031-8016-9901", + "score": 0.0, + "review": 142, + "duration_hours": "11:30 ~ 23:30", + "category_id": 6 + }, + { + "restaurant_id": 729, + "name": "일류", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 2층 210호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 02:00", + "phone_number": null, + "score": 1.1, + "review": 564, + "duration_hours": "10:00 ~ 02:00", + "category_id": 6 + }, + { + "restaurant_id": 730, + "name": "모로미쿠시 판교점", + "address": "경기 성남시 분당구 판교역로192번길 14-2 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 01:30", + "phone_number": "031-8016-9835", + "score": 3.3, + "review": 27, + "duration_hours": "16:00 ~ 01:30", + "category_id": 6 + }, + { + "restaurant_id": 731, + "name": "마츠카게", + "address": "경기 성남시 분당구 판교역로 136 힐스테이트판교역 블루존 1층 1001호", + "average_price": 27750, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:30 ~ 01:00", + "phone_number": "0502-5550-5124", + "score": 5.0, + "review": 21, + "duration_hours": "17:30 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 732, + "name": "미술", + "address": "경기 성남시 분당구 판교역로192번길 22 효성해링턴타워 3층 313호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "동물출입\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 24:00", + "phone_number": "010-3982-0423", + "score": 5.0, + "review": 58, + "duration_hours": "17:00 ~ 24:00", + "category_id": 6 + }, + { + "restaurant_id": 733, + "name": "생마차 판교역점", + "address": "경기 성남시 분당구 판교역로192번길 22 판교효성해링턴타워 112~114호", + "average_price": 6780, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-708-8885", + "score": 1.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 734, + "name": "마루니", + "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 1층 109호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 1.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 735, + "name": "토리키치 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 2층 213호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 01:00", + "phone_number": "070-7773-2130", + "score": 5.0, + "review": 2, + "duration_hours": "17:00 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 736, + "name": "이꾸 판교점", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 2층", + "average_price": 21800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-789-3633", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 737, + "name": "쿠시노아 서판교점", + "address": "경기 성남시 분당구 판교공원로2길 62 101호", + "average_price": 3775, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:30 ~ 24:00", + "phone_number": "070-4070-8899", + "score": 0.0, + "review": 0, + "duration_hours": "17:30 ~ 24:00", + "category_id": 6 + }, + { + "restaurant_id": 738, + "name": "이자까야모리", + "address": "경기 성남시 분당구 대왕판교로606번길 58 월드마크 1층 113호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 739, + "name": "이자카야단", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-1431", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 740, + "name": "이토리 판교점", + "address": "경기 성남시 분당구 판교역로192번길 22", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 3.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 741, + "name": "보쿠노하나시", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 742, + "name": "스미노카리 서현점", + "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 1층 102호", + "average_price": 29000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,일 17:00 ~ 01:00", + "phone_number": "031-708-1151", + "score": 4.0, + "review": 112, + "duration_hours": "17:00 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 743, + "name": "리빙오사카", + "address": "경기 성남시 분당구 황새울로 315 102호", + "average_price": 22000, + "caution": "배달불가, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 01:00", + "phone_number": "010-4981-0839", + "score": 3.9, + "review": 112, + "duration_hours": "16:00 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 744, + "name": "삼경", + "address": "경기 성남시 분당구 황새울로258번길 10-7 103호", + "average_price": 0, + "caution": "예약가능", + "convenience": "WIFI\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,금,일 14:00 ~ 17:30", + "phone_number": "031-718-5971", + "score": 2.5, + "review": 20, + "duration_hours": "14:00 ~ 17:30", + "category_id": 6 + }, + { + "restaurant_id": 745, + "name": "모모코 정자점", + "address": "경기 성남시 분당구 정자일로 197", + "average_price": 16600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 03:00", + "phone_number": null, + "score": 3.3, + "review": 98, + "duration_hours": "16:00 ~ 03:00", + "category_id": 6 + }, + { + "restaurant_id": 746, + "name": "모로미쿠시 서현점", + "address": "경기 성남시 분당구 황새울로 337 웰빙프라자 1층", + "average_price": 3483, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 02:00", + "phone_number": "031-8016-9834", + "score": 3.4, + "review": 21, + "duration_hours": "17:00 ~ 02:00", + "category_id": 6 + }, + { + "restaurant_id": 747, + "name": "잔잔 서현역점", + "address": "경기 성남시 분당구 황새울로335번길 8 덕산빌딩 1층", + "average_price": 23947, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,일 17:00 ~ 01:00", + "phone_number": "031-703-0877", + "score": 3.8, + "review": 609, + "duration_hours": "17:00 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 748, + "name": "웅성웅성 서현점", + "address": "경기 성남시 분당구 황새울로335번길 5 1층", + "average_price": 30250, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 02:00", + "phone_number": "031-696-1211", + "score": 4.7, + "review": 63, + "duration_hours": "16:00 ~ 02:00", + "category_id": 6 + }, + { + "restaurant_id": 749, + "name": "청담이상 서현점", + "address": "경기 성남시 분당구 황새울로 337 웰빙프라자 2층 204호", + "average_price": 16800, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 02:00", + "phone_number": null, + "score": 2.5, + "review": 20, + "duration_hours": "17:00 ~ 02:00", + "category_id": 6 + }, + { + "restaurant_id": 750, + "name": "미미", + "address": "경기 성남시 분당구 서현로 192", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 24:00", + "phone_number": "031-709-9834", + "score": 4.7, + "review": 124, + "duration_hours": "16:00 ~ 24:00", + "category_id": 6 + }, + { + "restaurant_id": 751, + "name": "웅성웅성 서현본점", + "address": "경기 성남시 분당구 황새울로311번길 28 롯데서현주차빌딩 1층 108호", + "average_price": 32333, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 02:00", + "phone_number": "031-701-7888", + "score": 4.7, + "review": 689, + "duration_hours": "16:00 ~ 02:00", + "category_id": 6 + }, + { + "restaurant_id": 752, + "name": "도리토리 분당수내점", + "address": "경기 성남시 분당구 황새울로258번길 10-9 영성라벤더 106호", + "average_price": 19333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 01:00", + "phone_number": "010-5828-9353", + "score": 5.0, + "review": 373, + "duration_hours": "16:00 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 753, + "name": "곤야", + "address": "경기 성남시 분당구 황새울로 315 대현빌딩 1층 101호", + "average_price": 20325, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:30 ~ 01:00", + "phone_number": "031-704-5079", + "score": 4.5, + "review": 85, + "duration_hours": "16:30 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 754, + "name": "모로미 수내점", + "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 205, 206호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:30 ~ 24:00", + "phone_number": "031-711-0209", + "score": 4.1, + "review": 33, + "duration_hours": "17:30 ~ 24:00", + "category_id": 6 + }, + { + "restaurant_id": 755, + "name": "해루 바다의하루", + "address": "경기 성남시 분당구 황새울로258번길 10-7 102호", + "average_price": 25285, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 24:00", + "phone_number": "031-715-3114", + "score": 4.3, + "review": 14, + "duration_hours": "10:30 ~ 24:00", + "category_id": 6 + }, + { + "restaurant_id": 756, + "name": "남오토코 정자점", + "address": "경기 성남시 분당구 느티로 16 젤존타워1 1층 119, 120호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 17:00 ~ 23:30", + "phone_number": "031-711-0771", + "score": 3.5, + "review": 9, + "duration_hours": "17:00 ~ 23:30", + "category_id": 6 + }, + { + "restaurant_id": 757, + "name": "꼬치선생101 분당서현점", + "address": "경기 성남시 분당구 황새울로360번길 28 3층 301호", + "average_price": 25100, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 05:00", + "phone_number": "031-708-7733", + "score": 1.6, + "review": 18, + "duration_hours": "17:00 ~ 05:00", + "category_id": 6 + }, + { + "restaurant_id": 758, + "name": "생마차 분당서현점", + "address": "경기 성남시 분당구 서현로210번길 2 성지하이츠텔 1층 104호", + "average_price": 6780, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 05:00", + "phone_number": "031-705-7889", + "score": 2.8, + "review": 18, + "duration_hours": "15:00 ~ 05:00", + "category_id": 6 + }, + { + "restaurant_id": 759, + "name": "사라", + "address": "경기 성남시 분당구 정자일로213번길 5 아이파크분당 301동 103,104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-715-8999", + "score": 3.7, + "review": 1, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 760, + "name": "슌", + "address": "경기 성남시 분당구 장미로 42 야탑리더스 124,125호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 02:00", + "phone_number": "031-709-5795", + "score": 3.7, + "review": 148, + "duration_hours": "16:00 ~ 02:00", + "category_id": 6 + }, + { + "restaurant_id": 761, + "name": "야키토리 잔잔 정자역점", + "address": "경기 성남시 분당구 정자일로 192 지파크프라자 101호", + "average_price": 19645, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:30 ~ 02:00", + "phone_number": "0507-1330-0877", + "score": 3.5, + "review": 0, + "duration_hours": "17:30 ~ 02:00", + "category_id": 6 + }, + { + "restaurant_id": 762, + "name": "센다이", + "address": "경기 성남시 분당구 정자일로 192 지파크프라자 102호", + "average_price": 19500, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:30 ~ 02:00", + "phone_number": "031-715-1470", + "score": 3.8, + "review": 23, + "duration_hours": "17:30 ~ 02:00", + "category_id": 6 + }, + { + "restaurant_id": 763, + "name": "우규 서현연어와육회점", + "address": "경기 성남시 분당구 중앙공원로39번길 49 서현 지엔느 110호", + "average_price": 24000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 02:00", + "phone_number": "031-781-9997", + "score": 4.0, + "review": 839, + "duration_hours": "17:00 ~ 02:00", + "category_id": 6 + }, + { + "restaurant_id": 764, + "name": "정연", + "address": "경기 성남시 분당구 황새울로108번길 18 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 01:00", + "phone_number": null, + "score": 3.4, + "review": 54, + "duration_hours": "17:00 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 765, + "name": "유다", + "address": "경기 성남시 분당구 느티로 16", + "average_price": 18200, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 17:00 ~ 02:00", + "phone_number": "031-712-8989", + "score": 4.0, + "review": 14, + "duration_hours": "17:00 ~ 02:00", + "category_id": 6 + }, + { + "restaurant_id": 766, + "name": "시즈카 분당점", + "address": "경기 성남시 분당구 황새울로 315 대현빌딩 205호", + "average_price": 7400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 767, + "name": "야구장옆선술집", + "address": "경기 성남시 분당구 황새울로335번길 10 멜로즈프라자 5층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-703-0030", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 768, + "name": "마하수리이자카야", + "address": "경기 성남시 분당구 느티로 16 1층 117호", + "average_price": 25200, + "caution": "배달가능, 포장가능", + "convenience": "WIFI\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 01:00", + "phone_number": null, + "score": 5.0, + "review": 15, + "duration_hours": "17:00 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 769, + "name": "노군꼬치 분당서현점", + "address": "경기 성남시 분당구 중앙공원로39번길 49 지엔느오피스텔 1층 125호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 24:00", + "phone_number": "0507-1364-2869", + "score": 4.7, + "review": 4, + "duration_hours": "17:00 ~ 24:00", + "category_id": 6 + }, + { + "restaurant_id": 770, + "name": "하루인", + "address": "경기 성남시 분당구 성남대로331번길 9-9 2층 203호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 24:00", + "phone_number": "031-711-2224", + "score": 4.7, + "review": 157, + "duration_hours": "15:00 ~ 24:00", + "category_id": 6 + }, + { + "restaurant_id": 771, + "name": "오이시", + "address": "경기 성남시 분당구 황새울로360번길 24 4층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 3.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 772, + "name": "무한사케무사 서현점", + "address": "경기 성남시 분당구 황새울로360번길 26 4층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 3.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 773, + "name": "스미노카리 정자점", + "address": "경기 성남시 분당구 정자일로 162 109호", + "average_price": 18571, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 01:00", + "phone_number": null, + "score": 4.7, + "review": 451, + "duration_hours": "17:00 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 774, + "name": "벚꽃나무", + "address": "경기 성남시 분당구 성남대로331번길 13 1층 113호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 18:00 ~ 05:00", + "phone_number": null, + "score": 1.0, + "review": 4, + "duration_hours": "18:00 ~ 05:00", + "category_id": 6 + }, + { + "restaurant_id": 775, + "name": "츠키", + "address": "경기 성남시 분당구 정자일로156번길 6 111호", + "average_price": 11000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 24:00", + "phone_number": "031-778-8484", + "score": 4.2, + "review": 384, + "duration_hours": "11:30 ~ 24:00", + "category_id": 6 + }, + { + "restaurant_id": 776, + "name": "아미이자까야", + "address": "경기 성남시 분당구 느티로 16 젤존타워 1층", + "average_price": 0, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-711-3532", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 777, + "name": "이자까야라꾸", + "address": "경기 성남시 분당구 정자일로 192", + "average_price": 9075, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 778, + "name": "미츠토리 정자점", + "address": "경기 성남시 분당구 성남대로331번길 13 105호", + "average_price": 9366, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 01:00", + "phone_number": null, + "score": 4.6, + "review": 208, + "duration_hours": "17:00 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 779, + "name": "무한사케무사 정자점", + "address": "경기 성남시 분당구 느티로 16", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-711-9196", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 780, + "name": "로바타풍산", + "address": "경기 성남시 분당구 정자일로 197 1층 109호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:30 ~ 01:30", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "17:30 ~ 01:30", + "category_id": 6 + }, + { + "restaurant_id": 781, + "name": "예술", + "address": "경기 성남시 수정구 청계산로1길 21 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 24:00", + "phone_number": "0507-1326-8878", + "score": 0.0, + "review": 97, + "duration_hours": "11:00 ~ 24:00", + "category_id": 6 + }, + { + "restaurant_id": 782, + "name": "아쿠아마", + "address": "경기 성남시 분당구 성남대로331번길 3-13 대명제스트빌딩 1층 107호", + "average_price": 30166, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 17:00 ~ 02:00", + "phone_number": "010-9548-7065", + "score": 4.9, + "review": 36, + "duration_hours": "17:00 ~ 02:00", + "category_id": 6 + }, + { + "restaurant_id": 783, + "name": "청담이상 정자점", + "address": "경기 성남시 분당구 정자일로 146", + "average_price": 35400, + "caution": "예약가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:30 ~ 01:00", + "phone_number": "031-725-4884", + "score": 3.3, + "review": 35, + "duration_hours": "16:30 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 784, + "name": "백야다이닝라운지", + "address": "경기 성남시 분당구 성남대로331번길 11-15 봉우빌딩 2층", + "average_price": 25000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 01:00", + "phone_number": "031-717-4421", + "score": 3.7, + "review": 64, + "duration_hours": "15:00 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 785, + "name": "쇼군 선술집", + "address": "경기 성남시 분당구 야탑로69번길 18 동아프라자 2층", + "average_price": 14800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 786, + "name": "오사카킴&요리포차", + "address": "경기 성남시 분당구 야탑로69번길 18", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 787, + "name": "회심의일격 야탑점", + "address": "경기 성남시 분당구 야탑로105번길 12-2 1층", + "average_price": 23800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 01:30", + "phone_number": "031-707-6399", + "score": 4.0, + "review": 18, + "duration_hours": "17:00 ~ 01:30", + "category_id": 6 + }, + { + "restaurant_id": 788, + "name": "꼬뎅마루 야탑점", + "address": "경기 성남시 분당구 야탑로105번길 22-7 1층", + "average_price": 15700, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:30 ~ 21:30", + "phone_number": "031-705-5792", + "score": 3.3, + "review": 7, + "duration_hours": "17:30 ~ 21:30", + "category_id": 6 + }, + { + "restaurant_id": 789, + "name": "섬맛의공방 야탑점", + "address": "경기 성남시 분당구 성남대로926번길 10 탑빌딩 1층", + "average_price": 21373, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 02:30", + "phone_number": "031-708-0919", + "score": 2.3, + "review": 19, + "duration_hours": "11:30 ~ 02:30", + "category_id": 6 + }, + { + "restaurant_id": 790, + "name": "갈라파꼬치", + "address": "경기 성남시 분당구 정자일로 140 정자역 엠코헤리츠 2단지 B동 1층 125호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 4.8, + "review": 9, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 791, + "name": "토리키치 분당야탑점", + "address": "경기 성남시 분당구 야탑로111번길 12-9 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 01:00", + "phone_number": "031-707-5277", + "score": 3.5, + "review": 14, + "duration_hours": "17:00 ~ 01:00", + "category_id": 6 + }, + { + "restaurant_id": 792, + "name": "마쯔리", + "address": "경기 성남시 분당구 야탑로111번길 22 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-753-4686", + "score": 3.0, + "review": 0, + "duration_hours": "null", + "category_id": 6 + }, + { + "restaurant_id": 793, + "name": "이자카야엔", + "address": "경기 성남시 분당구 정자일로 220 1층 119호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 18:00 ~ 02:00", + "phone_number": "031-715-1520", + "score": 4.0, + "review": 0, + "duration_hours": "18:00 ~ 02:00", + "category_id": 6 + }, + { + "restaurant_id": 794, + "name": "일편뎅심 판교직영점", + "address": "경기 성남시 분당구 판교역로192번길 14-1 판교예미지 1층 106호", + "average_price": 6190, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 18:00 ~ 02:00", + "phone_number": "031-708-0508", + "score": 4.6, + "review": 217, + "duration_hours": "18:00 ~ 02:00", + "category_id": 6 + }, + { + "restaurant_id": 795, + "name": "츠키야", + "address": "경기 성남시 분당구 분당내곡로 151 삼도타워 1층 111호", + "average_price": 15000, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 24:00", + "phone_number": "031-708-0827", + "score": 5.0, + "review": 45, + "duration_hours": "11:00 ~ 24:00", + "category_id": 6 + }, + { + "restaurant_id": 796, + "name": "야키토리 타쿠야", + "address": "경기 성남시 분당구 성남대로 295 A동 120호", + "average_price": 35000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 18:00 ~ 24:00", + "phone_number": "031-717-7793", + "score": 5.0, + "review": 11, + "duration_hours": "18:00 ~ 24:00", + "category_id": 6 + }, + { + "restaurant_id": 797, + "name": "능라도 본점", + "address": "경기 성남시 분당구 산운로32번길 12 1-3층", + "average_price": 34214, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 20:30", + "phone_number": "031-781-3989", + "score": 3.0, + "review": 350, + "duration_hours": "11:00 ~ 20:30", + "category_id": 7 + }, + { + "restaurant_id": 798, + "name": "우설화 판교점", + "address": "경기 성남시 분당구 판교로 185 신화푸드빌리지 3층", + "average_price": 34200, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-702-9407", + "score": 3.7, + "review": 159, + "duration_hours": "11:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 799, + "name": "방아깐", + "address": "경기 성남시 분당구 판교공원로1길 55", + "average_price": 34600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 24:00", + "phone_number": "031-8017-9107", + "score": 3.9, + "review": 342, + "duration_hours": "15:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 800, + "name": "크래버 대게나라 판교점", + "address": "경기 성남시 분당구 판교역로 178 서건빌딩 13층", + "average_price": 128000, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-8016-5593", + "score": 4.1, + "review": 156, + "duration_hours": "11:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 801, + "name": "서울멸치쌈밥", + "address": "경기 성남시 분당구 판교역로10번길 10-3 1층", + "average_price": 14333, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 20:30", + "phone_number": "031-8017-3999", + "score": 4.1, + "review": 77, + "duration_hours": "11:00 ~ 20:30", + "category_id": 7 + }, + { + "restaurant_id": 802, + "name": "람바다", + "address": "경기 성남시 분당구 판교역로 184", + "average_price": 39428, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-701-3094", + "score": 3.4, + "review": 88, + "duration_hours": "11:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 803, + "name": "해우리 판교점", + "address": "경기 성남시 분당구 판교역로 145 알파리움타워 지하1층", + "average_price": 35000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:00", + "phone_number": "031-701-4997", + "score": 3.2, + "review": 45, + "duration_hours": "14:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 804, + "name": "신도세기 판교역점", + "address": "경기 성남시 분당구 판교역로 152 알파돔타워 2층 207호", + "average_price": 19900, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:30 ~ 17:00", + "phone_number": "031-622-7188", + "score": 3.9, + "review": 143, + "duration_hours": "14:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 805, + "name": "양우정 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 상가동 라스트리트 1동 1층 112~114호", + "average_price": 52500, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-706-9252", + "score": 4.6, + "review": 35, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 806, + "name": "천지연 판교점", + "address": "경기 성남시 분당구 판교로 185 신화푸드빌리지 1층", + "average_price": 17585, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-702-9506", + "score": 3.0, + "review": 52, + "duration_hours": "11:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 807, + "name": "진1926 판교점", + "address": "경기 성남시 분당구 판교역로192번길 22 효성 해링턴 타워 1층 101호", + "average_price": 33833, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 23:00", + "phone_number": "031-707-0292", + "score": 4.1, + "review": 25, + "duration_hours": "17:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 808, + "name": "숙성도 판교점", + "address": "경기 성남시 분당구 판교역로 136 힐스테이트판교역판매시설 1층 1042~1047호", + "average_price": 22000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:30", + "phone_number": "031-8023-9233", + "score": 3.7, + "review": 398, + "duration_hours": "11:30 ~ 22:30", + "category_id": 7 + }, + { + "restaurant_id": 809, + "name": "방유당 그레이츠판교점", + "address": "경기 성남시 분당구 분당내곡로 117 그레이츠 판교 지하 1층 108호", + "average_price": 83500, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-706-0690", + "score": 0.0, + "review": 170, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 810, + "name": "경복궁 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 2층 2-11~16,41호", + "average_price": 0, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-8016-8038", + "score": 2.7, + "review": 96, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 811, + "name": "사위식당 판교점", + "address": "경기 성남시 분당구 판교역로 152 알파돔타워 2층 4호", + "average_price": 12000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:30", + "phone_number": "031-622-7180", + "score": 3.4, + "review": 999, + "duration_hours": "14:30 ~ 17:30", + "category_id": 7 + }, + { + "restaurant_id": 812, + "name": "참다운정육식당 판교본점", + "address": "경기 성남시 분당구 판교로 182-7 지하1층 B01호", + "average_price": 21140, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-8016-8880", + "score": 4.2, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 813, + "name": "화포식당 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 240호", + "average_price": 24500, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-724-2929", + "score": 4.1, + "review": 423, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 814, + "name": "얼룩도야지", + "address": "경기 성남시 분당구 대왕판교로606번길 45 2층 205호", + "average_price": 11000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 23:00", + "phone_number": "031-8017-2840", + "score": 0.0, + "review": 183, + "duration_hours": "17:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 815, + "name": "샘밭막국수 판교점", + "address": "경기 성남시 분당구 서판교로44번길 13 1층", + "average_price": 20384, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-8017-1712", + "score": 3.6, + "review": 77, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 816, + "name": "봉피양 판교점", + "address": "경기 성남시 분당구 판교역로 235 H스퀘어 N동 1층 121,122호", + "average_price": 28142, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-737-7478", + "score": 3.4, + "review": 51, + "duration_hours": "11:00 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 817, + "name": "푸에르코 판교점", + "address": "경기 성남시 분당구 분당내곡로 117 그레이츠 판교 2층", + "average_price": 39850, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 17:00", + "phone_number": "031-622-7501", + "score": 2.9, + "review": 125, + "duration_hours": "14:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 818, + "name": "자산어보 판교직영점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 라스트리트1동 2층 201호", + "average_price": 37187, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "031-706-9880", + "score": 3.0, + "review": 13, + "duration_hours": "11:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 819, + "name": "황제갈비 판교점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2A동 1층 104, 105호", + "average_price": 54666, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 22:00", + "phone_number": "031-739-8688", + "score": 4.2, + "review": 26, + "duration_hours": "10:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 820, + "name": "풍천숯재벌장어", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스몰1빌딩 A동 103호", + "average_price": 41000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "0503-7150-1614", + "score": 3.9, + "review": 195, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 821, + "name": "이야기둘", + "address": "경기 성남시 분당구 판교로319번길 13 디테라스오피스텔 1층 113호", + "average_price": 45777, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 22:00", + "phone_number": "031-607-8092", + "score": 3.8, + "review": 127, + "duration_hours": "12:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 822, + "name": "선한레시피 판교점", + "address": "경기 성남시 분당구 서판교로44번길 17-3 1층", + "average_price": 28800, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 15:00 ~ 17:00", + "phone_number": "031-705-3315", + "score": 4.2, + "review": 51, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 823, + "name": "차고145", + "address": "경기 성남시 분당구 판교역로 145 라스트리트 알파리움2동 1층 108~110호", + "average_price": 36000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": "031-781-1450", + "score": 3.8, + "review": 141, + "duration_hours": "14:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 824, + "name": "송도갈비 판교브릿지타워점", + "address": "경기 성남시 분당구 판교로227번길 6 브릿지타워", + "average_price": 13000, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-702-0911", + "score": 3.9, + "review": 46, + "duration_hours": "11:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 825, + "name": "광화문국밥 판교점", + "address": "경기 성남시 분당구 판교역로 152 알파돔타워 2층 206호", + "average_price": 12333, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:20 ~ 17:00", + "phone_number": "031-622-7170", + "score": 4.0, + "review": 80, + "duration_hours": "14:20 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 826, + "name": "평가옥 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스몰1 A동 102호", + "average_price": 20400, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-724-2566", + "score": 3.2, + "review": 31, + "duration_hours": "11:00 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 827, + "name": "돈블랑 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움1단지아파트 알파리움타워 1동 1층", + "average_price": 18722, + "caution": "예약가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-703-7722", + "score": 3.8, + "review": 66, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 828, + "name": "머내돌삼겹살", + "address": "경기 성남시 분당구 동판교로52번길 17-14 1층", + "average_price": 23200, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 10:00 ~ 22:00", + "phone_number": "031-8017-6550", + "score": 4.6, + "review": 27, + "duration_hours": "10:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 829, + "name": "찹쌀순대 만드는집", + "address": "경기 성남시 분당구 운중로138번길 18 1층", + "average_price": 15500, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 14:00 ~ 17:30", + "phone_number": "031-707-7872", + "score": 4.1, + "review": 56, + "duration_hours": "14:00 ~ 17:30", + "category_id": 7 + }, + { + "restaurant_id": 830, + "name": "통통곱창", + "address": "경기 성남시 분당구 대왕판교로606번길 45 1층 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 24:00", + "phone_number": "031-8017-6660", + "score": 4.3, + "review": 67, + "duration_hours": "10:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 831, + "name": "돼지맨숀", + "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 144,145호", + "average_price": 15200, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 22:30", + "phone_number": "031-706-4775", + "score": 3.7, + "review": 78, + "duration_hours": "17:00 ~ 22:30", + "category_id": 7 + }, + { + "restaurant_id": 832, + "name": "토속음식뜰사랑 본점", + "address": "경기 성남시 분당구 운중로138번길 24-5 1층", + "average_price": 8800, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 20:00", + "phone_number": "031-8017-4060", + "score": 3.9, + "review": 135, + "duration_hours": "10:00 ~ 20:00", + "category_id": 7 + }, + { + "restaurant_id": 833, + "name": "쉐누하누", + "address": "경기 성남시 분당구 판교역로 145 알파리움타워 2동 라스트리트 2층 201~203호", + "average_price": 13000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-703-5530", + "score": 4.2, + "review": 95, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 834, + "name": "양재정육식당", + "address": "경기 성남시 분당구 분당내곡로 151 삼도타워 1층 102호", + "average_price": 24666, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 24:00", + "phone_number": "031-708-5705", + "score": 3.6, + "review": 33, + "duration_hours": "11:30 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 835, + "name": "장비빔국수와 굴국밥보쌈", + "address": "경기 성남시 분당구 판교공원로2길 60 1층", + "average_price": 7833, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-8016-3158", + "score": 4.3, + "review": 83, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 836, + "name": "우테이블", + "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층 105호", + "average_price": 6900, + "caution": "예약가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-703-4775", + "score": 4.1, + "review": 97, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 837, + "name": "토속상황삼계탕", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 225호", + "average_price": 15800, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-628-6619", + "score": 4.0, + "review": 28, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 838, + "name": "봉우리 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 9층", + "average_price": 35833, + "caution": "예약가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-5170-1936", + "score": 2.9, + "review": 171, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 839, + "name": "이태리부대찌개 판교점", + "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 지하1층 117호", + "average_price": 28000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-696-0310", + "score": 3.9, + "review": 46, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 840, + "name": "양바위 본점", + "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 아브뉴프랑 1층 110,111호", + "average_price": 27714, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-706-9288", + "score": 0.0, + "review": 84, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 841, + "name": "홍대칼국수와족발 판교역점", + "address": "경기 성남시 분당구 대왕판교로606번길 45 1층", + "average_price": 36800, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 13:30 ~ 17:00", + "phone_number": "031-708-1779", + "score": 3.3, + "review": 14, + "duration_hours": "13:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 842, + "name": "고반식당 판교아브뉴프랑점", + "address": "경기 성남시 분당구 동판교로177번길 25 2층 205~207호", + "average_price": 28400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-707-5861", + "score": 0.0, + "review": 380, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 843, + "name": "송추가마골 인어반 판교점", + "address": "경기 성남시 분당구 판교역로 145 알파리움2단지 라스트리트 2동 2층", + "average_price": 34000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:15 ~ 21:45", + "phone_number": "031-705-8503", + "score": 2.6, + "review": 44, + "duration_hours": "11:15 ~ 21:45", + "category_id": 7 + }, + { + "restaurant_id": 844, + "name": "마루심 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 2층 236, 237호", + "average_price": 45571, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-781-7998", + "score": 4.4, + "review": 136, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 845, + "name": "달빛어시장 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 210호", + "average_price": 26600, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 01:00", + "phone_number": "031-628-4567", + "score": 3.5, + "review": 114, + "duration_hours": "17:00 ~ 01:00", + "category_id": 7 + }, + { + "restaurant_id": 846, + "name": "판교장어타운", + "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 3층 301~304호", + "average_price": 31000, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-701-9282", + "score": 3.9, + "review": 70, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 847, + "name": "일편닭심", + "address": "경기 성남시 분당구 판교역로192번길 22 효성해링턴타워 110호", + "average_price": 20166, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 01:30", + "phone_number": "031-602-1847", + "score": 4.2, + "review": 75, + "duration_hours": "17:00 ~ 01:30", + "category_id": 7 + }, + { + "restaurant_id": 848, + "name": "담솥 판교아브뉴프랑점", + "address": "경기 성남시 분당구 동판교로177번길 25 호반써밋플레이스 1층 103호", + "average_price": 14666, + "caution": "예약불가, 배달가능, 포장불가", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "0507-1342-9553", + "score": 4.3, + "review": 0, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 849, + "name": "금돈가", + "address": "경기 성남시 분당구 판교공원로1길 71 1층", + "average_price": 26500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-709-6599", + "score": 3.3, + "review": 68, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 850, + "name": "우몽 판교본점", + "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋타워 2층 204호", + "average_price": 52500, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-8061-0712", + "score": 4.4, + "review": 734, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 851, + "name": "우대포판교", + "address": "경기 성남시 분당구 운중로 141", + "average_price": 12250, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": null, + "score": 4.6, + "review": 778, + "duration_hours": "11:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 852, + "name": "판교인생곱창", + "address": "경기 성남시 분당구 판교역로192번길 16 판교타워", + "average_price": 35333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 15:00 ~ 22:50", + "phone_number": "031-705-0731", + "score": 3.5, + "review": 91, + "duration_hours": "15:00 ~ 22:50", + "category_id": 7 + }, + { + "restaurant_id": 853, + "name": "양드림식당", + "address": "경기 성남시 분당구 서판교로44번길 7", + "average_price": 13800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 23:00", + "phone_number": "031-705-1588", + "score": 5.0, + "review": 4, + "duration_hours": "17:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 854, + "name": "창고43 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 2층", + "average_price": 58750, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:30", + "phone_number": "031-601-7543", + "score": 3.3, + "review": 76, + "duration_hours": "14:00 ~ 17:30", + "category_id": 7 + }, + { + "restaurant_id": 855, + "name": "산골면옥", + "address": "경기 성남시 분당구 판교공원로2길 2 1층", + "average_price": 9333, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:30 ~ 20:50", + "phone_number": null, + "score": 3.0, + "review": 24, + "duration_hours": "09:30 ~ 20:50", + "category_id": 7 + }, + { + "restaurant_id": 856, + "name": "해미옥 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 41 지하1층 B01호", + "average_price": 55000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:50 ~ 17:00", + "phone_number": "031-709-0728", + "score": 4.8, + "review": 414, + "duration_hours": "14:50 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 857, + "name": "판교돈", + "address": "경기 성남시 분당구 판교역로192번길 14-2 골드타워 1층 119호", + "average_price": 12312, + "caution": "예약가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 00:30", + "phone_number": "031-701-9294", + "score": 0.0, + "review": 286, + "duration_hours": "16:00 ~ 00:30", + "category_id": 7 + }, + { + "restaurant_id": 858, + "name": "백청우칼국수 서판교점", + "address": "경기 성남시 분당구 산운로160번길 16-7", + "average_price": 15250, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-8815", + "score": 4.3, + "review": 32, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 859, + "name": "옥된장 판교점", + "address": "경기 성남시 분당구 판교역로 184 JS타워 1층 102-2호", + "average_price": 16125, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-707-5392", + "score": 4.1, + "review": 0, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 860, + "name": "우영관 그레이츠판교", + "address": "경기 성남시 분당구 분당내곡로 117 크래프톤타워 2층", + "average_price": 35000, + "caution": "예약불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,금,일 14:30 ~ 17:30", + "phone_number": null, + "score": 3.8, + "review": 81, + "duration_hours": "14:30 ~ 17:30", + "category_id": 7 + }, + { + "restaurant_id": 861, + "name": "우몽블랙 판교점", + "address": "경기 성남시 분당구 판교역로 145 알파리움타워 2동 1층 111~112호", + "average_price": 60333, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-702-0218", + "score": 4.6, + "review": 533, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 862, + "name": "운중본가 장수촌", + "address": "경기 성남시 분당구 산운로32번길 14 1층", + "average_price": 27222, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-705-9973", + "score": 3.5, + "review": 111, + "duration_hours": "11:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 863, + "name": "솔솥 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움1단지아파트 알파리움타워 1동 1층 116호", + "average_price": 15450, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-701-0266", + "score": 4.2, + "review": 478, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 864, + "name": "진짜돼지 판교본점", + "address": "경기 성남시 분당구 분당내곡로 159 판교역KCC웰츠타워 A동 1층 120호", + "average_price": 15250, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:00", + "phone_number": "031-8017-9547", + "score": 3.6, + "review": 44, + "duration_hours": "14:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 865, + "name": "제주가", + "address": "경기 성남시 분당구 동판교로52번길 5 1층", + "average_price": 23666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-8016-9292", + "score": 4.0, + "review": 8, + "duration_hours": "11:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 866, + "name": "일도씨닭갈비 판교점", + "address": "경기 성남시 분당구 분당내곡로 117 그레이츠판교 지하1층", + "average_price": 15333, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-622-7509", + "score": 0.0, + "review": 123, + "duration_hours": "10:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 867, + "name": "암돼지와꽃등심", + "address": "경기 성남시 분당구 운중로166번길 4-14 1층", + "average_price": 18333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 17:00", + "phone_number": "031-8016-3566", + "score": 3.6, + "review": 187, + "duration_hours": "16:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 868, + "name": "성일면옥 본점", + "address": "경기 성남시 분당구 동판교로52번길 10 1층", + "average_price": 16600, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 15:00 ~ 17:00", + "phone_number": "031-703-1231", + "score": 4.0, + "review": 71, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 869, + "name": "락빈칼국수", + "address": "경기 성남시 분당구 판교공원로2길 68 1층 101호", + "average_price": 7800, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 15:00 ~ 17:00", + "phone_number": "031-8016-1822", + "score": 3.9, + "review": 25, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 870, + "name": "이가네양갈비 판교직영점", + "address": "경기 성남시 분당구 판교역로 145 알파리움2단지 타워2동 1층 113~115호", + "average_price": 18000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 10:45", + "phone_number": "031-701-9998", + "score": 4.4, + "review": 0, + "duration_hours": "11:00 ~ 10:45", + "category_id": 7 + }, + { + "restaurant_id": 871, + "name": "목포명가 판교점", + "address": "경기 성남시 분당구 분당내곡로 159 웰츠타워 A동 1층 113~114호", + "average_price": 54285, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-707-6233", + "score": 4.2, + "review": 0, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 872, + "name": "대진항막회", + "address": "경기 성남시 분당구 동판교로 91", + "average_price": 26000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 16:00 ~ 23:00", + "phone_number": "031-8016-8205", + "score": 3.8, + "review": 37, + "duration_hours": "16:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 873, + "name": "유엔가든", + "address": "경기 성남시 분당구 동판교로177번길 25 1층 129~131호", + "average_price": 32650, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:00", + "phone_number": "031-708-9929", + "score": 3.9, + "review": 101, + "duration_hours": "14:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 874, + "name": "초심한우", + "address": "경기 성남시 분당구 운중로146번길 15-6 1층", + "average_price": 31285, + "caution": "예약가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": null, + "score": 4.5, + "review": 25, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 875, + "name": "램가 본점", + "address": "경기 성남시 분당구 판교공원로1길 63 지하1층", + "average_price": 19000, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 22:00", + "phone_number": "031-703-5043", + "score": 4.5, + "review": 225, + "duration_hours": "17:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 876, + "name": "자연횟집 판교", + "address": "경기 성남시 분당구 판교역로 235 H스퀘어 N동 123호", + "average_price": 54285, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-737-7900", + "score": 4.6, + "review": 17, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 877, + "name": "항아리보쌈 서판교점", + "address": "경기 성남시 분당구 운중로125번길 14-16", + "average_price": 49500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:30 ~ 16:40", + "phone_number": "031-8017-3377", + "score": 4.3, + "review": 18, + "duration_hours": "15:30 ~ 16:40", + "category_id": 7 + }, + { + "restaurant_id": 878, + "name": "연인의정원 판교", + "address": "경기 성남시 분당구 서판교로44번길 3-10 1층", + "average_price": 65000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 19:00", + "phone_number": "031-757-6667", + "score": 3.7, + "review": 61, + "duration_hours": "10:00 ~ 19:00", + "category_id": 7 + }, + { + "restaurant_id": 879, + "name": "현복집 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움타워 1동 2층 215,216호", + "average_price": 25000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-704-1001", + "score": 3.7, + "review": 10, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 880, + "name": "양평해장국", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림WCITY 2층 206호", + "average_price": 17184, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:30", + "phone_number": null, + "score": 2.9, + "review": 9, + "duration_hours": "11:00 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 881, + "name": "찜하우스", + "address": "경기 성남시 분당구 판교역로 180 알파타워 1층 104,107,108,109호", + "average_price": 21400, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-702-1128", + "score": 2.7, + "review": 26, + "duration_hours": "10:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 882, + "name": "감성쪽갈비", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 211호", + "average_price": 12400, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 24:00", + "phone_number": "031-724-2885", + "score": 4.1, + "review": 136, + "duration_hours": "16:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 883, + "name": "판교집 본점", + "address": "경기 성남시 분당구 판교역로 178 서건타워 1층 106호", + "average_price": 30000, + "caution": "예약가능, 배달가능, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:00", + "phone_number": null, + "score": 3.8, + "review": 116, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 884, + "name": "비와별닭갈비 판교아브뉴프랑점", + "address": "경기 성남시 분당구 동판교로177번길 25 2층 208호", + "average_price": 17000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-8016-7999", + "score": 2.6, + "review": 50, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 885, + "name": "됐소 판교점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 지하1층 B101호", + "average_price": 28950, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:00", + "phone_number": "031-628-6092", + "score": 3.3, + "review": 141, + "duration_hours": "14:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 886, + "name": "단지국수", + "address": "경기 성남시 분당구 판교공원로5길 5", + "average_price": 8333, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 16:00 ~ 17:00", + "phone_number": "031-8017-8383", + "score": 4.3, + "review": 34, + "duration_hours": "16:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 887, + "name": "순우가", + "address": "경기 성남시 분당구 대왕판교로645번길 36 NS 별관 지하1층", + "average_price": 0, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-606-8516", + "score": 4.0, + "review": 117, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 888, + "name": "뻘낙지한마당 판교점", + "address": "경기 성남시 분당구 판교역로 235 H스퀘어N동 1층 125호", + "average_price": 49800, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 24:00", + "phone_number": "031-696-7666", + "score": 3.9, + "review": 16, + "duration_hours": "11:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 889, + "name": "양산도 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 58 월드마크상가 1층 115호", + "average_price": 17166, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "031-705-1092", + "score": 3.9, + "review": 854, + "duration_hours": "15:00 ~ 17:30", + "category_id": 7 + }, + { + "restaurant_id": 890, + "name": "조재벌식당", + "address": "경기 성남시 분당구 판교로319번길 13 1층", + "average_price": 12000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-609-6271", + "score": 4.1, + "review": 41, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 891, + "name": "찌마기 판교역점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움1단지 1층 139호", + "average_price": 23125, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 23:00", + "phone_number": "031-702-5455", + "score": 3.8, + "review": 34, + "duration_hours": "11:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 892, + "name": "해도락", + "address": "경기 성남시 분당구 판교역로 235 H스퀘어 N동 1층 130~132호", + "average_price": 20761, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 17:30", + "phone_number": null, + "score": 3.4, + "review": 31, + "duration_hours": "14:30 ~ 17:30", + "category_id": 7 + }, + { + "restaurant_id": 893, + "name": "한와담 판교점", + "address": "경기 성남시 분당구 판교역로 152 알파돔타워 1층 1-2~3호", + "average_price": 46076, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-622-7182", + "score": 3.6, + "review": 918, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 894, + "name": "두툼해 서판교점", + "address": "경기 성남시 분당구 판교공원로2길 54-1 1층", + "average_price": 34333, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 16:00 ~ 23:30", + "phone_number": "031-8017-2217", + "score": 2.7, + "review": 20, + "duration_hours": "16:00 ~ 23:30", + "category_id": 7 + }, + { + "restaurant_id": 895, + "name": "판교수갈비", + "address": "경기 성남시 분당구 판교역로10번길 23 1층 101호", + "average_price": 19666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-8016-8792", + "score": 3.1, + "review": 8, + "duration_hours": "10:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 896, + "name": "담솥 서판교점", + "address": "경기 성남시 분당구 운중로 121 1층 105, 106호", + "average_price": 13357, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "0507-1474-5532", + "score": 0.0, + "review": 428, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 897, + "name": "춘업순댓국 본점", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 지하1층 B113호", + "average_price": 10000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 21:30", + "phone_number": "031-789-3660", + "score": 4.3, + "review": 48, + "duration_hours": "08:00 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 898, + "name": "모토이시 판교점", + "address": "경기 성남시 분당구 분당내곡로 159", + "average_price": 19118, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 01:00", + "phone_number": null, + "score": 4.1, + "review": 312, + "duration_hours": "16:00 ~ 01:00", + "category_id": 7 + }, + { + "restaurant_id": 899, + "name": "문어상회", + "address": "경기 성남시 분당구 대왕판교로606번길 31", + "average_price": 28666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 24:00", + "phone_number": null, + "score": 3.7, + "review": 22, + "duration_hours": "17:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 900, + "name": "수 감자탕", + "address": "경기 성남시 분당구 동판교로52번길 8-1", + "average_price": 35166, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-781-1003", + "score": 4.1, + "review": 15, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 901, + "name": "제주은희네해장국 성남판교점", + "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어 에스동 지하1층 122호", + "average_price": 0, + "caution": "예약불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-696-7474", + "score": 4.2, + "review": 72, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 902, + "name": "흑화돗 판교본점", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 1층", + "average_price": 18100, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 22:00", + "phone_number": "031-601-7455", + "score": 3.9, + "review": 123, + "duration_hours": "17:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 903, + "name": "섬맛의공방 제주이야기 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 타워1동 1층 132~ 138호", + "average_price": 41461, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "070-4400-0919", + "score": 3.1, + "review": 34, + "duration_hours": "11:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 904, + "name": "라무진 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 2층 236호", + "average_price": 24250, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 24:00", + "phone_number": null, + "score": 4.4, + "review": 23, + "duration_hours": "17:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 905, + "name": "명륜진사갈비성 성남서판교점", + "address": "경기 성남시 분당구 운중로178번길 1 1층", + "average_price": 0, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-708-9288", + "score": 1.7, + "review": 28, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 906, + "name": "즐삼생고기", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 지하1층 119-4호", + "average_price": 18233, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 23:00", + "phone_number": null, + "score": 3.5, + "review": 6, + "duration_hours": "11:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 907, + "name": "한마음정육식당 판교테크노벨리점", + "address": "경기 성남시 분당구 대왕판교로 660 A동", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-701-1000", + "score": 4.1, + "review": 78, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 908, + "name": "일로집 판교직영점", + "address": "경기 성남시 분당구 판교역로192번길 14-1 판교예미지 1층 105호", + "average_price": 10066, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 24:00", + "phone_number": "031-705-1215", + "score": 3.5, + "review": 46, + "duration_hours": "11:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 909, + "name": "허니피그", + "address": "경기 성남시 분당구 동판교로52번길 3-8 1층", + "average_price": 18500, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 22:00", + "phone_number": "031-8016-7373", + "score": 4.4, + "review": 42, + "duration_hours": "16:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 910, + "name": "뚝배기동태탕", + "address": "경기 성남시 분당구 서판교로44번길 3 1층", + "average_price": 16818, + "caution": "포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:30 ~ 17:00", + "phone_number": "031-705-1577", + "score": 3.4, + "review": 16, + "duration_hours": "15:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 911, + "name": "양육점 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 2층", + "average_price": 34636, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-706-1624", + "score": 4.2, + "review": 543, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 912, + "name": "원조닭한마리칼국수전문", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하 1층 108호", + "average_price": 12400, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-709-0176", + "score": 0.0, + "review": 53, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 913, + "name": "팔각도 판교유스페이스점", + "address": "경기 성남시 분당구 대왕판교로 660 A동 2층 238호", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-724-2552", + "score": 4.6, + "review": 180, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 914, + "name": "춘천명물닭갈비", + "address": "경기 성남시 분당구 운중로138번길 18-5 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "010-2644-8481", + "score": 0.0, + "review": 81, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 915, + "name": "소호정 판교아브뉴프랑점", + "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-703-1360", + "score": 2.8, + "review": 29, + "duration_hours": "11:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 916, + "name": "더부자꼬리", + "address": "경기 성남시 분당구 판교역로2번길 3 1층", + "average_price": 16000, + "caution": "포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-609-6525", + "score": 4.1, + "review": 16, + "duration_hours": "11:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 917, + "name": "원조장충왕족발 삼평점", + "address": "경기 성남시 분당구 대왕판교로644번길 65 휴먼시아아파트 상가 1층 101호", + "average_price": 37000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-702-3324", + "score": 3.3, + "review": 14, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 918, + "name": "자연산회통영붕장어", + "address": "경기 성남시 분당구 판교공원로2길 38-1 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-3340", + "score": 3.0, + "review": 3, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 919, + "name": "판교집 서판교직영점", + "address": "경기 성남시 분당구 판교공원로2길 58 1층 101호", + "average_price": 28571, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "0507-1422-6650", + "score": 3.8, + "review": 103, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 920, + "name": "운중골낙지마당", + "address": "경기 성남시 분당구 운중로138번길 18-3 1층", + "average_price": 10666, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,금,일 10:00 ~ 23:00", + "phone_number": "031-703-5505", + "score": 3.5, + "review": 14, + "duration_hours": "10:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 921, + "name": "고화갈비살", + "address": "경기 성남시 분당구 판교역로192번길 16 1층 111,112,116,117호", + "average_price": 39300, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 23:00", + "phone_number": null, + "score": 3.5, + "review": 214, + "duration_hours": "16:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 922, + "name": "진복호 분당점", + "address": "경기 성남시 분당구 동판교로 52", + "average_price": 52500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-709-3382", + "score": 4.1, + "review": 8, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 923, + "name": "상기육개장", + "address": "경기 성남시 분당구 판교역로2번길 34 1층 102호", + "average_price": 13500, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,금,일 11:00 ~ 20:30", + "phone_number": "0507-1376-2912", + "score": 4.9, + "review": 27, + "duration_hours": "11:00 ~ 20:30", + "category_id": 7 + }, + { + "restaurant_id": 924, + "name": "키친정지", + "address": "경기 성남시 분당구 산운로160번길 22 1층 102호", + "average_price": 10200, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 07:00 ~ 14:30", + "phone_number": "031-703-5577", + "score": 4.4, + "review": 8, + "duration_hours": "07:00 ~ 14:30", + "category_id": 7 + }, + { + "restaurant_id": 925, + "name": "판교삼대곱창", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 1 A동 202호", + "average_price": 25666, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:20 ~ 23:00", + "phone_number": null, + "score": 3.6, + "review": 140, + "duration_hours": "11:20 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 926, + "name": "콩뿌리", + "address": "경기 성남시 분당구 운중로 132 1층", + "average_price": 9000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 06:00 ~ 15:00", + "phone_number": "031-8016-6699", + "score": 4.5, + "review": 6, + "duration_hours": "06:00 ~ 15:00", + "category_id": 7 + }, + { + "restaurant_id": 927, + "name": "고대생막창", + "address": "경기 성남시 분당구 판교역로241번길 22 1층", + "average_price": 17600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 22:00", + "phone_number": "031-8016-1992", + "score": 3.4, + "review": 25, + "duration_hours": "16:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 928, + "name": "문어집", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 122호", + "average_price": 58833, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 02:00", + "phone_number": null, + "score": 4.1, + "review": 25, + "duration_hours": "17:00 ~ 02:00", + "category_id": 7 + }, + { + "restaurant_id": 929, + "name": "산꼼장어닭발쭈꾸미 판교점", + "address": "경기 성남시 분당구 판교역로192번길 22 판교효성해링턴타워 1층 108-109호", + "average_price": 14250, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 02:00", + "phone_number": "031-702-9294", + "score": 0.0, + "review": 29, + "duration_hours": "16:00 ~ 02:00", + "category_id": 7 + }, + { + "restaurant_id": 930, + "name": "원조부안집 판교직영점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 214호", + "average_price": 11400, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "0507-1393-6469", + "score": 3.6, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 931, + "name": "동해회포차", + "address": "경기 성남시 분당구 대왕판교로606번길 31 호반메트로큐브 1층 125,126호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 24:00", + "phone_number": "031-8016-3995", + "score": 0.0, + "review": 11, + "duration_hours": "11:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 932, + "name": "나진국밥 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 B동 2층 237호", + "average_price": 19125, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-328-1002", + "score": 3.0, + "review": 29, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 933, + "name": "하이포크", + "address": "경기 성남시 분당구 대왕판교로645번길 36 NS홈쇼핑 별관 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-606-8515", + "score": 2.4, + "review": 14, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 934, + "name": "려원쭈꾸미볶음", + "address": "경기 성남시 분당구 판교로255번길 9-22", + "average_price": 10333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-628-8277", + "score": 3.8, + "review": 24, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 935, + "name": "문막집", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 1층 128호", + "average_price": 29527, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:00 ~ 17:00", + "phone_number": "070-8233-8624", + "score": 4.4, + "review": 42, + "duration_hours": "14:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 936, + "name": "남해바다장어", + "address": "경기 성남시 분당구 운중로125번길 4-5 1층", + "average_price": 28800, + "caution": "예약가능, 포장가능", + "convenience": "주차\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-707-3777", + "score": 5.0, + "review": 3, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 937, + "name": "오뚜기식당 판교점", + "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 108호", + "average_price": 9375, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 12:00 ~ 23:00", + "phone_number": "031-709-5882", + "score": 4.1, + "review": 46, + "duration_hours": "12:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 938, + "name": "마중손칼국수", + "address": "경기 성남시 분당구 판교공원로1길 8 1층", + "average_price": 9300, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 15:00", + "phone_number": "031-605-6100", + "score": 4.1, + "review": 52, + "duration_hours": "11:00 ~ 15:00", + "category_id": 7 + }, + { + "restaurant_id": 939, + "name": "무안회관 판교점", + "address": "경기 성남시 분당구 판교역로192번길 12", + "average_price": 31619, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:30", + "phone_number": null, + "score": 3.5, + "review": 42, + "duration_hours": "11:00 ~ 23:30", + "category_id": 7 + }, + { + "restaurant_id": 940, + "name": "석기시대", + "address": "경기 성남시 분당구 운중로113번길 4-8", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:30", + "phone_number": "031-8016-7172", + "score": 3.4, + "review": 2, + "duration_hours": "11:00 ~ 22:30", + "category_id": 7 + }, + { + "restaurant_id": 941, + "name": "본가광양불고기", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림 W-CITY 2층 227호", + "average_price": 32333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-628-8066", + "score": 3.8, + "review": 117, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 942, + "name": "전주현대옥 판교점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 B동 1층", + "average_price": 7833, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:00", + "phone_number": "031-739-8330", + "score": 3.4, + "review": 14, + "duration_hours": "14:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 943, + "name": "밥볶다 동판교점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스A동 지하1층 B115~B115-1호", + "average_price": 10000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 21:00", + "phone_number": "031-696-0317", + "score": 4.3, + "review": 33, + "duration_hours": "10:30 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 944, + "name": "미쁜선순대", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 1층 125호", + "average_price": 12000, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 09:30 ~ 20:30", + "phone_number": "031-698-3969", + "score": 3.9, + "review": 25, + "duration_hours": "09:30 ~ 20:30", + "category_id": 7 + }, + { + "restaurant_id": 945, + "name": "해가옥", + "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 1-78,1-79호", + "average_price": 40571, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "070-8866-5020", + "score": 4.3, + "review": 21, + "duration_hours": "11:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 946, + "name": "마케집 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하 1층 B110~B111호", + "average_price": 32000, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 23:00", + "phone_number": null, + "score": 4.1, + "review": 48, + "duration_hours": "11:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 947, + "name": "하림닭요리", + "address": "경기 성남시 분당구 대왕판교로645번길 36 NS홈쇼핑 별관 지하1층", + "average_price": 21857, + "caution": "유의사항 정보 없음", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-606-8514", + "score": 2.5, + "review": 8, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 948, + "name": "압구정제주집 판교점", + "address": "경기 성남시 분당구 판교역로 138 1층", + "average_price": 12789, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:00", + "phone_number": "031-8039-5533", + "score": 2.4, + "review": 70, + "duration_hours": "14:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 949, + "name": "파머스마켓팥집", + "address": "경기 성남시 분당구 판교로25번길 18-3 1층 102호", + "average_price": 13000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 20:00", + "phone_number": "031-707-8890", + "score": 4.7, + "review": 33, + "duration_hours": "11:00 ~ 20:00", + "category_id": 7 + }, + { + "restaurant_id": 950, + "name": "원조감자탕일미집 판교점", + "address": "경기 성남시 분당구 판교역로 235 H스퀘어 N동 1층 127호", + "average_price": 17000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-737-7410", + "score": 2.9, + "review": 46, + "duration_hours": "10:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 951, + "name": "행복가", + "address": "경기 성남시 분당구 운중로146번길 19-4 1층", + "average_price": 15333, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 23:00", + "phone_number": null, + "score": 4.0, + "review": 6, + "duration_hours": "11:30 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 952, + "name": "종로계림닭도리탕원조 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 2층 205호", + "average_price": 24600, + "caution": "포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:00", + "phone_number": "031-724-2933", + "score": 4.1, + "review": 53, + "duration_hours": "14:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 953, + "name": "소호정 판교테크노밸리점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2관 지하1층 B117호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:30", + "phone_number": "031-628-6678", + "score": 2.6, + "review": 10, + "duration_hours": "11:00 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 954, + "name": "운중동멸치국수", + "address": "경기 성남시 분당구 운중로125번길 5 1층", + "average_price": 5208, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:30 ~ 17:00", + "phone_number": "031-707-6911", + "score": 4.8, + "review": 7, + "duration_hours": "15:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 955, + "name": "전설의골뱅이", + "address": "경기 성남시 분당구 대왕판교로 660 1층 117호", + "average_price": 33833, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 01:00", + "phone_number": "031-701-2683", + "score": 4.3, + "review": 20, + "duration_hours": "16:00 ~ 01:00", + "category_id": 7 + }, + { + "restaurant_id": 956, + "name": "담소소사골순대육개장 판교점", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:40 ~ 22:10", + "phone_number": "031-789-3821", + "score": 2.6, + "review": 10, + "duration_hours": "10:40 ~ 22:10", + "category_id": 7 + }, + { + "restaurant_id": 957, + "name": "장수본가해장국 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 31 호반메트로큐브 1층 120~122호", + "average_price": 17916, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 09:00 ~ 22:00", + "phone_number": "031-707-9788", + "score": 3.1, + "review": 6, + "duration_hours": "09:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 958, + "name": "바름", + "address": "경기 성남시 분당구 서판교로58번길 4-6 1층 102,103호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 09:00 ~ 21:00", + "phone_number": "031-722-2121", + "score": 4.5, + "review": 8, + "duration_hours": "09:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 959, + "name": "얼씨92숯불갈비", + "address": "경기 성남시 분당구 판교역로192번길 16", + "average_price": 21375, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 24:00", + "phone_number": "031-8017-8044", + "score": 3.0, + "review": 0, + "duration_hours": "11:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 960, + "name": "새마을식당 판교점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스몰2 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 24:00", + "phone_number": "031-628-6694", + "score": 2.4, + "review": 16, + "duration_hours": "11:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 961, + "name": "미방 판교점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 B동 128호", + "average_price": 24076, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 23:00", + "phone_number": "031-739-8358", + "score": 4.3, + "review": 9, + "duration_hours": "11:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 962, + "name": "서가네의정부부대찌개", + "address": "경기 성남시 분당구 운중로 142 메디칼빌딩 1층 107호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-706-5656", + "score": 4.5, + "review": 14, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 963, + "name": "우상화로구이 서판교점", + "address": "경기 성남시 분당구 판교공원로1길 57", + "average_price": 29333, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": null, + "score": 4.7, + "review": 198, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 964, + "name": "고향옥 얼큰순대국 삼평점", + "address": "경기 성남시 분당구 판교역로 235", + "average_price": 15187, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 22:00", + "phone_number": "031-737-7988", + "score": 3.8, + "review": 88, + "duration_hours": "08:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 965, + "name": "본설렁탕 판교테크노밸리점", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 131호", + "average_price": 9000, + "caution": "포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 21:00", + "phone_number": "031-696-7588", + "score": 4.1, + "review": 9, + "duration_hours": "10:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 966, + "name": "삼미칼국수", + "address": "경기 성남시 분당구 판교역로 240 삼환하이팩스 A동 지하1층 118호", + "average_price": 15368, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 14:30", + "phone_number": "031-698-3258", + "score": 4.3, + "review": 27, + "duration_hours": "11:00 ~ 14:30", + "category_id": 7 + }, + { + "restaurant_id": 967, + "name": "후루룩손칼국수", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 B103호", + "average_price": 5600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 20:30", + "phone_number": null, + "score": 3.1, + "review": 23, + "duration_hours": "10:00 ~ 20:30", + "category_id": 7 + }, + { + "restaurant_id": 968, + "name": "가장맛있는족발 판교테크노밸리점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 1층", + "average_price": 0, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 01:30", + "phone_number": "031-628-1008", + "score": 2.9, + "review": 8, + "duration_hours": "10:00 ~ 01:30", + "category_id": 7 + }, + { + "restaurant_id": 969, + "name": "마포갈비집 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 2층 239호", + "average_price": 14090, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 22:00", + "phone_number": "031-628-1055", + "score": 2.3, + "review": 110, + "duration_hours": "17:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 970, + "name": "제주꾸숑", + "address": "경기 성남시 분당구 판교공원로2길 19 1층", + "average_price": 56166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "010-8900-3800", + "score": 3.9, + "review": 21, + "duration_hours": "11:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 971, + "name": "두둑26", + "address": "경기 성남시 분당구 판교공원로2길 56 1층", + "average_price": 24500, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 22:00", + "phone_number": "031-707-2656", + "score": 3.5, + "review": 6, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 972, + "name": "판교한방삼계탕", + "address": "경기 성남시 분당구 판교역로 152 알파돔타워 지하1층 7~8호", + "average_price": 15333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": null, + "score": 3.7, + "review": 29, + "duration_hours": "11:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 973, + "name": "대감집", + "address": "경기 성남시 분당구 판교역로 136 1090호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:30 ~ 17:00", + "phone_number": "031-698-3372", + "score": 3.5, + "review": 113, + "duration_hours": "15:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 974, + "name": "마왕족발 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 45", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:30", + "phone_number": "031-708-5892", + "score": 2.6, + "review": 191, + "duration_hours": "11:00 ~ 23:30", + "category_id": 7 + }, + { + "restaurant_id": 975, + "name": "판교도마집 판교본점", + "address": "경기 성남시 분당구 판교역로192번길 14-1 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 18:00 ~ 24:00", + "phone_number": "031-703-1242", + "score": 3.0, + "review": 20, + "duration_hours": "18:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 976, + "name": "정숙성 판교점", + "address": "경기 성남시 분당구 판교역로192번길 22 판교 효성 해링턴타워 1층 102~103호", + "average_price": 21388, + "caution": "예약가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "0507-1474-2105", + "score": 3.3, + "review": 39, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 977, + "name": "북청집", + "address": "경기 성남시 분당구 판교역로 230", + "average_price": 15666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 24:00", + "phone_number": "031-698-2892", + "score": 4.7, + "review": 19, + "duration_hours": "11:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 978, + "name": "청계산갈비", + "address": "경기 성남시 분당구 판교공원로5길 34", + "average_price": 22000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금 13:00 ~ 22:00", + "phone_number": "031-701-1211", + "score": 4.1, + "review": 13, + "duration_hours": "13:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 979, + "name": "오징어날다 본점", + "address": "경기 성남시 분당구 판교공원로2길 55 1층", + "average_price": 21666, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 24:00", + "phone_number": "031-8016-0773", + "score": 3.8, + "review": 4, + "duration_hours": "17:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 980, + "name": "최가네장터", + "address": "경기 성남시 분당구 서판교로44번길 9 1층 102호", + "average_price": 8400, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 11:30 ~ 18:30", + "phone_number": "031-708-1900", + "score": 4.5, + "review": 5, + "duration_hours": "11:30 ~ 18:30", + "category_id": 7 + }, + { + "restaurant_id": 981, + "name": "오투닭갈비&부대찌개 판교테크노벨리점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 223호", + "average_price": 13600, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-739-8689", + "score": 4.6, + "review": 33, + "duration_hours": "11:00 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 982, + "name": "행복한집", + "address": "경기 성남시 분당구 대왕판교로 670", + "average_price": 15400, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": null, + "score": 3.7, + "review": 8, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 983, + "name": "이백소면 판교본점", + "address": "경기 성남시 분당구 대왕판교로606번길 31 호반메트로큐브오피스텔 1층", + "average_price": 7475, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 07:00 ~ 20:45", + "phone_number": "031-8016-7689", + "score": 2.6, + "review": 16, + "duration_hours": "07:00 ~ 20:45", + "category_id": 7 + }, + { + "restaurant_id": 984, + "name": "조마루감자탕 판교점", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 129,130호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 23:00", + "phone_number": "031-696-7500", + "score": 2.7, + "review": 22, + "duration_hours": "10:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 985, + "name": "한스족발", + "address": "경기 성남시 분당구 운중로125번길 5 1층", + "average_price": 38000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 11:00 ~ 21:30", + "phone_number": "031-702-1007", + "score": 3.3, + "review": 8, + "duration_hours": "11:00 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 986, + "name": "우뜰 판교본점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 라스트리트 1동 1층 105호", + "average_price": 40333, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-705-9252", + "score": 4.7, + "review": 13, + "duration_hours": "11:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 987, + "name": "고반식당 서판교점", + "address": "경기 성남시 분당구 판교공원로5길 7 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "WIFI\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 23:00", + "phone_number": "031-602-0721", + "score": 5.0, + "review": 28, + "duration_hours": "16:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 988, + "name": "육마니 운중점", + "address": "경기 성남시 분당구 운중로146번길 11-4", + "average_price": 11600, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:30", + "phone_number": "031-702-5888", + "score": 4.1, + "review": 17, + "duration_hours": "10:00 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 989, + "name": "근돼국밥 판교점", + "address": "경기 성남시 분당구 판교공원로3길 9 1층", + "average_price": 10160, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-707-1182", + "score": 3.1, + "review": 40, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 990, + "name": "오봉집 판교유스페이스점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 213호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-628-6676", + "score": 3.6, + "review": 30, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 991, + "name": "팔딱수산", + "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움1단지 1층 115호", + "average_price": 30714, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 24:00", + "phone_number": "031-606-1020", + "score": 1.0, + "review": 10, + "duration_hours": "17:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 992, + "name": "도담", + "address": "경기 성남시 분당구 판교로319번길 13 디테라스 1층", + "average_price": 38650, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": null, + "score": 3.3, + "review": 10, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 993, + "name": "삼군김치찌개", + "address": "경기 성남시 분당구 판교역로 230 지하1층 B-117호", + "average_price": 10000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": null, + "score": 4.0, + "review": 2, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 994, + "name": "논산집", + "address": "경기 성남시 분당구 판교로319번길 14 성남판교경기행복주택 근린생활시설동 1층 1호", + "average_price": 13428, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 3, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 995, + "name": "우화", + "address": "경기 성남시 분당구 동판교로177번길 25 2층 212, 213호", + "average_price": 27220, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-707-4775", + "score": 3.5, + "review": 136, + "duration_hours": "11:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 996, + "name": "일품양평해장국 분당백현점", + "address": "경기 성남시 분당구 동판교로52번길 12 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-707-9957", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 997, + "name": "삼산회관 판교유스페이스점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 지하1층 B108호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "010-2638-2909", + "score": 2.8, + "review": 96, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 998, + "name": "본죽 동판교점", + "address": "경기 성남시 분당구 판교로 374 스타식스코아2 104호", + "average_price": 10833, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:30 ~ 21:30", + "phone_number": "031-8016-6288", + "score": 2.8, + "review": 0, + "duration_hours": "09:30 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 999, + "name": "재크와콩나물", + "address": "경기 성남시 분당구 판교역로 231", + "average_price": 15400, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": null, + "score": 3.9, + "review": 15, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1000, + "name": "남원에덴식당 판교", + "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 2층 233-1호", + "average_price": 14666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-781-3119", + "score": 2.5, + "review": 14, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1001, + "name": "통통낙지마을", + "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 2층 209호", + "average_price": 18600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 4.0, + "review": 13, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1002, + "name": "강창구찹쌀진순대 판교테크원점", + "address": "경기 성남시 분당구 분당내곡로 131 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:30 ~ 17:00", + "phone_number": "031-601-7420", + "score": 2.0, + "review": 50, + "duration_hours": "14:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1003, + "name": "강릉엄지네꼬막집 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1, A동 204호", + "average_price": 21800, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:50 ~ 16:50", + "phone_number": "031-724-2666", + "score": 4.4, + "review": 13, + "duration_hours": "14:50 ~ 16:50", + "category_id": 7 + }, + { + "restaurant_id": 1004, + "name": "미소 한우소고기국밥", + "address": "경기 성남시 분당구 판교로255번길 9-22 2층 212~213호", + "average_price": 18333, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 21:30", + "phone_number": "031-628-8833", + "score": 4.1, + "review": 4, + "duration_hours": "10:00 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 1005, + "name": "만석상회", + "address": "경기 성남시 분당구 분당내곡로 117 크래프톤타워 지하1층", + "average_price": 17333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": null, + "score": 3.3, + "review": 9, + "duration_hours": "10:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1006, + "name": "꾸면돼지", + "address": "경기 성남시 분당구 동판교로 91 백현마을4단지 상가동 1층1110호", + "average_price": 14800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 23:00", + "phone_number": "031-703-1026", + "score": 4.8, + "review": 28, + "duration_hours": "16:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 1007, + "name": "고기원칙 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 1층 140호", + "average_price": 20000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 23:00", + "phone_number": "031-724-2811", + "score": 3.7, + "review": 20, + "duration_hours": "16:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 1008, + "name": "담소소사골순대육개장 판교2호점", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림더블유시티 1층 124호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 06:00 ~ 22:00", + "phone_number": "031-628-8821", + "score": 3.4, + "review": 8, + "duration_hours": "06:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1009, + "name": "이든활어스시", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 220호", + "average_price": 34400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": "031-739-8663", + "score": 0.0, + "review": 5, + "duration_hours": "14:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1010, + "name": "한촌설렁탕 판교테크노밸리점", + "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어 S동 B129,130호", + "average_price": 0, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 08:00 ~ 22:00", + "phone_number": "031-789-3690", + "score": 0.0, + "review": 41, + "duration_hours": "08:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1011, + "name": "종가감자탕 명태조림", + "address": "경기 성남시 분당구 운중로138번길 28-6 1층", + "average_price": 21800, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 23:00", + "phone_number": "031-702-8289", + "score": 4.3, + "review": 5, + "duration_hours": "10:30 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 1012, + "name": "부대집", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 224호", + "average_price": 11666, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 17:30", + "phone_number": null, + "score": 4.1, + "review": 17, + "duration_hours": "14:30 ~ 17:30", + "category_id": 7 + }, + { + "restaurant_id": 1013, + "name": "군산오징어 판교테크노밸리점", + "address": "경기 성남시 분당구 대왕판교로 660 판교테크노벨리 유스페이스 A동 320호", + "average_price": 16000, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-628-1979", + "score": 3.3, + "review": 20, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1014, + "name": "듬박이찌개 판교점", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 128호", + "average_price": 25700, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-696-7575", + "score": 3.5, + "review": 28, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1015, + "name": "지안이네집", + "address": "경기 성남시 분당구 판교공원로2길 66", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 22:50", + "phone_number": "031-8017-2170", + "score": 4.8, + "review": 0, + "duration_hours": "16:00 ~ 22:50", + "category_id": 7 + }, + { + "restaurant_id": 1016, + "name": "토평한우소곱창 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 A동 1층 121호", + "average_price": 22250, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 24:00", + "phone_number": null, + "score": 3.7, + "review": 11, + "duration_hours": "17:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 1017, + "name": "봉추찜닭 판교테크노밸리점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2관 219호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 20:40", + "phone_number": "031-628-6981", + "score": 3.2, + "review": 12, + "duration_hours": "11:00 ~ 20:40", + "category_id": 7 + }, + { + "restaurant_id": 1018, + "name": "나봄", + "address": "경기 성남시 분당구 운중로 128 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-8999", + "score": 4.5, + "review": 19, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1019, + "name": "토담정육식당", + "address": "경기 성남시 분당구 판교역로10번길 26 1층", + "average_price": 17408, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 23:00", + "phone_number": null, + "score": 0.0, + "review": 7, + "duration_hours": "11:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 1020, + "name": "육회한김스지 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 123호", + "average_price": 32666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 01:00", + "phone_number": "031-724-2580", + "score": 3.0, + "review": 19, + "duration_hours": "17:00 ~ 01:00", + "category_id": 7 + }, + { + "restaurant_id": 1021, + "name": "기달임", + "address": "경기 성남시 분당구 판교역로 240", + "average_price": 9000, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": null, + "score": 4.5, + "review": 40, + "duration_hours": "14:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1022, + "name": "집게집 판교직영점", + "address": "경기 성남시 분당구 판교로25번길 6-2 1층", + "average_price": 6250, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 22:00", + "phone_number": null, + "score": 5.0, + "review": 54, + "duration_hours": "12:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1023, + "name": "봉황칼국수", + "address": "경기 성남시 분당구 운중로126번길 7 1층", + "average_price": 10000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:30 ~ 17:00", + "phone_number": null, + "score": 4.8, + "review": 33, + "duration_hours": "14:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1024, + "name": "데블스램앤펍 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 판교테크노벨리 유스페이스 107~8호", + "average_price": 16166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 01:00", + "phone_number": null, + "score": 2.9, + "review": 0, + "duration_hours": "10:00 ~ 01:00", + "category_id": 7 + }, + { + "restaurant_id": 1025, + "name": "대가국밥쟁이 라스트리트점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움타워 1동 2층 212~214호", + "average_price": 11666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-709-6117", + "score": 1.8, + "review": 5, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1026, + "name": "원할머니보쌈족발 서판교배달점", + "address": "경기 성남시 분당구 판교공원로5길 3 1층 103호", + "average_price": 36000, + "caution": "배달가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 24:00", + "phone_number": "031-703-1330", + "score": 3.0, + "review": 10, + "duration_hours": "11:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 1027, + "name": "종로계림닭도리탕 원조 서판교점", + "address": "경기 성남시 분당구 운중로 135", + "average_price": 26000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 22:00", + "phone_number": null, + "score": 5.0, + "review": 9, + "duration_hours": "10:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1028, + "name": "불고기온소반 판교본점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 B105,B105-1호", + "average_price": 11000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,금,일 15:00 ~ 17:00", + "phone_number": "0502-5551-4977", + "score": 4.3, + "review": 3, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1029, + "name": "예다온", + "address": "경기 성남시 분당구 운중로126번길 10", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:30", + "phone_number": "031-702-9222", + "score": 3.5, + "review": 38, + "duration_hours": "11:30 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 1030, + "name": "정인면옥 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 9층", + "average_price": 24166, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-5170-1932", + "score": 3.2, + "review": 106, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1031, + "name": "만리어 장어 판교유스페이스점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스몰1 지하1층 A동 113호", + "average_price": 46333, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 22:00", + "phone_number": "010-2669-7017", + "score": 3.5, + "review": 25, + "duration_hours": "11:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1032, + "name": "인생아구찜 분당점", + "address": "경기 성남시 분당구 동판교로 49 1층 105호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 24:00", + "phone_number": "031-702-1580", + "score": 5.0, + "review": 5, + "duration_hours": "10:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 1033, + "name": "남원추어탕 판교점", + "address": "경기 성남시 분당구 판교로 375 메가스페이스1 2층 201호", + "average_price": 11333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 21:30", + "phone_number": "031-8017-9991", + "score": 2.0, + "review": 3, + "duration_hours": "10:30 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 1034, + "name": "달맞이국밥", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 지하1층 B102호", + "average_price": 7500, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 20:30", + "phone_number": null, + "score": 4.1, + "review": 4, + "duration_hours": "11:30 ~ 20:30", + "category_id": 7 + }, + { + "restaurant_id": 1035, + "name": "박가부대 판교라스트리트점", + "address": "경기 성남시 분당구 판교역로 145 알파리움 2층 210,211호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:00", + "phone_number": "031-704-9806", + "score": 2.8, + "review": 31, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1036, + "name": "명품보쌈호프", + "address": "경기 성남시 분당구 판교역로 230", + "average_price": 10666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:30", + "phone_number": "031-698-7800", + "score": 3.6, + "review": 5, + "duration_hours": "14:30 ~ 17:30", + "category_id": 7 + }, + { + "restaurant_id": 1037, + "name": "통큰곱창 분당판교직영점", + "address": "경기 성남시 분당구 동판교로 91 백현마을4단지 상가동 B105호", + "average_price": 22000, + "caution": "배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 16:00 ~ 24:00", + "phone_number": "070-4647-0678", + "score": 5.0, + "review": 46, + "duration_hours": "16:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 1038, + "name": "김치도가 판교테크노밸리점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 B104호", + "average_price": 9600, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-698-3592", + "score": 4.3, + "review": 15, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1039, + "name": "이치류 아브뉴프랑판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 2층 202호", + "average_price": 28800, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 22:00", + "phone_number": "031-707-0650", + "score": 4.7, + "review": 1, + "duration_hours": "12:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1040, + "name": "규정공 더판교", + "address": "경기 성남시 분당구 판교로227번길 6 브릿지타워 1층 110호", + "average_price": 52500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:30 ~ 16:50", + "phone_number": "031-702-1661", + "score": 4.0, + "review": 4, + "duration_hours": "14:30 ~ 16:50", + "category_id": 7 + }, + { + "restaurant_id": 1041, + "name": "방이옥 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 1동 2층 209-4호", + "average_price": 50500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 1.0, + "review": 21, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1042, + "name": "킹콩부대찌개 동판교점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 2층 207호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-698-3240", + "score": 3.9, + "review": 12, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1043, + "name": "판교순대", + "address": "경기 성남시 분당구 대왕판교로645번길 36 NS복합건출물 1동 지하1층", + "average_price": 11125, + "caution": "예약가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": null, + "score": 3.0, + "review": 15, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1044, + "name": "킹콩부대찌개 서판교점", + "address": "경기 성남시 분당구 판교공원로5길 11 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-8016-0334", + "score": 3.0, + "review": 9, + "duration_hours": "10:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1045, + "name": "담소나루", + "address": "경기 성남시 분당구 서판교로58번길 8", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8017-3651", + "score": 4.1, + "review": 2, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1046, + "name": "본우리반상 판교우림W시티점", + "address": "경기 성남시 분당구 판교로255번길 9-22 2층", + "average_price": 14800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 20:00", + "phone_number": "031-628-8855", + "score": 3.0, + "review": 5, + "duration_hours": "11:00 ~ 20:00", + "category_id": 7 + }, + { + "restaurant_id": 1047, + "name": "판미각", + "address": "경기 성남시 분당구 판교공원로1길 59 1층", + "average_price": 12916, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 22:00", + "phone_number": "031-781-8999", + "score": 3.8, + "review": 4, + "duration_hours": "10:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1048, + "name": "기대만족 분당판교점", + "address": "경기 성남시 분당구 동판교로 155 A상가동 1층 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "0507-1334-8464", + "score": 4.2, + "review": 1, + "duration_hours": "11:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 1049, + "name": "속초코다리", + "address": "경기 성남시 분당구 대왕판교로 670 B동 2층 202호", + "average_price": 9125, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-702-9777", + "score": 0.0, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1050, + "name": "월선네 판교역점", + "address": "경기 성남시 분당구 판교역로192번길 22", + "average_price": 21238, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 3.0, + "review": 6, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1051, + "name": "닭갈비야", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 2동 B114호", + "average_price": 14000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-701-3666", + "score": 3.7, + "review": 15, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1052, + "name": "장인설렁탕", + "address": "경기 성남시 분당구 운중로 131", + "average_price": 17600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:00", + "phone_number": "031-709-5888", + "score": 4.4, + "review": 3, + "duration_hours": "11:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 1053, + "name": "해질녘", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1동 120호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 01:00", + "phone_number": null, + "score": 4.3, + "review": 20, + "duration_hours": "16:00 ~ 01:00", + "category_id": 7 + }, + { + "restaurant_id": 1054, + "name": "손에손잡고 판교직영점", + "address": "경기 성남시 분당구 대왕판교로606번길 47 1층 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": null, + "score": 4.8, + "review": 2, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1055, + "name": "모박사부대찌개 판교점", + "address": "경기 성남시 분당구 판교로255번길 9-22", + "average_price": 10000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-7776", + "score": 3.5, + "review": 3, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1056, + "name": "제주상춘재 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 9층", + "average_price": 33055, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": null, + "score": 3.1, + "review": 22, + "duration_hours": "11:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 1057, + "name": "식껍 서판교점", + "address": "경기 성남시 분당구 운중로126번길 12 1층", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:00 ~ 17:00", + "phone_number": null, + "score": 3.1, + "review": 38, + "duration_hours": "14:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1058, + "name": "일점가 판교디테라스점", + "address": "경기 성남시 분당구 판교로319번길 13 114호 일점가 판교디테라스점", + "average_price": 11000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 22:00", + "phone_number": "031-609-7811", + "score": 2.7, + "review": 11, + "duration_hours": "10:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1059, + "name": "죽도령 판교점", + "address": "경기 성남시 분당구 판교역로 240", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,금,일 10:00 ~ 23:00", + "phone_number": "050-7978-7068", + "score": 0.0, + "review": 0, + "duration_hours": "10:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 1060, + "name": "여의나룻 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 2층", + "average_price": 21363, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:30 ~ 17:00", + "phone_number": null, + "score": 3.8, + "review": 81, + "duration_hours": "15:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1061, + "name": "구구족 분당판교점", + "address": "경기 성남시 분당구 동판교로 91 백현마을4단지 상가 지하 1층 108호", + "average_price": 23900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-703-9982", + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1062, + "name": "한뿌리죽 현대백화점 판교점", + "address": "경기 성남시 분당구 백현동 541 지하1층 현대식품관 내", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-1071", + "score": 0.0, + "review": 0, + "duration_hours": "10:30 ~ 20:00", + "category_id": 7 + }, + { + "restaurant_id": 1063, + "name": "신사감자탕&쭈꾸미", + "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 2층 207호,208호", + "average_price": 24166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1064, + "name": "육대장 판교점", + "address": "경기 성남시 분당구 판교역로 230 B118호", + "average_price": 0, + "caution": "포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:30", + "phone_number": null, + "score": 1.0, + "review": 2, + "duration_hours": "10:30 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 1065, + "name": "서울황태 판교점", + "address": "경기 성남시 분당구 판교역로192번길 16", + "average_price": 16380, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 01:00", + "phone_number": null, + "score": 5.0, + "review": 18, + "duration_hours": "16:00 ~ 01:00", + "category_id": 7 + }, + { + "restaurant_id": 1066, + "name": "제비면가 판교본점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 B114호", + "average_price": 7260, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 21:00", + "phone_number": "031-698-2959", + "score": 3.8, + "review": 6, + "duration_hours": "11:30 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 1067, + "name": "채가원 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 9층", + "average_price": 24500, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-5170-1908", + "score": 2.8, + "review": 40, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1068, + "name": "헤이롤", + "address": "경기 성남시 분당구 운중로125번길 3-3 1층 104호", + "average_price": 6947, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 09:00 ~ 19:00", + "phone_number": null, + "score": 5.0, + "review": 3, + "duration_hours": "09:00 ~ 19:00", + "category_id": 7 + }, + { + "restaurant_id": 1069, + "name": "한국집", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 9층", + "average_price": 12400, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-5170-1953", + "score": 2.6, + "review": 0, + "duration_hours": "10:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1070, + "name": "통이큰낙지", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림W-CITY 지하1층 B103호, B104호", + "average_price": 41315, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:00", + "phone_number": null, + "score": 4.6, + "review": 3, + "duration_hours": "11:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 1071, + "name": "프레퍼스다이어트푸드 판교점", + "address": "경기 성남시 분당구 판교역로 231", + "average_price": 11233, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "0507-2083-8506", + "score": 1.9, + "review": 27, + "duration_hours": "10:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1072, + "name": "동네맛집", + "address": "경기 성남시 분당구 운중로 131 스타식스메트로 1층 102호", + "average_price": 35600, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 4, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1073, + "name": "냉면클라쓰&마약만두 분당백현점", + "address": "경기 성남시 분당구 판교역로10번길 12-3", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-781-1720", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1074, + "name": "취화당", + "address": "경기 성남시 분당구 대왕판교로606번길 45 1층", + "average_price": 42800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 24:00", + "phone_number": null, + "score": 5.0, + "review": 20, + "duration_hours": "17:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 1075, + "name": "달맞이 국밥", + "address": "경기 성남시 분당구 판교역로 240 1층", + "average_price": 9200, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 3.5, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1076, + "name": "소도둑 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 163호", + "average_price": 15480, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": null, + "score": 3.0, + "review": 0, + "duration_hours": "10:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1077, + "name": "이황식당2", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 지하1층 B105호", + "average_price": 9500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:00 ~ 17:00", + "phone_number": null, + "score": 0.0, + "review": 10, + "duration_hours": "14:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1078, + "name": "돼지야미안해", + "address": "경기 성남시 분당구 대왕판교로606번길 45", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 21:00 ~ 05:00", + "phone_number": "0507-2084-1676", + "score": 5.0, + "review": 0, + "duration_hours": "21:00 ~ 05:00", + "category_id": 7 + }, + { + "restaurant_id": 1079, + "name": "어서오시게 분당판교점", + "address": "경기 성남시 분당구 판교역로 184 JS빌딩 1층 102호", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-707-8249", + "score": 4.3, + "review": 128, + "duration_hours": "11:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 1080, + "name": "양문 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 1층", + "average_price": 18888, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": null, + "score": 5.0, + "review": 61, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1081, + "name": "미정국수0410 서판교점", + "address": "경기 성남시 분당구 운중로 140 메트로골드 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 20:00", + "phone_number": "031-708-0410", + "score": 2.5, + "review": 3, + "duration_hours": "15:00 ~ 20:00", + "category_id": 7 + }, + { + "restaurant_id": 1082, + "name": "군산오징어 리틀 판교우림W시티점", + "address": "경기 성남시 분당구 판교로255번길 9-22 2층 214호", + "average_price": 26000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:00", + "phone_number": "031-628-8078", + "score": 3.0, + "review": 10, + "duration_hours": "14:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1083, + "name": "도리깨침", + "address": "경기 성남시 분당구 판교역로10번길 10-7", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1084, + "name": "판교화로", + "address": "경기 성남시 분당구 운중로125번길 4-5 1층", + "average_price": 18833, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 22:00", + "phone_number": null, + "score": 0.0, + "review": 7, + "duration_hours": "16:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1085, + "name": "꼬들집", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어S동 2층", + "average_price": 14000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-789-3789", + "score": 1.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1086, + "name": "혜선이", + "address": "경기 성남시 분당구 운중로 135", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-707-9735", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1087, + "name": "연어의하루", + "address": "경기 성남시 분당구 운중로 129 1층 106~107호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 05:00", + "phone_number": "031-707-7707", + "score": 3.5, + "review": 0, + "duration_hours": "17:00 ~ 05:00", + "category_id": 7 + }, + { + "restaurant_id": 1088, + "name": "한강로칼국수 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", + "average_price": 14000, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 19:30", + "phone_number": "031-5170-1013", + "score": 3.1, + "review": 49, + "duration_hours": "10:30 ~ 19:30", + "category_id": 7 + }, + { + "restaurant_id": 1089, + "name": "춘업순대국과 0627부대찌개", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림W-city 2층 215호", + "average_price": 10000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 20:00", + "phone_number": null, + "score": 4.7, + "review": 10, + "duration_hours": "11:00 ~ 20:00", + "category_id": 7 + }, + { + "restaurant_id": 1090, + "name": "압구정김치찌개", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림W시티 207호", + "average_price": 13857, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 21:00", + "phone_number": "031-628-8776", + "score": 4.0, + "review": 6, + "duration_hours": "10:30 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 1091, + "name": "어부네", + "address": "경기 성남시 분당구 판교공원로2길 52", + "average_price": 52350, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-3339", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1092, + "name": "청여수", + "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 지하1층 B112호", + "average_price": 8800, + "caution": "포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 07:00 ~ 21:00", + "phone_number": "031-698-3992", + "score": 3.9, + "review": 11, + "duration_hours": "07:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 1093, + "name": "서울전통육개장 판교점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스A동 지하1층 108-1호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": null, + "score": 2.5, + "review": 3, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1094, + "name": "됐소 판교본점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 지하1층 B101호", + "average_price": 35750, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-628-6092", + "score": 0.0, + "review": 0, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1095, + "name": "수작", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 지하1층 B115호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:30", + "phone_number": null, + "score": 3.0, + "review": 214, + "duration_hours": "11:00 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 1096, + "name": "효자동생태탕", + "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,수,목", + "is_deleted": "\u0000", + "operating_hour": "월,수,목 09:00 ~ 23:00", + "phone_number": "031-701-9104", + "score": 0.0, + "review": 0, + "duration_hours": "09:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 1097, + "name": "오전오후", + "address": "경기 성남시 분당구 대왕판교로 670 2층 214호", + "average_price": 6333, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 24:00", + "phone_number": "031-705-2468", + "score": 3.9, + "review": 16, + "duration_hours": "11:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 1098, + "name": "해리포차", + "address": "경기 성남시 분당구 운중로 255", + "average_price": 22000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수,금,토", + "is_deleted": "\u0000", + "operating_hour": "수,금,토 18:00 ~ 01:00", + "phone_number": null, + "score": 5.0, + "review": 2, + "duration_hours": "18:00 ~ 01:00", + "category_id": 7 + }, + { + "restaurant_id": 1099, + "name": "참다랑어막주는집 서판교점", + "address": "경기 성남시 분당구 판교공원로2길 38 1층 103호", + "average_price": 64400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-8484", + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1100, + "name": "북청집", + "address": "경기 성남시 분당구 판교로255번길 9-22", + "average_price": 15666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-8130", + "score": 4.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1101, + "name": "신사부대찌개&품격삼겹살", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 1A동 205호", + "average_price": 23428, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 22:00", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "10:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1102, + "name": "회코스앤탕", + "address": "경기 성남시 분당구 동판교로 226 봇들마을4단지아파트상가 1층 104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "010-5542-3184", + "score": 2.7, + "review": 1, + "duration_hours": "11:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1103, + "name": "산척 동수제비 판교6호점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 B103호", + "average_price": 10050, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목", + "is_deleted": "\u0000", + "operating_hour": "화~목 14:00 ~ 17:00", + "phone_number": "031-698-2866", + "score": 0.0, + "review": 10, + "duration_hours": "14:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1104, + "name": "도세옥", + "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움타워 1동 2층 라스트리트 208호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "010-6255-7950", + "score": 5.0, + "review": 1, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1105, + "name": "마포갈비집 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 239호", + "average_price": 14090, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 22:00", + "phone_number": null, + "score": 0.0, + "review": 45, + "duration_hours": "17:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1106, + "name": "의정부부대찌개", + "address": "경기 성남시 분당구 운중로138번길 28-8 1층 101호", + "average_price": 16200, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "031-718-0174", + "score": 1.0, + "review": 5, + "duration_hours": "11:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1107, + "name": "삼성에버랜드 코리아바이오", + "address": "경기 성남시 분당구 대왕판교로 700", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-0979", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1108, + "name": "집밥맛있다", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 128-2호", + "average_price": 7333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-724-2988", + "score": 3.5, + "review": 1, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1109, + "name": "더건강한장어 직영3호점", + "address": "경기 성남시 분당구 판교로255번길 9-22 지하1층 109호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-8088", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1110, + "name": "용인전통순대국 판교점", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림더블유시티 지하1층 B111호", + "average_price": 18555, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 1.5, + "review": 3, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1111, + "name": "우리가정육상회 성남판교점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 B동 2층 213호", + "average_price": 7812, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:30", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "11:30 ~ 22:30", + "category_id": 7 + }, + { + "restaurant_id": 1112, + "name": "김인성의 토평한우소곱창", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-724-2589", + "score": 4.5, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1113, + "name": "윤가네용대리해장국 판교유스페이스직영점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 116호", + "average_price": 19363, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-778-6238", + "score": 0.0, + "review": 7, + "duration_hours": "11:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 1114, + "name": "냉면장인 임사부 판교점", + "address": "경기 성남시 분당구 동판교로52번길 3-6", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:00 ~ 18:00", + "phone_number": "050-7464-1749", + "score": 0.0, + "review": 0, + "duration_hours": "14:00 ~ 18:00", + "category_id": 7 + }, + { + "restaurant_id": 1115, + "name": "가족회관 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 12000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 20:00", + "phone_number": "031-5170-2026", + "score": 1.3, + "review": 27, + "duration_hours": "10:30 ~ 20:00", + "category_id": 7 + }, + { + "restaurant_id": 1116, + "name": "만학 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 15400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 20:00", + "phone_number": "031-5170-1013", + "score": 3.0, + "review": 47, + "duration_hours": "10:30 ~ 20:00", + "category_id": 7 + }, + { + "restaurant_id": 1117, + "name": "현대그린푸드 엔에치엔 엔터테인먼트", + "address": "경기 성남시 분당구 대왕판교로645번길 14", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-525-2540", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1118, + "name": "덕순네육개장", + "address": "경기 성남시 분당구 동판교로 225", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-702-2526", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1119, + "name": "우림닭갈비", + "address": "경기 성남시 분당구 판교로255번길 9-22", + "average_price": 14500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:30", + "phone_number": "031-628-7766", + "score": 1.0, + "review": 7, + "duration_hours": "11:00 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 1120, + "name": "역전우동 판교역점", + "address": "경기 성남시 분당구 대왕판교로606번길 31", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-781-6999", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1121, + "name": "우물집 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 5층 식품관", + "average_price": 32500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-5170-1517", + "score": 2.3, + "review": 5, + "duration_hours": "10:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1122, + "name": "안동찜닭", + "address": "경기 성남시 분당구 판교역로 240", + "average_price": 33833, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-698-7857", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1123, + "name": "평안", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 26-1호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 20:00", + "phone_number": "010-8062-7250", + "score": 4.0, + "review": 4, + "duration_hours": "11:00 ~ 20:00", + "category_id": 7 + }, + { + "restaurant_id": 1124, + "name": "석쇠한판숨두부", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림W시티 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 4.6, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1125, + "name": "단푸드", + "address": "경기 성남시 분당구 판교역로 136 힐스테이트판교역 판매시설동 지2층 비 2028호", + "average_price": 30000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 09:00 ~ 18:00", + "phone_number": "070-7972-1525", + "score": 0.0, + "review": 0, + "duration_hours": "09:00 ~ 18:00", + "category_id": 7 + }, + { + "restaurant_id": 1126, + "name": "청담동양마니 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교복합몰 지하1층", + "average_price": 18200, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-1052", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1127, + "name": "비비다낙지 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-1011", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1128, + "name": "엄마집", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-724-2989", + "score": 5.0, + "review": 1, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1129, + "name": "둥지", + "address": "경기 성남시 분당구 판교역로192번길 14-1", + "average_price": 19283, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-5103", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1130, + "name": "꿀돼지두루치기", + "address": "경기 성남시 분당구 판교로255번길 9-22 판교 우림 W-CITY 지하1층", + "average_price": 16050, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.8, + "review": 10, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1131, + "name": "소호면가", + "address": "경기 성남시 분당구 판교로255번길 9-22 2층 225호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 4.0, + "review": 16, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1132, + "name": "한솔국시 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-2063", + "score": 1.2, + "review": 1, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1133, + "name": "온드린 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-2061", + "score": 3.0, + "review": 1, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1134, + "name": "막창막장", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 234호", + "average_price": 25142, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 23:00", + "phone_number": null, + "score": 5.0, + "review": 17, + "duration_hours": "17:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 1135, + "name": "도시하누판교", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-4077-1556", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1136, + "name": "미광쭈꾸미", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 21400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-724-2580", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1137, + "name": "국수의진수", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하층 B123호", + "average_price": 6400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 20:00", + "phone_number": null, + "score": 4.6, + "review": 9, + "duration_hours": "10:00 ~ 20:00", + "category_id": 7 + }, + { + "restaurant_id": 1138, + "name": "양바위", + "address": "경기 성남시 분당구 판교역로 240", + "average_price": 27714, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-698-3592", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1139, + "name": "두부장수", + "address": "경기 성남시 분당구 대왕판교로606번길 58", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-707-8859", + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1140, + "name": "전주옥", + "address": "경기 성남시 분당구 운중로146번길 11-4", + "average_price": 23571, + "caution": "포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-718-0532", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1141, + "name": "오장동흥남집 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층 106호", + "average_price": 14000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-703-6533", + "score": 0.0, + "review": 0, + "duration_hours": "10:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1142, + "name": "어멍막국수", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-5170-1013", + "score": 2.6, + "review": 1, + "duration_hours": "10:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1143, + "name": "시골불냉면", + "address": "경기 성남시 분당구 대왕판교로 670", + "average_price": 6960, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1144, + "name": "온복비빔국수 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 10892, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 20:30", + "phone_number": "031-5170-1011", + "score": 1.0, + "review": 5, + "duration_hours": "10:30 ~ 20:30", + "category_id": 7 + }, + { + "restaurant_id": 1145, + "name": "가비정", + "address": "경기 성남시 분당구 판교로255번길 9-22 판교우림W시티 2층 202호", + "average_price": 9000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1146, + "name": "편장군족발 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-1013", + "score": 3.0, + "review": 3, + "duration_hours": "10:30 ~ 20:00", + "category_id": 7 + }, + { + "restaurant_id": 1147, + "name": "델리스타트업점", + "address": "경기 성남시 분당구 판교로289번길 20", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "02-3453-0833", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1148, + "name": "차림117식당 그레이츠판교", + "address": "경기 성남시 분당구 백현동 535 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1149, + "name": "베트남이랑", + "address": "경기 성남시 분당구 판교역로 145", + "average_price": 11650, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1150, + "name": "행복한밥상", + "address": "경기 성남시 분당구 대왕판교로 670", + "average_price": 16000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-4646", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1151, + "name": "압구정미연 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20", + "average_price": 11900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-1022", + "score": 0.0, + "review": 5, + "duration_hours": "10:30 ~ 20:00", + "category_id": 7 + }, + { + "restaurant_id": 1152, + "name": "신토제주왕족발", + "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 202호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1153, + "name": "제주옥", + "address": "경기 성남시 분당구 판교공원로2길 19", + "average_price": 16222, + "caution": "포장가능", + "convenience": "WIFI\n주차\n놀이방\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1154, + "name": "백가네남원추어탕", + "address": "경기 성남시 분당구 판교역로 240", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-698-4533", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1155, + "name": "오덮", + "address": "경기 성남시 분당구 판교역로 240", + "average_price": 8583, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-696-0365", + "score": 3.3, + "review": 3, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1156, + "name": "밥이랑커피랑", + "address": "경기 성남시 분당구 판교역로 145", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": "070-4792-1557", + "score": 2.7, + "review": 1, + "duration_hours": "14:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1157, + "name": "장원족발보쌈", + "address": "경기 성남시 분당구 대왕판교로644번길 65", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-702-3324", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1158, + "name": "호연에프앤디", + "address": "경기 성남시 분당구 판교역로 136 1층 1042호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1159, + "name": "프랑킨바베큐치킨 동판교점", + "address": "경기 성남시 분당구 동판교로52번길 21-4", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 14:00 ~ 17:30", + "phone_number": "0507-2084-1641", + "score": 0.0, + "review": 0, + "duration_hours": "14:00 ~ 17:30", + "category_id": 7 + }, + { + "restaurant_id": 1160, + "name": "신고집찜칼국수", + "address": "경기 성남시 분당구 판교역로10번길 12", + "average_price": 20300, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-0104", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1161, + "name": "한우리 블랙 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 9층", + "average_price": 38166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-5170-1916", + "score": 0.0, + "review": 4, + "duration_hours": "10:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1162, + "name": "별빛뚝닭 판교본점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 1층 109,110호", + "average_price": 11600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-698-3303", + "score": 2.0, + "review": 66, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1163, + "name": "복문 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 12500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-2048", + "score": 3.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1164, + "name": "낭만족발", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 2동 107호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-818-9943", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1165, + "name": "육촌 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 120호", + "average_price": 15000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 23:30", + "phone_number": "031-628-4492", + "score": 0.0, + "review": 1, + "duration_hours": "17:00 ~ 23:30", + "category_id": 7 + }, + { + "restaurant_id": 1166, + "name": "기달임 돼지곰탕", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스A동 지하1층 B112호", + "average_price": 8250, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 15:00 ~ 17:00", + "phone_number": "031-698-2810", + "score": 0.0, + "review": 15, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1167, + "name": "청구칼국수", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-724-2666", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1168, + "name": "판교영천육회 본점", + "address": "경기 성남시 분당구 판교공원로2길 58", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 21:00", + "phone_number": "0507-2082-1696", + "score": 0.0, + "review": 0, + "duration_hours": "10:30 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 1169, + "name": "약선닭한마리", + "address": "경기 성남시 분당구 대왕판교로606번길 58 푸르지오월드마크 1104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1170, + "name": "건강밥상 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-2064", + "score": 4.3, + "review": 3, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1171, + "name": "매일한식", + "address": "경기 성남시 분당구 대왕판교로606번길 41 프라임스퀘어빌딩 지하1층", + "average_price": 8000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-5425", + "score": 3.7, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1172, + "name": "휴세코 판교지점", + "address": "경기 성남시 분당구 판교로 333", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8062-7060", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1173, + "name": "안주", + "address": "경기 성남시 분당구 판교로319번길 13", + "average_price": 21000, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 2, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1174, + "name": "전주선비빔 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-2062", + "score": 4.2, + "review": 2, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1175, + "name": "포구어가", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림W시티 지하103, 104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1176, + "name": "보정골", + "address": "경기 성남시 분당구 대왕판교로606번길 41 지하 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-5425", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1177, + "name": "38보쌈&족발", + "address": "경기 성남시 분당구 판교역로 230", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-8237-1087", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1178, + "name": "몽촌닭갈비 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 본관 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-1021", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1179, + "name": "포세카플러스 분당지점", + "address": "경기 성남시 분당구 판교로289번길 20", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1180, + "name": "일만족발 서판교점", + "address": "경기 성남시 분당구 운중로138번길 36 1층 103호", + "average_price": 28100, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-702-0993", + "score": 2.3, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1181, + "name": "하동곰탕화수분", + "address": "경기 성남시 분당구 판교역로 230", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-698-7895", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1182, + "name": "태드럼통", + "address": "경기 성남시 분당구 판교공원로2길 52", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1183, + "name": "우선생 국밥 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1184, + "name": "강씨돌판오리", + "address": "경기 성남시 분당구 대왕판교로712번길 22 판교테크노밸리", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1185, + "name": "편장군 족발", + "address": "경기 성남시 분당구 판교역로146번길 20", + "average_price": 21000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1186, + "name": "더냄비", + "address": "경기 성남시 분당구 동판교로 49", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1187, + "name": "비타민장어", + "address": "경기 성남시 분당구 판교역로 230", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-698-2832", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1188, + "name": "후니드 SK플래닛판교", + "address": "경기 성남시 분당구 판교로 264", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1189, + "name": "궁중만두", + "address": "경기 성남시 분당구 판교역로 230", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1190, + "name": "도니족발", + "address": "경기 성남시 분당구 판교역로 180", + "average_price": 21200, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-702-1128", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1191, + "name": "원마을식당", + "address": "경기 성남시 분당구 판교공원로3길 9", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 22:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "09:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1192, + "name": "해킹", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 208호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1193, + "name": "율판교점", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 10600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": null, + "score": 2.0, + "review": 74, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1194, + "name": "닭갈비야", + "address": "경기 성남시 분당구 판교역로 230 삼환하이팩스 B동 208-2~3호", + "average_price": 14000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차\n휠체어사용\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1195, + "name": "국밥공방", + "address": "경기 성남시 분당구 판교역로 231", + "average_price": 11633, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1196, + "name": "양생판교 운중점", + "address": "경기 성남시 분당구 운중로 115", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-1515", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1197, + "name": "양대포 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 117호", + "average_price": 9920, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 24:00", + "phone_number": null, + "score": 1.0, + "review": 0, + "duration_hours": "16:00 ~ 24:00", + "category_id": 7 + }, + { + "restaurant_id": 1198, + "name": "전국3대춘천닭갈비 판교점", + "address": "경기 성남시 분당구 판교공원로3길 9", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "0507-2096-6371", + "score": 0.0, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1199, + "name": "고깃집두마리", + "address": "경기 성남시 분당구 판교역로 230", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1200, + "name": "어니스트키친 고깃간", + "address": "경기 성남시 분당구 판교로255번길 9-22", + "average_price": 13000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-8892", + "score": 4.5, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1201, + "name": "블루클린", + "address": "경기 성남시 분당구 대왕판교로 670", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-8616-2223", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1202, + "name": "신제주해장국 판교점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스A동 지하1층 B-107호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1203, + "name": "소소한덮밥", + "address": "경기 성남시 분당구 판교역로 240", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 09:35 ~ 23:30", + "phone_number": "0507-1299-1951", + "score": 0.0, + "review": 0, + "duration_hours": "09:35 ~ 23:30", + "category_id": 7 + }, + { + "restaurant_id": 1204, + "name": "1등급곱창", + "address": "경기 성남시 분당구 대왕판교로 670", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1205, + "name": "바푸리 상평점", + "address": "경기 성남시 분당구 판교로 374", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-5692", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1206, + "name": "족발의나라", + "address": "경기 성남시 분당구 대왕판교로 670", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1207, + "name": "쭈꾸미온반", + "address": "경기 성남시 분당구 동판교로 52", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,금,토", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,금,토 10:30 ~ 21:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "10:30 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 1208, + "name": "마약생고기 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 205호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.5, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1209, + "name": "부뚜막김치찜 성남분당점", + "address": "경기 성남시 분당구 운중로138번길 36", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수,목", + "is_deleted": "\u0000", + "operating_hour": "수~목 15:00 ~ 23:30", + "phone_number": "050-4806-7485", + "score": 0.0, + "review": 0, + "duration_hours": "15:00 ~ 23:30", + "category_id": 7 + }, + { + "restaurant_id": 1210, + "name": "분당할매김치찜", + "address": "경기 성남시 분당구 동판교로52번길 24", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수,금", + "is_deleted": "\u0000", + "operating_hour": "수,금 10:00 ~ 13:30", + "phone_number": "0503-5295-8098", + "score": 0.0, + "review": 0, + "duration_hours": "10:00 ~ 13:30", + "category_id": 7 + }, + { + "restaurant_id": 1211, + "name": "불독식탁 판교직영점", + "address": "경기 성남시 분당구 대왕판교로606번길 58 대우푸르지오 월드스퀘어 1층 113호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1212, + "name": "미소한우등심", + "address": "경기 성남시 분당구 대왕판교로 660 1B동 1층", + "average_price": 9700, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1213, + "name": "한미정", + "address": "경기 성남시 분당구 분당내곡로 159", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-702-1199", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1214, + "name": "속편한세상 판교점", + "address": "경기 성남시 분당구 판교로 375", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,금", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,금 10:00 ~ 21:30", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "10:00 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 1215, + "name": "킹콩부대찌개 판교점", + "address": "경기 성남시 분당구 판교공원로5길 11 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-8016-0334", + "score": 0.0, + "review": 0, + "duration_hours": "11:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 1216, + "name": "빌딩과사람들", + "address": "경기 성남시 분당구 판교로 242", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "02-453-9116", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1217, + "name": "피델리스홀딩스", + "address": "경기 성남시 분당구 판교역로241번길 22", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-1992", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1218, + "name": "즐거운식탁", + "address": "경기 성남시 분당구 판교공원로2길 40-1", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8017-8060", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1219, + "name": "수숯불직화꼬치 판교지점", + "address": "경기 성남시 분당구 운중로138번길 28-7", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1220, + "name": "초록별", + "address": "경기 성남시 분당구 판교로 331", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-620-0033", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1221, + "name": "한국밥", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림W-CITY B109호", + "average_price": 12000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1222, + "name": "이씨엠디 포스코아이씨티", + "address": "경기 성남시 분당구 판교로 255", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "02-3400-7665", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1223, + "name": "돌판제주흑돼지", + "address": "경기 성남시 분당구 판교로255번길 9-22", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-428-7837", + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1224, + "name": "뵤용만두판교롯데마트", + "address": "경기 성남시 분당구 대왕판교로606번길 58", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "02-8016-7530", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1225, + "name": "닐리리맘보 김용만국수 서판교점", + "address": "경기 성남시 분당구 운중로 242", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1226, + "name": "원할머니명품도시락 서판교배달점", + "address": "경기 성남시 분당구 판교공원로5길 3", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:30 ~ 23:30", + "phone_number": "0507-1866-2517", + "score": 0.0, + "review": 0, + "duration_hours": "16:30 ~ 23:30", + "category_id": 7 + }, + { + "restaurant_id": 1227, + "name": "나이스투밋", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림WCITY 2층 227호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1228, + "name": "애", + "address": "경기 성남시 분당구 판교역로192번길 14-2 골드타워 1층 120호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1229, + "name": "청해복 판교알파돔시티점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 라스트리트1동 2층 215호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1230, + "name": "후니드CnC 판교7층카페", + "address": "경기 성남시 분당구 판교로255번길 38", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "02-6400-1846", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1231, + "name": "참숯불구이족발", + "address": "경기 성남시 분당구 동판교로 226", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 1.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1232, + "name": "포쿡 아브뉴프랑점", + "address": "경기 성남시 분당구 동판교로177번길 25", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-706-8755", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1233, + "name": "늘솜", + "address": "경기 성남시 분당구 판교역로 231", + "average_price": 4125, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8018-4455", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1234, + "name": "다이노소어레그 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1235, + "name": "만찬", + "address": "경기 성남시 분당구 판교역로 240", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1236, + "name": "더전", + "address": "경기 성남시 분당구 판교역로 230", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-696-0399", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1237, + "name": "아크윈", + "address": "경기 성남시 분당구 서판교로44번길 3", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "02-3447-7177", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1238, + "name": "인생집밥본점", + "address": "경기 성남시 분당구 동판교로52번길 24", + "average_price": 12000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-701-0002", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1239, + "name": "라빌란치아", + "address": "경기 성남시 분당구 운중로188번길 11", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1240, + "name": "기떡찜 동판교점", + "address": "경기 성남시 분당구 동판교로 212", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 17:00", + "phone_number": "0507-2090-3886", + "score": 0.0, + "review": 0, + "duration_hours": "12:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1241, + "name": "0627부대찌개 본점", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림 W-CITY 2층 211호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1242, + "name": "돌구이돌판오겹살", + "address": "경기 성남시 분당구 판교로255번길 9-22", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-7837", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1243, + "name": "푸드몬스터 쌍다리", + "address": "경기 성남시 분당구 운중로 186", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-528-6263", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1244, + "name": "육백", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스몰 지하1층 128-2호", + "average_price": 38888, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1245, + "name": "윤달", + "address": "경기 성남시 분당구 판교로25번길 6-2", + "average_price": 48666, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1246, + "name": "이씨엠디메디포스트", + "address": "경기 성남시 분당구 대왕판교로644번길 21", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1247, + "name": "너오밥", + "address": "경기 성남시 분당구 서판교로44번길 9", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8017-5242", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1248, + "name": "후니드 SKC&C판교1점", + "address": "경기 성남시 분당구 판교로255번길 38 지하1층", + "average_price": 0, + "caution": "정보 없음", + "convenience": "정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1249, + "name": "더골드그릴", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-724-2888", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1250, + "name": "짚쌩 판교테크노밸리점", + "address": "경기 성남시 분당구 판교역로 231", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-789-3535", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1251, + "name": "퍼스트그린에프엔비", + "address": "경기 성남시 분당구 판교역로 145", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1252, + "name": "푸드트레인", + "address": "경기 성남시 분당구 동판교로177번길 25", + "average_price": 7208, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-8708", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1253, + "name": "마미밥", + "address": "경기 성남시 분당구 판교역로 230", + "average_price": 6000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-698-7827", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1254, + "name": "미라클푸드 판교직영점", + "address": "경기 성남시 분당구 판교역로 136", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1255, + "name": "우리수산", + "address": "경기 성남시 분당구 판교역로192번길 16", + "average_price": 43850, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-7898", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1256, + "name": "푸드스타일리스트이단비", + "address": "경기 성남시 분당구 서판교로44번길 3-9", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-896-0727", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1257, + "name": "메이크푸드", + "address": "경기 성남시 분당구 대왕판교로606번길 58", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1258, + "name": "아워홈 실리콘파크분당점", + "address": "경기 성남시 분당구 판교로255번길 35", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-7500-0110", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1259, + "name": "후니네생선굽니", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1260, + "name": "교동찌개집", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스A동 지하1층 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 09:00 ~ 20:50", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "09:00 ~ 20:50", + "category_id": 7 + }, + { + "restaurant_id": 1261, + "name": "강된장114", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 114호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-698-2852", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1262, + "name": "케이비스트로 판교", + "address": "경기 성남시 분당구 대왕판교로 660 B동 1층 127호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1263, + "name": "참소 판교점", + "address": "경기 성남시 분당구 판교로255번길 9-22", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-8840", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1264, + "name": "단골본가", + "address": "경기 성남시 분당구 대왕판교로 670", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-6666", + "score": 2.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1265, + "name": "청봉", + "address": "경기 성남시 분당구 동판교로52번길 21-12", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1266, + "name": "늘푸른생선구이", + "address": "경기 성남시 분당구 판교역로 145 알파리움타워 2동 1층 102~103호", + "average_price": 17250, + "caution": "예약가능", + "convenience": "WIFI\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1267, + "name": "에스크루에프엔비", + "address": "경기 성남시 분당구 판교로319번길 13 1층 113호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1268, + "name": "라하임쿠킹", + "address": "경기 성남시 분당구 운중로 115", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1269, + "name": "쉬림프트럭 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-2008", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1270, + "name": "키친사이", + "address": "경기 성남시 분당구 판교역로 240", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-698-7858", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1271, + "name": "시켜먹자", + "address": "경기 성남시 분당구 동판교로52번길 24", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1272, + "name": "앙떡&부뚜막", + "address": "경기 성남시 분당구 운중로138번길 36", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1273, + "name": "돈가네 소미지점", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1274, + "name": "노박식탁 주식회사", + "address": "경기 성남시 분당구 운중로138번길 24-1", + "average_price": 0, + "caution": "정보 없음", + "convenience": "정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1275, + "name": "파로구이", + "address": "경기 성남시 분당구 동판교로52번길 17-4", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1276, + "name": "혼밥세끼", + "address": "경기 성남시 분당구 판교역로 240", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1277, + "name": "주식회사 위디플러스", + "address": "경기 성남시 분당구 운중로 129", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1278, + "name": "오미", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-1888", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1279, + "name": "자연스레 함바라지 한식부페", + "address": "경기 성남시 분당구 판교역로192번길 22 판교효성해링턴타워 2층 207~208호", + "average_price": 10000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1280, + "name": "매일한식", + "address": "경기 성남시 수정구 금토로80번길 11 판교이노베이션랩 B107호", + "average_price": 8000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "010-9168-4657", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1281, + "name": "수랏간한식뷔페", + "address": "경기 성남시 수정구 금토로80번길 55", + "average_price": 6000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1282, + "name": "서현궁 백현점", + "address": "경기 성남시 분당구 판교백현로 63", + "average_price": 34800, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-708-1141", + "score": 3.9, + "review": 50, + "duration_hours": "11:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1283, + "name": "백마강참숯민물장어 판교점", + "address": "경기 성남시 분당구 안양판교로 1192", + "average_price": 20000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-703-9252", + "score": 3.7, + "review": 166, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1284, + "name": "하누소 더힐", + "address": "경기 성남시 분당구 판교백현로 65", + "average_price": 47400, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-709-9980", + "score": 2.0, + "review": 2, + "duration_hours": "11:30 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1285, + "name": "사계절한정식", + "address": "경기 성남시 분당구 판교백현로 49 란정 1층, 2층", + "average_price": 36500, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 17:00", + "phone_number": null, + "score": 1.9, + "review": 67, + "duration_hours": "14:30 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1286, + "name": "본우리집밥 아이에스시컨소시엄점", + "address": "경기 성남시 수정구 금토로40번길 26", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1287, + "name": "쭈담", + "address": "경기 성남시 수정구 금토로80번길 55", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-702-0504", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1288, + "name": "청계산담백미", + "address": "경기 성남시 수정구 달래내로 22 1-2층", + "average_price": 23952, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-707-0058", + "score": 4.3, + "review": 38, + "duration_hours": "11:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1289, + "name": "홍박사생고기 판교점", + "address": "경기 성남시 수정구 달래내로 14", + "average_price": 28300, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:20 ~ 21:30", + "phone_number": "031-701-9700", + "score": 3.8, + "review": 20, + "duration_hours": "11:20 ~ 21:30", + "category_id": 7 + }, + { + "restaurant_id": 1290, + "name": "신황산벌", + "address": "경기 성남시 수정구 달래내로 40 1층", + "average_price": 32000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-708-9898", + "score": 3.9, + "review": 10, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1291, + "name": "소베뉴", + "address": "경기 성남시 분당구 판교백현로 61 1-2층", + "average_price": 60000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "수~일 10:00 ~ 19:00", + "phone_number": "031-707-3770", + "score": 3.8, + "review": 76, + "duration_hours": "10:00 ~ 19:00", + "category_id": 7 + }, + { + "restaurant_id": 1292, + "name": "이남장", + "address": "경기 성남시 분당구 판교백현로 31", + "average_price": 44750, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 07:00 ~ 21:00", + "phone_number": "031-703-9955", + "score": 2.1, + "review": 4, + "duration_hours": "07:00 ~ 21:00", + "category_id": 7 + }, + { + "restaurant_id": 1293, + "name": "돗가비불쭈꾸미", + "address": "경기 성남시 수정구 창업로 43 글로벌비즈센터 A동 1층 103호", + "average_price": 39633, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "070-4010-8922", + "score": 4.9, + "review": 63, + "duration_hours": "15:00 ~ 17:00", + "category_id": 7 + }, + { + "restaurant_id": 1294, + "name": "돈우모리", + "address": "경기 성남시 수정구 창업로 42 판교 제2테크노밸리 경기 기업성장센터 지하1층 B120, 121호", + "average_price": 23444, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": null, + "score": 4.5, + "review": 11, + "duration_hours": "11:00 ~ 23:00", + "category_id": 7 + }, + { + "restaurant_id": 1295, + "name": "도월", + "address": "경기 성남시 수정구 달래내로28번길 6", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 22:00", + "phone_number": null, + "score": 4.3, + "review": 3, + "duration_hours": "10:00 ~ 22:00", + "category_id": 7 + }, + { + "restaurant_id": 1296, + "name": "산들레", + "address": "경기 성남시 분당구 판교백현로 61", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-701-6775", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 7 + }, + { + "restaurant_id": 1297, + "name": "홀썸치킨 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 58 푸르지오월드마크 1층 113호", + "average_price": 27111, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 24:00", + "phone_number": "031-8016-6400", + "score": 3.8, + "review": 93, + "duration_hours": "15:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1298, + "name": "교촌치킨 동판교점", + "address": "경기 성남시 분당구 판교역로192번길 12 1층", + "average_price": 21761, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 24:00", + "phone_number": "031-8061-0771", + "score": 2.5, + "review": 20, + "duration_hours": "11:30 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1299, + "name": "BHC치킨 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 47 1층 102-1호", + "average_price": 21833, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 24:00", + "phone_number": "031-8017-7942", + "score": 3.0, + "review": 20, + "duration_hours": "12:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1300, + "name": "엠에스생감자치킨", + "address": "경기 성남시 분당구 판교역로 230", + "average_price": 16800, + "caution": "배달가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 24:00", + "phone_number": "031-697-0668", + "score": 3.9, + "review": 14, + "duration_hours": "11:30 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1301, + "name": "노랑통닭 분당판교점", + "address": "경기 성남시 분당구 동판교로 153 봇들마을8단지아파트 나상가동 1층 101호", + "average_price": 21500, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 24:00", + "phone_number": "031-701-0311", + "score": 3.0, + "review": 0, + "duration_hours": "15:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1302, + "name": "교촌치킨 서판교점", + "address": "경기 성남시 분당구 판교공원로1길 3 1층", + "average_price": 20833, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 23:00", + "phone_number": "031-702-1990", + "score": 2.2, + "review": 5, + "duration_hours": "12:00 ~ 23:00", + "category_id": 8 + }, + { + "restaurant_id": 1303, + "name": "BBQ 판교테크노밸리점", + "address": "경기 성남시 분당구 판교역로 231 에스동 1층 121호", + "average_price": 22928, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-696-7557", + "score": 2.0, + "review": 1, + "duration_hours": "11:00 ~ 23:00", + "category_id": 8 + }, + { + "restaurant_id": 1304, + "name": "치킨89 맥주관", + "address": "경기 성남시 분당구 판교공원로1길 47 지하1층", + "average_price": 10700, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n놀이방", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 23:30", + "phone_number": "031-706-0890", + "score": 4.1, + "review": 13, + "duration_hours": "16:00 ~ 23:30", + "category_id": 8 + }, + { + "restaurant_id": 1305, + "name": "처갓집양념치킨 동판교점", + "address": "경기 성남시 분당구 동판교로52번길 9-3 1층", + "average_price": 0, + "caution": "배달가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 13:00 ~ 01:00", + "phone_number": "031-704-9222", + "score": 4.6, + "review": 11, + "duration_hours": "13:00 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1306, + "name": "60계 서판교점", + "address": "경기 성남시 분당구 판교공원로3길 6 1층 102호", + "average_price": 14640, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금 15:00 ~ 23:00", + "phone_number": "031-709-8960", + "score": 4.8, + "review": 14, + "duration_hours": "15:00 ~ 23:00", + "category_id": 8 + }, + { + "restaurant_id": 1307, + "name": "굽네치킨 서판교점", + "address": "경기 성남시 분당구 운중로178번길 1 1층 107호", + "average_price": 18128, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수", + "is_deleted": "\u0000", + "operating_hour": "수~수 11:30 ~ 23:00", + "phone_number": "031-709-9294", + "score": 3.5, + "review": 1, + "duration_hours": "11:30 ~ 23:00", + "category_id": 8 + }, + { + "restaurant_id": 1308, + "name": "깐부치킨 판교역점", + "address": "경기 성남시 분당구 대왕판교로606번길 45 1층", + "average_price": 21750, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 24:00", + "phone_number": "031-702-5560", + "score": 2.6, + "review": 9, + "duration_hours": "17:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1309, + "name": "정치킨", + "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 지하1층 119, 119-1, 120호", + "average_price": 20166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:30 ~ 01:00", + "phone_number": null, + "score": 4.0, + "review": 17, + "duration_hours": "16:30 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1310, + "name": "BBQ 판교백현마을점", + "address": "경기 성남시 분당구 판교역로 109 SK허브오피스텔 B동 지하1층 127호", + "average_price": 24333, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 24:00", + "phone_number": "031-707-9247", + "score": 1.2, + "review": 1, + "duration_hours": "11:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1311, + "name": "깐부치킨 판교산운마을점", + "address": "경기 성남시 분당구 운중로138번길 28-2", + "average_price": 21666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 16:30 ~ 24:00", + "phone_number": "031-8017-5054", + "score": 3.4, + "review": 1, + "duration_hours": "16:30 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1312, + "name": "클레어수제치킨", + "address": "경기 성남시 분당구 판교역로 109 1층", + "average_price": 17404, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 02:00", + "phone_number": "031-705-9800", + "score": 4.0, + "review": 3, + "duration_hours": "16:00 ~ 02:00", + "category_id": 8 + }, + { + "restaurant_id": 1313, + "name": "푸라닭치킨 분당동판교점", + "address": "경기 성남시 분당구 동판교로 123 판교푸르지오그랑블 203동 102호", + "average_price": 22233, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 23:30", + "phone_number": "031-703-9206", + "score": 3.6, + "review": 0, + "duration_hours": "12:00 ~ 23:30", + "category_id": 8 + }, + { + "restaurant_id": 1314, + "name": "굽네치킨 동판교점", + "address": "경기 성남시 분당구 동판교로 155 봇들마을7단지아파트 상가동 1층 105호", + "average_price": 19733, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 01:40", + "phone_number": "031-701-9293", + "score": 2.4, + "review": 3, + "duration_hours": "09:00 ~ 01:40", + "category_id": 8 + }, + { + "restaurant_id": 1315, + "name": "프랑킨숯불양념구이치킨 동판교점", + "address": "경기 성남시 분당구 동판교로52번길 21-4 성문빌딩 1층", + "average_price": 22800, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 03:00", + "phone_number": "031-707-6777", + "score": 4.7, + "review": 7, + "duration_hours": "15:00 ~ 03:00", + "category_id": 8 + }, + { + "restaurant_id": 1316, + "name": "훌랄라참숯바베큐치킨", + "address": "경기 성남시 분당구 서판교로44번길 3-6", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 24:00", + "phone_number": "031-8017-9290", + "score": 4.2, + "review": 4, + "duration_hours": "16:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1317, + "name": "매드후라이치킨 판교역점", + "address": "경기 성남시 분당구 판교역로192번길 14-1 판교예미지빌딩 1층", + "average_price": 0, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 02:00", + "phone_number": null, + "score": 1.6, + "review": 9, + "duration_hours": "17:00 ~ 02:00", + "category_id": 8 + }, + { + "restaurant_id": 1318, + "name": "바른치킨 서판교운중점", + "address": "경기 성남시 분당구 운중로 124 마크시티블루 1층 110호", + "average_price": 12750, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:00 ~ 24:00", + "phone_number": "031-8017-3988", + "score": 2.5, + "review": 5, + "duration_hours": "14:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1319, + "name": "토담옛날통닭 서판교점", + "address": "경기 성남시 분당구 운중로 124 1층 105호", + "average_price": 12316, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 13:00 ~ 23:30", + "phone_number": "010-8024-0014", + "score": 3.3, + "review": 3, + "duration_hours": "13:00 ~ 23:30", + "category_id": 8 + }, + { + "restaurant_id": 1320, + "name": "BHC치킨 삼평점", + "address": "경기 성남시 분당구 판교로 393 봇들마을2단지이지더원아파트상가 1층", + "average_price": 21833, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 23:30", + "phone_number": "031-707-5888", + "score": 3.8, + "review": 1, + "duration_hours": "12:00 ~ 23:30", + "category_id": 8 + }, + { + "restaurant_id": 1321, + "name": "치킨마루 백현화랑초교점", + "address": "경기 성남시 분당구 동판교로 91 백현마을4단지 상가동 1층 B107호", + "average_price": 0, + "caution": "배달가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:30 ~ 24:00", + "phone_number": "031-704-7780", + "score": 5.0, + "review": 7, + "duration_hours": "15:30 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1322, + "name": "치킨플러스 동판교점", + "address": "경기 성남시 분당구 동판교로 212 봇들마을6단지아파트 가 상가 101호", + "average_price": 18400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목", + "is_deleted": "\u0000", + "operating_hour": "화~목 12:00 ~ 24:00", + "phone_number": "031-8016-9233", + "score": 5.0, + "review": 2, + "duration_hours": "12:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1323, + "name": "명동닭튀김 서판교점", + "address": "경기 성남시 분당구 운중로126번길 12", + "average_price": 13340, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-7864", + "score": 4.5, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1324, + "name": "러브미텐더 판교우림 W시티점", + "address": "경기 성남시 분당구 판교로255번길 9-22 1층 104호", + "average_price": 22238, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 17:00 ~ 23:30", + "phone_number": "031-628-8888", + "score": 0.0, + "review": 0, + "duration_hours": "17:00 ~ 23:30", + "category_id": 8 + }, + { + "restaurant_id": 1325, + "name": "치킨89 동판교점", + "address": "경기 성남시 분당구 동판교로 212 봇들마을6단지휴먼시아아파트 가상가동 1층 102호", + "average_price": 14519, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수", + "is_deleted": "\u0000", + "operating_hour": "수~수 17:00 ~ 23:30", + "phone_number": "031-8017-0890", + "score": 3.4, + "review": 2, + "duration_hours": "17:00 ~ 23:30", + "category_id": 8 + }, + { + "restaurant_id": 1326, + "name": "지코바 동판교점", + "address": "경기 성남시 분당구 동판교로 58 1층", + "average_price": 20333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 10:40 ~ 02:00", + "phone_number": "031-704-3799", + "score": 2.3, + "review": 6, + "duration_hours": "10:40 ~ 02:00", + "category_id": 8 + }, + { + "restaurant_id": 1327, + "name": "깐부치킨 판교원마을점", + "address": "경기 성남시 분당구 판교공원로5길 11 1층", + "average_price": 21750, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,금,일 16:00 ~ 23:00", + "phone_number": "070-4228-9280", + "score": 3.8, + "review": 2, + "duration_hours": "16:00 ~ 23:00", + "category_id": 8 + }, + { + "restaurant_id": 1328, + "name": "푸라닭치킨 분당서판교점", + "address": "경기 성남시 분당구 운중로 132", + "average_price": 22233, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 23:00", + "phone_number": "031-704-9206", + "score": 2.2, + "review": 3, + "duration_hours": "12:00 ~ 23:00", + "category_id": 8 + }, + { + "restaurant_id": 1329, + "name": "신통치킨 동판교점", + "address": "경기 성남시 분당구 동판교로 92 1층", + "average_price": 12000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 24:00", + "phone_number": "031-781-3187", + "score": 4.0, + "review": 3, + "duration_hours": "17:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1330, + "name": "생활치킨 판교역점", + "address": "경기 성남시 분당구 판교역로192번길 16", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:30 ~ 23:50", + "phone_number": "0507-1299-7999", + "score": 0.0, + "review": 0, + "duration_hours": "16:30 ~ 23:50", + "category_id": 8 + }, + { + "restaurant_id": 1331, + "name": "네네치킨 서판교점", + "address": "경기 성남시 분당구 판교로25번길 22-6", + "average_price": 21631, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 24:00", + "phone_number": "0503-7257-3182", + "score": 3.3, + "review": 4, + "duration_hours": "12:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1332, + "name": "영계소문옛날통닭 판교점", + "address": "경기 성남시 분당구 판교로 374 스타식스코리아2 1층 103호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 12:00 ~ 23:00", + "phone_number": "031-705-1230", + "score": 3.8, + "review": 4, + "duration_hours": "12:00 ~ 23:00", + "category_id": 8 + }, + { + "restaurant_id": 1333, + "name": "탐탐치킨&커피", + "address": "경기 성남시 분당구 판교역로 180", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1334, + "name": "용가리치킨", + "address": "경기 성남시 분당구 대왕판교로645번길 36", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-606-8519", + "score": 2.3, + "review": 17, + "duration_hours": "11:00 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1335, + "name": "처갓집양념치킨 서판교점", + "address": "경기 성남시 분당구 운중로 129", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 24:00", + "phone_number": "070-4242-5566", + "score": 3.0, + "review": 2, + "duration_hours": "12:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1336, + "name": "5K 치킨", + "address": "경기 성남시 분당구 대왕판교로606번길 45", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-604-9233", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1337, + "name": "형제쌀통닭", + "address": "경기 성남시 분당구 판교역로192번길 16", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1338, + "name": "순삭닭강정 판교운중점", + "address": "경기 성남시 분당구 운중로 117", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 19:00", + "phone_number": "050-4525-8083", + "score": 0.0, + "review": 0, + "duration_hours": "10:30 ~ 19:00", + "category_id": 8 + }, + { + "restaurant_id": 1339, + "name": "광규통닭", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-724-2530", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1340, + "name": "행복한키친판교", + "address": "경기 성남시 분당구 대왕판교로606번길 58", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1341, + "name": "꼰또치킨", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1342, + "name": "사바사바치킨", + "address": "경기 성남시 분당구 황새울로258번길 32", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:00 ~ 24:00", + "phone_number": "031-711-9239", + "score": 3.5, + "review": 3, + "duration_hours": "14:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1343, + "name": "구도로통닭 분당수내점", + "address": "경기 성남시 분당구 수내로46번길 22 2층", + "average_price": 16457, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 00:30", + "phone_number": "0507-1387-6909", + "score": 3.2, + "review": 104, + "duration_hours": "16:00 ~ 00:30", + "category_id": 8 + }, + { + "restaurant_id": 1344, + "name": "노랑통닭 수내역점", + "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 1층", + "average_price": 21357, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 01:00", + "phone_number": "031-719-1239", + "score": 4.0, + "review": 4, + "duration_hours": "16:00 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1345, + "name": "BHC치킨 이매행복점", + "address": "경기 성남시 분당구 성남대로779번길 54 동산쇼핑몰 1층 103호", + "average_price": 21833, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 12:00 ~ 24:00", + "phone_number": "031-702-3693", + "score": 3.1, + "review": 4, + "duration_hours": "12:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1346, + "name": "깐부치킨", + "address": "경기 성남시 분당구 황새울로258번길 32", + "average_price": 21750, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:00 ~ 01:00", + "phone_number": "031-714-6992", + "score": 4.3, + "review": 7, + "duration_hours": "14:00 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1347, + "name": "보드람치킨 수내점", + "address": "경기 성남시 분당구 백현로101번길 16 대덕프라자 1층 121호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:00 ~ 01:00", + "phone_number": "031-715-9233", + "score": 4.5, + "review": 4, + "duration_hours": "14:00 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1348, + "name": "놀부옛날통닭 서현점", + "address": "경기 성남시 분당구 서현로 170 풍림아이원플러스오피스텔 지하 1층 B106호", + "average_price": 19600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1349, + "name": "이누리치킨", + "address": "경기 성남시 분당구 탄천로 35 1층 103,104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-703-4047", + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1350, + "name": "화락바베큐치킨 서현1호점", + "address": "경기 성남시 분당구 황새울로319번길 6 지하1층 105호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 02:00", + "phone_number": null, + "score": 0.0, + "review": 2, + "duration_hours": "10:00 ~ 02:00", + "category_id": 8 + }, + { + "restaurant_id": 1351, + "name": "마라통닭 분당아름마을점", + "address": "경기 성남시 분당구 판교로 431 1층 106,107호", + "average_price": 14944, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 24:00", + "phone_number": "070-4821-0135", + "score": 5.0, + "review": 0, + "duration_hours": "16:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1352, + "name": "구도로통닭 수내점", + "address": "경기 성남시 분당구 수내로46번길 22 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1353, + "name": "화락바베큐치킨 서현2호점", + "address": "경기 성남시 분당구 황새울로319번길 6 지하1층 103호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 02:00", + "phone_number": null, + "score": 5.0, + "review": 1, + "duration_hours": "10:00 ~ 02:00", + "category_id": 8 + }, + { + "restaurant_id": 1354, + "name": "위드치킨", + "address": "경기 성남시 분당구 성남대로779번길 54", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-702-3693", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1355, + "name": "페리카나", + "address": "경기 성남시 분당구 판교로 430", + "average_price": 0, + "caution": "포장가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1356, + "name": "오븐숯불민족 수내역점", + "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 1층 103호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 24:00", + "phone_number": "031-719-9233", + "score": 4.6, + "review": 11, + "duration_hours": "12:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1357, + "name": "제이스토어", + "address": "경기 성남시 분당구 황새울로319번길 6", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-702-7004", + "score": 0.0, + "review": 5, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1358, + "name": "생활치킨 수내동좁은골목점", + "address": "경기 성남시 분당구 수내로46번길 20", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:30 ~ 24:00", + "phone_number": "0503-7257-3818", + "score": 0.0, + "review": 0, + "duration_hours": "17:30 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1359, + "name": "치킨스프앤틱", + "address": "경기 성남시 분당구 대왕판교로606번길 58", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1360, + "name": "프랑킨바베큐치킨 동판교점", + "address": "경기 성남시 분당구 동판교로52번길 21-4", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 14:00 ~ 17:30", + "phone_number": "0507-2084-1641", + "score": 0.0, + "review": 0, + "duration_hours": "14:00 ~ 17:30", + "category_id": 8 + }, + { + "restaurant_id": 1361, + "name": "에스피자치킨 분당점", + "address": "경기 성남시 분당구 성남대로779번길 52", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1362, + "name": "일편닭심", + "address": "경기 성남시 분당구 판교역로192번길 22 효성해링턴타워 110호", + "average_price": 20166, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 01:30", + "phone_number": "031-602-1847", + "score": 4.2, + "review": 75, + "duration_hours": "17:00 ~ 01:30", + "category_id": 8 + }, + { + "restaurant_id": 1363, + "name": "라디오베이", + "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋타워 2층", + "average_price": 31854, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-8061-0773", + "score": 3.3, + "review": 247, + "duration_hours": "11:30 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1364, + "name": "감성타코 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 아브뉴프랑 2층", + "average_price": 20666, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-781-8885", + "score": 2.6, + "review": 530, + "duration_hours": "11:30 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1365, + "name": "맥도날드 동판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크아파트 상가동 1,2층", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 00:00 ~ 24:00", + "phone_number": "031-606-4000", + "score": 3.0, + "review": 42, + "duration_hours": "00:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1366, + "name": "맥도날드 서판교DT점", + "address": "경기 성남시 분당구 운중로 190 1-2층", + "average_price": 0, + "caution": "예약불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 07:00 ~ 24:00", + "phone_number": "031-602-3500", + "score": 2.2, + "review": 26, + "duration_hours": "07:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1367, + "name": "인디테이블", + "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 109호", + "average_price": 23757, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-708-7022", + "score": 3.3, + "review": 412, + "duration_hours": "11:00 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1368, + "name": "맥도날드 판교테크노밸리점", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층", + "average_price": 0, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 07:00 ~ 24:00", + "phone_number": "031-606-4100", + "score": 2.8, + "review": 36, + "duration_hours": "07:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1369, + "name": "탭퍼블릭 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 1층", + "average_price": 21190, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 24:00", + "phone_number": "031-601-7549", + "score": 3.4, + "review": 181, + "duration_hours": "11:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1370, + "name": "제일호프", + "address": "경기 성남시 분당구 판교역로192번길 16", + "average_price": 20761, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 02:00", + "phone_number": "031-704-1136", + "score": 4.0, + "review": 43, + "duration_hours": "16:00 ~ 02:00", + "category_id": 8 + }, + { + "restaurant_id": 1371, + "name": "롯데리아 판교DT점", + "address": "경기 성남시 분당구 동판교로 42 1,2층", + "average_price": 9300, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 24:00", + "phone_number": "031-8016-3015", + "score": 3.8, + "review": 0, + "duration_hours": "10:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1372, + "name": "후안즈", + "address": "경기 성남시 분당구 판교공원로2길 55 1층", + "average_price": 12800, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 17:00 ~ 24:00", + "phone_number": null, + "score": 4.8, + "review": 26, + "duration_hours": "17:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1373, + "name": "봄베이브로이 판교점", + "address": "경기 성남시 분당구 판교역로2번길 25", + "average_price": 21785, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-8017-4931", + "score": 4.2, + "review": 49, + "duration_hours": "11:00 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1374, + "name": "피자헛 분당백현점", + "address": "경기 성남시 분당구 동판교로52번길 11", + "average_price": 22706, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-8017-8770", + "score": 3.5, + "review": 6, + "duration_hours": "11:00 ~ 23:00", + "category_id": 8 + }, + { + "restaurant_id": 1375, + "name": "생활맥주 판교역점", + "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 1층 106호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 01:00", + "phone_number": "031-8017-7037", + "score": 2.7, + "review": 26, + "duration_hours": "16:00 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1376, + "name": "판교로262bar", + "address": "경기 성남시 분당구 판교역로 240 삼환하이팩스 a동 1층 106호", + "average_price": 21500, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 18:00 ~ 01:00", + "phone_number": "010-6441-0622", + "score": 5.0, + "review": 21, + "duration_hours": "18:00 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1377, + "name": "맘스터치 서판교점", + "address": "경기 성남시 분당구 운중로 142 판교메디칼타워 1층", + "average_price": 0, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:50", + "phone_number": "031-707-0912", + "score": 2.9, + "review": 17, + "duration_hours": "10:00 ~ 21:50", + "category_id": 8 + }, + { + "restaurant_id": 1378, + "name": "오늘와인한잔 판교역점", + "address": "경기 성남시 분당구 대왕판교로606번길 45 판교역푸르지오시티오피스텔 1층 103,104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 02:00", + "phone_number": null, + "score": 2.9, + "review": 9, + "duration_hours": "17:00 ~ 02:00", + "category_id": 8 + }, + { + "restaurant_id": 1379, + "name": "모비딕", + "address": "경기 성남시 분당구 대왕판교로606번길 45", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 01:00", + "phone_number": "031-701-5070", + "score": 3.4, + "review": 15, + "duration_hours": "16:00 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1380, + "name": "바차 판교점", + "address": "경기 성남시 분당구 분당내곡로 151 1층", + "average_price": 19428, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 02:00", + "phone_number": "031-707-7668", + "score": 3.9, + "review": 156, + "duration_hours": "17:00 ~ 02:00", + "category_id": 8 + }, + { + "restaurant_id": 1381, + "name": "갓잇 서판교점", + "address": "경기 성남시 분당구 판교공원로5길 24 1층", + "average_price": 23900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-703-0255", + "score": 3.6, + "review": 392, + "duration_hours": "11:00 ~ 21:30", + "category_id": 8 + }, + { + "restaurant_id": 1382, + "name": "포레스트오늘숲 서판교점", + "address": "경기 성남시 분당구 운중로146번길 35 1층 101호", + "average_price": 11416, + "caution": "예약불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-701-6506", + "score": 4.7, + "review": 151, + "duration_hours": "11:00 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1383, + "name": "청년다방 판교테크노밸리점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 2층 206호", + "average_price": 16500, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:00", + "phone_number": "031-724-2723", + "score": 3.5, + "review": 166, + "duration_hours": "11:00 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1384, + "name": "안주의신 판교본점", + "address": "경기 성남시 분당구 대왕판교로606번길 45 판교푸르지오시티 1층 113호", + "average_price": 18000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 01:00", + "phone_number": "0502-5550-2849", + "score": 4.0, + "review": 27, + "duration_hours": "17:00 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1385, + "name": "클로이샌드위치", + "address": "경기 성남시 분당구 판교공원로3길 4 1층 102호", + "average_price": 11000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,토,일 09:00 ~ 17:30", + "phone_number": "0507-1390-1549", + "score": 4.9, + "review": 32, + "duration_hours": "09:00 ~ 17:30", + "category_id": 8 + }, + { + "restaurant_id": 1386, + "name": "파파존스 판교점", + "address": "경기 성남시 분당구 서판교로 154 2층 204호", + "average_price": 28500, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-709-9492", + "score": 3.9, + "review": 7, + "duration_hours": "11:00 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1387, + "name": "역전할머니맥주 분당판교역점", + "address": "경기 성남시 분당구 판교역로192번길 14-2 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 02:00", + "phone_number": "031-701-6333", + "score": 4.0, + "review": 20, + "duration_hours": "16:00 ~ 02:00", + "category_id": 8 + }, + { + "restaurant_id": 1388, + "name": "리듬앤버거", + "address": "경기 성남시 분당구 판교역로192번길 14-2 골드타워 2층 12호", + "average_price": 9090, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:30", + "phone_number": "031-8039-7227", + "score": 4.5, + "review": 25, + "duration_hours": "15:00 ~ 17:30", + "category_id": 8 + }, + { + "restaurant_id": 1389, + "name": "블루", + "address": "경기 성남시 분당구 판교공원로1길 43 1층", + "average_price": 15800, + "caution": "예약가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-704-9250", + "score": 4.9, + "review": 6, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1390, + "name": "쿠차라 판교카카오점", + "address": "경기 성남시 분당구 판교역로 166 1층 9호", + "average_price": 10757, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-601-7223", + "score": 3.0, + "review": 95, + "duration_hours": "11:00 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1391, + "name": "피자헛 판교중앙점", + "address": "경기 성남시 분당구 운중로 237", + "average_price": 22706, + "caution": "배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-724-0503", + "score": 2.3, + "review": 4, + "duration_hours": "11:00 ~ 23:00", + "category_id": 8 + }, + { + "restaurant_id": 1392, + "name": "생활맥주 판교도서관점", + "address": "경기 성남시 분당구 판교공원로2길 54 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 01:00", + "phone_number": "031-8016-6733", + "score": 2.0, + "review": 5, + "duration_hours": "17:00 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1393, + "name": "루카즈", + "address": "경기 성남시 분당구 판교역로 6-5 1층", + "average_price": 13125, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "수~일 15:30 ~ 17:30", + "phone_number": null, + "score": 3.4, + "review": 52, + "duration_hours": "15:30 ~ 17:30", + "category_id": 8 + }, + { + "restaurant_id": 1394, + "name": "람부뜨리", + "address": "경기 성남시 분당구 판교공원로1길 43", + "average_price": 21500, + "caution": "유의사항 정보 없음", + "convenience": "WIFI", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 21:00", + "phone_number": null, + "score": 4.6, + "review": 106, + "duration_hours": "11:30 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1395, + "name": "이터스 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 17655, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:00 ~ 20:00", + "phone_number": "031-5170-1053", + "score": 3.8, + "review": 45, + "duration_hours": "10:00 ~ 20:00", + "category_id": 8 + }, + { + "restaurant_id": 1396, + "name": "펀비어킹 분당판교테크노밸리점", + "address": "경기 성남시 분당구 대왕판교로 660 1층 148호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 04:00", + "phone_number": "031-724-2678", + "score": 3.6, + "review": 1, + "duration_hours": "16:00 ~ 04:00", + "category_id": 8 + }, + { + "restaurant_id": 1397, + "name": "스트릿 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 11900, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-2008", + "score": 2.8, + "review": 88, + "duration_hours": "10:30 ~ 20:00", + "category_id": 8 + }, + { + "restaurant_id": 1398, + "name": "탄탄면공방 판교테크노밸리점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 121호", + "average_price": 9930, + "caution": "배달가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 20:30", + "phone_number": "031-698-4535", + "score": 3.0, + "review": 29, + "duration_hours": "14:00 ~ 20:30", + "category_id": 8 + }, + { + "restaurant_id": 1399, + "name": "마마스포", + "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어에스동 1층 123호", + "average_price": 13525, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-696-7696", + "score": 3.7, + "review": 20, + "duration_hours": "11:00 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1400, + "name": "투고샐러드 판교유스페이스점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 2층 230호", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 20:00", + "phone_number": "031-724-2588", + "score": 5.0, + "review": 16, + "duration_hours": "08:00 ~ 20:00", + "category_id": 8 + }, + { + "restaurant_id": 1401, + "name": "신전떡볶이 운중점", + "address": "경기 성남시 분당구 운중로 129 마크시티 엘로우 108호", + "average_price": 0, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 22:00", + "phone_number": "031-781-5575", + "score": 3.4, + "review": 1, + "duration_hours": "11:00 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1402, + "name": "생활맥주 판교유스페이스점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1빌딩 1층 142호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 01:00", + "phone_number": "031-628-1470", + "score": 1.0, + "review": 4, + "duration_hours": "17:00 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1403, + "name": "프랭크버거 서판교점", + "address": "경기 성남시 분당구 운중로 123", + "average_price": 5483, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-707-3787", + "score": 3.0, + "review": 7, + "duration_hours": "11:00 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1404, + "name": "신전떡볶이 삼평점", + "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 101호", + "average_price": 0, + "caution": "배달가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:40 ~ 22:00", + "phone_number": "031-703-8259", + "score": 4.4, + "review": 16, + "duration_hours": "10:40 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1405, + "name": "서울맥주1977 서판교점", + "address": "경기 성남시 분당구 판교공원로1길 61", + "average_price": 13388, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:30 ~ 24:00", + "phone_number": null, + "score": 4.2, + "review": 8, + "duration_hours": "17:30 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1406, + "name": "킹콩부대찌개 서판교점", + "address": "경기 성남시 분당구 판교공원로5길 11 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-8016-0334", + "score": 3.0, + "review": 9, + "duration_hours": "10:00 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1407, + "name": "더제이스", + "address": "경기 성남시 분당구 서판교로 160 스타식스밸리 102호", + "average_price": 14125, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:30 ~ 23:30", + "phone_number": "010-5106-1483", + "score": 5.0, + "review": 21, + "duration_hours": "16:30 ~ 23:30", + "category_id": 8 + }, + { + "restaurant_id": 1408, + "name": "스노우폭스 판교테크노밸리점", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 102호", + "average_price": 11333, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 07:30 ~ 21:00", + "phone_number": "031-778-6683", + "score": 0.0, + "review": 30, + "duration_hours": "07:30 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1409, + "name": "킹콩부대찌개 동판교점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 2층 207호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 20:00", + "phone_number": "031-698-3240", + "score": 3.9, + "review": 12, + "duration_hours": "10:00 ~ 20:00", + "category_id": 8 + }, + { + "restaurant_id": 1410, + "name": "미술", + "address": "경기 성남시 분당구 판교역로192번길 22 효성해링턴타워 3층 313호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "동물출입\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 24:00", + "phone_number": "010-3982-0423", + "score": 5.0, + "review": 58, + "duration_hours": "17:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1411, + "name": "더탭하우스", + "address": "경기 성남시 분당구 판교역로 235 H스퀘어 N동 120호", + "average_price": 12000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:30 ~ 02:00", + "phone_number": "031-737-7447", + "score": 3.4, + "review": 4, + "duration_hours": "17:30 ~ 02:00", + "category_id": 8 + }, + { + "restaurant_id": 1412, + "name": "프랭크버거 풀무원판교넥슨점", + "address": "경기 성남시 분당구 판교로256번길 19", + "average_price": 4657, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1413, + "name": "호화식탁", + "address": "경기 성남시 분당구 판교공원로3길 4 1층", + "average_price": 25800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": null, + "score": 5.0, + "review": 11, + "duration_hours": "11:00 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1414, + "name": "생활맥주 서판교운중점", + "address": "경기 성남시 분당구 운중로138번길 24-3", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:30 ~ 24:00", + "phone_number": "031-8016-0825", + "score": 4.5, + "review": 1, + "duration_hours": "17:30 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1415, + "name": "을지로노가리", + "address": "경기 성남시 분당구 대왕판교로 670", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-724-2530", + "score": 3.0, + "review": 2, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1416, + "name": "반올림피자 판교점", + "address": "경기 성남시 분당구 판교공원로1길 3 1층 101호", + "average_price": 22066, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 23:00", + "phone_number": "031-704-7773", + "score": 5.0, + "review": 2, + "duration_hours": "12:00 ~ 23:00", + "category_id": 8 + }, + { + "restaurant_id": 1417, + "name": "감탄떡볶이 서판교점", + "address": "경기 성남시 분당구 운중로138번길 37 1층 102호", + "average_price": 3583, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:00", + "phone_number": "031-8016-5889", + "score": 3.0, + "review": 22, + "duration_hours": "11:00 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1418, + "name": "청년다방 판교운중점", + "address": "경기 성남시 분당구 운중로138번길 28-5", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-703-2539", + "score": 3.7, + "review": 20, + "duration_hours": "11:00 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1419, + "name": "서울황태 판교점", + "address": "경기 성남시 분당구 판교역로192번길 16", + "average_price": 16380, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 01:00", + "phone_number": null, + "score": 5.0, + "review": 18, + "duration_hours": "16:00 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1420, + "name": "프레퍼스다이어트푸드 판교점", + "address": "경기 성남시 분당구 판교역로 231", + "average_price": 11233, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "0507-2083-8506", + "score": 1.9, + "review": 27, + "duration_hours": "10:00 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1421, + "name": "남자피자 판교백현점", + "address": "경기 성남시 분당구 동판교로 122", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:50 ~ 22:50", + "phone_number": null, + "score": 2.0, + "review": 0, + "duration_hours": "10:50 ~ 22:50", + "category_id": 8 + }, + { + "restaurant_id": 1422, + "name": "돈돈정 판교아브뉴프랑점", + "address": "경기 성남시 분당구 동판교로177번길 25 2층 203호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-708-0418", + "score": 2.8, + "review": 2, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1423, + "name": "2도비어 판교역점", + "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 1층 110호", + "average_price": 13300, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:30 ~ 01:00", + "phone_number": null, + "score": 2.4, + "review": 12, + "duration_hours": "16:30 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1424, + "name": "가마로강정 판교점", + "address": "경기 성남시 분당구 동판교로 49 1동 1층 106호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 22:30", + "phone_number": "031-707-7292", + "score": 0.0, + "review": 1, + "duration_hours": "12:00 ~ 22:30", + "category_id": 8 + }, + { + "restaurant_id": 1425, + "name": "삼첩분식 판교점", + "address": "경기 성남시 분당구 판교역로 109 SK허브오피스텔 B동 지하1층 129호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수,목,금", + "is_deleted": "\u0000", + "operating_hour": "수~금 10:30 ~ 21:00", + "phone_number": "031-606-1235", + "score": 0.0, + "review": 4, + "duration_hours": "10:30 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1426, + "name": "프랭크버거 풀무원판교한화점", + "address": "경기 성남시 분당구 판교로319번길 6", + "average_price": 4657, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1427, + "name": "크라운비펍 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 203호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 18:00 ~ 01:00", + "phone_number": null, + "score": 4.7, + "review": 9, + "duration_hours": "18:00 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1428, + "name": "꿀돼지두루치기", + "address": "경기 성남시 분당구 판교로255번길 9-22 판교 우림 W-CITY 지하1층", + "average_price": 16050, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.8, + "review": 10, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1429, + "name": "치어스 판교테크노밸리점", + "address": "경기 성남시 분당구 대왕판교로 660 3층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 02:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "17:00 ~ 02:00", + "category_id": 8 + }, + { + "restaurant_id": 1430, + "name": "남자피자 판교점", + "address": "경기 성남시 분당구 서판교로 160", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1431, + "name": "킹콩부대찌개 판교점", + "address": "경기 성남시 분당구 판교공원로5길 11 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-8016-0334", + "score": 0.0, + "review": 0, + "duration_hours": "11:00 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1432, + "name": "별난주점", + "address": "경기 성남시 분당구 판교역로192번길 16", + "average_price": 387600, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1433, + "name": "맥도날드 수내역점", + "address": "경기 성남시 분당구 백현로101번길 29 C&C빌딩 1층", + "average_price": 0, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 00:00 ~ 24:00", + "phone_number": "031-629-8000", + "score": 3.4, + "review": 39, + "duration_hours": "00:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1434, + "name": "개성전통삼계탕 분당본점", + "address": "경기 성남시 분당구 백현로 97 1층", + "average_price": 17000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-716-3454", + "score": 3.4, + "review": 30, + "duration_hours": "11:00 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1435, + "name": "돈가스에미치다 수내본점", + "address": "경기 성남시 분당구 백현로101번길 11 동현프라자 1층", + "average_price": 9812, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-721-0307", + "score": 2.6, + "review": 151, + "duration_hours": "11:00 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1436, + "name": "맘스터치 수내역점", + "address": "경기 성남시 분당구 백현로101번길 20 그린프라자 1층 103~104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-719-5007", + "score": 3.3, + "review": 15, + "duration_hours": "10:00 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1437, + "name": "가마로강정 수내롯데점", + "address": "경기 성남시 분당구 백현로101번길 13 월드프라자 1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 23:00", + "phone_number": "031-711-7293", + "score": 3.5, + "review": 4, + "duration_hours": "11:30 ~ 23:00", + "category_id": 8 + }, + { + "restaurant_id": 1438, + "name": "펀비어킹 수내역점", + "address": "경기 성남시 분당구 황새울로258번길 36", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 04:00", + "phone_number": "031-713-1110", + "score": 4.6, + "review": 3, + "duration_hours": "16:00 ~ 04:00", + "category_id": 8 + }, + { + "restaurant_id": 1439, + "name": "심야포차 불면증", + "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 2층 203호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:00 ~ 03:00", + "phone_number": "0503-7150-0637", + "score": 5.0, + "review": 12, + "duration_hours": "14:00 ~ 03:00", + "category_id": 8 + }, + { + "restaurant_id": 1440, + "name": "오지 OG버거 판교1호점", + "address": "경기 성남시 수정구 창업로 17 B동 1층 101호", + "average_price": 5100, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-722-5552", + "score": 3.6, + "review": 5, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1441, + "name": "청년다방 수내점", + "address": "경기 성남시 분당구 백현로101번길 16", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-716-0900", + "score": 3.5, + "review": 10, + "duration_hours": "11:00 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1442, + "name": "역전할머니맥주 분당수내역점", + "address": "경기 성남시 분당구 황새울로258번길 10-9 영성라벤더 2층 202호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 01:00", + "phone_number": "031-711-6386", + "score": 0.0, + "review": 8, + "duration_hours": "17:00 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1443, + "name": "토끼정", + "address": "경기 성남시 수정구 창업로 17", + "average_price": 0, + "caution": "예약불가, 포장불가", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.5, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1444, + "name": "맘스터치 분당HD현대GRC점", + "address": "경기 성남시 분당구 정자동 4-5 4층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 18:00", + "phone_number": "031-711-7113", + "score": 1.0, + "review": 0, + "duration_hours": "10:30 ~ 18:00", + "category_id": 8 + }, + { + "restaurant_id": 1445, + "name": "델리커리 판교점", + "address": "경기 성남시 수정구 창업로 18 파미어스몰 P1동 2층 210-1호", + "average_price": 10460, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": null, + "score": 4.0, + "review": 40, + "duration_hours": "10:30 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1446, + "name": "21 Flamingo", + "address": "경기 성남시 수정구 대왕판교로 815 LH기업지원허브 103호", + "average_price": 9950, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 20:00", + "phone_number": "031-778-8811", + "score": 5.0, + "review": 45, + "duration_hours": "08:00 ~ 20:00", + "category_id": 8 + }, + { + "restaurant_id": 1447, + "name": "삐삣버거 판교파미어스점", + "address": "경기 성남시 수정구 창업로 18 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "0507-1497-8603", + "score": 2.4, + "review": 15, + "duration_hours": "11:00 ~ 22:00", + "category_id": 8 + }, + { + "restaurant_id": 1448, + "name": "생활맥주 수내동좁은골목점", + "address": "경기 성남시 분당구 수내로46번길 20 105~106호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 02:00", + "phone_number": "031-716-7979", + "score": 2.3, + "review": 19, + "duration_hours": "17:00 ~ 02:00", + "category_id": 8 + }, + { + "restaurant_id": 1449, + "name": "신전떡볶이 수내점", + "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 2층 204호", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-711-1151", + "score": 4.2, + "review": 9, + "duration_hours": "11:00 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1450, + "name": "청년다방 판교파미어스몰점", + "address": "경기 성남시 수정구 창업로 17", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-710-2790", + "score": 2.5, + "review": 8, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1451, + "name": "봄이머무는언덕", + "address": "경기 성남시 분당구 황새울로311번길 14 서현리더스빌딩 8층", + "average_price": 15666, + "caution": "예약가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-704-0858", + "score": 4.5, + "review": 6, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1452, + "name": "마리오븐", + "address": "경기 성남시 수정구 창업로 42 1층 117호", + "average_price": 22400, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 24:00", + "phone_number": null, + "score": 5.0, + "review": 1, + "duration_hours": "11:30 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1453, + "name": "봉구비어 분당수내역점", + "address": "경기 성남시 분당구 황새울로258번길 32 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.2, + "review": 2, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1454, + "name": "짝태군망고양 수내점", + "address": "경기 성남시 분당구 황새울로258번길 43 수내프라자 1층 112~114호", + "average_price": 10285, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:30 ~ 01:00", + "phone_number": null, + "score": 5.0, + "review": 9, + "duration_hours": "16:30 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1455, + "name": "바리 판교점", + "address": "경기 성남시 수정구 창업로 18 제2판교 테크노밸리 C1동 1층 118호", + "average_price": 13583, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-7585-9331", + "score": 2.9, + "review": 2, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1456, + "name": "2도비어 분당수내점", + "address": "경기 성남시 분당구 황새울로258번길 10-7 가나프라자 1층 105호", + "average_price": 13300, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 18:00 ~ 02:00", + "phone_number": "031-712-8801", + "score": 3.0, + "review": 0, + "duration_hours": "18:00 ~ 02:00", + "category_id": 8 + }, + { + "restaurant_id": 1457, + "name": "홀리데이앳런던", + "address": "경기 성남시 수정구 창업로40번길 6 근린생활시설동 지하 2층 2호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 19:00", + "phone_number": null, + "score": 0.0, + "review": 58, + "duration_hours": "09:00 ~ 19:00", + "category_id": 8 + }, + { + "restaurant_id": 1458, + "name": "백스비어 분당수내점", + "address": "경기 성남시 분당구 수내로46번길 11 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:30 ~ 24:00", + "phone_number": null, + "score": 0.0, + "review": 4, + "duration_hours": "17:30 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1459, + "name": "탄탄면공방 판교아이스퀘어점", + "address": "경기 성남시 수정구 창업로 17 F동 2층 212호", + "average_price": 29800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 20:30", + "phone_number": "070-4323-4467", + "score": 4.0, + "review": 29, + "duration_hours": "11:00 ~ 20:30", + "category_id": 8 + }, + { + "restaurant_id": 1460, + "name": "B1 Burger", + "address": "경기 성남시 분당구 황새울로 216 휴맥스빌리지 지하 1층 14호", + "average_price": 6650, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,금,일 11:00 ~ 21:00", + "phone_number": "070-8080-0235", + "score": 0.0, + "review": 6, + "duration_hours": "11:00 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1461, + "name": "피치타임 수내역점", + "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 1층 104호", + "average_price": 16733, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 24:00", + "phone_number": "031-719-9232", + "score": 0.0, + "review": 47, + "duration_hours": "12:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1462, + "name": "동키호펍", + "address": "경기 성남시 분당구 수내로46번길 20 맛자랑멋자랑 2층 205호", + "average_price": 17761, + "caution": "예약가능, 배달불가", + "convenience": "WIFI\n동물출입\n주차\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 24:00", + "phone_number": "031-717-2481", + "score": 5.0, + "review": 2, + "duration_hours": "15:00 ~ 24:00", + "category_id": 8 + }, + { + "restaurant_id": 1463, + "name": "스틱스", + "address": "경기 성남시 분당구 황새울로258번길 32 208호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 07:00 ~ 01:00", + "phone_number": "070-8648-2590", + "score": 4.8, + "review": 5, + "duration_hours": "07:00 ~ 01:00", + "category_id": 8 + }, + { + "restaurant_id": 1464, + "name": "시즈카 분당점", + "address": "경기 성남시 분당구 황새울로 315 대현빌딩 205호", + "average_price": 7400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 8 + }, + { + "restaurant_id": 1465, + "name": "동경키친슈", + "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 2층", + "average_price": 8600, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": null, + "score": 4.6, + "review": 63, + "duration_hours": "11:00 ~ 21:00", + "category_id": 8 + }, + { + "restaurant_id": 1466, + "name": "붓처스컷 아브뉴프랑 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 2층", + "average_price": 106000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "031-707-7037", + "score": 3.8, + "review": 241, + "duration_hours": "11:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1467, + "name": "제로투나인", + "address": "경기 성남시 분당구 운중로146번길 19-3", + "average_price": 43187, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "031-702-6625", + "score": 4.1, + "review": 41, + "duration_hours": "15:00 ~ 17:30", + "category_id": 9 + }, + { + "restaurant_id": 1468, + "name": "데이빗앤룰스 판교점", + "address": "경기 성남시 분당구 판교로319번길 13 지하1층 B101~B103호", + "average_price": 31875, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "031-602-8915", + "score": 0.0, + "review": 94, + "duration_hours": "15:00 ~ 17:30", + "category_id": 9 + }, + { + "restaurant_id": 1469, + "name": "텍사스로드하우스 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 56100, + "caution": "예약불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-1046", + "score": 3.0, + "review": 685, + "duration_hours": "10:30 ~ 20:00", + "category_id": 9 + }, + { + "restaurant_id": 1470, + "name": "헤비스테이크 판교테크노밸리점", + "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어에스동 1층 107호", + "average_price": 12000, + "caution": "포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-789-3909", + "score": 3.6, + "review": 37, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1471, + "name": "로코스 비비큐 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", + "average_price": 24500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-1013", + "score": 0.0, + "review": 44, + "duration_hours": "10:30 ~ 20:00", + "category_id": 9 + }, + { + "restaurant_id": 1472, + "name": "써든스테이크 판교점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 125호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,일", + "is_deleted": "\u0000", + "operating_hour": "화,수,목,금,일 11:00 ~ 23:00", + "phone_number": null, + "score": 1.0, + "review": 0, + "duration_hours": "11:00 ~ 23:00", + "category_id": 9 + }, + { + "restaurant_id": 1473, + "name": "뚜에이오", + "address": "경기 성남시 분당구 판교공원로3길 24-2", + "average_price": 25133, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:20", + "phone_number": "031-8016-1865", + "score": 4.2, + "review": 873, + "duration_hours": "11:00 ~ 21:20", + "category_id": 9 + }, + { + "restaurant_id": 1474, + "name": "더다이닝스위트", + "address": "경기 성남시 분당구 서판교로44번길 17-7 지하1층 B101호", + "average_price": 24666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 15:00 ~ 17:30", + "phone_number": "031-8016-8913", + "score": 0.0, + "review": 0, + "duration_hours": "15:00 ~ 17:30", + "category_id": 9 + }, + { + "restaurant_id": 1475, + "name": "아웃백스테이크하우스 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 지하1층", + "average_price": 30793, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-601-7401", + "score": 1.2, + "review": 303, + "duration_hours": "11:00 ~ 21:30", + "category_id": 9 + }, + { + "restaurant_id": 1476, + "name": "스즈메그릴", + "address": "경기 성남시 분당구 판교공원로2길 63 1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1477, + "name": "라비떼", + "address": "경기 성남시 분당구 판교공원로3길 16 1층", + "average_price": 21466, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 15:00 ~ 17:30", + "phone_number": null, + "score": 3.9, + "review": 274, + "duration_hours": "15:00 ~ 17:30", + "category_id": 9 + }, + { + "restaurant_id": 1478, + "name": "후라토식당 아브뉴프랑판교", + "address": "경기 성남시 분당구 동판교로177번길 25 2층 220호", + "average_price": 14666, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-607-7090", + "score": 3.7, + "review": 525, + "duration_hours": "11:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1479, + "name": "빕스 프리미어 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 아브뉴프랑 2층", + "average_price": 44928, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-8016-5996", + "score": 3.3, + "review": 269, + "duration_hours": "10:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1480, + "name": "라디오베이", + "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋타워 2층", + "average_price": 31854, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-8061-0773", + "score": 3.3, + "review": 247, + "duration_hours": "11:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1481, + "name": "빈티지1988", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 101호", + "average_price": 64000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:30", + "phone_number": "0507-1387-1993", + "score": 3.1, + "review": 442, + "duration_hours": "14:30 ~ 17:30", + "category_id": 9 + }, + { + "restaurant_id": 1482, + "name": "세렌", + "address": "경기 성남시 분당구 운중로188번길 11 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "031-709-0775", + "score": 3.8, + "review": 300, + "duration_hours": "15:00 ~ 17:30", + "category_id": 9 + }, + { + "restaurant_id": 1483, + "name": "울프스덴", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 215호", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:30", + "phone_number": "0507-1401-1887", + "score": 3.4, + "review": 355, + "duration_hours": "14:30 ~ 17:30", + "category_id": 9 + }, + { + "restaurant_id": 1484, + "name": "닥터로빈 시그니처 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 108호", + "average_price": 17388, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-781-3105", + "score": 3.3, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1485, + "name": "어글리스토브 판교라스트리트점", + "address": "경기 성남시 분당구 판교역로 145 2동 2층 219호", + "average_price": 42900, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-706-8459", + "score": 3.2, + "review": 342, + "duration_hours": "11:00 ~ 21:30", + "category_id": 9 + }, + { + "restaurant_id": 1486, + "name": "리얼스페인 판교점", + "address": "경기 성남시 분당구 판교역로10번길 12-5 1층", + "average_price": 15880, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-8017-3614", + "score": 3.2, + "review": 135, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1487, + "name": "샤슬릭", + "address": "경기 성남시 분당구 판교공원로2길 45 1층", + "average_price": 21166, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 22:00", + "phone_number": "031-8016-6262", + "score": 3.8, + "review": 152, + "duration_hours": "11:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1488, + "name": "더라운지", + "address": "경기 성남시 분당구 서판교로 162 랜드리스타워 1층", + "average_price": 16000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-8016-8059", + "score": 3.3, + "review": 1, + "duration_hours": "10:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1489, + "name": "오스테리아 워모잡", + "address": "경기 성남시 분당구 판교공원로2길 40-1 1층", + "average_price": 80316, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "010-3005-9541", + "score": 3.4, + "review": 250, + "duration_hours": "15:00 ~ 17:30", + "category_id": 9 + }, + { + "restaurant_id": 1490, + "name": "매드포갈릭 판교라스트리트점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 1동 2층 219호", + "average_price": 55922, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-703-8920", + "score": 3.7, + "review": 101, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1491, + "name": "라그릴리아 판교점", + "address": "경기 성남시 분당구 판교역로 166 카카오 판교 아지트 1층 17호", + "average_price": 24961, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:00", + "phone_number": "031-707-0999", + "score": 4.2, + "review": 112, + "duration_hours": "11:30 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1492, + "name": "라스토리아1001", + "address": "경기 성남시 분당구 판교공원로3길 24 1층", + "average_price": 27333, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "수~일 11:00 ~ 21:00", + "phone_number": "0502-5551-6969", + "score": 0.0, + "review": 266, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1493, + "name": "올리브그릴", + "address": "경기 성남시 분당구 운중로146번길 15-3 1층", + "average_price": 82500, + "caution": "예약가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-8016-6341", + "score": 4.3, + "review": 35, + "duration_hours": "11:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1494, + "name": "이탈리 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 지하1층", + "average_price": 8066, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-1061", + "score": 3.2, + "review": 231, + "duration_hours": "10:30 ~ 20:00", + "category_id": 9 + }, + { + "restaurant_id": 1495, + "name": "베네쿠치", + "address": "경기 성남시 분당구 운중로146번길 19 1층", + "average_price": 21900, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 11:30 ~ 21:30", + "phone_number": null, + "score": 4.1, + "review": 48, + "duration_hours": "11:30 ~ 21:30", + "category_id": 9 + }, + { + "restaurant_id": 1496, + "name": "우몽 판교본점", + "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋타워 2층 204호", + "average_price": 52500, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-8061-0712", + "score": 4.4, + "review": 734, + "duration_hours": "11:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1497, + "name": "구우트", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 지하1층 B109,110호", + "average_price": 21294, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "0507-1397-0922", + "score": 4.6, + "review": 135, + "duration_hours": "11:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1498, + "name": "더쉐프인젤코바", + "address": "경기 성남시 분당구 판교로25번길 22-3", + "average_price": 69333, + "caution": "예약가능, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-8017-7796", + "score": 4.2, + "review": 35, + "duration_hours": "11:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1499, + "name": "아르틴", + "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 107호", + "average_price": 21333, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 10:00 ~ 22:00", + "phone_number": "010-8996-2243", + "score": 3.4, + "review": 167, + "duration_hours": "10:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1500, + "name": "탭퍼블릭 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 1층", + "average_price": 21190, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 24:00", + "phone_number": "031-601-7549", + "score": 3.4, + "review": 181, + "duration_hours": "11:00 ~ 24:00", + "category_id": 9 + }, + { + "restaurant_id": 1501, + "name": "더플레이스 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 1층", + "average_price": 36425, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-701-0421", + "score": 4.4, + "review": 169, + "duration_hours": "10:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1502, + "name": "피크버거&스테이크", + "address": "경기 성남시 분당구 운중로 131 1층 101호", + "average_price": 10071, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:30", + "phone_number": null, + "score": 5.0, + "review": 2, + "duration_hours": "11:00 ~ 21:30", + "category_id": 9 + }, + { + "restaurant_id": 1503, + "name": "비앙또아", + "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 127호", + "average_price": 9800, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:00", + "phone_number": "031-707-1088", + "score": 3.4, + "review": 287, + "duration_hours": "10:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1504, + "name": "메리가든 판교", + "address": "경기 성남시 분당구 판교역로 10 1층", + "average_price": 38550, + "caution": "예약가능, 배달가능, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-781-5090", + "score": 0.0, + "review": 235, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1505, + "name": "오늘와인한잔 판교역점", + "address": "경기 성남시 분당구 대왕판교로606번길 45 판교역푸르지오시티오피스텔 1층 103,104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 02:00", + "phone_number": null, + "score": 2.9, + "review": 9, + "duration_hours": "17:00 ~ 02:00", + "category_id": 9 + }, + { + "restaurant_id": 1506, + "name": "카페소시올로지", + "address": "경기 성남시 분당구 판교역로 145 라스트리트 1층", + "average_price": 18666, + "caution": "예약가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 18:00", + "phone_number": "031-708-3737", + "score": 4.6, + "review": 101, + "duration_hours": "17:00 ~ 18:00", + "category_id": 9 + }, + { + "restaurant_id": 1507, + "name": "에이치541", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 9층", + "average_price": 22500, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:30", + "phone_number": "031-5170-2541", + "score": 3.5, + "review": 10, + "duration_hours": "10:30 ~ 21:30", + "category_id": 9 + }, + { + "restaurant_id": 1508, + "name": "슈퍼스테이크 본사", + "address": "경기 성남시 분당구 판교역로192번길 14-2 골드타워 625,626호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-7282", + "score": 3.0, + "review": 0, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1509, + "name": "체르또", + "address": "경기 성남시 분당구 동판교로52번길 13-10 1층 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 11:00 ~ 21:30", + "phone_number": "0502-5550-1744", + "score": 4.6, + "review": 23, + "duration_hours": "11:00 ~ 21:30", + "category_id": 9 + }, + { + "restaurant_id": 1510, + "name": "플랩잭팬트리 본점", + "address": "경기 성남시 분당구 서판교로44번길 17-11 1층", + "average_price": 17400, + "caution": "예약가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금 10:00 ~ 21:00", + "phone_number": "031-8016-0168", + "score": 0.0, + "review": 8, + "duration_hours": "10:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1511, + "name": "에이치이에이", + "address": "경기 성남시 분당구 판교공원로1길 67 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-781-0122", + "score": 5.0, + "review": 467, + "duration_hours": "11:00 ~ 23:00", + "category_id": 9 + }, + { + "restaurant_id": 1512, + "name": "스마일쿡", + "address": "경기 성남시 분당구 판교역로 231 지하1층 112호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 4.3, + "review": 7, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1513, + "name": "일상화식", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 226호", + "average_price": 17000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 21:30", + "phone_number": "031-739-8340", + "score": 3.6, + "review": 55, + "duration_hours": "11:30 ~ 21:30", + "category_id": 9 + }, + { + "restaurant_id": 1514, + "name": "더이탈리안클럽 판교테크원점", + "address": "경기 성남시 분당구 분당내곡로 131 1층 5-2호", + "average_price": 32384, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:30", + "phone_number": null, + "score": 3.6, + "review": 207, + "duration_hours": "15:00 ~ 17:30", + "category_id": 9 + }, + { + "restaurant_id": 1515, + "name": "멀멀 판교", + "address": "경기 성남시 분당구 판교역로2번길 6 태훈빌딩 1층", + "average_price": 13875, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 18:00", + "phone_number": "070-8822-0313", + "score": 5.0, + "review": 28, + "duration_hours": "10:00 ~ 18:00", + "category_id": 9 + }, + { + "restaurant_id": 1516, + "name": "쿠차라 판교카카오점", + "address": "경기 성남시 분당구 판교역로 166 1층 9호", + "average_price": 10757, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-601-7223", + "score": 3.0, + "review": 95, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1517, + "name": "비스트로바이콘", + "address": "경기 성남시 분당구 대왕판교로645번길 36 1층", + "average_price": 23333, + "caution": "유의사항 정보 없음", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-606-8511", + "score": 4.3, + "review": 18, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1518, + "name": "오션문", + "address": "경기 성남시 분당구 운중로146번길 15-4 1층", + "average_price": 17666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 24:00", + "phone_number": null, + "score": 4.1, + "review": 65, + "duration_hours": "10:00 ~ 24:00", + "category_id": 9 + }, + { + "restaurant_id": 1519, + "name": "까사파스토", + "address": "경기 성남시 분당구 판교역로10번길 14-5 1층 102호", + "average_price": 18666, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 10:30 ~ 21:00", + "phone_number": "031-726-9155", + "score": 4.9, + "review": 36, + "duration_hours": "10:30 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1520, + "name": "스튜디오지구", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 116호", + "average_price": 9500, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:30", + "phone_number": "031-628-1000", + "score": 4.6, + "review": 18, + "duration_hours": "14:00 ~ 17:30", + "category_id": 9 + }, + { + "restaurant_id": 1521, + "name": "퀴즈노스 랩 판교테크노밸리점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 111,112호", + "average_price": 7500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 21:00", + "phone_number": "031-724-2724", + "score": 3.1, + "review": 43, + "duration_hours": "08:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1522, + "name": "오시", + "address": "경기 성남시 분당구 동판교로52번길 21-2", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 21:00", + "phone_number": null, + "score": 5.0, + "review": 779, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1523, + "name": "콘노이", + "address": "경기 성남시 분당구 운중로138번길 24-1 1층", + "average_price": 25714, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 24:00", + "phone_number": "0507-1326-0064", + "score": 4.0, + "review": 20, + "duration_hours": "17:00 ~ 24:00", + "category_id": 9 + }, + { + "restaurant_id": 1524, + "name": "판교의하루일과", + "address": "경기 성남시 분당구 분당내곡로 131 2층 11호", + "average_price": 22600, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 24:00", + "phone_number": "031-601-7559", + "score": 3.5, + "review": 84, + "duration_hours": "11:30 ~ 24:00", + "category_id": 9 + }, + { + "restaurant_id": 1525, + "name": "이터스 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 17655, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:00 ~ 20:00", + "phone_number": "031-5170-1053", + "score": 3.8, + "review": 45, + "duration_hours": "10:00 ~ 20:00", + "category_id": 9 + }, + { + "restaurant_id": 1526, + "name": "한촌설렁탕 판교테크노밸리점", + "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어 S동 B129,130호", + "average_price": 0, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 08:00 ~ 22:00", + "phone_number": "031-789-3690", + "score": 0.0, + "review": 41, + "duration_hours": "08:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1527, + "name": "모로미쿠시 판교점", + "address": "경기 성남시 분당구 판교역로192번길 14-2 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 01:30", + "phone_number": "031-8016-9835", + "score": 3.3, + "review": 27, + "duration_hours": "16:00 ~ 01:30", + "category_id": 9 + }, + { + "restaurant_id": 1528, + "name": "오늘한잔", + "address": "경기 성남시 분당구 대왕판교로606번길 45 푸르지오시티 1층 112호", + "average_price": 8820, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 3.0, + "review": 2, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1529, + "name": "미도인 판교테크원", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 지하1층 31호", + "average_price": 12920, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-601-7407", + "score": 3.3, + "review": 0, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1530, + "name": "마츠노하나 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 16200, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 20:30", + "phone_number": "031-5170-2032", + "score": 3.8, + "review": 406, + "duration_hours": "10:30 ~ 20:30", + "category_id": 9 + }, + { + "restaurant_id": 1531, + "name": "스너그", + "address": "경기 성남시 분당구 운중로113번길 12-2 1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "010-7257-2055", + "score": 3.7, + "review": 28, + "duration_hours": "10:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1532, + "name": "더 키친 일뽀르노 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 5층", + "average_price": 22904, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": "031-5170-1592", + "score": 3.8, + "review": 87, + "duration_hours": "10:30 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1533, + "name": "아르고", + "address": "경기 성남시 분당구 판교역로 145 알파리움 2동 117호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 23:30", + "phone_number": "031-701-1114", + "score": 4.8, + "review": 15, + "duration_hours": "17:00 ~ 23:30", + "category_id": 9 + }, + { + "restaurant_id": 1534, + "name": "마스터키친 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 13483, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-1013", + "score": 3.1, + "review": 34, + "duration_hours": "10:30 ~ 20:00", + "category_id": 9 + }, + { + "restaurant_id": 1535, + "name": "삐에뜨라", + "address": "경기 성남시 분당구 판교역로2번길 5 101호", + "average_price": 25000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:00", + "phone_number": "031-781-3080", + "score": 3.4, + "review": 133, + "duration_hours": "11:30 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1536, + "name": "호화식탁", + "address": "경기 성남시 분당구 판교공원로3길 4 1층", + "average_price": 25800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": null, + "score": 5.0, + "review": 11, + "duration_hours": "11:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1537, + "name": "비스트로42", + "address": "경기 성남시 분당구 판교역로192번길 12 2층 202호", + "average_price": 30333, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 24:00", + "phone_number": "031-8061-0711", + "score": 4.0, + "review": 44, + "duration_hours": "17:00 ~ 24:00", + "category_id": 9 + }, + { + "restaurant_id": 1538, + "name": "부처스그릴라운지 판교점", + "address": "경기 성남시 분당구 판교역로192번길 22 효성해링턴타워 118호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-704-0333", + "score": 0.0, + "review": 3, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1539, + "name": "투고샐러드 판교유스페이스점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 2층 230호", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 08:00 ~ 20:00", + "phone_number": "031-724-2588", + "score": 5.0, + "review": 16, + "duration_hours": "08:00 ~ 20:00", + "category_id": 9 + }, + { + "restaurant_id": 1540, + "name": "샐러디아 판교역점", + "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 상가 1층 76호", + "average_price": 352, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 20:00", + "phone_number": "031-8016-1060", + "score": 0.0, + "review": 11, + "duration_hours": "09:00 ~ 20:00", + "category_id": 9 + }, + { + "restaurant_id": 1541, + "name": "카사준", + "address": "경기 성남시 분당구 판교공원로2길 46-1 1층", + "average_price": 21500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 30, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1542, + "name": "루체까사", + "address": "경기 성남시 분당구 판교역로18번길 2", + "average_price": 23969, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 3, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1543, + "name": "올라포케 판교점", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 12125, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 20:30", + "phone_number": null, + "score": 5.0, + "review": 6, + "duration_hours": "10:30 ~ 20:30", + "category_id": 9 + }, + { + "restaurant_id": 1544, + "name": "돈돈정 판교아브뉴프랑점", + "address": "경기 성남시 분당구 동판교로177번길 25 2층 203호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-708-0418", + "score": 2.8, + "review": 2, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1545, + "name": "105파스타 서판교점", + "address": "경기 성남시 분당구 판교공원로5길 3 1층 102호", + "average_price": 7905, + "caution": "포장가능", + "convenience": "WIFI", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-707-0105", + "score": 4.2, + "review": 3, + "duration_hours": "11:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1546, + "name": "마이치치스", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 지하1층", + "average_price": 13230, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 4.0, + "review": 0, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1547, + "name": "오말리 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 47", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-625-1232", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1548, + "name": "구전동화 판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 지하1층 비101호", + "average_price": 60000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.0, + "review": 3, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1549, + "name": "사반바이미연 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-5170-1022", + "score": 0.0, + "review": 11, + "duration_hours": "10:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1550, + "name": "더냄비 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 1층", + "average_price": 9700, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-1006", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1551, + "name": "소베뉴", + "address": "경기 성남시 분당구 판교백현로 61 1-2층", + "average_price": 60000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "수~일 10:00 ~ 19:00", + "phone_number": "031-707-3770", + "score": 3.8, + "review": 76, + "duration_hours": "10:00 ~ 19:00", + "category_id": 9 + }, + { + "restaurant_id": 1552, + "name": "언버튼", + "address": "경기 성남시 수정구 창업로 43 글로벌비즈센터 A동 1층 107호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 21:30", + "phone_number": "070-8230-4448", + "score": 5.0, + "review": 33, + "duration_hours": "10:30 ~ 21:30", + "category_id": 9 + }, + { + "restaurant_id": 1553, + "name": "서가앤쿡 판교파이어스몰점", + "address": "경기 성남시 수정구 창업로 17 아이스퀘어 A동 106호", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-721-0401", + "score": 2.9, + "review": 0, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1554, + "name": "동해강릉초당짬뽕순두부 판교 파미어스몰점", + "address": "경기 성남시 수정구 창업로 17 판교아이스퀘어 E동 2층 206-2호", + "average_price": 7175, + "caution": "포장가능", + "convenience": "WIFI\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:00", + "phone_number": "070-8670-2542", + "score": 4.9, + "review": 33, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1555, + "name": "토끼정", + "address": "경기 성남시 수정구 창업로 17", + "average_price": 0, + "caution": "예약불가, 포장불가", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.5, + "review": 0, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1556, + "name": "더몰트하우스 서핑시티 판교점", + "address": "경기 성남시 수정구 창업로 18 파미어스몰 1층", + "average_price": 22500, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-755-5818", + "score": 3.7, + "review": 122, + "duration_hours": "11:00 ~ 23:00", + "category_id": 9 + }, + { + "restaurant_id": 1557, + "name": "더블트리 바이 힐튼 서울 판교 닉스", + "address": "경기 성남시 분당구 백현로 26 21층", + "average_price": 62400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 24:00", + "phone_number": null, + "score": 4.2, + "review": 219, + "duration_hours": "11:30 ~ 24:00", + "category_id": 9 + }, + { + "restaurant_id": 1558, + "name": "조셉스테이크 더블트리바이힐튼점", + "address": "경기 성남시 분당구 백현로 26", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 18:00", + "phone_number": "031-8039-7397", + "score": 5.0, + "review": 40, + "duration_hours": "15:00 ~ 18:00", + "category_id": 9 + }, + { + "restaurant_id": 1559, + "name": "도쿄스테이크 서현역점", + "address": "경기 성남시 분당구 분당로53번길 19 피아자코코빌딩 2층 202호", + "average_price": 11416, + "caution": "배달가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-705-2828", + "score": 3.3, + "review": 0, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1560, + "name": "비스트로도마", + "address": "경기 성남시 분당구 하오개로 383 1층", + "average_price": 44475, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-702-6009", + "score": 4.1, + "review": 201, + "duration_hours": "11:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1561, + "name": "지오쿠치나", + "address": "경기 성남시 분당구 황새울로200번길 34 코포모빌딩 1층 101,102호", + "average_price": 25000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 21:50", + "phone_number": "031-711-9488", + "score": 0.0, + "review": 189, + "duration_hours": "11:30 ~ 21:50", + "category_id": 9 + }, + { + "restaurant_id": 1562, + "name": "미츠스테이크 서현", + "address": "경기 성남시 분당구 분당로53번길 11 서원플라자 5층", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-708-6617", + "score": 4.4, + "review": 121, + "duration_hours": "11:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1563, + "name": "푸른언덕", + "address": "경기 성남시 수정구 사송로80번길 23 1,2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 20:00", + "phone_number": null, + "score": 3.3, + "review": 19, + "duration_hours": "10:00 ~ 20:00", + "category_id": 9 + }, + { + "restaurant_id": 1564, + "name": "페삭", + "address": "경기 성남시 분당구 황새울로214번길 8 엠에스프라자 3층 306호", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 22:00", + "phone_number": "031-718-7852", + "score": 0.0, + "review": 99, + "duration_hours": "10:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1565, + "name": "토브나인", + "address": "경기 성남시 수정구 사송로 56 1,2층", + "average_price": 13600, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": "070-8870-9990", + "score": 4.1, + "review": 95, + "duration_hours": "10:30 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1566, + "name": "레스토랑마고", + "address": "경기 성남시 분당구 정자일로 230 동양파라곤 105동 지하 103호", + "average_price": 76000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "010-4526-0589", + "score": 4.2, + "review": 161, + "duration_hours": "11:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1567, + "name": "아웃백스테이크하우스 분당AK점", + "address": "경기 성남시 분당구 황새울로360번길 42 AK플라자 5층", + "average_price": 30793, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:30", + "phone_number": "031-8023-2800", + "score": 3.2, + "review": 274, + "duration_hours": "10:30 ~ 21:30", + "category_id": 9 + }, + { + "restaurant_id": 1568, + "name": "스테이크마켙", + "address": "경기 성남시 분당구 황새울로 216 휴맥스빌리지 지하1층 B101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1569, + "name": "다크앤라이트", + "address": "경기 성남시 수정구 달래내로 252 2층", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "수~일 15:00 ~ 17:30", + "phone_number": "031-708-8730", + "score": 4.5, + "review": 162, + "duration_hours": "15:00 ~ 17:30", + "category_id": 9 + }, + { + "restaurant_id": 1570, + "name": "매드포갈릭 분당서현점", + "address": "경기 성남시 분당구 분당로53번길 22 블루홀플라자 지하1층", + "average_price": 55922, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:00", + "phone_number": "031-705-8120", + "score": 3.9, + "review": 95, + "duration_hours": "11:30 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1571, + "name": "롤링파스타 서현역점", + "address": "경기 성남시 분당구 분당로53번길 14 서현프라자 2층", + "average_price": 8444, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-707-3547", + "score": 4.4, + "review": 184, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1572, + "name": "윤스테이크 본점", + "address": "경기 성남시 분당구 서현로 170", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1573, + "name": "모티이", + "address": "경기 성남시 분당구 황새울로311번길 28", + "average_price": 17285, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 01:00", + "phone_number": "031-707-9297", + "score": 4.7, + "review": 381, + "duration_hours": "11:00 ~ 01:00", + "category_id": 9 + }, + { + "restaurant_id": 1574, + "name": "틈 서현", + "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 106호", + "average_price": 20025, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 17:00 ~ 02:00", + "phone_number": "0503-7150-4886", + "score": 4.7, + "review": 232, + "duration_hours": "17:00 ~ 02:00", + "category_id": 9 + }, + { + "restaurant_id": 1575, + "name": "잔잔 서현역점", + "address": "경기 성남시 분당구 황새울로335번길 8 덕산빌딩 1층", + "average_price": 23947, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,일 17:00 ~ 01:00", + "phone_number": "031-703-0877", + "score": 3.8, + "review": 609, + "duration_hours": "17:00 ~ 01:00", + "category_id": 9 + }, + { + "restaurant_id": 1576, + "name": "웅성웅성 서현점", + "address": "경기 성남시 분당구 황새울로335번길 5 1층", + "average_price": 30250, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 02:00", + "phone_number": "031-696-1211", + "score": 4.7, + "review": 63, + "duration_hours": "16:00 ~ 02:00", + "category_id": 9 + }, + { + "restaurant_id": 1577, + "name": "라그릴리아 롯데백화점분당점", + "address": "경기 성남시 분당구 황새울로200번길 45 1층", + "average_price": 38752, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": "031-738-2051", + "score": 3.9, + "review": 30, + "duration_hours": "10:30 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1578, + "name": "투파인드피터 서현점", + "address": "경기 성남시 분당구 황새울로360번길 26 4층 401호", + "average_price": 13166, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-778-6263", + "score": 4.7, + "review": 621, + "duration_hours": "11:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1579, + "name": "쉐프쿠치나", + "address": "경기 성남시 분당구 하오개로349번길 4", + "average_price": 34200, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 7, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1580, + "name": "미도인 서현", + "address": "경기 성남시 분당구 분당로53번길 10 2층 202호", + "average_price": 13600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:00", + "phone_number": "031-703-1990", + "score": 0.0, + "review": 0, + "duration_hours": "11:30 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1581, + "name": "웅성웅성 서현본점", + "address": "경기 성남시 분당구 황새울로311번길 28 롯데서현주차빌딩 1층 108호", + "average_price": 32333, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 02:00", + "phone_number": "031-701-7888", + "score": 4.7, + "review": 689, + "duration_hours": "16:00 ~ 02:00", + "category_id": 9 + }, + { + "restaurant_id": 1582, + "name": "브루클린더버거 조인트 분당정자점", + "address": "경기 성남시 분당구 정자일로213번길 18 201동 103호", + "average_price": 12600, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-717-7180", + "score": 3.4, + "review": 104, + "duration_hours": "11:00 ~ 21:30", + "category_id": 9 + }, + { + "restaurant_id": 1583, + "name": "로우테라스", + "address": "경기 성남시 수정구 청계산로5길 8 1층", + "average_price": 13642, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 21:00", + "phone_number": "070-8691-3028", + "score": 4.1, + "review": 276, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1584, + "name": "모로미 수내점", + "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 205, 206호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:30 ~ 24:00", + "phone_number": "031-711-0209", + "score": 4.1, + "review": 33, + "duration_hours": "17:30 ~ 24:00", + "category_id": 9 + }, + { + "restaurant_id": 1585, + "name": "에뿔라이(epulae)", + "address": "경기 성남시 분당구 황새울로335번길 5", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 1, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1586, + "name": "미도인덮밥 스테이크 서현점", + "address": "경기 성남시 분당구 분당로53번길 10", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 19:50", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "11:00 ~ 19:50", + "category_id": 9 + }, + { + "restaurant_id": 1587, + "name": "살토", + "address": "경기 성남시 분당구 정자일로 136 정자역 엠코헤리츠 3단지 C동 105, 106호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": null, + "score": 4.3, + "review": 48, + "duration_hours": "11:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1588, + "name": "재미스 판교", + "address": "경기 성남시 수정구 대왕판교로950번길 24 1층", + "average_price": 24523, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 10:00 ~ 17:00", + "phone_number": "0507-1337-5290", + "score": 3.9, + "review": 171, + "duration_hours": "10:00 ~ 17:00", + "category_id": 9 + }, + { + "restaurant_id": 1589, + "name": "콩킨누스", + "address": "경기 성남시 수정구 청계산로 752 101~104, 116호", + "average_price": 30846, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:30 ~ 17:30", + "phone_number": "031-752-0009", + "score": 5.0, + "review": 172, + "duration_hours": "14:30 ~ 17:30", + "category_id": 9 + }, + { + "restaurant_id": 1590, + "name": "욜로", + "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 106호", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-8872-1212", + "score": 1.0, + "review": 0, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1591, + "name": "돈까스클럽 성남시청점", + "address": "경기 성남시 수정구 탄천로307번길 16", + "average_price": 13970, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 21:30", + "phone_number": "031-751-1769", + "score": 3.2, + "review": 111, + "duration_hours": "11:00 ~ 21:30", + "category_id": 9 + }, + { + "restaurant_id": 1592, + "name": "쏘렐라파스타 본점", + "address": "경기 성남시 분당구 정자일로 177 인텔리지빌딩 상가 3층 306호", + "average_price": 17000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "031-782-5882", + "score": 3.8, + "review": 33, + "duration_hours": "11:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1593, + "name": "랜돌프비어 서현점", + "address": "경기 성남시 분당구 황새울로360번길 12 대명프라자 3층 301,311호", + "average_price": 9900, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 03:00", + "phone_number": null, + "score": 3.8, + "review": 28, + "duration_hours": "17:00 ~ 03:00", + "category_id": 9 + }, + { + "restaurant_id": 1594, + "name": "연무", + "address": "경기 성남시 분당구 서현로210번길 10 다두프라자 지하1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "0507-1334-4366", + "score": 4.8, + "review": 311, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1595, + "name": "춘자싸롱", + "address": "경기 성남시 분당구 정자일로 210 동양파라곤 102동 지하1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": null, + "score": 3.8, + "review": 9, + "duration_hours": "11:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1596, + "name": "미담", + "address": "경기 성남시 분당구 성남대로331번길 9-13 1층", + "average_price": 14000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 22:00", + "phone_number": "031-711-0774", + "score": 3.8, + "review": 0, + "duration_hours": "11:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1597, + "name": "수룹타코 suruptaco", + "address": "경기 성남시 분당구 분당로53번길 10", + "average_price": 4800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:30", + "phone_number": null, + "score": 5.0, + "review": 8, + "duration_hours": "11:30 ~ 22:30", + "category_id": 9 + }, + { + "restaurant_id": 1598, + "name": "카렌 AK분당점", + "address": "경기 성남시 분당구 황새울로360번길 42 지하 1층", + "average_price": 17700, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 3.1, + "review": 1, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1599, + "name": "핑크덤벨헬스푸드", + "address": "경기 성남시 분당구 황새울로342번길 19 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": null, + "score": 4.0, + "review": 8, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1600, + "name": "짚동가리쌩주", + "address": "경기 성남시 분당구 황새울로360번길 28", + "average_price": 15000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 03:00", + "phone_number": "031-708-1377", + "score": 1.9, + "review": 11, + "duration_hours": "11:00 ~ 03:00", + "category_id": 9 + }, + { + "restaurant_id": 1601, + "name": "어퍼그레이 AK플라자 분당점", + "address": "경기 성남시 분당구 황새울로360번길 42 7층", + "average_price": 21408, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 20:30", + "phone_number": "031-8023-2700", + "score": 4.5, + "review": 22, + "duration_hours": "11:00 ~ 20:30", + "category_id": 9 + }, + { + "restaurant_id": 1602, + "name": "술마실고양", + "address": "경기 성남시 분당구 서현로210번길 16 유성트윈프라자 1차 302호", + "average_price": 14500, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 02:00", + "phone_number": "0502-5551-0585", + "score": 5.0, + "review": 3, + "duration_hours": "17:00 ~ 02:00", + "category_id": 9 + }, + { + "restaurant_id": 1603, + "name": "롤링파스타 분당정자점", + "address": "경기 성남시 분당구 황새울로108번길 5 1층", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-717-3547", + "score": 3.8, + "review": 1, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1604, + "name": "마리에뜨다이닝", + "address": "경기 성남시 분당구 황새울로360번길 42", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1605, + "name": "미담휴", + "address": "경기 성남시 분당구 성남대로331번길 9-12 우경빌딩 2층", + "average_price": 19072, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": null, + "score": 3.0, + "review": 0, + "duration_hours": "11:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1606, + "name": "부에노부스", + "address": "경기 성남시 분당구 장미로 42 야탑리더스 1층 116호", + "average_price": 15000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 18:00 ~ 24:00", + "phone_number": "070-4189-3425", + "score": 4.0, + "review": 40, + "duration_hours": "18:00 ~ 24:00", + "category_id": 9 + }, + { + "restaurant_id": 1607, + "name": "에이치앤에이치바", + "address": "경기 성남시 분당구 황새울로360번길 24 대명코아 2층 206~207호", + "average_price": 22692, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 19:00 ~ 02:00", + "phone_number": "0503-7151-0052", + "score": 3.0, + "review": 112, + "duration_hours": "19:00 ~ 02:00", + "category_id": 9 + }, + { + "restaurant_id": 1608, + "name": "라까사데파스타", + "address": "경기 성남시 분당구 중앙공원로31번길 42", + "average_price": 12500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 11:30 ~ 21:00", + "phone_number": "010-8741-8588", + "score": 4.7, + "review": 0, + "duration_hours": "11:30 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1609, + "name": "육덮밥", + "address": "경기 성남시 분당구 내정로173번길 11", + "average_price": 8500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 20:00", + "phone_number": "070-8827-0348", + "score": 4.8, + "review": 0, + "duration_hours": "11:00 ~ 20:00", + "category_id": 9 + }, + { + "restaurant_id": 1610, + "name": "꽃물 서현점", + "address": "경기 성남시 분당구 서현로210번길 14 유성트윈프라자 지하1호,2호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1611, + "name": "리미니 NC야탑점", + "address": "경기 성남시 분당구 야탑로81번길 11 7층", + "average_price": 16050, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 20:30", + "phone_number": "031-703-8176", + "score": 2.0, + "review": 73, + "duration_hours": "11:00 ~ 20:30", + "category_id": 9 + }, + { + "restaurant_id": 1612, + "name": "호5락실 분당서현점", + "address": "경기 성남시 분당구 황새울로360번길 12 대명프라자4층", + "average_price": 15942, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 10:00", + "phone_number": null, + "score": 2.0, + "review": 0, + "duration_hours": "16:00 ~ 10:00", + "category_id": 9 + }, + { + "restaurant_id": 1613, + "name": "와인플레이 분당점", + "address": "경기 성남시 분당구 쇳골로 7 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-609-3011", + "score": 4.6, + "review": 9, + "duration_hours": "11:00 ~ 23:00", + "category_id": 9 + }, + { + "restaurant_id": 1614, + "name": "마이에마스", + "address": "경기 성남시 분당구 정자일로 146 115호", + "average_price": 23166, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:30 ~ 21:00", + "phone_number": "031-725-3215", + "score": 3.7, + "review": 218, + "duration_hours": "11:30 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1615, + "name": "술지비오", + "address": "경기 성남시 분당구 중앙공원로39번길 49 113호", + "average_price": 20000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 18:00 ~ 24:00", + "phone_number": "031-704-0337", + "score": 0.0, + "review": 25, + "duration_hours": "18:00 ~ 24:00", + "category_id": 9 + }, + { + "restaurant_id": 1616, + "name": "코헨", + "address": "경기 성남시 분당구 정자일로 197 푸르지오시티 2층 205호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-719-2204", + "score": 4.0, + "review": 1, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1617, + "name": "호쿠모쿠", + "address": "경기 성남시 분당구 정자일로 140 정자역엠코헤리츠2단지 B동 1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": null, + "score": 4.5, + "review": 172, + "duration_hours": "15:00 ~ 17:30", + "category_id": 9 + }, + { + "restaurant_id": 1618, + "name": "스파게티올리브0904", + "address": "경기 성남시 분당구 성남대로925번길 11", + "average_price": 8600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:30 ~ 21:30", + "phone_number": "031-704-0904", + "score": 4.7, + "review": 56, + "duration_hours": "11:30 ~ 21:30", + "category_id": 9 + }, + { + "restaurant_id": 1619, + "name": "다리오42", + "address": "경기 성남시 분당구 느티로51번길 8-3", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 23:00", + "phone_number": null, + "score": 0.0, + "review": 4, + "duration_hours": "11:00 ~ 23:00", + "category_id": 9 + }, + { + "restaurant_id": 1620, + "name": "김밥천국", + "address": "경기 성남시 분당구 성남대로331번길 8", + "average_price": 4200, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-717-9042", + "score": 1.4, + "review": 4, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1621, + "name": "하우스브란트 야탑점", + "address": "경기 성남시 분당구 성남대로925번길 19", + "average_price": 4400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-703-0449", + "score": 4.5, + "review": 6, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1622, + "name": "벨라로사", + "address": "경기 성남시 분당구 성남대로 295 대림아크로텔 상가 1층 118호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "031-717-7282", + "score": 4.3, + "review": 65, + "duration_hours": "11:30 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1623, + "name": "멜랑", + "address": "경기 성남시 분당구 야탑로111번길 5-3 1층", + "average_price": 5807, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:00", + "phone_number": "031-778-7109", + "score": 4.3, + "review": 90, + "duration_hours": "11:30 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1624, + "name": "다구오", + "address": "경기 성남시 분당구 야탑로81번길 11 NC백화점 지하1층", + "average_price": 10900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 7, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1625, + "name": "Pokeallday포케 샐러드 분당야탑점", + "address": "경기 성남시 분당구 야탑로75번길 15", + "average_price": 10900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 09:00 ~ 20:30", + "phone_number": "0507-2084-3638", + "score": 0.0, + "review": 25, + "duration_hours": "09:00 ~ 20:30", + "category_id": 9 + }, + { + "restaurant_id": 1626, + "name": "리츠다이너", + "address": "경기 성남시 분당구 정자일로 146 엠코헤리츠1단지 1층 A111호", + "average_price": 18855, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:30 ~ 17:30", + "phone_number": "031-718-4307", + "score": 0.0, + "review": 411, + "duration_hours": "15:30 ~ 17:30", + "category_id": 9 + }, + { + "restaurant_id": 1627, + "name": "쿠모야", + "address": "경기 성남시 분당구 성남대로925번길 16 201동 상가 203~207호", + "average_price": 10160, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-702-2270", + "score": 4.4, + "review": 25, + "duration_hours": "11:00 ~ 21:00", + "category_id": 9 + }, + { + "restaurant_id": 1628, + "name": "롤링파스타 야탑역점", + "address": "경기 성남시 분당구 성남대로926번길 6 대덕프라자 2층 201호", + "average_price": 0, + "caution": "배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:30 ~ 21:30", + "phone_number": "031-697-8709", + "score": 3.9, + "review": 54, + "duration_hours": "11:30 ~ 21:30", + "category_id": 9 + }, + { + "restaurant_id": 1629, + "name": "오뎅판다 야탑본점", + "address": "경기 성남시 분당구 야탑로105번길 18", + "average_price": 23450, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 04:00", + "phone_number": "031-707-5089", + "score": 2.9, + "review": 10, + "duration_hours": "17:00 ~ 04:00", + "category_id": 9 + }, + { + "restaurant_id": 1630, + "name": "와인플레이 분당점,와뱅와플", + "address": "경기 성남시 분당구 쇳골로 7 지하1층", + "average_price": 30500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-609-3011", + "score": 4.7, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1631, + "name": "지금보고싶다 야탑점", + "address": "경기 성남시 분당구 야탑로105번길 18 2층", + "average_price": 20400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 18:00 ~ 03:00", + "phone_number": "031-707-2070", + "score": 3.8, + "review": 18, + "duration_hours": "18:00 ~ 03:00", + "category_id": 9 + }, + { + "restaurant_id": 1632, + "name": "엘리팝 판교점", + "address": "경기 성남시 분당구 판교대장로6길 10 104호", + "average_price": 12928, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 18:00 ~ 01:00", + "phone_number": "031-718-0212", + "score": 3.0, + "review": 12, + "duration_hours": "18:00 ~ 01:00", + "category_id": 9 + }, + { + "restaurant_id": 1633, + "name": "오브리", + "address": "경기 성남시 분당구 정자일로 146 엠코헤리츠1단지 101동 104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 01:00", + "phone_number": "031-606-6009", + "score": 4.5, + "review": 161, + "duration_hours": "17:00 ~ 01:00", + "category_id": 9 + }, + { + "restaurant_id": 1634, + "name": "루트스테이", + "address": "경기 성남시 분당구 정자일로 140", + "average_price": 9500, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 11:30 ~ 23:00", + "phone_number": "031-714-6643", + "score": 3.7, + "review": 70, + "duration_hours": "11:30 ~ 23:00", + "category_id": 9 + }, + { + "restaurant_id": 1635, + "name": "비틀즈", + "address": "경기 성남시 분당구 안골로 1 지하1층", + "average_price": 12380, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 18:00 ~ 23:00", + "phone_number": null, + "score": 5.0, + "review": 5, + "duration_hours": "18:00 ~ 23:00", + "category_id": 9 + }, + { + "restaurant_id": 1636, + "name": "뉴욕야시장 야탑역점", + "address": "경기 성남시 분당구 장미로86번길 12-1 2층", + "average_price": 15233, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 4, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1637, + "name": "누아", + "address": "경기 성남시 분당구 정자일로 146 엠코헤리츠 1단지 1층 A127호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 17:00 ~ 23:00", + "phone_number": "0502-5551-1955", + "score": 5.0, + "review": 1, + "duration_hours": "17:00 ~ 23:00", + "category_id": 9 + }, + { + "restaurant_id": 1638, + "name": "하누품은식탁", + "address": "경기 성남시 분당구 성남대로926번길 6 야탑대덕프라자 4층 416호", + "average_price": 23181, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 9 + }, + { + "restaurant_id": 1639, + "name": "삼바삼바 분당야탑점", + "address": "경기 성남시 분당구 장미로 86 이코노샤르망빌딩 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 9 + }, + { + "restaurant_id": 1640, + "name": "봉고기정육식당", + "address": "경기 성남시 분당구 야탑로105번길 12-6 1층", + "average_price": 26500, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 23:00", + "phone_number": "031-709-9089", + "score": 5.0, + "review": 204, + "duration_hours": "16:00 ~ 23:00", + "category_id": 9 + }, + { + "restaurant_id": 1641, + "name": "우설화 판교점", + "address": "경기 성남시 분당구 판교로 185 신화푸드빌리지 3층", + "average_price": 34200, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-702-9407", + "score": 3.7, + "review": 159, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1642, + "name": "신도세기 판교역점", + "address": "경기 성남시 분당구 판교역로 152 알파돔타워 2층 207호", + "average_price": 19900, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 21:30", + "phone_number": "031-622-7188", + "score": 3.9, + "review": 143, + "duration_hours": "11:30 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1643, + "name": "양우정 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 상가동 라스트리트 1동 1층 112~114호", + "average_price": 52500, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-706-9252", + "score": 4.6, + "review": 35, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1644, + "name": "천지연 판교점", + "address": "경기 성남시 분당구 판교로 185 신화푸드빌리지 1층", + "average_price": 17585, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-702-9506", + "score": 3.0, + "review": 52, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1645, + "name": "진1926 판교점", + "address": "경기 성남시 분당구 판교역로192번길 22 효성 해링턴 타워 1층 101호", + "average_price": 33833, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 23:00", + "phone_number": "031-707-0292", + "score": 4.1, + "review": 25, + "duration_hours": "17:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1646, + "name": "숙성도 판교점", + "address": "경기 성남시 분당구 판교역로 136 힐스테이트판교역판매시설 1층 1042~1047호", + "average_price": 22000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:30", + "phone_number": "031-8023-9233", + "score": 3.7, + "review": 398, + "duration_hours": "11:30 ~ 22:30", + "category_id": 10 + }, + { + "restaurant_id": 1647, + "name": "참다운정육식당 판교본점", + "address": "경기 성남시 분당구 판교로 182-7 지하1층 B01호", + "average_price": 21140, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-8016-8880", + "score": 4.2, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1648, + "name": "화포식당 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 240호", + "average_price": 24500, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 22:00", + "phone_number": "031-724-2929", + "score": 4.1, + "review": 423, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1649, + "name": "얼룩도야지", + "address": "경기 성남시 분당구 대왕판교로606번길 45 2층 205호", + "average_price": 11000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 23:00", + "phone_number": "031-8017-2840", + "score": 0.0, + "review": 183, + "duration_hours": "17:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1650, + "name": "푸에르코 판교점", + "address": "경기 성남시 분당구 분당내곡로 117 그레이츠 판교 2층", + "average_price": 39850, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-622-7501", + "score": 2.9, + "review": 125, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1651, + "name": "황제갈비 판교점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2A동 1층 104, 105호", + "average_price": 54666, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 22:00", + "phone_number": "031-739-8688", + "score": 4.2, + "review": 26, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1652, + "name": "이야기둘", + "address": "경기 성남시 분당구 판교로319번길 13 디테라스오피스텔 1층 113호", + "average_price": 45777, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 22:00", + "phone_number": "031-607-8092", + "score": 3.8, + "review": 127, + "duration_hours": "12:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1653, + "name": "차고145", + "address": "경기 성남시 분당구 판교역로 145 라스트리트 알파리움2동 1층 108~110호", + "average_price": 36000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-781-1450", + "score": 3.8, + "review": 141, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1654, + "name": "송도갈비 판교브릿지타워점", + "address": "경기 성남시 분당구 판교로227번길 6 브릿지타워", + "average_price": 13000, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-702-0911", + "score": 3.9, + "review": 46, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1655, + "name": "돈블랑 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움1단지아파트 알파리움타워 1동 1층", + "average_price": 18722, + "caution": "예약가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-703-7722", + "score": 3.8, + "review": 66, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1656, + "name": "머내돌삼겹살", + "address": "경기 성남시 분당구 동판교로52번길 17-14 1층", + "average_price": 23200, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 10:00 ~ 22:00", + "phone_number": "031-8017-6550", + "score": 4.6, + "review": 27, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1657, + "name": "통통곱창", + "address": "경기 성남시 분당구 대왕판교로606번길 45 1층 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 24:00", + "phone_number": "031-8017-6660", + "score": 4.3, + "review": 67, + "duration_hours": "10:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1658, + "name": "돼지맨숀", + "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 144,145호", + "average_price": 15200, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 22:30", + "phone_number": "031-706-4775", + "score": 3.7, + "review": 78, + "duration_hours": "17:00 ~ 22:30", + "category_id": 10 + }, + { + "restaurant_id": 1659, + "name": "쉐누하누", + "address": "경기 성남시 분당구 판교역로 145 알파리움타워 2동 라스트리트 2층 201~203호", + "average_price": 13000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:40", + "phone_number": "031-703-5530", + "score": 4.2, + "review": 95, + "duration_hours": "11:00 ~ 21:40", + "category_id": 10 + }, + { + "restaurant_id": 1660, + "name": "양재정육식당", + "address": "경기 성남시 분당구 분당내곡로 151 삼도타워 1층 102호", + "average_price": 24666, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 24:00", + "phone_number": "031-708-5705", + "score": 3.6, + "review": 33, + "duration_hours": "11:30 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1661, + "name": "우테이블", + "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층 105호", + "average_price": 6900, + "caution": "예약가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-703-4775", + "score": 4.1, + "review": 97, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1662, + "name": "토속상황삼계탕", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 225호", + "average_price": 15800, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:40 ~ 21:00", + "phone_number": "031-628-6619", + "score": 4.0, + "review": 28, + "duration_hours": "10:40 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 1663, + "name": "양바위 본점", + "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 아브뉴프랑 1층 110,111호", + "average_price": 27714, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-706-9288", + "score": 0.0, + "review": 84, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1664, + "name": "홍대칼국수와족발 판교역점", + "address": "경기 성남시 분당구 대왕판교로606번길 45 1층", + "average_price": 36800, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 11:30 ~ 02:00", + "phone_number": "031-708-1779", + "score": 3.3, + "review": 14, + "duration_hours": "11:30 ~ 02:00", + "category_id": 10 + }, + { + "restaurant_id": 1665, + "name": "고반식당 판교아브뉴프랑점", + "address": "경기 성남시 분당구 동판교로177번길 25 2층 205~207호", + "average_price": 28400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-707-5861", + "score": 0.0, + "review": 380, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1666, + "name": "송추가마골 인어반 판교점", + "address": "경기 성남시 분당구 판교역로 145 알파리움2단지 라스트리트 2동 2층", + "average_price": 34000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:15 ~ 21:45", + "phone_number": "031-705-8503", + "score": 2.6, + "review": 44, + "duration_hours": "11:15 ~ 21:45", + "category_id": 10 + }, + { + "restaurant_id": 1667, + "name": "일편닭심", + "address": "경기 성남시 분당구 판교역로192번길 22 효성해링턴타워 110호", + "average_price": 20166, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 01:30", + "phone_number": "031-602-1847", + "score": 4.2, + "review": 75, + "duration_hours": "17:00 ~ 01:30", + "category_id": 10 + }, + { + "restaurant_id": 1668, + "name": "금돈가", + "address": "경기 성남시 분당구 판교공원로1길 71 1층", + "average_price": 26500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 23:00", + "phone_number": "031-709-6599", + "score": 3.3, + "review": 68, + "duration_hours": "11:30 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1669, + "name": "우몽 판교본점", + "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋타워 2층 204호", + "average_price": 52500, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-8061-0712", + "score": 4.4, + "review": 734, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1670, + "name": "우대포판교", + "address": "경기 성남시 분당구 운중로 141", + "average_price": 12250, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": null, + "score": 4.6, + "review": 778, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1671, + "name": "판교인생곱창", + "address": "경기 성남시 분당구 판교역로192번길 16 판교타워", + "average_price": 35333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 15:00 ~ 22:50", + "phone_number": "031-705-0731", + "score": 3.5, + "review": 91, + "duration_hours": "15:00 ~ 22:50", + "category_id": 10 + }, + { + "restaurant_id": 1672, + "name": "창고43 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 2층", + "average_price": 58750, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:30", + "phone_number": "031-601-7543", + "score": 3.3, + "review": 76, + "duration_hours": "14:00 ~ 17:30", + "category_id": 10 + }, + { + "restaurant_id": 1673, + "name": "우몽블랙 판교점", + "address": "경기 성남시 분당구 판교역로 145 알파리움타워 2동 1층 111~112호", + "average_price": 60333, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-702-0218", + "score": 4.6, + "review": 533, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1674, + "name": "운중본가 장수촌", + "address": "경기 성남시 분당구 산운로32번길 14 1층", + "average_price": 27222, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-705-9973", + "score": 3.5, + "review": 111, + "duration_hours": "11:00 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 1675, + "name": "진짜돼지 판교본점", + "address": "경기 성남시 분당구 분당내곡로 159 판교역KCC웰츠타워 A동 1층 120호", + "average_price": 15250, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 24:00", + "phone_number": "031-8017-9547", + "score": 3.6, + "review": 44, + "duration_hours": "11:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1676, + "name": "제주가", + "address": "경기 성남시 분당구 동판교로52번길 5 1층", + "average_price": 23666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-8016-9292", + "score": 4.0, + "review": 8, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1677, + "name": "일도씨닭갈비 판교점", + "address": "경기 성남시 분당구 분당내곡로 117 그레이츠판교 지하1층", + "average_price": 15333, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-622-7509", + "score": 0.0, + "review": 123, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1678, + "name": "암돼지와꽃등심", + "address": "경기 성남시 분당구 운중로166번길 4-14 1층", + "average_price": 18333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:00", + "phone_number": "031-8016-3566", + "score": 3.6, + "review": 187, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1679, + "name": "이가네양갈비 판교직영점", + "address": "경기 성남시 분당구 판교역로 145 알파리움2단지 타워2동 1층 113~115호", + "average_price": 18000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 10:45", + "phone_number": "031-701-9998", + "score": 4.4, + "review": 0, + "duration_hours": "11:00 ~ 10:45", + "category_id": 10 + }, + { + "restaurant_id": 1680, + "name": "유엔가든", + "address": "경기 성남시 분당구 동판교로177번길 25 1층 129~131호", + "average_price": 32650, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 22:00", + "phone_number": "031-708-9929", + "score": 3.9, + "review": 101, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1681, + "name": "초심한우", + "address": "경기 성남시 분당구 운중로146번길 15-6 1층", + "average_price": 31285, + "caution": "예약가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 22:00", + "phone_number": null, + "score": 4.5, + "review": 25, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1682, + "name": "램가 본점", + "address": "경기 성남시 분당구 판교공원로1길 63 지하1층", + "average_price": 19000, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 22:00", + "phone_number": "031-703-5043", + "score": 4.5, + "review": 225, + "duration_hours": "17:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1683, + "name": "항아리보쌈 서판교점", + "address": "경기 성남시 분당구 운중로125번길 14-16", + "average_price": 49500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-8017-3377", + "score": 4.3, + "review": 18, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1684, + "name": "감성쪽갈비", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 211호", + "average_price": 12400, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 24:00", + "phone_number": "031-724-2885", + "score": 4.1, + "review": 136, + "duration_hours": "16:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1685, + "name": "판교집 본점", + "address": "경기 성남시 분당구 판교역로 178 서건타워 1층 106호", + "average_price": 30000, + "caution": "예약가능, 배달가능, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:00", + "phone_number": null, + "score": 3.8, + "review": 116, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1686, + "name": "비와별닭갈비 판교아브뉴프랑점", + "address": "경기 성남시 분당구 동판교로177번길 25 2층 208호", + "average_price": 17000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-8016-7999", + "score": 2.6, + "review": 50, + "duration_hours": "11:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1687, + "name": "됐소 판교점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 지하1층 B101호", + "average_price": 28950, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-628-6092", + "score": 3.3, + "review": 141, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1688, + "name": "순우가", + "address": "경기 성남시 분당구 대왕판교로645번길 36 NS 별관 지하1층", + "average_price": 0, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:30", + "phone_number": "031-606-8516", + "score": 4.0, + "review": 117, + "duration_hours": "11:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1689, + "name": "조재벌식당", + "address": "경기 성남시 분당구 판교로319번길 13 1층", + "average_price": 12000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-609-6271", + "score": 4.1, + "review": 41, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1690, + "name": "한와담 판교점", + "address": "경기 성남시 분당구 판교역로 152 알파돔타워 1층 1-2~3호", + "average_price": 46076, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-622-7182", + "score": 3.6, + "review": 918, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1691, + "name": "판교수갈비", + "address": "경기 성남시 분당구 판교역로10번길 23 1층 101호", + "average_price": 19666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-8016-8792", + "score": 3.1, + "review": 8, + "duration_hours": "10:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1692, + "name": "흑화돗 판교본점", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 1층", + "average_price": 18100, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 22:00", + "phone_number": "031-601-7455", + "score": 3.9, + "review": 123, + "duration_hours": "17:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1693, + "name": "섬맛의공방 제주이야기 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 타워1동 1층 132~ 138호", + "average_price": 41461, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "070-4400-0919", + "score": 3.1, + "review": 34, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1694, + "name": "라무진 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 2층 236호", + "average_price": 24250, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 24:00", + "phone_number": null, + "score": 4.4, + "review": 23, + "duration_hours": "17:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1695, + "name": "명륜진사갈비성 성남서판교점", + "address": "경기 성남시 분당구 운중로178번길 1 1층", + "average_price": 0, + "caution": "예약불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-708-9288", + "score": 1.7, + "review": 28, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1696, + "name": "즐삼생고기", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 지하1층 119-4호", + "average_price": 18233, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 23:00", + "phone_number": null, + "score": 3.5, + "review": 6, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1697, + "name": "한마음정육식당 판교테크노벨리점", + "address": "경기 성남시 분당구 대왕판교로 660 A동", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-701-1000", + "score": 4.1, + "review": 78, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1698, + "name": "일로집 판교직영점", + "address": "경기 성남시 분당구 판교역로192번길 14-1 판교예미지 1층 105호", + "average_price": 10066, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 24:00", + "phone_number": "031-705-1215", + "score": 3.5, + "review": 46, + "duration_hours": "11:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1699, + "name": "허니피그", + "address": "경기 성남시 분당구 동판교로52번길 3-8 1층", + "average_price": 18500, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 22:00", + "phone_number": "031-8016-7373", + "score": 4.4, + "review": 42, + "duration_hours": "16:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1700, + "name": "양육점 판교점", + "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 2층", + "average_price": 34636, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-706-1624", + "score": 4.2, + "review": 543, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1701, + "name": "원조닭한마리칼국수전문", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하 1층 108호", + "average_price": 12400, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 20:50", + "phone_number": "031-709-0176", + "score": 0.0, + "review": 53, + "duration_hours": "10:30 ~ 20:50", + "category_id": 10 + }, + { + "restaurant_id": 1702, + "name": "팔각도 판교유스페이스점", + "address": "경기 성남시 분당구 대왕판교로 660 A동 2층 238호", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-724-2552", + "score": 4.6, + "review": 180, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1703, + "name": "춘천명물닭갈비", + "address": "경기 성남시 분당구 운중로138번길 18-5 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:30", + "phone_number": "010-2644-8481", + "score": 0.0, + "review": 81, + "duration_hours": "11:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1704, + "name": "원조장충왕족발 삼평점", + "address": "경기 성남시 분당구 대왕판교로644번길 65 휴먼시아아파트 상가 1층 101호", + "average_price": 37000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-702-3324", + "score": 3.3, + "review": 14, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1705, + "name": "판교집 서판교직영점", + "address": "경기 성남시 분당구 판교공원로2길 58 1층 101호", + "average_price": 28571, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "0507-1422-6650", + "score": 3.8, + "review": 103, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1706, + "name": "고화갈비살", + "address": "경기 성남시 분당구 판교역로192번길 16 1층 111,112,116,117호", + "average_price": 39300, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 23:00", + "phone_number": null, + "score": 3.5, + "review": 214, + "duration_hours": "16:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1707, + "name": "판교삼대곱창", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 1 A동 202호", + "average_price": 25666, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:20 ~ 23:00", + "phone_number": null, + "score": 3.6, + "review": 140, + "duration_hours": "11:20 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1708, + "name": "고대생막창", + "address": "경기 성남시 분당구 판교역로241번길 22 1층", + "average_price": 17600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 22:00", + "phone_number": "031-8016-1992", + "score": 3.4, + "review": 25, + "duration_hours": "16:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1709, + "name": "원조부안집 판교직영점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 214호", + "average_price": 11400, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "0507-1393-6469", + "score": 3.6, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1710, + "name": "오뚜기식당 판교점", + "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 108호", + "average_price": 9375, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 12:00 ~ 23:00", + "phone_number": "031-709-5882", + "score": 4.1, + "review": 46, + "duration_hours": "12:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1711, + "name": "무안회관 판교점", + "address": "경기 성남시 분당구 판교역로192번길 12", + "average_price": 31619, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:30", + "phone_number": null, + "score": 3.5, + "review": 42, + "duration_hours": "11:00 ~ 23:30", + "category_id": 10 + }, + { + "restaurant_id": 1712, + "name": "석기시대", + "address": "경기 성남시 분당구 운중로113번길 4-8", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:30", + "phone_number": "031-8016-7172", + "score": 3.4, + "review": 2, + "duration_hours": "11:00 ~ 22:30", + "category_id": 10 + }, + { + "restaurant_id": 1713, + "name": "본가광양불고기", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림 W-CITY 2층 227호", + "average_price": 32333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:30", + "phone_number": "031-628-8066", + "score": 3.8, + "review": 117, + "duration_hours": "11:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1714, + "name": "밥볶다 동판교점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스A동 지하1층 B115~B115-1호", + "average_price": 10000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:30 ~ 21:00", + "phone_number": "031-696-0317", + "score": 4.3, + "review": 33, + "duration_hours": "10:30 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 1715, + "name": "해가옥", + "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 1-78,1-79호", + "average_price": 40571, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "070-8866-5020", + "score": 4.3, + "review": 21, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1716, + "name": "압구정제주집 판교점", + "address": "경기 성남시 분당구 판교역로 138 1층", + "average_price": 12789, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 23:00", + "phone_number": "031-8039-5533", + "score": 2.4, + "review": 70, + "duration_hours": "11:30 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1717, + "name": "종로계림닭도리탕원조 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 2층 205호", + "average_price": 24600, + "caution": "포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": "031-724-2933", + "score": 4.1, + "review": 53, + "duration_hours": "11:00 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 1718, + "name": "얼씨92숯불갈비", + "address": "경기 성남시 분당구 판교역로192번길 16", + "average_price": 21375, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 24:00", + "phone_number": "031-8017-8044", + "score": 3.0, + "review": 0, + "duration_hours": "11:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1719, + "name": "새마을식당 판교점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스몰2 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 24:00", + "phone_number": "031-628-6694", + "score": 2.4, + "review": 16, + "duration_hours": "11:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1720, + "name": "미방 판교점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 B동 128호", + "average_price": 24076, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 23:00", + "phone_number": "031-739-8358", + "score": 4.3, + "review": 9, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1721, + "name": "우상화로구이 서판교점", + "address": "경기 성남시 분당구 판교공원로1길 57", + "average_price": 29333, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 22:00", + "phone_number": null, + "score": 4.7, + "review": 198, + "duration_hours": "12:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1722, + "name": "가장맛있는족발 판교테크노밸리점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 1층", + "average_price": 0, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 01:30", + "phone_number": "031-628-1008", + "score": 2.9, + "review": 8, + "duration_hours": "10:00 ~ 01:30", + "category_id": 10 + }, + { + "restaurant_id": 1723, + "name": "마포갈비집 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 2층 239호", + "average_price": 14090, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 22:00", + "phone_number": "031-628-1055", + "score": 2.3, + "review": 110, + "duration_hours": "17:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1724, + "name": "제주꾸숑", + "address": "경기 성남시 분당구 판교공원로2길 19 1층", + "average_price": 56166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "010-8900-3800", + "score": 3.9, + "review": 21, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1725, + "name": "두둑26", + "address": "경기 성남시 분당구 판교공원로2길 56 1층", + "average_price": 24500, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 22:00", + "phone_number": "031-707-2656", + "score": 3.5, + "review": 6, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1726, + "name": "판교한방삼계탕", + "address": "경기 성남시 분당구 판교역로 152 알파돔타워 지하1층 7~8호", + "average_price": 15333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:00", + "phone_number": null, + "score": 3.7, + "review": 29, + "duration_hours": "11:00 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 1727, + "name": "마왕족발 판교점", + "address": "경기 성남시 분당구 대왕판교로606번길 45", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:30", + "phone_number": "031-708-5892", + "score": 2.6, + "review": 191, + "duration_hours": "11:00 ~ 23:30", + "category_id": 10 + }, + { + "restaurant_id": 1728, + "name": "판교도마집 판교본점", + "address": "경기 성남시 분당구 판교역로192번길 14-1 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 18:00 ~ 24:00", + "phone_number": "031-703-1242", + "score": 3.0, + "review": 20, + "duration_hours": "18:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1729, + "name": "정숙성 판교점", + "address": "경기 성남시 분당구 판교역로192번길 22 판교 효성 해링턴타워 1층 102~103호", + "average_price": 21388, + "caution": "예약가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 23:00", + "phone_number": "0507-1474-2105", + "score": 3.3, + "review": 39, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1730, + "name": "북청집", + "address": "경기 성남시 분당구 판교역로 230", + "average_price": 15666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 24:00", + "phone_number": "031-698-2892", + "score": 4.7, + "review": 19, + "duration_hours": "11:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1731, + "name": "청계산갈비", + "address": "경기 성남시 분당구 판교공원로5길 34", + "average_price": 22000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금 13:00 ~ 22:00", + "phone_number": "031-701-1211", + "score": 4.1, + "review": 13, + "duration_hours": "13:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1732, + "name": "오투닭갈비&부대찌개 판교테크노벨리점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 223호", + "average_price": 13600, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-739-8689", + "score": 4.6, + "review": 33, + "duration_hours": "11:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1733, + "name": "행복한집", + "address": "경기 성남시 분당구 대왕판교로 670", + "average_price": 15400, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": null, + "score": 3.7, + "review": 8, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1734, + "name": "한스족발", + "address": "경기 성남시 분당구 운중로125번길 5 1층", + "average_price": 38000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 11:00 ~ 21:30", + "phone_number": "031-702-1007", + "score": 3.3, + "review": 8, + "duration_hours": "11:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1735, + "name": "우뜰 판교본점", + "address": "경기 성남시 분당구 대왕판교로606번길 10 라스트리트 1동 1층 105호", + "average_price": 40333, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-705-9252", + "score": 4.7, + "review": 13, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1736, + "name": "고반식당 서판교점", + "address": "경기 성남시 분당구 판교공원로5길 7 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "WIFI\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 23:00", + "phone_number": "031-602-0721", + "score": 5.0, + "review": 28, + "duration_hours": "16:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1737, + "name": "우화", + "address": "경기 성남시 분당구 동판교로177번길 25 2층 212, 213호", + "average_price": 27220, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-707-4775", + "score": 3.5, + "review": 136, + "duration_hours": "11:00 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 1738, + "name": "삼산회관 판교유스페이스점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 지하1층 B108호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 23:00", + "phone_number": "010-2638-2909", + "score": 2.8, + "review": 96, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1739, + "name": "꾸면돼지", + "address": "경기 성남시 분당구 동판교로 91 백현마을4단지 상가동 1층1110호", + "average_price": 14800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 23:00", + "phone_number": "031-703-1026", + "score": 4.8, + "review": 28, + "duration_hours": "16:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1740, + "name": "고기원칙 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 1층 140호", + "average_price": 20000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 23:00", + "phone_number": "031-724-2811", + "score": 3.7, + "review": 20, + "duration_hours": "16:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1741, + "name": "토평한우소곱창 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 A동 1층 121호", + "average_price": 22250, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 24:00", + "phone_number": null, + "score": 3.7, + "review": 11, + "duration_hours": "17:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1742, + "name": "봉추찜닭 판교테크노밸리점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2관 219호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 20:40", + "phone_number": "031-628-6981", + "score": 3.2, + "review": 12, + "duration_hours": "11:00 ~ 20:40", + "category_id": 10 + }, + { + "restaurant_id": 1743, + "name": "토담정육식당", + "address": "경기 성남시 분당구 판교역로10번길 26 1층", + "average_price": 17408, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 23:00", + "phone_number": null, + "score": 0.0, + "review": 7, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1744, + "name": "육회한김스지 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 123호", + "average_price": 32666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 01:00", + "phone_number": "031-724-2580", + "score": 3.0, + "review": 19, + "duration_hours": "17:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 1745, + "name": "데블스램앤펍 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 판교테크노벨리 유스페이스 107~8호", + "average_price": 16166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 01:00", + "phone_number": null, + "score": 2.9, + "review": 0, + "duration_hours": "10:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 1746, + "name": "원할머니보쌈족발 서판교배달점", + "address": "경기 성남시 분당구 판교공원로5길 3 1층 103호", + "average_price": 36000, + "caution": "배달가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 24:00", + "phone_number": "031-703-1330", + "score": 3.0, + "review": 10, + "duration_hours": "11:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1747, + "name": "불고기온소반 판교본점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 B105,B105-1호", + "average_price": 11000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,금,일 11:00 ~ 20:30", + "phone_number": "0502-5551-4977", + "score": 4.3, + "review": 3, + "duration_hours": "11:00 ~ 20:30", + "category_id": 10 + }, + { + "restaurant_id": 1748, + "name": "예다온", + "address": "경기 성남시 분당구 운중로126번길 10", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:30", + "phone_number": "031-702-9222", + "score": 3.5, + "review": 38, + "duration_hours": "11:30 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1749, + "name": "통큰곱창 분당판교직영점", + "address": "경기 성남시 분당구 동판교로 91 백현마을4단지 상가동 B105호", + "average_price": 22000, + "caution": "배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 16:00 ~ 24:00", + "phone_number": "070-4647-0678", + "score": 5.0, + "review": 46, + "duration_hours": "16:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1750, + "name": "이치류 아브뉴프랑판교점", + "address": "경기 성남시 분당구 동판교로177번길 25 2층 202호", + "average_price": 28800, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 22:00", + "phone_number": "031-707-0650", + "score": 4.7, + "review": 1, + "duration_hours": "12:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1751, + "name": "규정공 더판교", + "address": "경기 성남시 분당구 판교로227번길 6 브릿지타워 1층 110호", + "average_price": 52500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 22:00", + "phone_number": "031-702-1661", + "score": 4.0, + "review": 4, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1752, + "name": "방이옥 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 1동 2층 209-4호", + "average_price": 50500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 1.0, + "review": 21, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1753, + "name": "기대만족 분당판교점", + "address": "경기 성남시 분당구 동판교로 155 A상가동 1층 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "0507-1334-8464", + "score": 4.2, + "review": 1, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1754, + "name": "닭갈비야", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 2동 B114호", + "average_price": 14000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:00", + "phone_number": "031-701-3666", + "score": 3.7, + "review": 15, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1755, + "name": "식껍 서판교점", + "address": "경기 성남시 분당구 운중로126번길 12 1층", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": null, + "score": 3.1, + "review": 38, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1756, + "name": "구구족 분당판교점", + "address": "경기 성남시 분당구 동판교로 91 백현마을4단지 상가 지하 1층 108호", + "average_price": 23900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-703-9982", + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1757, + "name": "소도둑 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 163호", + "average_price": 15480, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": null, + "score": 3.0, + "review": 0, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1758, + "name": "돼지야미안해", + "address": "경기 성남시 분당구 대왕판교로606번길 45", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 21:00 ~ 05:00", + "phone_number": "0507-2084-1676", + "score": 5.0, + "review": 0, + "duration_hours": "21:00 ~ 05:00", + "category_id": 10 + }, + { + "restaurant_id": 1759, + "name": "양문 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 1층", + "average_price": 18888, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 22:00", + "phone_number": null, + "score": 5.0, + "review": 61, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1760, + "name": "판교화로", + "address": "경기 성남시 분당구 운중로125번길 4-5 1층", + "average_price": 18833, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 22:00", + "phone_number": null, + "score": 0.0, + "review": 7, + "duration_hours": "16:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1761, + "name": "꼬들집", + "address": "경기 성남시 분당구 판교역로 231 H스퀘어S동 2층", + "average_price": 14000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-789-3789", + "score": 1.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1762, + "name": "됐소 판교본점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 지하1층 B101호", + "average_price": 35750, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-628-6092", + "score": 0.0, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1763, + "name": "수작", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 지하1층 B115호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:30", + "phone_number": null, + "score": 3.0, + "review": 214, + "duration_hours": "11:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1764, + "name": "신사부대찌개&품격삼겹살", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 1A동 205호", + "average_price": 23428, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 22:00", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1765, + "name": "마포갈비집 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 239호", + "average_price": 14090, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 22:00", + "phone_number": null, + "score": 0.0, + "review": 45, + "duration_hours": "17:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1766, + "name": "우리가정육상회 성남판교점", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 B동 2층 213호", + "average_price": 7812, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:30", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "11:30 ~ 22:30", + "category_id": 10 + }, + { + "restaurant_id": 1767, + "name": "김인성의 토평한우소곱창", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-724-2589", + "score": 4.5, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1768, + "name": "단푸드", + "address": "경기 성남시 분당구 판교역로 136 힐스테이트판교역 판매시설동 지2층 비 2028호", + "average_price": 30000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 09:00 ~ 18:00", + "phone_number": "070-7972-1525", + "score": 0.0, + "review": 0, + "duration_hours": "09:00 ~ 18:00", + "category_id": 10 + }, + { + "restaurant_id": 1769, + "name": "둥지", + "address": "경기 성남시 분당구 판교역로192번길 14-1", + "average_price": 19283, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-8016-5103", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1770, + "name": "꿀돼지두루치기", + "address": "경기 성남시 분당구 판교로255번길 9-22 판교 우림 W-CITY 지하1층", + "average_price": 16050, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.8, + "review": 10, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1771, + "name": "막창막장", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 234호", + "average_price": 25142, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 23:00", + "phone_number": null, + "score": 5.0, + "review": 17, + "duration_hours": "17:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1772, + "name": "도시하누판교", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-4077-1556", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1773, + "name": "편장군족발 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-1013", + "score": 3.0, + "review": 3, + "duration_hours": "10:30 ~ 20:00", + "category_id": 10 + }, + { + "restaurant_id": 1774, + "name": "신토제주왕족발", + "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 202호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1775, + "name": "프랑킨바베큐치킨 동판교점", + "address": "경기 성남시 분당구 동판교로52번길 21-4", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 14:00 ~ 17:30", + "phone_number": "0507-2084-1641", + "score": 0.0, + "review": 0, + "duration_hours": "14:00 ~ 17:30", + "category_id": 10 + }, + { + "restaurant_id": 1776, + "name": "별빛뚝닭 판교본점", + "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 1층 109,110호", + "average_price": 11600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:00", + "phone_number": "031-698-3303", + "score": 2.0, + "review": 66, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1777, + "name": "낭만족발", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 2동 107호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-818-9943", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1778, + "name": "육촌 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 120호", + "average_price": 15000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 23:30", + "phone_number": "031-628-4492", + "score": 0.0, + "review": 1, + "duration_hours": "17:00 ~ 23:30", + "category_id": 10 + }, + { + "restaurant_id": 1779, + "name": "약선닭한마리", + "address": "경기 성남시 분당구 대왕판교로606번길 58 푸르지오월드마크 1104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1780, + "name": "38보쌈&족발", + "address": "경기 성남시 분당구 판교역로 230", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-8237-1087", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1781, + "name": "몽촌닭갈비 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 본관 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-1021", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1782, + "name": "일만족발 서판교점", + "address": "경기 성남시 분당구 운중로138번길 36 1층 103호", + "average_price": 28100, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-702-0993", + "score": 2.3, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1783, + "name": "강씨돌판오리", + "address": "경기 성남시 분당구 대왕판교로712번길 22 판교테크노밸리", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1784, + "name": "편장군 족발", + "address": "경기 성남시 분당구 판교역로146번길 20", + "average_price": 21000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1785, + "name": "닭갈비야", + "address": "경기 성남시 분당구 판교역로 230 삼환하이팩스 B동 208-2~3호", + "average_price": 14000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차\n휠체어사용\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1786, + "name": "양대포 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 117호", + "average_price": 9920, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 24:00", + "phone_number": null, + "score": 1.0, + "review": 0, + "duration_hours": "16:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1787, + "name": "고깃집두마리", + "address": "경기 성남시 분당구 판교역로 230", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1788, + "name": "어니스트키친 고깃간", + "address": "경기 성남시 분당구 판교로255번길 9-22", + "average_price": 13000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-8892", + "score": 4.5, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1789, + "name": "1등급곱창", + "address": "경기 성남시 분당구 대왕판교로 670", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1790, + "name": "족발의나라", + "address": "경기 성남시 분당구 대왕판교로 670", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1791, + "name": "쭈꾸미온반", + "address": "경기 성남시 분당구 동판교로 52", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,금,토", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,금,토 10:30 ~ 21:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "10:30 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 1792, + "name": "마약생고기 판교점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 205호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.5, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1793, + "name": "미소한우등심", + "address": "경기 성남시 분당구 대왕판교로 660 1B동 1층", + "average_price": 9700, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1794, + "name": "수숯불직화꼬치 판교지점", + "address": "경기 성남시 분당구 운중로138번길 28-7", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1795, + "name": "돌판제주흑돼지", + "address": "경기 성남시 분당구 판교로255번길 9-22", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-428-7837", + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1796, + "name": "나이스투밋", + "address": "경기 성남시 분당구 판교로255번길 9-22 우림WCITY 2층 227호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1797, + "name": "참숯불구이족발", + "address": "경기 성남시 분당구 동판교로 226", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 1.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1798, + "name": "다이노소어레그 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1799, + "name": "돌구이돌판오겹살", + "address": "경기 성남시 분당구 판교로255번길 9-22", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-628-7837", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1800, + "name": "육백", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스몰 지하1층 128-2호", + "average_price": 38888, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1801, + "name": "서현궁 백현점", + "address": "경기 성남시 분당구 판교백현로 63", + "average_price": 34800, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-708-1141", + "score": 3.9, + "review": 50, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1802, + "name": "하누소 더힐", + "address": "경기 성남시 분당구 판교백현로 65", + "average_price": 47400, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-709-9980", + "score": 2.0, + "review": 2, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1803, + "name": "청계산담백미", + "address": "경기 성남시 수정구 달래내로 22 1-2층", + "average_price": 23952, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-707-0058", + "score": 4.3, + "review": 38, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1804, + "name": "홍박사생고기 판교점", + "address": "경기 성남시 수정구 달래내로 14", + "average_price": 28300, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:20 ~ 21:30", + "phone_number": "031-701-9700", + "score": 3.8, + "review": 20, + "duration_hours": "11:20 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1805, + "name": "도월", + "address": "경기 성남시 수정구 달래내로28번길 6", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 22:00", + "phone_number": null, + "score": 4.3, + "review": 3, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1806, + "name": "백현삼계탕", + "address": "경기 성남시 분당구 판교백현로 25 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 20:30", + "phone_number": null, + "score": 1.0, + "review": 0, + "duration_hours": "11:00 ~ 20:30", + "category_id": 10 + }, + { + "restaurant_id": 1807, + "name": "청계산담백미 가든", + "address": "경기 성남시 수정구 달래내로28번길 8 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1808, + "name": "돈우모리", + "address": "경기 성남시 수정구 창업로 42 판교 제2테크노밸리 경기 기업성장센터 지하1층 B120, 121호", + "average_price": 23444, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": null, + "score": 4.5, + "review": 11, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1809, + "name": "백경한우 판교본점", + "address": "경기 성남시 수정구 창업로 42 경기기업선장센터 지하 1층 B117호", + "average_price": 40600, + "caution": "유의사항 정보 없음", + "convenience": "WIFI", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "0507-1384-0533", + "score": 0.0, + "review": 804, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1810, + "name": "삼산회관 판교파미어스몰점", + "address": "경기 성남시 수정구 창업로 17 판교제2테크노밸리 파미어스몰 2층", + "average_price": 0, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:00", + "phone_number": "070-4888-0691", + "score": 4.2, + "review": 101, + "duration_hours": "11:00 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 1811, + "name": "오투닭갈비&부대찌개 판교아이스퀘어점", + "address": "경기 성남시 수정구 창업로 17 판교아이스퀘어 F동 201호", + "average_price": 13600, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-755-8625", + "score": 5.0, + "review": 22, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1812, + "name": "빤닭빤닭 판교점", + "address": "경기 성남시 수정구 창업로 18 판교제2테크노밸리 C1동 1층 117호", + "average_price": 22333, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:00", + "phone_number": "031-751-9029", + "score": 2.3, + "review": 51, + "duration_hours": "10:30 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 1813, + "name": "서현실비", + "address": "경기 성남시 분당구 황새울로311번길 14 106~109호", + "average_price": 29600, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 23:00", + "phone_number": "031-8016-0624", + "score": 3.8, + "review": 239, + "duration_hours": "11:30 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1814, + "name": "정선한우", + "address": "경기 성남시 분당구 하오개로 357 1층", + "average_price": 63555, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-8017-8014", + "score": 3.7, + "review": 40, + "duration_hours": "11:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1815, + "name": "육화몽 서현점", + "address": "경기 성남시 분당구 황새울로335번길 5 엔타운빌딩 1층 육화몽 서현점", + "average_price": 30950, + "caution": "예약가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 23:00", + "phone_number": "031-696-1292", + "score": 3.7, + "review": 249, + "duration_hours": "11:30 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1816, + "name": "윤밀원", + "address": "경기 성남시 분당구 백현로 154 1층", + "average_price": 20625, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:30", + "phone_number": "031-714-8388", + "score": 4.2, + "review": 877, + "duration_hours": "11:30 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1817, + "name": "능이향기", + "address": "경기 성남시 분당구 하오개로 353", + "average_price": 24000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-8017-9092", + "score": 4.3, + "review": 74, + "duration_hours": "11:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1818, + "name": "한점의희열 수내돈", + "address": "경기 성남시 분당구 백현로101번길 12 세인프라자 2층 204호", + "average_price": 18666, + "caution": "예약가능, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 23:00", + "phone_number": "031-716-0692", + "score": 4.6, + "review": 51, + "duration_hours": "11:30 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1819, + "name": "교대이층집 서현점", + "address": "경기 성남시 분당구 분당로53번길 9 에이원프라자 2층 201~203호", + "average_price": 14411, + "caution": "예약가능", + "convenience": "WIFI\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:30", + "phone_number": "031-702-2222", + "score": 3.9, + "review": 41, + "duration_hours": "11:00 ~ 22:30", + "category_id": 10 + }, + { + "restaurant_id": 1820, + "name": "솔밭 삼겹살선지해장국설렁탕", + "address": "경기 성남시 분당구 황새울로 315", + "average_price": 11000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 00:00 ~ 24:00", + "phone_number": "031-707-0715", + "score": 2.9, + "review": 72, + "duration_hours": "00:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1821, + "name": "정글바베큐", + "address": "경기 성남시 수정구 달래내로207번길 44-3", + "average_price": 16714, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 18:00 ~ 22:00", + "phone_number": "02-504-4220", + "score": 4.1, + "review": 46, + "duration_hours": "18:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1822, + "name": "달구벌뭉티기", + "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 2층", + "average_price": 26888, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-709-9257", + "score": 4.0, + "review": 44, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1823, + "name": "우대포 분당직영점", + "address": "경기 성남시 분당구 황새울로335번길 5 앤타운빌딩 1층 106-1호", + "average_price": 12923, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:30", + "phone_number": "0507-1335-6139", + "score": 4.4, + "review": 0, + "duration_hours": "11:30 ~ 22:30", + "category_id": 10 + }, + { + "restaurant_id": 1824, + "name": "제주몬트락 분당수내점", + "address": "경기 성남시 분당구 황새울로258번길 23 분당수내동그라테아 1층 101호", + "average_price": 18833, + "caution": "예약가능, 포장가능", + "convenience": "WIFI", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 22:30", + "phone_number": "031-714-7122", + "score": 4.1, + "review": 410, + "duration_hours": "11:30 ~ 22:30", + "category_id": 10 + }, + { + "restaurant_id": 1825, + "name": "마루돈가", + "address": "경기 성남시 분당구 황새울로258번길 10-9 1층", + "average_price": 13600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 23:00", + "phone_number": "031-715-3692", + "score": 4.5, + "review": 143, + "duration_hours": "17:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1826, + "name": "개성전통삼계탕 분당본점", + "address": "경기 성남시 분당구 백현로 97 1층", + "average_price": 17000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-716-3454", + "score": 3.4, + "review": 30, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1827, + "name": "서현방짜 본점", + "address": "경기 성남시 분당구 황새울로 315 1층", + "average_price": 20200, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:20", + "phone_number": "031-707-5992", + "score": 2.9, + "review": 16, + "duration_hours": "11:00 ~ 22:20", + "category_id": 10 + }, + { + "restaurant_id": 1828, + "name": "미방 정자점", + "address": "경기 성남시 분당구 느티로 16", + "average_price": 29833, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-711-7787", + "score": 4.0, + "review": 105, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1829, + "name": "삼다옥1947 수내점", + "address": "경기 성남시 분당구 황새울로258번길 28 한산이씨좌랑공파종중사옥 1층", + "average_price": 33833, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 23:00", + "phone_number": "031-717-3123", + "score": 3.3, + "review": 45, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1830, + "name": "하누비노 서현점", + "address": "경기 성남시 분당구 황새울로 314", + "average_price": 57000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-709-2192", + "score": 4.4, + "review": 82, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1831, + "name": "소통", + "address": "경기 성남시 분당구 황새울로311번길 14 리더스빌딩 1층 104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 23:00", + "phone_number": "031-705-4469", + "score": 4.2, + "review": 55, + "duration_hours": "16:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1832, + "name": "오발탄 분당서현점", + "address": "경기 성남시 분당구 서현로180번길 29 2층", + "average_price": 48833, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:50", + "phone_number": "031-704-6527", + "score": 4.1, + "review": 49, + "duration_hours": "11:30 ~ 21:50", + "category_id": 10 + }, + { + "restaurant_id": 1833, + "name": "양촌리 분당점", + "address": "경기 성남시 분당구 황새울로330번길 20 2-3층", + "average_price": 17000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 00:00 ~ 24:00", + "phone_number": "031-8017-8592", + "score": 2.2, + "review": 104, + "duration_hours": "00:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1834, + "name": "삼김화로구이", + "address": "경기 성남시 분당구 느티로 16 젤존타워1 2층 207,208호", + "average_price": 31333, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-711-8592", + "score": 4.6, + "review": 73, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1835, + "name": "교대거북곱창", + "address": "경기 성남시 분당구 황새울로258번길 32", + "average_price": 23400, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 23:00", + "phone_number": "031-713-9884", + "score": 3.9, + "review": 18, + "duration_hours": "17:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1836, + "name": "예우", + "address": "경기 성남시 분당구 수내로 39 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "031-607-9220", + "score": 4.5, + "review": 591, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1837, + "name": "대현약수터옻닭전문점", + "address": "경기 성남시 수정구 사송로77번길 49", + "average_price": 50000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:00", + "phone_number": "031-721-1558", + "score": 4.7, + "review": 2, + "duration_hours": "10:00 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 1838, + "name": "참착한족발", + "address": "경기 성남시 분당구 황새울로342번길 11 금호리빙스텔 2층 203호", + "average_price": 31600, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 23:30", + "phone_number": "031-709-6669", + "score": 4.6, + "review": 37, + "duration_hours": "16:00 ~ 23:30", + "category_id": 10 + }, + { + "restaurant_id": 1839, + "name": "수원왕갈비소떼마을", + "address": "경기 성남시 분당구 대왕판교로 287", + "average_price": 18846, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 00:00 ~ 24:00", + "phone_number": "031-786-0066", + "score": 1.9, + "review": 11, + "duration_hours": "00:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1840, + "name": "우경한우정육식당", + "address": "경기 성남시 분당구 성남대로779번길 22", + "average_price": 12166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-709-5222", + "score": 4.8, + "review": 61, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1841, + "name": "보조락", + "address": "경기 성남시 분당구 서현로210번길 10 다두프라자 2층 208호", + "average_price": 57333, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-709-7379", + "score": 0.0, + "review": 17, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1842, + "name": "굴다리집", + "address": "경기 성남시 분당구 서현로180번길 29 1층", + "average_price": 13300, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 00:00 ~ 24:00", + "phone_number": "031-707-2426", + "score": 4.1, + "review": 31, + "duration_hours": "00:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1843, + "name": "왕창족발", + "address": "경기 성남시 분당구 수내로46번길 11 대덕글로리빌딩 1층 114,115호", + "average_price": 13166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 24:00", + "phone_number": "031-715-3666", + "score": 3.6, + "review": 40, + "duration_hours": "16:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1844, + "name": "청기와타운 서현점", + "address": "경기 성남시 분당구 황새울로342번길 9 서울문고 2층", + "average_price": 19023, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "0507-1349-9736", + "score": 3.4, + "review": 0, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1845, + "name": "영양센타", + "address": "경기 성남시 분당구 분당로53번길 9 1층", + "average_price": 14714, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-707-9991", + "score": 3.6, + "review": 32, + "duration_hours": "10:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1846, + "name": "정통춘천닭갈비", + "address": "경기 성남시 분당구 내정로119번길 15 1층", + "average_price": 14000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-718-2254", + "score": 3.6, + "review": 169, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1847, + "name": "수내닭꼬치 수내본점", + "address": "경기 성남시 분당구 황새울로258번길 43 수내프라자 1층 110~111호", + "average_price": 4000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 24:00", + "phone_number": "031-717-1255", + "score": 2.5, + "review": 10, + "duration_hours": "17:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1848, + "name": "맛있는한우", + "address": "경기 성남시 수정구 여수대로 9 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-754-0113", + "score": 3.0, + "review": 26, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1849, + "name": "그리던고기 서현점", + "address": "경기 성남시 분당구 황새울로 325 서현하우비 2층 206호, 207호", + "average_price": 16666, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 23:00", + "phone_number": "031-708-9222", + "score": 4.5, + "review": 144, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1850, + "name": "해방삼겹", + "address": "경기 성남시 분당구 백현로101번길 13 2층", + "average_price": 10920, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": null, + "score": 5.0, + "review": 9, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1851, + "name": "종로영풍갈비", + "address": "경기 성남시 분당구 황새울로258번길 10-9 1층", + "average_price": 12750, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:30", + "phone_number": "031-713-8082", + "score": 4.1, + "review": 49, + "duration_hours": "11:00 ~ 23:30", + "category_id": 10 + }, + { + "restaurant_id": 1852, + "name": "옛집", + "address": "경기 성남시 분당구 판교로 437 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 22:00", + "phone_number": "031-704-1026", + "score": 4.6, + "review": 37, + "duration_hours": "16:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1853, + "name": "청년한우투플 본점", + "address": "경기 성남시 수정구 사송로 48", + "average_price": 11666, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-8023-9266", + "score": 5.0, + "review": 100, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1854, + "name": "마장동 생고기 서현본점", + "address": "경기 성남시 분당구 황새울로 325 1층 103~104호", + "average_price": 24719, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:30", + "phone_number": "031-707-3363", + "score": 4.0, + "review": 257, + "duration_hours": "11:30 ~ 22:30", + "category_id": 10 + }, + { + "restaurant_id": 1855, + "name": "하남돼지집 분당수내점", + "address": "경기 성남시 분당구 황새울로258번길 32 1층", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 23:00", + "phone_number": "031-726-3930", + "score": 3.3, + "review": 19, + "duration_hours": "16:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1856, + "name": "모꼬지", + "address": "경기 성남시 분당구 황새울로311번길 14 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 11:40 ~ 22:00", + "phone_number": "031-704-7016", + "score": 3.8, + "review": 26, + "duration_hours": "11:40 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1857, + "name": "판교집 수내직영점", + "address": "경기 성남시 분당구 백현로101번길 16 대덕프라자 1층 102호", + "average_price": 30117, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "0507-1343-6110", + "score": 4.5, + "review": 378, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1858, + "name": "생활한우", + "address": "경기 성남시 분당구 백현로 97 다운타운상가 2층 206호", + "average_price": 38666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": null, + "score": 3.1, + "review": 12, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1859, + "name": "됐소 서현점", + "address": "경기 성남시 분당구 중앙공원로39번길 49 지엔느빌딩 지하1층 B102호", + "average_price": 40142, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-705-5676", + "score": 3.2, + "review": 177, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1860, + "name": "마당쇠곱창", + "address": "경기 성남시 분당구 분당로53번길 15 207,208호", + "average_price": 25166, + "caution": "예약가능, 배달불가", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:00", + "phone_number": "031-703-9979", + "score": 4.2, + "review": 256, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1861, + "name": "열문집", + "address": "경기 성남시 분당구 서현로180번길 19 비전월드 1층 102호", + "average_price": 35500, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "010-9142-5402", + "score": 3.5, + "review": 277, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1862, + "name": "도아들", + "address": "경기 성남시 분당구 분당로53번길 15 산호트윈스 1층 116~119호", + "average_price": 15928, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-705-2024", + "score": 4.6, + "review": 240, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1863, + "name": "하남돼지집 분당서현점", + "address": "경기 성남시 분당구 분당로53번길 12 서현나산플라자 1층 105호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 24:00", + "phone_number": "031-707-3930", + "score": 4.0, + "review": 24, + "duration_hours": "17:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1864, + "name": "엉터리숯불구이", + "address": "경기 성남시 분당구 분당로53번길 15 산호트윈스 2층 202호", + "average_price": 14000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 22:00", + "phone_number": "031-705-1366", + "score": 4.6, + "review": 10, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1865, + "name": "소갈비살맛소", + "address": "경기 성남시 분당구 서현로180번길 29 1층", + "average_price": 33800, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-701-5849", + "score": 4.3, + "review": 13, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1866, + "name": "수내족발 분당수내역점", + "address": "경기 성남시 분당구 황새울로258번길 10-9 1층", + "average_price": 33800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 23:00", + "phone_number": "031-712-9212", + "score": 4.6, + "review": 12, + "duration_hours": "14:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1867, + "name": "세광양대창 분당수내점", + "address": "경기 성남시 분당구 황새울로258번길 32 2층 203~204호", + "average_price": 24376, + "caution": "예약가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 24:00", + "phone_number": "031-714-5557", + "score": 4.6, + "review": 124, + "duration_hours": "16:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1868, + "name": "새마을식당 분당서현점", + "address": "경기 성남시 분당구 서현로180번길 13 서현프라자 1층", + "average_price": 0, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 01:00", + "phone_number": "031-703-2888", + "score": 3.0, + "review": 6, + "duration_hours": "11:30 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 1869, + "name": "삼족", + "address": "경기 성남시 분당구 서현로 204 LG에클라트2 2층 201호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 23:00", + "phone_number": "031-708-9333", + "score": 3.7, + "review": 103, + "duration_hours": "15:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1870, + "name": "김청자매운갈비찜 서현점", + "address": "경기 성남시 분당구 황새울로330번길 16 천지오피스텔 2층 201, 202호", + "average_price": 8780, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 22:00", + "phone_number": "031-701-9372", + "score": 4.6, + "review": 176, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1871, + "name": "라무진 수내점", + "address": "경기 성남시 분당구 황새울로258번길 32 1층", + "average_price": 27666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 24:00", + "phone_number": "031-711-5501", + "score": 3.9, + "review": 17, + "duration_hours": "17:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1872, + "name": "봉추찜닭 분당수내점", + "address": "경기 성남시 분당구 백현로101번길 13 월드프라자 201호", + "average_price": 0, + "caution": "배달가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-726-9381", + "score": 3.1, + "review": 11, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1873, + "name": "국민한우집", + "address": "경기 성남시 분당구 하오개로357번길 4", + "average_price": 18500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:00 ~ 21:30", + "phone_number": "031-705-1592", + "score": 4.9, + "review": 260, + "duration_hours": "11:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1874, + "name": "일미닭갈비파전", + "address": "경기 성남시 분당구 분당로53번길 19 피아자코코빌딩 2층 207호", + "average_price": 11175, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-709-1242", + "score": 0.0, + "review": 10, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1875, + "name": "명륜진사갈비 성남정자점", + "address": "경기 성남시 분당구 백현로 148 신흥조합상가 1층 101호", + "average_price": 8337, + "caution": "예약가능, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 22:00", + "phone_number": "031-712-9592", + "score": 2.7, + "review": 158, + "duration_hours": "12:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1876, + "name": "우정가 수내역점", + "address": "경기 성남시 분당구 황새울로240번길 10-3 2층", + "average_price": 51100, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-711-7965", + "score": 5.0, + "review": 298, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1877, + "name": "최가네숯불구이", + "address": "경기 성남시 분당구 황새울로360번길 22", + "average_price": 15600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 16:00 ~ 23:00", + "phone_number": "031-709-6824", + "score": 4.4, + "review": 93, + "duration_hours": "16:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1878, + "name": "산아래염소이야기 판교점", + "address": "경기 성남시 수정구 여수대로56번길 1", + "average_price": 35500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-758-8111", + "score": 5.0, + "review": 62, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1879, + "name": "1953연남서서갈비 정자직영점", + "address": "경기 성남시 분당구 백현로150번길 7 1층", + "average_price": 13333, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 22:00", + "phone_number": "031-719-1953", + "score": 3.7, + "review": 147, + "duration_hours": "16:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1880, + "name": "방배소곱창", + "address": "경기 성남시 분당구 하오개로 366-3", + "average_price": 20090, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-709-0400", + "score": 4.3, + "review": 150, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1881, + "name": "돈멜", + "address": "경기 성남시 분당구 느티로63번길 6 1층", + "average_price": 27400, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n주차", + "expanded_days": "화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "화~금 17:00 ~ 23:00", + "phone_number": "031-718-0092", + "score": 4.1, + "review": 302, + "duration_hours": "17:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1882, + "name": "오리랑돼지랑", + "address": "경기 성남시 분당구 황새울로258번길 28 한도회관빌딩 3층", + "average_price": 35600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:00", + "phone_number": "031-711-5391", + "score": 4.3, + "review": 11, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1883, + "name": "수내곱창", + "address": "경기 성남시 분당구 수내로46번길 11 대덕글로리 110호", + "average_price": 27714, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "수", + "is_deleted": "\u0000", + "operating_hour": "수~수 11:20 ~ 22:45", + "phone_number": "031-717-9210", + "score": 4.9, + "review": 107, + "duration_hours": "11:20 ~ 22:45", + "category_id": 10 + }, + { + "restaurant_id": 1884, + "name": "조선부뚜막 서현점", + "address": "경기 성남시 분당구 황새울로 337 웰빙프라자 1층 101,102호", + "average_price": 57933, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": null, + "score": 2.2, + "review": 49, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1885, + "name": "판교돈 서현점", + "address": "경기 성남시 분당구 황새울로 325 1층", + "average_price": 13857, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 00:30", + "phone_number": "031-706-1912", + "score": 3.8, + "review": 19, + "duration_hours": "16:00 ~ 00:30", + "category_id": 10 + }, + { + "restaurant_id": 1886, + "name": "강산", + "address": "경기 성남시 분당구 판교로 442 1층", + "average_price": 6800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-706-1889", + "score": 4.6, + "review": 9, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1887, + "name": "춘천본점닭갈비", + "address": "경기 성남시 분당구 서현로210번길 14 유성트윈프라자2차 1층 106,116~120호", + "average_price": 13000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-704-9686", + "score": 0.0, + "review": 54, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1888, + "name": "일로집", + "address": "경기 성남시 분당구 느티로 16 젤존타워1차 1층", + "average_price": 17000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 02:00", + "phone_number": "031-608-1515", + "score": 4.5, + "review": 15, + "duration_hours": "16:00 ~ 02:00", + "category_id": 10 + }, + { + "restaurant_id": 1889, + "name": "서현닭한마리칼국수", + "address": "경기 성남시 분당구 황새울로360번길 28 은성프라자 5층 501호", + "average_price": 43000, + "caution": "예약불가, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-703-3500", + "score": 4.1, + "review": 12, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1890, + "name": "산골밥상족발", + "address": "경기 성남시 분당구 백현로101번길 16 2층", + "average_price": 34666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 23:00", + "phone_number": "031-719-5834", + "score": 4.3, + "review": 10, + "duration_hours": "10:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1891, + "name": "고봉삼계탕 분당점", + "address": "경기 성남시 분당구 황새울로360번길 35 서현현대프라자 1층 104, 107호", + "average_price": 19833, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-701-7800", + "score": 4.5, + "review": 43, + "duration_hours": "11:00 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 1892, + "name": "제주클래식 분당점", + "address": "경기 성남시 분당구 정자일로 240 월드프라자 102호, 103호", + "average_price": 34022, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "031-726-4295", + "score": 3.6, + "review": 0, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1893, + "name": "라무진 서현역점", + "address": "경기 성남시 분당구 서현로 192 야베스밸리 1층 105호", + "average_price": 23200, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 23:00", + "phone_number": "031-701-6544", + "score": 4.5, + "review": 146, + "duration_hours": "17:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1894, + "name": "육블럭", + "address": "경기 성남시 분당구 정자일로213번길 10 성원상떼뷰리젠시 101동 105호", + "average_price": 42000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-715-6692", + "score": 4.4, + "review": 19, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1895, + "name": "천하제일족발얼큰등심칼국수", + "address": "경기 성남시 분당구 황새울로258번길 32", + "average_price": 7480, + "caution": "예약가능, 포장가능", + "convenience": "WIFI", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 24:00", + "phone_number": null, + "score": 4.0, + "review": 0, + "duration_hours": "11:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1896, + "name": "정든닭발 서현점", + "address": "경기 성남시 분당구 서현로210번길 16 유성트윈스 동관 2층 208호", + "average_price": 13200, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:30 ~ 02:00", + "phone_number": "031-709-0092", + "score": 3.8, + "review": 48, + "duration_hours": "16:30 ~ 02:00", + "category_id": 10 + }, + { + "restaurant_id": 1897, + "name": "인사동", + "address": "경기 성남시 분당구 황새울로200번길 26 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 02:00", + "phone_number": null, + "score": 3.8, + "review": 9, + "duration_hours": "11:00 ~ 02:00", + "category_id": 10 + }, + { + "restaurant_id": 1898, + "name": "항아리보쌈 분당정자점", + "address": "경기 성남시 분당구 내정로119번길 11 1층", + "average_price": 35571, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:30", + "phone_number": "031-712-4119", + "score": 4.5, + "review": 75, + "duration_hours": "11:00 ~ 22:30", + "category_id": 10 + }, + { + "restaurant_id": 1899, + "name": "248갈매기 서현점", + "address": "경기 성남시 분당구 황새울로360번길 12 2층", + "average_price": 24800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 02:00", + "phone_number": "031-704-0045", + "score": 3.2, + "review": 40, + "duration_hours": "11:30 ~ 02:00", + "category_id": 10 + }, + { + "restaurant_id": 1900, + "name": "먹보집", + "address": "경기 성남시 분당구 황새울로258번길 32 2층", + "average_price": 11000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 21:30", + "phone_number": "031-712-8253", + "score": 4.0, + "review": 8, + "duration_hours": "11:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1901, + "name": "석아저씨족발", + "address": "경기 성남시 분당구 백현로101번길 12 1층", + "average_price": 25228, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 24:00", + "phone_number": "031-715-2399", + "score": 5.0, + "review": 9, + "duration_hours": "12:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1902, + "name": "고기를굽다", + "address": "경기 성남시 분당구 황새울로258번길 36 광진프라자 2층 201호", + "average_price": 16000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 23:00", + "phone_number": "031-716-1960", + "score": 5.0, + "review": 178, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1903, + "name": "식껍 수내점", + "address": "경기 성남시 분당구 황새울로258번길 10-7 가나프라자 106호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 01:00", + "phone_number": null, + "score": 4.0, + "review": 187, + "duration_hours": "15:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 1904, + "name": "양푼애등갈비 분당본점", + "address": "경기 성남시 분당구 서현로 184 엘지분당에클라트 1차 2층 207호", + "average_price": 10066, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "0507-1404-8847", + "score": 3.2, + "review": 185, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1905, + "name": "싸움의고수 분당수내점", + "address": "경기 성남시 분당구 백현로101번길 12 세인프라자 1층 110호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-712-0558", + "score": 3.8, + "review": 8, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1906, + "name": "한소헌", + "address": "경기 성남시 분당구 성남대로331번길 3-3 젤존타워3 2층 206호", + "average_price": 26800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-711-9220", + "score": 4.4, + "review": 883, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1907, + "name": "산마루 양푼이닭도리탕", + "address": "경기 성남시 분당구 황새울로360번길 12 지하1층", + "average_price": 16500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 02:00", + "phone_number": null, + "score": 3.6, + "review": 86, + "duration_hours": "16:00 ~ 02:00", + "category_id": 10 + }, + { + "restaurant_id": 1908, + "name": "정가네능이백숙", + "address": "경기 성남시 분당구 서현로247번길 9", + "average_price": 64800, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:50", + "phone_number": "031-703-8071", + "score": 4.2, + "review": 53, + "duration_hours": "10:00 ~ 21:50", + "category_id": 10 + }, + { + "restaurant_id": 1909, + "name": "돌담촌 서현1호점", + "address": "경기 성남시 분당구 황새울로351번길 10 여암빌딩 2층", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 23:00", + "phone_number": "031-697-5292", + "score": 5.0, + "review": 2, + "duration_hours": "10:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1910, + "name": "팔각도 분당서현역점", + "address": "경기 성남시 분당구 서현로210번길 16", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 23:00", + "phone_number": "031-778-8786", + "score": 4.0, + "review": 109, + "duration_hours": "11:30 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1911, + "name": "화로사랑 분당수내점", + "address": "경기 성남시 분당구 백현로101번길 17 113,114,115호", + "average_price": 8900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": null, + "score": 5.0, + "review": 6, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1912, + "name": "불고기미식관", + "address": "경기 성남시 분당구 느티로 27 하나플라자빌딩 2층 209호", + "average_price": 30000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:30", + "phone_number": "0507-1313-8121", + "score": 4.1, + "review": 223, + "duration_hours": "11:30 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1913, + "name": "부추삼겹살", + "address": "경기 성남시 분당구 서현로 204 엘지에클라트2차 1층 101호", + "average_price": 15750, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 01:30", + "phone_number": null, + "score": 4.2, + "review": 201, + "duration_hours": "17:00 ~ 01:30", + "category_id": 10 + }, + { + "restaurant_id": 1914, + "name": "봉추찜닭 분당서현점", + "address": "경기 성남시 분당구 분당로53번길 15 산호트윈스 205호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-703-9381", + "score": 3.7, + "review": 21, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1915, + "name": "내가조선의족발이다", + "address": "경기 성남시 분당구 판교로 436 홍우프라자 1층 2호", + "average_price": 38500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:30 ~ 23:55", + "phone_number": "031-709-7781", + "score": 0.0, + "review": 4, + "duration_hours": "15:30 ~ 23:55", + "category_id": 10 + }, + { + "restaurant_id": 1916, + "name": "1984냉골집", + "address": "경기 성남시 분당구 황새울로258번길 10-7 가나프라자 1층 102호", + "average_price": 16633, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 01:00", + "phone_number": "031-712-2400", + "score": 5.0, + "review": 31, + "duration_hours": "15:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 1917, + "name": "부자갈비경복궁 야탑점", + "address": "경기 성남시 분당구 양현로 246 1-2층", + "average_price": 27285, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-781-2023", + "score": 3.0, + "review": 4, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1918, + "name": "황제삼계탕", + "address": "경기 성남시 수정구 탄천로339번길 8 1층", + "average_price": 21000, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 20:30", + "phone_number": "031-723-5949", + "score": 2.9, + "review": 106, + "duration_hours": "10:30 ~ 20:30", + "category_id": 10 + }, + { + "restaurant_id": 1919, + "name": "육회한녀석들 분당직영점", + "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 2층 202호", + "average_price": 12800, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:30 ~ 24:00", + "phone_number": "070-8691-0666", + "score": 4.7, + "review": 20, + "duration_hours": "16:30 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1920, + "name": "엄마네돼지마을", + "address": "경기 성남시 수정구 설개로2번길 19 1층", + "average_price": 12166, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 20:00", + "phone_number": "031-723-8925", + "score": 4.3, + "review": 12, + "duration_hours": "11:00 ~ 20:00", + "category_id": 10 + }, + { + "restaurant_id": 1921, + "name": "우야지막창 분당서현역점", + "address": "경기 성남시 분당구 황새울로360번길 26 삼보프라자 303호", + "average_price": 12666, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 01:00", + "phone_number": "031-705-4032", + "score": 3.2, + "review": 51, + "duration_hours": "16:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 1922, + "name": "고공 분당점", + "address": "경기 성남시 분당구 백현로156번길 16 1층", + "average_price": 53000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 23:00", + "phone_number": "031-608-5050", + "score": 4.8, + "review": 214, + "duration_hours": "16:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1923, + "name": "족발팩토리", + "address": "경기 성남시 분당구 황새울로335번길 8", + "average_price": 37400, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 01:40", + "phone_number": "031-701-8808", + "score": 4.5, + "review": 1, + "duration_hours": "10:00 ~ 01:40", + "category_id": 10 + }, + { + "restaurant_id": 1924, + "name": "서현곱창", + "address": "경기 성남시 분당구 서현로210번길 2", + "average_price": 53000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 24:00", + "phone_number": null, + "score": 5.0, + "review": 56, + "duration_hours": "16:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1925, + "name": "한우사랑 정육식당", + "address": "경기 성남시 분당구 판교로 437", + "average_price": 30166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 11:00 ~ 22:00", + "phone_number": "031-707-9886", + "score": 4.5, + "review": 2, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1926, + "name": "곱분이곱창 분당서현점", + "address": "경기 성남시 분당구 서현로 170 풍림아이원플러스 지하1층 B107호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 01:50", + "phone_number": null, + "score": 1.0, + "review": 0, + "duration_hours": "15:00 ~ 01:50", + "category_id": 10 + }, + { + "restaurant_id": 1927, + "name": "겨울엔 능계탕", + "address": "경기 성남시 분당구 정자일로 240 월드프라자 1층 115호", + "average_price": 14500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "070-8691-4705", + "score": 5.0, + "review": 5, + "duration_hours": "11:00 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 1928, + "name": "느티나무집", + "address": "경기 성남시 분당구 성남대로762번길 16", + "average_price": 15600, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "031-708-4346", + "score": 4.0, + "review": 53, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1929, + "name": "두찜 분당서현점", + "address": "경기 성남시 분당구 분당로53번길 20 이랜드분당프라자 1층 105호", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": "031-707-3336", + "score": 4.5, + "review": 15, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1930, + "name": "대세박목살 분당서현점", + "address": "경기 성남시 분당구 서현로 204 엘지에클라트 2차 2층 202호", + "average_price": 25783, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 24:00", + "phone_number": "031-707-8779", + "score": 3.9, + "review": 0, + "duration_hours": "16:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1931, + "name": "화끈곱창", + "address": "경기 성남시 분당구 서현로210번길 16", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 24:00", + "phone_number": "031-623-6093", + "score": 4.4, + "review": 21, + "duration_hours": "17:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1932, + "name": "삼계마을", + "address": "경기 성남시 분당구 분당로53번길 13", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-709-5722", + "score": 4.3, + "review": 5, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1933, + "name": "소담누룽지삼계탕", + "address": "경기 성남시 분당구 하오개로 337", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1934, + "name": "여수아 솥뚜껑삼겹살", + "address": "경기 성남시 수정구 청계산로4길 17-12 1층", + "average_price": 15000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 22:00", + "phone_number": "031-757-3668", + "score": 4.4, + "review": 17, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1935, + "name": "정통집 서현점", + "address": "경기 성남시 분당구 황새울로360번길 22 영건프라자 2층 207호", + "average_price": 15100, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 23:00", + "phone_number": "031-708-3300", + "score": 0.0, + "review": 102, + "duration_hours": "15:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1936, + "name": "육회한시간", + "address": "경기 성남시 분당구 서현로 204", + "average_price": 39166, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 17:00 ~ 01:00", + "phone_number": null, + "score": 4.6, + "review": 258, + "duration_hours": "17:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 1937, + "name": "명륜진사갈비 성남야탑점", + "address": "경기 성남시 분당구 판교로 497", + "average_price": 0, + "caution": "예약불가, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-707-9298", + "score": 2.9, + "review": 49, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1938, + "name": "명가보쌈", + "address": "경기 성남시 분당구 서현로 184 LG에클라트 2층 206호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:30", + "phone_number": "031-708-5955", + "score": 3.0, + "review": 46, + "duration_hours": "10:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1939, + "name": "석이네", + "address": "경기 성남시 분당구 판교대장로8길 10 클라우드베이6 1층 101,102,103호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 15:00 ~ 22:00", + "phone_number": "031-8039-7892", + "score": 4.0, + "review": 5, + "duration_hours": "15:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1940, + "name": "소우", + "address": "경기 성남시 분당구 황새울로 315 대현빌딩 2층 202호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "031-701-4734", + "score": 3.8, + "review": 55, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1941, + "name": "화로구이정", + "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 1층 113호", + "average_price": 13833, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:00", + "phone_number": "031-711-3773", + "score": 0.0, + "review": 42, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1942, + "name": "한우마을장다리식당 정자점", + "address": "경기 성남시 분당구 내정로119번길 20 1층", + "average_price": 33750, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 12:00 ~ 22:00", + "phone_number": "031-719-1815", + "score": 4.6, + "review": 7, + "duration_hours": "12:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1943, + "name": "한강장작구이", + "address": "경기 성남시 분당구 이매로 82-1", + "average_price": 17000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 23:00", + "phone_number": "031-778-6068", + "score": 4.0, + "review": 95, + "duration_hours": "11:30 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1944, + "name": "육값어치", + "address": "경기 성남시 분당구 황새울로360번길 26", + "average_price": 29200, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 02:00", + "phone_number": "031-703-8942", + "score": 3.7, + "review": 0, + "duration_hours": "17:00 ~ 02:00", + "category_id": 10 + }, + { + "restaurant_id": 1945, + "name": "백향목", + "address": "경기 성남시 분당구 정자일로198번길 15 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-786-0077", + "score": 4.6, + "review": 8, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1946, + "name": "환이네갈비살 서현점", + "address": "경기 성남시 분당구 서현로210번길 16 2층 202호", + "average_price": 14475, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 24:00", + "phone_number": "031-707-4133", + "score": 2.8, + "review": 47, + "duration_hours": "11:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1947, + "name": "식껍 대장점", + "address": "경기 성남시 분당구 판교대장로8길 15 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 16:00 ~ 22:00", + "phone_number": null, + "score": 4.5, + "review": 8, + "duration_hours": "16:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1948, + "name": "248도깨비", + "address": "경기 성남시 분당구 황새울로360번길 12 대명프라자 2층 202~203,205호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 02:00", + "phone_number": "031-704-0045", + "score": 2.7, + "review": 23, + "duration_hours": "15:00 ~ 02:00", + "category_id": 10 + }, + { + "restaurant_id": 1949, + "name": "유담", + "address": "경기 성남시 분당구 내정로119번길 6 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:30 ~ 22:00", + "phone_number": "031-717-9777", + "score": 4.6, + "review": 180, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1950, + "name": "대왕가든 2호점", + "address": "경기 성남시 수정구 여수대로 98 1층", + "average_price": 14400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-752-9292", + "score": 3.4, + "review": 19, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1951, + "name": "한마음정육식당 서현점", + "address": "경기 성남시 분당구 황새울로360번길 26 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 23:30", + "phone_number": "031-701-9243", + "score": 4.5, + "review": 96, + "duration_hours": "11:30 ~ 23:30", + "category_id": 10 + }, + { + "restaurant_id": 1952, + "name": "미담", + "address": "경기 성남시 분당구 성남대로331번길 9-13 1층", + "average_price": 14000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 22:00", + "phone_number": "031-711-0774", + "score": 3.8, + "review": 0, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1953, + "name": "솔밭삼겹살해장국", + "address": "경기 성남시 분당구 성남대로331번길 11-15", + "average_price": 17400, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 00:00 ~ 24:00", + "phone_number": "031-711-2638", + "score": 3.7, + "review": 140, + "duration_hours": "00:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1954, + "name": "자연갈비 분당수내점", + "address": "경기 성남시 분당구 황새울로258번길 42 해암빌딩 2층", + "average_price": 15900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-717-9898", + "score": 4.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1955, + "name": "직화에빠지다 분당1호점", + "address": "경기 성남시 분당구 양현로 126 미림프라자 1층 109호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금 16:00 ~ 01:00", + "phone_number": null, + "score": 5.0, + "review": 2, + "duration_hours": "16:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 1956, + "name": "수내닭꼬치", + "address": "경기 성남시 분당구 중앙공원로39번길 49", + "average_price": 7205, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 01:00", + "phone_number": "070-4652-4048", + "score": 3.4, + "review": 0, + "duration_hours": "12:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 1957, + "name": "따띠삼겹 분당휴맥스점", + "address": "경기 성남시 분당구 황새울로 216 휴맥스빌리지 지하1층 B101호 9호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 23:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "10:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1958, + "name": "옛골명가", + "address": "경기 성남시 수정구 달래내로 349 1층", + "average_price": 29466, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-757-7038", + "score": 3.3, + "review": 48, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1959, + "name": "경아식당 서현점", + "address": "경기 성남시 분당구 서현로210번길 2 1층 104호", + "average_price": 19571, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 02:00", + "phone_number": null, + "score": 2.4, + "review": 310, + "duration_hours": "11:00 ~ 02:00", + "category_id": 10 + }, + { + "restaurant_id": 1960, + "name": "도적", + "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 2층", + "average_price": 15166, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 24:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "17:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1961, + "name": "육첩반상 롯데백화점분당점", + "address": "경기 성남시 분당구 황새울로200번길 45 지하 1층", + "average_price": 9060, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-738-2005", + "score": 3.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1962, + "name": "도담뚝배기", + "address": "경기 성남시 분당구 하오개로351번길 8-7", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-701-8332", + "score": 3.3, + "review": 5, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1963, + "name": "행자골왕돌판삼겹살구이", + "address": "경기 성남시 분당구 성남대로772번길 5 1층", + "average_price": 18400, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:10 ~ 22:00", + "phone_number": "031-709-5566", + "score": 3.9, + "review": 11, + "duration_hours": "11:10 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1964, + "name": "양가네명품갈비찜 분당점", + "address": "경기 성남시 분당구 서현로 170 풍림아이원플러스 지하1층 B107-1호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,토,일 09:00 ~ 01:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "09:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 1965, + "name": "와규하우스", + "address": "경기 성남시 분당구 백현로101번길 12", + "average_price": 126500, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1966, + "name": "쫄면주는삼겹본능 이매점", + "address": "경기 성남시 분당구 성남대로779번길 48", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:30 ~ 21:30", + "phone_number": "0504-3771-1918", + "score": 0.0, + "review": 0, + "duration_hours": "10:30 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1967, + "name": "돈블랑 수내점", + "address": "경기 성남시 분당구 백현로101번길 21 1층", + "average_price": 0, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-715-7877", + "score": 4.0, + "review": 0, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1968, + "name": "행복한찜닭 분당수내점", + "address": "경기 성남시 분당구 황새울로 216 지하1층 B101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1969, + "name": "여장군 이매점", + "address": "경기 성남시 분당구 성남대로762번길 7 1층", + "average_price": 10000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 22:00", + "phone_number": "031-702-9250", + "score": 4.0, + "review": 24, + "duration_hours": "16:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1970, + "name": "정자동갈비살집", + "address": "경기 성남시 분당구 정자일로 197 1층 105-3호", + "average_price": 22000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 22:00", + "phone_number": null, + "score": 4.2, + "review": 17, + "duration_hours": "17:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1971, + "name": "이가네양갈비 서현점", + "address": "경기 성남시 분당구 황새울로335번길 10 멜로즈프라자 1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1972, + "name": "돈마니마니홍보관 수내본점", + "address": "경기 성남시 분당구 수내로46번길 20", + "average_price": 13400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1973, + "name": "김청자매운갈비찜 분당본점", + "address": "경기 성남시 분당구 황새울로330번길 16 2층", + "average_price": 7842, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:00", + "phone_number": null, + "score": 0.0, + "review": 50, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1974, + "name": "제주돔베옥", + "address": "경기 성남시 분당구 판교대장로7길 16", + "average_price": 18388, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-711-5256", + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1975, + "name": "제주명가", + "address": "경기 성남시 분당구 백현로101번길 20", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-718-4335", + "score": 1.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1976, + "name": "육회왕자&연어공주 분당서현점", + "address": "경기 성남시 분당구 황새울로360번길 26 삼보프라자 지하1층 B05,B06호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 17:00 ~ 02:00", + "phone_number": "070-4647-4242", + "score": 2.8, + "review": 2, + "duration_hours": "17:00 ~ 02:00", + "category_id": 10 + }, + { + "restaurant_id": 1977, + "name": "불꽃돼지 서현직영점", + "address": "경기 성남시 분당구 황새울로 315", + "average_price": 10428, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-8193-5079", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1978, + "name": "남문보쌈", + "address": "경기 성남시 분당구 수내로 42", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1979, + "name": "정빙고", + "address": "경기 성남시 분당구 정자일로198번길 22", + "average_price": 8400, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:50 ~ 23:00", + "phone_number": "031-718-2018", + "score": 2.5, + "review": 33, + "duration_hours": "16:50 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1980, + "name": "금호돼지", + "address": "경기 성남시 분당구 내정로165번길 38 금호행복시장 2층", + "average_price": 22714, + "caution": "포장불가", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": null, + "score": 5.0, + "review": 21, + "duration_hours": "11:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1981, + "name": "냉철한삼겹 대장동점", + "address": "경기 성남시 분당구 판교대장로8길 22", + "average_price": 11150, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:30", + "phone_number": "031-8023-9392", + "score": 0.0, + "review": 26, + "duration_hours": "11:30 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 1982, + "name": "옥돌명가", + "address": "경기 성남시 분당구 황새울로 325", + "average_price": 10535, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 23:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "10:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1983, + "name": "지랄닭발 분당점", + "address": "경기 성남시 분당구 내정로165번길 38", + "average_price": 16800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 01:00", + "phone_number": "031-714-4647", + "score": 0.0, + "review": 7, + "duration_hours": "17:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 1984, + "name": "옥수동돼치집 돼지와김치의완벽한비율을찾다 야탑판교점", + "address": "경기 성남시 분당구 성남대로779번길 52", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수", + "is_deleted": "\u0000", + "operating_hour": "화~수 10:50 ~ 22:30", + "phone_number": "0507-2090-5521", + "score": 0.0, + "review": 0, + "duration_hours": "10:50 ~ 22:30", + "category_id": 10 + }, + { + "restaurant_id": 1985, + "name": "곱창과막창사이 분당서현역점", + "address": "경기 성남시 분당구 황새울로360번길 26", + "average_price": 10929, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 16:00 ~ 24:00", + "phone_number": null, + "score": 5.0, + "review": 4, + "duration_hours": "16:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1986, + "name": "오뚜기식당 정자직영점", + "address": "경기 성남시 분당구 백현로150번길 5-1 1층", + "average_price": 11642, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 24:00", + "phone_number": "031-717-7617", + "score": 4.0, + "review": 24, + "duration_hours": "10:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1987, + "name": "대장닭발&닭도리탕 본점", + "address": "경기 성남시 분당구 판교대장로7길 6-35 1층 1호", + "average_price": 27000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:30 ~ 23:00", + "phone_number": "031-712-2911", + "score": 5.0, + "review": 14, + "duration_hours": "16:30 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 1988, + "name": "고기극찬 분당점", + "address": "경기 성남시 분당구 백현로101번길 16 대덕프라자 지하 1층 B102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수,토,일", + "is_deleted": "\u0000", + "operating_hour": "수,토,일 11:00 ~ 22:00", + "phone_number": null, + "score": 0.0, + "review": 5, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1989, + "name": "귀한족발 정자역점", + "address": "경기 성남시 분당구 느티로 16 젤존타워 1차 2층 201호", + "average_price": 42066, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:30", + "phone_number": "031-716-1036", + "score": 0.0, + "review": 2, + "duration_hours": "11:00 ~ 23:30", + "category_id": 10 + }, + { + "restaurant_id": 1990, + "name": "배밭갈비 분당점", + "address": "경기 성남시 분당구 판교로 501 2층", + "average_price": 22200, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 11:30 ~ 22:00", + "phone_number": "031-709-3359", + "score": 4.3, + "review": 320, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1991, + "name": "왕십리닭곰탕", + "address": "경기 성남시 분당구 성남대로 345 1층", + "average_price": 19400, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 00:00 ~ 24:00", + "phone_number": null, + "score": 3.2, + "review": 41, + "duration_hours": "00:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1992, + "name": "동작그만 본점", + "address": "경기 성남시 분당구 내정로107번길 15 1층", + "average_price": 29800, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 24:00", + "phone_number": "031-715-1134", + "score": 4.4, + "review": 18, + "duration_hours": "12:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 1993, + "name": "곱분이곱창 분당서현점", + "address": "경기 성남시 분당구 서현로210번길 14", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 02:00", + "phone_number": "031-706-1242", + "score": 4.4, + "review": 56, + "duration_hours": "15:00 ~ 02:00", + "category_id": 10 + }, + { + "restaurant_id": 1994, + "name": "진대감 분당점", + "address": "경기 성남시 분당구 성남대로331번길 3-10 1층", + "average_price": 42333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 22:00", + "phone_number": "031-717-0111", + "score": 0.0, + "review": 594, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 1995, + "name": "돈멜 서현점", + "address": "경기 성남시 분당구 황새울로360번길 21 1층", + "average_price": 18875, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:30 ~ 23:30", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "16:30 ~ 23:30", + "category_id": 10 + }, + { + "restaurant_id": 1996, + "name": "마포화곱창 서현역점", + "address": "경기 성남시 분당구 서현로210번길 14 유성트윈프라자2차 2층 204호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 01:00", + "phone_number": "031-7604-8377", + "score": 4.0, + "review": 5, + "duration_hours": "15:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 1997, + "name": "알맹이 분당점", + "address": "경기 성남시 분당구 황새울로258번길 10-7 가나프라자빌딩 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 1998, + "name": "신국민닭발 정자직영점", + "address": "경기 성남시 분당구 느티로69번길 6-5 1층", + "average_price": 18000, + "caution": "예약불가, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 01:00", + "phone_number": "031-719-2119", + "score": 3.8, + "review": 11, + "duration_hours": "17:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 1999, + "name": "죽집 엄선 분당점", + "address": "경기 성남시 분당구 백현로101번길 16", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 21:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "10:00 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 2000, + "name": "천족 수내역점", + "address": "경기 성남시 분당구 황새울로258번길 32 코리아나 빌딩 1층 111호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2001, + "name": "상상오리 정자점", + "address": "경기 성남시 분당구 내정로129번길 32", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수,목,금", + "is_deleted": "\u0000", + "operating_hour": "수~금 15:00 ~ 03:00", + "phone_number": "031-719-9252", + "score": 0.0, + "review": 0, + "duration_hours": "15:00 ~ 03:00", + "category_id": 10 + }, + { + "restaurant_id": 2002, + "name": "한우명가 정육식당", + "address": "경기 성남시 분당구 야탑로69번길 18", + "average_price": 24400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 00:00 ~ 24:00", + "phone_number": "031-703-6921", + "score": 1.9, + "review": 18, + "duration_hours": "00:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2003, + "name": "토성오리삼겹", + "address": "경기 성남시 분당구 내정로119번길 8", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-716-5359", + "score": 5.0, + "review": 1, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2004, + "name": "강돈", + "address": "경기 성남시 수정구 청계산로2길 31 1층", + "average_price": 15800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 22:00", + "phone_number": "031-759-9233", + "score": 4.7, + "review": 16, + "duration_hours": "16:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2005, + "name": "토미스육회", + "address": "경기 성남시 분당구 황새울로258번길 43", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-716-8331", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2006, + "name": "탄로", + "address": "경기 성남시 분당구 느티로63번길 5 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 23:00", + "phone_number": "031-714-9290", + "score": 4.5, + "review": 155, + "duration_hours": "17:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 2007, + "name": "서현마루", + "address": "경기 성남시 분당구 황새울로 315 2층", + "average_price": 13000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-8193-3392", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2008, + "name": "미가숯불구이", + "address": "경기 성남시 분당구 분당로53번길 19", + "average_price": 43500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2009, + "name": "명가비빔국수 보쌈", + "address": "경기 성남시 분당구 서현로 184", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:15 ~ 21:30", + "phone_number": null, + "score": 4.0, + "review": 0, + "duration_hours": "09:15 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 2010, + "name": "99육회본가 분당서현역", + "address": "경기 성남시 분당구 서현로 184", + "average_price": 14120, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-705-8847", + "score": 0.0, + "review": 2, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2011, + "name": "참우본가", + "address": "경기 성남시 분당구 분당로53번길 9 에이원프라자 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "032-706-3366", + "score": 2.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2012, + "name": "맛찬들왕소금구이 분당정자점", + "address": "경기 성남시 분당구 성남대로331번길 3-6 1,2층", + "average_price": 19500, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 22:00", + "phone_number": "031-713-3392", + "score": 4.5, + "review": 207, + "duration_hours": "16:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2013, + "name": "미담휴", + "address": "경기 성남시 분당구 성남대로331번길 9-12 우경빌딩 2층", + "average_price": 19072, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": null, + "score": 3.0, + "review": 0, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2014, + "name": "육시리 야탑점", + "address": "경기 성남시 분당구 장미로48번길 14 엔즈빌오피스텔 121, 122호", + "average_price": 18166, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 22:00", + "phone_number": "031-705-6671", + "score": 4.5, + "review": 183, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2015, + "name": "야끼니쿠PM6", + "address": "경기 성남시 분당구 분당로53번길 21 산호프라자 2층 203호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-707-9533", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2016, + "name": "딸바보곱창", + "address": "경기 성남시 분당구 백현로150번길 17-4 1층 101호", + "average_price": 27333, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 17:30 ~ 01:00", + "phone_number": "031-719-7797", + "score": 3.0, + "review": 3, + "duration_hours": "17:30 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 2017, + "name": "도축장집아들들", + "address": "경기 성남시 분당구 분당로53번길 15 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2018, + "name": "육회달인", + "address": "경기 성남시 분당구 수내로46번길 11", + "average_price": 17428, + "caution": "예약가능, 포장가능", + "convenience": "동물출입\n주차\n놀이방\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2019, + "name": "육회연가", + "address": "경기 성남시 분당구 분당로53번길 19", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2020, + "name": "온돌집 서현점", + "address": "경기 성남시 분당구 서현로210번길 2 성지하이츠텔 2층", + "average_price": 7750, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-702-2420", + "score": 2.5, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2021, + "name": "깨닭", + "address": "경기 성남시 분당구 서현로 204 엘지에클라트2 1층 102호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 24:00", + "phone_number": null, + "score": 2.8, + "review": 28, + "duration_hours": "16:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2022, + "name": "화화돼지왕갈비 야탑", + "address": "경기 성남시 분당구 장미로48번길 14 엔즈빌오피스텔 2층 204,205호", + "average_price": 21925, + "caution": "예약가능, 포장가능", + "convenience": "WIFI\n주차\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 22:00", + "phone_number": "031-707-4545", + "score": 4.2, + "review": 195, + "duration_hours": "16:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2023, + "name": "효원식당 분당정자점", + "address": "경기 성남시 분당구 느티로69번길 6-3 (정자동 66-11) 1층, 효원식당 분당정자점", + "average_price": 7833, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:40", + "phone_number": "031-715-4943", + "score": 4.4, + "review": 0, + "duration_hours": "11:00 ~ 21:40", + "category_id": 10 + }, + { + "restaurant_id": 2024, + "name": "앤마켓불고기박스", + "address": "경기 성남시 분당구 정자일로213번길 18 성원상떼뷰 201동 1층 107,108호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-714-0377", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2025, + "name": "정이네서서갈비", + "address": "경기 성남시 분당구 대왕판교로 275", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2026, + "name": "박대리고기세상", + "address": "경기 성남시 분당구 황새울로335번길 10", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-705-8235", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2027, + "name": "윤스테이크 본점", + "address": "경기 성남시 분당구 서현로 170", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2028, + "name": "별을품은곱창", + "address": "경기 성남시 수정구 청계산로 752", + "average_price": 16000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 24:00", + "phone_number": null, + "score": 5.0, + "review": 2, + "duration_hours": "17:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2029, + "name": "겨울엔계삼탕", + "address": "경기 성남시 분당구 정자일로 240 월드프라자 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2030, + "name": "금호생고기", + "address": "경기 성남시 분당구 내정로165번길 38 양지마을 602동 2층 201호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2031, + "name": "논현삼계탕 분당점", + "address": "경기 성남시 분당구 내정로113번길 4 1층", + "average_price": 21500, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 11:00 ~ 21:30", + "phone_number": "031-713-3240", + "score": 4.5, + "review": 9, + "duration_hours": "11:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 2032, + "name": "히바치", + "address": "경기 성남시 분당구 황새울로258번길 28 한도회관 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2033, + "name": "홍닭백닭", + "address": "경기 성남시 분당구 판교대장로8길 10 클라우드베이6 1층 106,107호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 24:00", + "phone_number": "031-698-3350", + "score": 0.0, + "review": 14, + "duration_hours": "12:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2034, + "name": "동경 롯데분당지점", + "address": "경기 성남시 분당구 황새울로200번길 45 롯데백화점분당점 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-878-6400", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2035, + "name": "해남오징어갈비", + "address": "경기 성남시 분당구 황새울로258번길 28", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2036, + "name": "알렉시스플래닛", + "address": "경기 성남시 분당구 성남대로 393 두산위브파빌리온 B동 1912호", + "average_price": 38500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 00:00 ~ 24:00", + "phone_number": "0507-0177-0946", + "score": 0.0, + "review": 0, + "duration_hours": "00:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2037, + "name": "엘에이갈비찜&냉면", + "address": "경기 성남시 분당구 황새울로132번길 28 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2038, + "name": "248연탄집", + "address": "경기 성남시 분당구 황새울로360번길 26 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-704-0045", + "score": 1.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2039, + "name": "달족&보쌈 분당본점", + "address": "경기 성남시 분당구 내정로129번길 5 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 24:00", + "phone_number": "031-701-7008", + "score": 3.9, + "review": 1, + "duration_hours": "11:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2040, + "name": "유니춘천닭갈비", + "address": "경기 성남시 분당구 성남대로925번길 11 1층", + "average_price": 14500, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 11:30 ~ 23:30", + "phone_number": "031-707-4758", + "score": 4.4, + "review": 49, + "duration_hours": "11:30 ~ 23:30", + "category_id": 10 + }, + { + "restaurant_id": 2041, + "name": "퐁립 분당서현점", + "address": "경기 성남시 분당구 황새울로 326 2층 204호", + "average_price": 8600, + "caution": "포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 12:00 ~ 24:00", + "phone_number": "031-709-1533", + "score": 0.0, + "review": 0, + "duration_hours": "12:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2042, + "name": "돌판365", + "address": "경기 성남시 분당구 서현로180번길 13", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-705-1821", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2043, + "name": "늘푸른목장 분당점", + "address": "경기 성남시 분당구 성남대로331번길 13 1층 119, 120호", + "average_price": 25000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 23:00", + "phone_number": "031-715-1312", + "score": 4.0, + "review": 74, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 2044, + "name": "큰양푼집 서현점", + "address": "경기 성남시 분당구 서현로180번길 13", + "average_price": 13000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2045, + "name": "더맛있는족발보쌈 야탑점", + "address": "경기 성남시 분당구 야탑로105번길 12-1 1층", + "average_price": 34000, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 01:50", + "phone_number": "031-709-4999", + "score": 4.6, + "review": 69, + "duration_hours": "14:30 ~ 01:50", + "category_id": 10 + }, + { + "restaurant_id": 2046, + "name": "가장맛있는족발 느티마을점", + "address": "경기 성남시 분당구 느티로77번길 8 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:30 ~ 01:30", + "phone_number": "031-711-9882", + "score": 4.7, + "review": 5, + "duration_hours": "15:30 ~ 01:30", + "category_id": 10 + }, + { + "restaurant_id": 2047, + "name": "마왕족발 정자본점", + "address": "경기 성남시 분당구 내정로 111 금성플라자 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:10 ~ 23:30", + "phone_number": "031-718-5892", + "score": 3.0, + "review": 40, + "duration_hours": "14:10 ~ 23:30", + "category_id": 10 + }, + { + "restaurant_id": 2048, + "name": "청춘연가 서현역점", + "address": "경기 성남시 분당구 서현로210번길 16 3층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-709-3903", + "score": 0.0, + "review": 10, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2049, + "name": "곱창에빠지다", + "address": "경기 성남시 분당구 서현로210번길 14 유성트윈프라자2차 204호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 24:00", + "phone_number": null, + "score": 4.0, + "review": 1, + "duration_hours": "15:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2050, + "name": "김삿갓 고깃집", + "address": "경기 성남시 분당구 성남대로331번길 9-15", + "average_price": 36000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:30", + "phone_number": "031-716-8592", + "score": 3.8, + "review": 15, + "duration_hours": "11:30 ~ 22:30", + "category_id": 10 + }, + { + "restaurant_id": 2051, + "name": "온육집 숯불갈비 정자점", + "address": "경기 성남시 분당구 느티로69번길 18-1", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 11:00 ~ 21:30", + "phone_number": "0507-2079-0546", + "score": 0.0, + "review": 1, + "duration_hours": "11:00 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 2052, + "name": "닥엔돈스 분당서현점", + "address": "경기 성남시 분당구 황새울로360번길 28 은성프라자 지하1층 B07~B09호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 01:50", + "phone_number": "031-702-8673", + "score": 5.0, + "review": 3, + "duration_hours": "16:00 ~ 01:50", + "category_id": 10 + }, + { + "restaurant_id": 2053, + "name": "소곱창신화 본점", + "address": "경기 성남시 분당구 야탑로69번길 18 동아프라자 105호", + "average_price": 35833, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 23:00", + "phone_number": "031-706-8892", + "score": 3.9, + "review": 4, + "duration_hours": "16:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 2054, + "name": "돝통집", + "address": "경기 성남시 분당구 서현로 204 엘지에클라트2 1층 102호", + "average_price": 14800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 01:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "16:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 2055, + "name": "마포갈비", + "address": "경기 성남시 분당구 서현로257번길 14 1,2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "월,수,목,금,토,일 11:00 ~ 22:00", + "phone_number": "031-701-9292", + "score": 3.2, + "review": 370, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2056, + "name": "강호식당 정자본점", + "address": "경기 성남시 분당구 정자일로156번길 11 1층", + "average_price": 51666, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 23:00", + "phone_number": "031-711-3692", + "score": 4.6, + "review": 39, + "duration_hours": "17:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 2057, + "name": "만족오향족발 정자점", + "address": "경기 성남시 분당구 성남대로343번길 12-6 1층", + "average_price": 41333, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:30", + "phone_number": "031-705-9244", + "score": 4.0, + "review": 22, + "duration_hours": "11:30 ~ 22:30", + "category_id": 10 + }, + { + "restaurant_id": 2058, + "name": "교대이층집 야탑점", + "address": "경기 성남시 분당구 야탑로105번길 15 1층", + "average_price": 8083, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 23:00", + "phone_number": "031-707-7177", + "score": 3.7, + "review": 234, + "duration_hours": "11:30 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 2059, + "name": "삼육가 야탑점", + "address": "경기 성남시 분당구 성남대로926번길 20", + "average_price": 23538, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:50", + "phone_number": "031-706-3637", + "score": 3.3, + "review": 138, + "duration_hours": "11:00 ~ 21:50", + "category_id": 10 + }, + { + "restaurant_id": 2060, + "name": "레트로냉삼집", + "address": "경기 성남시 분당구 황새울로360번길 12 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 02:00", + "phone_number": null, + "score": 4.0, + "review": 2, + "duration_hours": "15:00 ~ 02:00", + "category_id": 10 + }, + { + "restaurant_id": 2061, + "name": "숙성돼지 분당본점", + "address": "경기 성남시 분당구 성남대로331번길 9-9 1층", + "average_price": 39214, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-714-8892", + "score": 4.1, + "review": 590, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2062, + "name": "청계냇가집", + "address": "경기 성남시 수정구 옛골로 58 1층", + "average_price": 39000, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-723-8994", + "score": 3.9, + "review": 59, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2063, + "name": "우리식당, 삼겹, 곱창", + "address": "경기 성남시 분당구 양현로94번길 21", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 4.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2064, + "name": "야왕곱창", + "address": "경기 성남시 분당구 백현로 152", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2065, + "name": "우돈정자생막창 정자1호점", + "address": "경기 성남시 분당구 백현로156번길 17-8 1층", + "average_price": 14428, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 23:30", + "phone_number": "031-714-6692", + "score": 5.0, + "review": 59, + "duration_hours": "16:00 ~ 23:30", + "category_id": 10 + }, + { + "restaurant_id": 2066, + "name": "논골집", + "address": "경기 성남시 수정구 청계산로 686 1층 131~132호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 22:00", + "phone_number": "031-758-8892", + "score": 3.7, + "review": 11, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2067, + "name": "고기원칙 성남고등점", + "address": "경기 성남시 수정구 청계산로2길 21 1층", + "average_price": 17750, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 22:00", + "phone_number": "070-7807-2631", + "score": 3.6, + "review": 63, + "duration_hours": "12:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2068, + "name": "순우리한우", + "address": "경기 성남시 분당구 쇳골로17번길 3 A동 1층", + "average_price": 11666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-716-7896", + "score": 3.5, + "review": 1, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2069, + "name": "일미리금계찜닭 정자점", + "address": "경기 성남시 분당구 내정로113번길 20-6 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-714-8806", + "score": 1.0, + "review": 1, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2070, + "name": "훈이네", + "address": "경기 성남시 분당구 분당로53번길 21", + "average_price": 10466, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-701-3340", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2071, + "name": "한양족발", + "address": "경기 성남시 분당구 백현로144번길 7-3", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-714-8888", + "score": 5.0, + "review": 2, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2072, + "name": "휘나리", + "address": "경기 성남시 분당구 내정로165번길 38 602동 지하1층 43-1호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2073, + "name": "족발사랑", + "address": "경기 성남시 분당구 서현로210번길 10 다두프라자 106호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2074, + "name": "마장돈백갈비 정자역점", + "address": "경기 성남시 분당구 성남대로331번길 3-8 1,2층", + "average_price": 27426, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 22:00", + "phone_number": "031-714-3381", + "score": 0.0, + "review": 292, + "duration_hours": "12:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2075, + "name": "모토이시 정자", + "address": "경기 성남시 분당구 성남대로331번길 13 백궁프라자1 111호", + "average_price": 29607, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 01:00", + "phone_number": "031-711-5554", + "score": 5.0, + "review": 37, + "duration_hours": "16:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 2076, + "name": "깜보 분당정자점", + "address": "경기 성남시 분당구 느티로63번길 8 1층 102호", + "average_price": 24114, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:30 ~ 24:00", + "phone_number": "0507-1393-7545", + "score": 4.7, + "review": 458, + "duration_hours": "16:30 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2077, + "name": "우리맛고기", + "address": "경기 성남시 수정구 청계산로2길 13 1층", + "average_price": 26666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-758-2846", + "score": 5.0, + "review": 14, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2078, + "name": "숙성돼지3", + "address": "경기 성남시 분당구 느티로87번길 10", + "average_price": 17000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 22:00", + "phone_number": "031-717-7597", + "score": 4.0, + "review": 315, + "duration_hours": "17:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2079, + "name": "양우정 정자본점", + "address": "경기 성남시 분당구 정자일로156번길 6 뉴본타워 1층 104~107호", + "average_price": 36333, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-713-9252", + "score": 3.5, + "review": 17, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2080, + "name": "일미리 금계찜닭", + "address": "경기 성남시 분당구 야탑로69번길 8", + "average_price": 0, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-603-6366", + "score": 3.5, + "review": 195, + "duration_hours": "11:00 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 2081, + "name": "김가네육곳간", + "address": "경기 성남시 분당구 황새울로360번길 22 3층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 2.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2082, + "name": "화포식당 야탑점", + "address": "경기 성남시 분당구 야탑로111번길 14 1층", + "average_price": 14200, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 23:00", + "phone_number": "031-701-0201", + "score": 4.3, + "review": 59, + "duration_hours": "17:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 2083, + "name": "화우가", + "address": "경기 성남시 분당구 성남대로 389 폴라리스2차2층", + "average_price": 19160, + "caution": "예약가능", + "convenience": "WIFI\n주차\n휠체어사용", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2084, + "name": "제육의계절 분당직영점", + "address": "경기 성남시 분당구 백현로 152 1층 107호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 03:30", + "phone_number": null, + "score": 0.0, + "review": 2, + "duration_hours": "09:00 ~ 03:30", + "category_id": 10 + }, + { + "restaurant_id": 2085, + "name": "키로족발 분당수내점", + "address": "경기 성남시 분당구 내정로173번길 11", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 22:00", + "phone_number": "0507-2086-1212", + "score": 0.0, + "review": 0, + "duration_hours": "16:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2086, + "name": "우마블", + "address": "경기 성남시 분당구 정자일로 135 푸르지오3차 D동 101호", + "average_price": 77333, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 02:00", + "phone_number": "031-726-4020", + "score": 3.8, + "review": 679, + "duration_hours": "11:30 ~ 02:00", + "category_id": 10 + }, + { + "restaurant_id": 2087, + "name": "깜보 야탑", + "address": "경기 성남시 분당구 야탑로111번길 17 1층", + "average_price": 17316, + "caution": "예약가능, 포장불가", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:30 ~ 23:00", + "phone_number": "0507-1381-7977", + "score": 4.9, + "review": 252, + "duration_hours": "16:30 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 2088, + "name": "미녀와족발 정자점", + "address": "경기 성남시 분당구 느티로 16 젤존타워1 106호", + "average_price": 25111, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 24:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "17:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2089, + "name": "불꽃 불맛돼지갈비찜", + "address": "경기 성남시 분당구 내정로173번길 11 양지마을한양아파트 603동 지하1층 B03-14호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 18:00 ~ 01:00", + "phone_number": null, + "score": 5.0, + "review": 1, + "duration_hours": "18:00 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 2090, + "name": "세광양대창 정자점", + "address": "경기 성남시 분당구 정자일로 162 젤존타워2 2층 203~204호", + "average_price": 23714, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 24:00", + "phone_number": "031-718-2007", + "score": 4.0, + "review": 62, + "duration_hours": "14:30 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2091, + "name": "돼소 서현점", + "address": "경기 성남시 분당구 중앙공원로39번길 49", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-705-5676", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2092, + "name": "곱창앤야끼", + "address": "경기 성남시 분당구 탄천로 215", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2093, + "name": "바른삼계탕닭한마리", + "address": "경기 성남시 분당구 야탑로75번길 9 금호프라자 2층 204호", + "average_price": 22000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:00 ~ 21:00", + "phone_number": null, + "score": 0.0, + "review": 68, + "duration_hours": "11:00 ~ 21:00", + "category_id": 10 + }, + { + "restaurant_id": 2094, + "name": "248도깨비 별관", + "address": "경기 성남시 분당구 황새울로360번길 12 2층 217~220호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2095, + "name": "청계산토종닭집", + "address": "경기 성남시 분당구 하오개로 263", + "average_price": 63000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-709-0121", + "score": 3.0, + "review": 1, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2096, + "name": "종로계림닭도리탕원조 야탑점", + "address": "경기 성남시 분당구 장미로48번길 10 1층", + "average_price": 28000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,금,일 11:00 ~ 22:00", + "phone_number": "031-702-3082", + "score": 3.8, + "review": 73, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2097, + "name": "돈방석", + "address": "경기 성남시 분당구 방아로 20", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-702-9980", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2098, + "name": "고기하나 고등점", + "address": "경기 성남시 수정구 청계산로1길 23 1층", + "average_price": 18000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 22:00", + "phone_number": "031-756-2414", + "score": 4.7, + "review": 24, + "duration_hours": "16:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2099, + "name": "독보적", + "address": "경기 성남시 분당구 내정로165번길 35", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "070-8193-0521", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2100, + "name": "동방양고기", + "address": "경기 성남시 분당구 야탑로 103 노블리치 오피스텔 204~205호", + "average_price": 33600, + "caution": "예약가능, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 23:30", + "phone_number": "031-721-1315", + "score": 4.0, + "review": 95, + "duration_hours": "11:30 ~ 23:30", + "category_id": 10 + }, + { + "restaurant_id": 2101, + "name": "무한정생고기", + "address": "경기 성남시 분당구 황새울로360번길 26", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-701-9242", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2102, + "name": "오뚜기 식당 서현점", + "address": "경기 성남시 분당구 서현로257번길 5 1층", + "average_price": 8000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 23:00", + "phone_number": "031-703-0703", + "score": 2.6, + "review": 40, + "duration_hours": "15:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 2103, + "name": "지촌", + "address": "경기 성남시 분당구 내정로165번길 38 2층 229호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2104, + "name": "두찜 분당야탑점", + "address": "경기 성남시 분당구 야탑로69번길 18 동아프라자 2층 204호", + "average_price": 26800, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": "031-707-5131", + "score": 4.1, + "review": 30, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2105, + "name": "스모크가든", + "address": "경기 성남시 수정구 달래내로377번길 31", + "average_price": 45400, + "caution": "배달가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 24:00", + "phone_number": null, + "score": 4.3, + "review": 0, + "duration_hours": "09:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2106, + "name": "인생신닭발", + "address": "경기 성남시 분당구 내정로165번길 35", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-713-4234", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2107, + "name": "춘천진미닭갈비", + "address": "경기 성남시 분당구 성남대로331번길 13 2층", + "average_price": 13833, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 10:00 ~ 22:00", + "phone_number": null, + "score": 4.3, + "review": 39, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2108, + "name": "탐라국생고기", + "address": "경기 성남시 수정구 청계산로4길 59", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2109, + "name": "임옥자곱창볶음 분당점", + "address": "경기 성남시 분당구 백현로144번길 7-3", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:00 ~ 23:00", + "phone_number": "0507-2084-5461", + "score": 1.0, + "review": 0, + "duration_hours": "09:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 2110, + "name": "양마담방촌양고기 분당직영점", + "address": "경기 성남시 분당구 정자일로 162 1층 105호", + "average_price": 54833, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 22:00", + "phone_number": null, + "score": 4.3, + "review": 38, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2111, + "name": "라무진 분당정자점", + "address": "경기 성남시 분당구 정자로 13 월드비터 1층 113호", + "average_price": 19800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 23:00", + "phone_number": "031-715-5709", + "score": 4.3, + "review": 39, + "duration_hours": "17:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 2112, + "name": "서현실비 정자직영점", + "address": "경기 성남시 분당구 성남대로331번길 3-3 젤존타워3 1층 101~104호", + "average_price": 22100, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 05:00", + "phone_number": "031-8039-6969", + "score": 3.1, + "review": 54, + "duration_hours": "11:30 ~ 05:00", + "category_id": 10 + }, + { + "restaurant_id": 2113, + "name": "우레", + "address": "경기 성남시 분당구 정자일로 158 백궁프라자2 1층 105,106호", + "average_price": 15116, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:30 ~ 00:30", + "phone_number": null, + "score": 4.8, + "review": 0, + "duration_hours": "16:30 ~ 00:30", + "category_id": 10 + }, + { + "restaurant_id": 2114, + "name": "돈블랑 분당서현점", + "address": "경기 성남시 분당구 새마을로 8 1층", + "average_price": 13800, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "031-707-8100", + "score": 3.9, + "review": 67, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2115, + "name": "황소고집", + "address": "경기 성남시 분당구 성남대로331번길 13 백궁프라자1 1층", + "average_price": 16500, + "caution": "예약불가, 포장불가", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-714-8288", + "score": 2.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2116, + "name": "춘천황가닭갈비", + "address": "경기 성남시 분당구 야탑로111번길 11", + "average_price": 11000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,금,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,금,일 11:30 ~ 22:30", + "phone_number": "031-701-6009", + "score": 4.2, + "review": 57, + "duration_hours": "11:30 ~ 22:30", + "category_id": 10 + }, + { + "restaurant_id": 2117, + "name": "남영불갈비", + "address": "경기 성남시 분당구 야탑로105번길 6 1층", + "average_price": 22000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:00 ~ 24:00", + "phone_number": "031-703-8892", + "score": 4.0, + "review": 13, + "duration_hours": "14:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2118, + "name": "김사부의곱창명가 분당점", + "address": "경기 성남시 분당구 황새울로116번길 20 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 24:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "15:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2119, + "name": "황소곱창", + "address": "경기 성남시 분당구 성남대로331번길 3-9 1층", + "average_price": 21333, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:50 ~ 01:00", + "phone_number": "031-702-8558", + "score": 2.4, + "review": 23, + "duration_hours": "16:50 ~ 01:00", + "category_id": 10 + }, + { + "restaurant_id": 2120, + "name": "죽왕숯불닭갈비", + "address": "경기 성남시 분당구 성남대로916번길 20 2층", + "average_price": 21666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 11:00 ~ 23:00", + "phone_number": null, + "score": 4.8, + "review": 0, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 2121, + "name": "광명대창집 분당정자점", + "address": "경기 성남시 분당구 성남대로331번길 3-12 1층", + "average_price": 25770, + "caution": "예약가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 16:00 ~ 04:00", + "phone_number": "031-715-7881", + "score": 4.8, + "review": 361, + "duration_hours": "16:00 ~ 04:00", + "category_id": 10 + }, + { + "restaurant_id": 2122, + "name": "대명곱창김밥", + "address": "경기 성남시 분당구 내정로173번길 11", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-711-4526", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2123, + "name": "박정자할매족발보쌈 수내동점", + "address": "경기 성남시 분당구 내정로173번길 11", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2124, + "name": "김선생의불닭발", + "address": "경기 성남시 분당구 황새울로116번길 20 1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 24:00", + "phone_number": null, + "score": 1.0, + "review": 1, + "duration_hours": "15:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2125, + "name": "고기의즐거움 분당직영점", + "address": "경기 성남시 분당구 성남대로331번길 9-14 1층", + "average_price": 30833, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 23:00", + "phone_number": null, + "score": 3.6, + "review": 43, + "duration_hours": "11:00 ~ 23:00", + "category_id": 10 + }, + { + "restaurant_id": 2126, + "name": "정자동 백두산황소곱창", + "address": "경기 성남시 분당구 성남대로331번길 3-9", + "average_price": 24800, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 12:00", + "phone_number": "031-712-5582", + "score": 3.5, + "review": 38, + "duration_hours": "16:00 ~ 12:00", + "category_id": 10 + }, + { + "restaurant_id": 2127, + "name": "유송", + "address": "경기 성남시 분당구 정자일로 197 정자동2차푸르지오시티 1층 116,117호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": null, + "score": 1.0, + "review": 1, + "duration_hours": "11:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2128, + "name": "오투닭갈비", + "address": "경기 성남시 수정구 고등로1길 6-6", + "average_price": 13600, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 22:00", + "phone_number": "031-722-4575", + "score": 3.4, + "review": 7, + "duration_hours": "10:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2129, + "name": "야탑옹기족발", + "address": "경기 성남시 분당구 야탑로 103 노블리치2 오피스텔 1층 106호", + "average_price": 38000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:00 ~ 24:00", + "phone_number": "031-704-3434", + "score": 4.3, + "review": 38, + "duration_hours": "14:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2130, + "name": "태영생막창 분당정자점", + "address": "경기 성남시 분당구 정자로 13 월드비터 1층", + "average_price": 18500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 24:00", + "phone_number": "031-713-5055", + "score": 3.0, + "review": 44, + "duration_hours": "16:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2131, + "name": "금정황소곱창", + "address": "경기 성남시 분당구 야탑로105번길 9 금정빌딩 1층", + "average_price": 26800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 05:00 ~ 23:30", + "phone_number": "031-702-8395", + "score": 3.5, + "review": 0, + "duration_hours": "05:00 ~ 23:30", + "category_id": 10 + }, + { + "restaurant_id": 2132, + "name": "고향집", + "address": "경기 성남시 수정구 달래내로377번길 13", + "average_price": 7000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 22:00", + "phone_number": "031-752-0368", + "score": 3.5, + "review": 53, + "duration_hours": "10:00 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2133, + "name": "가장맛있는족발 야탑2호점", + "address": "경기 성남시 분당구 야탑로105번길 17 인제빌딩 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 12:00 ~ 02:00", + "phone_number": "031-781-0018", + "score": 3.2, + "review": 27, + "duration_hours": "12:00 ~ 02:00", + "category_id": 10 + }, + { + "restaurant_id": 2134, + "name": "초원의집", + "address": "경기 성남시 수정구 달래내로377번길 15", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-723-6255", + "score": 5.0, + "review": 3, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2135, + "name": "정자족발", + "address": "경기 성남시 분당구 느티로 67 수내조합상가 지하1층 104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-715-4042", + "score": 5.0, + "review": 2, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2136, + "name": "호세야오리바베큐 정자점", + "address": "경기 성남시 분당구 느티로77번길 10-2 1층", + "average_price": 34500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "수요일", + "is_deleted": "\u0000", + "operating_hour": "수요일", + "phone_number": "031-715-5293", + "score": 0.0, + "review": 1, + "duration_hours": "null", + "category_id": 10 + }, + { + "restaurant_id": 2137, + "name": "족발의장인 족장 분당정자점", + "address": "경기 성남시 분당구 정자일로156번길 6 뉴본타워빌딩 102호", + "average_price": 42666, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 24:00", + "phone_number": "031-715-5330", + "score": 3.0, + "review": 10, + "duration_hours": "17:00 ~ 24:00", + "category_id": 10 + }, + { + "restaurant_id": 2138, + "name": "육칠이 분당점", + "address": "경기 성남시 분당구 느티로77번길 10-2 1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:30 ~ 00:30", + "phone_number": null, + "score": 0.0, + "review": 1, + "duration_hours": "11:30 ~ 00:30", + "category_id": 10 + }, + { + "restaurant_id": 2139, + "name": "한성닭칼국수닭매운탕", + "address": "경기 성남시 분당구 야탑로81번길 10 아미고타워 지하1층 104~105호", + "average_price": 9800, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:30 ~ 21:30", + "phone_number": "031-622-0606", + "score": 3.3, + "review": 17, + "duration_hours": "10:30 ~ 21:30", + "category_id": 10 + }, + { + "restaurant_id": 2140, + "name": "한양화로 분당야탑점", + "address": "경기 성남시 분당구 야탑로105번길 18 1층", + "average_price": 42500, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": "010-4321-5016", + "score": 4.1, + "review": 12, + "duration_hours": "11:30 ~ 22:00", + "category_id": 10 + }, + { + "restaurant_id": 2141, + "name": "구우트", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 지하1층 B109,110호", + "average_price": 21294, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 11:30 ~ 22:00", + "phone_number": "0507-1397-0922", + "score": 4.6, + "review": 135, + "duration_hours": "11:30 ~ 22:00", + "category_id": 11 + }, + { + "restaurant_id": 2142, + "name": "오늘와인한잔 판교역점", + "address": "경기 성남시 분당구 대왕판교로606번길 45 판교역푸르지오시티오피스텔 1층 103,104호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 02:00", + "phone_number": null, + "score": 2.9, + "review": 9, + "duration_hours": "17:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2143, + "name": "콘노이", + "address": "경기 성남시 분당구 운중로138번길 24-1 1층", + "average_price": 25714, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 24:00", + "phone_number": "0507-1326-0064", + "score": 4.0, + "review": 20, + "duration_hours": "17:00 ~ 24:00", + "category_id": 11 + }, + { + "restaurant_id": 2144, + "name": "물뭍", + "address": "경기 성남시 분당구 판교공원로3길 36 상가 1층 101호", + "average_price": 18000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "수~토 16:00 ~ 24:00", + "phone_number": "070-8657-1264", + "score": 4.7, + "review": 7, + "duration_hours": "16:00 ~ 24:00", + "category_id": 11 + }, + { + "restaurant_id": 2145, + "name": "퍼프시가바", + "address": "경기 성남시 분당구 판교로25번길 8-4 1층", + "average_price": 7000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 13:00 ~ 01:10", + "phone_number": "010-9770-9311", + "score": 0.0, + "review": 0, + "duration_hours": "13:00 ~ 01:10", + "category_id": 11 + }, + { + "restaurant_id": 2146, + "name": "비눔", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 B106호", + "average_price": 15000, + "caution": "예약가능, 포장불가", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:00 ~ 24:00", + "phone_number": "0507-1435-6693", + "score": 5.0, + "review": 143, + "duration_hours": "11:00 ~ 24:00", + "category_id": 11 + }, + { + "restaurant_id": 2147, + "name": "풀문", + "address": "경기 성남시 분당구 판교공원로1길 50 1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 19:30 ~ 01:30", + "phone_number": "031-707-2056", + "score": 5.0, + "review": 0, + "duration_hours": "19:30 ~ 01:30", + "category_id": 11 + }, + { + "restaurant_id": 2148, + "name": "나함", + "address": "경기 성남시 분당구 서판교로44번길 3-5 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 19:00 ~ 24:00", + "phone_number": null, + "score": 4.6, + "review": 0, + "duration_hours": "19:00 ~ 24:00", + "category_id": 11 + }, + { + "restaurant_id": 2149, + "name": "오아시스터즈", + "address": "경기 성남시 분당구 판교역로 136 힐스테이트 판교역 상가1동 1036호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수", + "is_deleted": "\u0000", + "operating_hour": "월~수 08:00 ~ 20:00", + "phone_number": "031-8039-7230", + "score": 0.0, + "review": 5, + "duration_hours": "08:00 ~ 20:00", + "category_id": 11 + }, + { + "restaurant_id": 2150, + "name": "와인G", + "address": "경기 성남시 분당구 판교역로192번길 12 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 3.3, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2151, + "name": "와인팩토리", + "address": "경기 성남시 분당구 판교역로192번길 14-2", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2152, + "name": "루프", + "address": "경기 성남시 분당구 동판교로52번길 25-18 1층", + "average_price": 9400, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 24:00", + "phone_number": "031-707-9863", + "score": 3.0, + "review": 0, + "duration_hours": "17:00 ~ 24:00", + "category_id": 11 + }, + { + "restaurant_id": 2153, + "name": "와인샵 현대백화점 판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-5170-2078", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2154, + "name": "설탕바", + "address": "경기 성남시 분당구 대왕판교로 660", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2155, + "name": "레끌레 드 크리스탈 판교점", + "address": "경기 성남시 분당구 서판교로58번길 4-2", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2156, + "name": "트웬티포세븐", + "address": "경기 성남시 분당구 동판교로52번길 26", + "average_price": 5860, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 17:00 ~ 03:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "17:00 ~ 03:00", + "category_id": 11 + }, + { + "restaurant_id": 2157, + "name": "바에이팀", + "address": "경기 성남시 분당구 대왕판교로 670", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2158, + "name": "삼평동솜씨방", + "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2동 3층 310호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2159, + "name": "부에노부스", + "address": "경기 성남시 분당구 장미로 42 야탑리더스 1층 116호", + "average_price": 15000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 18:00 ~ 24:00", + "phone_number": "070-4189-3425", + "score": 4.0, + "review": 40, + "duration_hours": "18:00 ~ 24:00", + "category_id": 11 + }, + { + "restaurant_id": 2160, + "name": "어바웃풍미", + "address": "경기 성남시 분당구 서현로210번길 2 성지하이츠텔 209호", + "average_price": 22000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 01:00", + "phone_number": "031-707-8771", + "score": 4.6, + "review": 68, + "duration_hours": "17:00 ~ 01:00", + "category_id": 11 + }, + { + "restaurant_id": 2161, + "name": "비율", + "address": "경기 성남시 분당구 서현로210번길 2 성지하이츠텔 2층 208호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 23:00", + "phone_number": "010-3300-3250", + "score": 4.5, + "review": 59, + "duration_hours": "17:00 ~ 23:00", + "category_id": 11 + }, + { + "restaurant_id": 2162, + "name": "오늘와인한잔 서현에스점", + "address": "경기 성남시 분당구 중앙공원로39번길 49 서현지엔느 1층 101-2호", + "average_price": 10633, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 16:00 ~ 24:00", + "phone_number": null, + "score": 5.0, + "review": 10, + "duration_hours": "16:00 ~ 24:00", + "category_id": 11 + }, + { + "restaurant_id": 2163, + "name": "로디드", + "address": "경기 성남시 분당구 느티로69번길 18 1층 103호", + "average_price": 11437, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수요일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수요일", + "phone_number": "0503-7150-6543", + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2164, + "name": "수내와인", + "address": "경기 성남시 분당구 내정로165번길 50 크리스탈빌딩 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2165, + "name": "우즈(WOODZ)", + "address": "경기 성남시 분당구 정자일로 197", + "average_price": 260000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 18:00 ~ 02:00", + "phone_number": null, + "score": 5.0, + "review": 0, + "duration_hours": "18:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2166, + "name": "아르노", + "address": "경기 성남시 분당구 성남대로331번길 13 백궁프라자1차 3층 303호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 19:30 ~ 03:00", + "phone_number": "031-718-8858", + "score": 0.0, + "review": 0, + "duration_hours": "19:30 ~ 03:00", + "category_id": 11 + }, + { + "restaurant_id": 2167, + "name": "카사아지오 분당", + "address": "경기 성남시 분당구 느티로51번길 4-12", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2168, + "name": "와인바벨벳", + "address": "경기 성남시 분당구 서현로 184 LG에클라트 214호", + "average_price": 5909, + "caution": "예약가능, 포장불가", + "convenience": "주차", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2169, + "name": "Y바", + "address": "경기 성남시 분당구 황새울로258번길 32", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2170, + "name": "와인크래프트 비어바", + "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2171, + "name": "루프일레븐(ROOF11)", + "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 11층 1101호", + "average_price": 16000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 18:00 ~ 02:00", + "phone_number": "031-8017-1300", + "score": 4.6, + "review": 128, + "duration_hours": "18:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2172, + "name": "벙크오프", + "address": "경기 성남시 수정구 고등로1길 12 1층", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 12:00 ~ 24:00", + "phone_number": "0507-1490-0803", + "score": 0.0, + "review": 192, + "duration_hours": "12:00 ~ 24:00", + "category_id": 11 + }, + { + "restaurant_id": 2173, + "name": "제로비티 그래비티 서울 판교", + "address": "경기 성남시 분당구 판교역로146번길 2 그래비티타워 1층", + "average_price": 31000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 07:30 ~ 23:00", + "phone_number": "031-539-4810", + "score": 3.1, + "review": 91, + "duration_hours": "07:30 ~ 23:00", + "category_id": 11 + }, + { + "restaurant_id": 2174, + "name": "엔젤스셰어", + "address": "경기 성남시 분당구 판교역로10번길 12-6 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 19:00 ~ 03:00", + "phone_number": "031-702-3551", + "score": 0.0, + "review": 126, + "duration_hours": "19:00 ~ 03:00", + "category_id": 11 + }, + { + "restaurant_id": 2175, + "name": "잇트", + "address": "경기 성남시 분당구 대왕판교로606번길 10 107호", + "average_price": 7500, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 18:00 ~ 03:00", + "phone_number": "031-706-2789", + "score": 4.3, + "review": 55, + "duration_hours": "18:00 ~ 03:00", + "category_id": 11 + }, + { + "restaurant_id": 2176, + "name": "닙스", + "address": "경기 성남시 분당구 산운로160번길 22 105호", + "average_price": 0, + "caution": "예약불가, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 18:00 ~ 02:00", + "phone_number": "031-604-2024", + "score": 0.0, + "review": 6, + "duration_hours": "18:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2177, + "name": "프로짓", + "address": "경기 성남시 분당구 판교역로 136 힐스테이트판교역 지하1층 오렌지존 B1029호", + "average_price": 0, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,일 17:30 ~ 01:30", + "phone_number": "070-4334-0219", + "score": 5.0, + "review": 238, + "duration_hours": "17:30 ~ 01:30", + "category_id": 11 + }, + { + "restaurant_id": 2178, + "name": "웨스턴 소마", + "address": "경기 성남시 분당구 대왕판교로 660 1층 114호", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 19:00 ~ 02:00", + "phone_number": "010-5106-7012", + "score": 4.8, + "review": 23, + "duration_hours": "19:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2179, + "name": "와이키키", + "address": "경기 성남시 분당구 판교로319번길 13 디테라스 107호", + "average_price": 37714, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 19:00 ~ 02:00", + "phone_number": "031-707-0107", + "score": 4.7, + "review": 2, + "duration_hours": "19:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2180, + "name": "타임", + "address": "경기 성남시 분당구 판교공원로2길 42 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "화~토 19:00 ~ 01:00", + "phone_number": "010-8986-7888", + "score": 5.0, + "review": 4, + "duration_hours": "19:00 ~ 01:00", + "category_id": 11 + }, + { + "restaurant_id": 2181, + "name": "몰트바소마", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 3층 326호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 19:00 ~ 02:00", + "phone_number": "010-8330-0999", + "score": 3.0, + "review": 23, + "duration_hours": "19:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2182, + "name": "퀸바", + "address": "경기 성남시 분당구 판교로319번길 13", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2183, + "name": "끌로에바", + "address": "경기 성남시 분당구 판교역로192번길 14-1", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2184, + "name": "어썸스테이지", + "address": "경기 성남시 분당구 동판교로52번길 17-9 지하1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 2, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2185, + "name": "바코드", + "address": "경기 성남시 분당구 판교역로192번길 22", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 1.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2186, + "name": "설레임바", + "address": "경기 성남시 분당구 대왕판교로606번길 45 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2187, + "name": "바비", + "address": "경기 성남시 분당구 대왕판교로606번길 45 판교역 푸르지오시티 3층 301, 302호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2188, + "name": "문바", + "address": "경기 성남시 분당구 분당내곡로 151", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2189, + "name": "디얼위스키", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 230호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 19:00 ~ 03:00", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "19:00 ~ 03:00", + "category_id": 11 + }, + { + "restaurant_id": 2190, + "name": "퍼니붐", + "address": "경기 성남시 분당구 서현로210번길 16 유성트윈프라자 1차 5층 501호", + "average_price": 12400, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 19:00 ~ 03:00", + "phone_number": "070-4791-0740", + "score": 4.7, + "review": 198, + "duration_hours": "19:00 ~ 03:00", + "category_id": 11 + }, + { + "restaurant_id": 2191, + "name": "불스바", + "address": "경기 성남시 분당구 서현로210번길 10 다두프라자 3층", + "average_price": 107500, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n휠체어사용\n놀이방", + "expanded_days": "월,화,수,목,일", + "is_deleted": "\u0000", + "operating_hour": "월,화,수,목,일 19:00 ~ 03:00", + "phone_number": null, + "score": 4.8, + "review": 11, + "duration_hours": "19:00 ~ 03:00", + "category_id": 11 + }, + { + "restaurant_id": 2192, + "name": "테일스", + "address": "경기 성남시 분당구 성남대로 381 폴라리스빌딩 1층 105호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 19:00 ~ 02:30", + "phone_number": "031-714-3551", + "score": 4.4, + "review": 7, + "duration_hours": "19:00 ~ 02:30", + "category_id": 11 + }, + { + "restaurant_id": 2193, + "name": "펍포유", + "address": "경기 성남시 분당구 황새울로330번길 18", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 19:00 ~ 01:00", + "phone_number": null, + "score": 0.0, + "review": 1, + "duration_hours": "19:00 ~ 01:00", + "category_id": 11 + }, + { + "restaurant_id": 2194, + "name": "더펍포유", + "address": "경기 성남시 분당구 분당로53번길 21 산호프라자 3층", + "average_price": 9900, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 19:00 ~ 01:00", + "phone_number": "031-703-2061", + "score": 5.0, + "review": 0, + "duration_hours": "19:00 ~ 01:00", + "category_id": 11 + }, + { + "restaurant_id": 2195, + "name": "엠바", + "address": "경기 성남시 분당구 분당로53번길 13", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-703-5070", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2196, + "name": "아소바", + "address": "경기 성남시 분당구 수내로46번길 11", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2197, + "name": "에임", + "address": "경기 성남시 분당구 황새울로360번길 22 영건프라자 3층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2198, + "name": "탐스빌", + "address": "경기 성남시 분당구 서현로210번길 16", + "average_price": 7500, + "caution": "배달불가", + "convenience": "WIFI\n주차\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 18:00 ~ 04:00", + "phone_number": "031-706-8895", + "score": 0.0, + "review": 0, + "duration_hours": "18:00 ~ 04:00", + "category_id": 11 + }, + { + "restaurant_id": 2199, + "name": "레솔베르 시가바 라운지 분당", + "address": "경기 성남시 분당구 정자일로 197 정자동2차푸르지오시티 2층 220호", + "average_price": 24000, + "caution": "예약가능", + "convenience": "WIFI\n주차\n휠체어사용", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 12:00 ~ 01:00", + "phone_number": "010-9776-5546", + "score": 0.0, + "review": 1, + "duration_hours": "12:00 ~ 01:00", + "category_id": 11 + }, + { + "restaurant_id": 2200, + "name": "벤틀리", + "address": "경기 성남시 분당구 내정로119번길 11", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-716-2080", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2201, + "name": "바밤바", + "address": "경기 성남시 분당구 느티로 16 젤존타워1 3층 308호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2202, + "name": "녹녹", + "address": "경기 성남시 분당구 느티로87번길 7 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 18:00 ~ 02:00", + "phone_number": null, + "score": 5.0, + "review": 14, + "duration_hours": "18:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2203, + "name": "스카이라운지(SKY Lounge)", + "address": "경기 성남시 분당구 정자일로 192", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-712-6156", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2204, + "name": "썸바", + "address": "경기 성남시 분당구 성남대로331번길 13", + "average_price": 0, + "caution": "배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2205, + "name": "S라이브", + "address": "경기 성남시 분당구 성남대로331번길 9-6", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-714-5483", + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2206, + "name": "더모멘토", + "address": "경기 성남시 분당구 정자일로 146 엠코헤리츠 101동 1층 126호", + "average_price": 10000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 19:00 ~ 03:00", + "phone_number": "031-603-4481", + "score": 3.2, + "review": 1, + "duration_hours": "19:00 ~ 03:00", + "category_id": 11 + }, + { + "restaurant_id": 2207, + "name": "살롱드위스키", + "address": "경기 성남시 분당구 성남대로331번길 3-13 1층", + "average_price": 0, + "caution": "예약가능", + "convenience": "WIFI", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 19:00 ~ 02:00", + "phone_number": "050-5091-0917", + "score": 5.0, + "review": 1, + "duration_hours": "19:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2208, + "name": "MA BAR", + "address": "경기 성남시 분당구 장미로86번길 6 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 0.0, + "review": 0, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2209, + "name": "올드톰", + "address": "경기 성남시 분당구 정자일로 140 202동 125호", + "average_price": 19000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 18:00 ~ 02:00", + "phone_number": "031-719-2789", + "score": 0.0, + "review": 0, + "duration_hours": "18:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2210, + "name": "텍사스로드하우스 현대백화점판교점", + "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", + "average_price": 56100, + "caution": "예약불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목", + "is_deleted": "\u0000", + "operating_hour": "월~목 10:30 ~ 20:00", + "phone_number": "031-5170-1046", + "score": 3.0, + "review": 685, + "duration_hours": "10:30 ~ 20:00", + "category_id": 11 + }, + { + "restaurant_id": 2211, + "name": "디셈버세컨드", + "address": "경기 성남시 분당구 판교역로192번길 22 판교효성패링턴 타워 2층 202호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 17:00 ~ 02:00", + "phone_number": "0507-1430-9630", + "score": 5.0, + "review": 60, + "duration_hours": "17:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2212, + "name": "몰트바 케이브", + "address": "경기 성남시 분당구 분당내곡로 151 2층 201호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 19:00 ~ 02:00", + "phone_number": "0502-5551-5353", + "score": 4.7, + "review": 83, + "duration_hours": "19:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2213, + "name": "진달래", + "address": "경기 성남시 분당구 산운로 146", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": null, + "score": 5.0, + "review": 1, + "duration_hours": "null", + "category_id": 11 + }, + { + "restaurant_id": 2214, + "name": "알아이피", + "address": "경기 성남시 분당구 서현로210번길 17 광림프라자 지하1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 18:00 ~ 04:00", + "phone_number": "031-706-0701", + "score": 4.2, + "review": 4, + "duration_hours": "18:00 ~ 04:00", + "category_id": 11 + }, + { + "restaurant_id": 2215, + "name": "에이치앤에이치바", + "address": "경기 성남시 분당구 황새울로360번길 24 대명코아 2층 206~207호", + "average_price": 22692, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 19:00 ~ 02:00", + "phone_number": "0503-7151-0052", + "score": 3.0, + "review": 112, + "duration_hours": "19:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2216, + "name": "멜트인몰트", + "address": "경기 성남시 분당구 황새울로360번길 24 대명코어 2층 205호", + "average_price": 18000, + "caution": "유의사항 정보 없음", + "convenience": "WIFI\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 19:00 ~ 03:00", + "phone_number": null, + "score": 4.6, + "review": 24, + "duration_hours": "19:00 ~ 03:00", + "category_id": 11 + }, + { + "restaurant_id": 2217, + "name": "모조더라운지", + "address": "경기 성남시 분당구 장미로 42 리더스빌딩 113호", + "average_price": 4700, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수", + "is_deleted": "\u0000", + "operating_hour": "월~수 08:00 ~ 18:00", + "phone_number": "031-704-0120", + "score": 4.3, + "review": 0, + "duration_hours": "08:00 ~ 18:00", + "category_id": 11 + }, + { + "restaurant_id": 2218, + "name": "소셜197", + "address": "경기 성남시 분당구 정자일로 197 1층 119호", + "average_price": 0, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 19:00 ~ 02:00", + "phone_number": "0503-7150-7174", + "score": 0.0, + "review": 7, + "duration_hours": "19:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2219, + "name": "조이펀", + "address": "경기 성남시 분당구 황새울로360번길 24 대명코아 5층 503~504호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 19:30 ~ 06:05", + "phone_number": "031-709-7905", + "score": 5.0, + "review": 5, + "duration_hours": "19:30 ~ 06:05", + "category_id": 11 + }, + { + "restaurant_id": 2220, + "name": "아지트바", + "address": "경기 성남시 분당구 성남대로331번길 13 백궁프라자1 4층 410호", + "average_price": 62000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 19:00 ~ 03:00", + "phone_number": null, + "score": 0.0, + "review": 2, + "duration_hours": "19:00 ~ 03:00", + "category_id": 11 + }, + { + "restaurant_id": 2221, + "name": "코너21", + "address": "경기 성남시 분당구 정자일로 136 정자역엠코헤리츠3단지 301동 112호", + "average_price": 20600, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 18:00 ~ 02:00", + "phone_number": "010-9429-7003", + "score": 0.0, + "review": 67, + "duration_hours": "18:00 ~ 02:00", + "category_id": 11 + }, + { + "restaurant_id": 2222, + "name": "살토", + "address": "경기 성남시 분당구 정자일로 136 정자역 엠코헤리츠 3단지 C동 105, 106호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 22:00", + "phone_number": null, + "score": 4.3, + "review": 48, + "duration_hours": "11:00 ~ 22:00", + "category_id": 11 + }, + { + "restaurant_id": 2223, + "name": "뮤직온", + "address": "경기 성남시 분당구 야탑로105번길 12-6 2층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 19:00 ~ 01:00", + "phone_number": "0502-5550-0421", + "score": 5.0, + "review": 67, + "duration_hours": "19:00 ~ 01:00", + "category_id": 11 + }, + { + "restaurant_id": 2224, + "name": "오마카세 오사이초밥 판교점", + "address": "경기 성남시 분당구 판교역로 180 알파타워 1층 106호", + "average_price": 24000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "0507-1402-0542", + "score": 0.0, + "review": 0, + "duration_hours": "15:00 ~ 17:00", + "category_id": 12 + }, + { + "restaurant_id": 2225, + "name": "오마카세 스시이찌 판교점", + "address": "경기 성남시 분당구 판교역로192번길 22 판교효성 해링턴타워 2층 201호", + "average_price": 31500, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:00", + "phone_number": "031-778-8002", + "score": 4.0, + "review": 25, + "duration_hours": "15:00 ~ 17:00", + "category_id": 12 + }, + { + "restaurant_id": 2226, + "name": "스시쿤 판교", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스몰 1차 지하1층 115호", + "average_price": 65000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 18:00", + "phone_number": "031-628-6972", + "score": 0.0, + "review": 128, + "duration_hours": "15:00 ~ 18:00", + "category_id": 12 + }, + { + "restaurant_id": 2227, + "name": "스시혼 판교본점", + "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층 137,138호", + "average_price": 34909, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 22:00", + "phone_number": null, + "score": 3.5, + "review": 3, + "duration_hours": "11:30 ~ 22:00", + "category_id": 12 + }, + { + "restaurant_id": 2228, + "name": "초루", + "address": "경기 성남시 분당구 서판교로44번길 3-19 1층", + "average_price": 40000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 14:30 ~ 17:00", + "phone_number": "031-705-7676", + "score": 0.0, + "review": 89, + "duration_hours": "14:30 ~ 17:00", + "category_id": 12 + }, + { + "restaurant_id": 2229, + "name": "스시쇼우민", + "address": "경기 성남시 분당구 운중로125번길 14-10 1층 101호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-781-8070", + "score": 4.5, + "review": 79, + "duration_hours": "null", + "category_id": 12 + }, + { + "restaurant_id": 2230, + "name": "스시코호시", + "address": "경기 성남시 분당구 판교역로 230 1층 124호", + "average_price": 80000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 18:30", + "phone_number": "031-698-4777", + "score": 3.2, + "review": 125, + "duration_hours": "15:00 ~ 18:30", + "category_id": 12 + }, + { + "restaurant_id": 2231, + "name": "스시다케루", + "address": "경기 성남시 분당구 판교역로10번길 12 1층 102호", + "average_price": 0, + "caution": "예약가능", + "convenience": "편의시설 정보 없음", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 15:00 ~ 17:00", + "phone_number": "031-701-7017", + "score": 0.0, + "review": 128, + "duration_hours": "15:00 ~ 17:00", + "category_id": 12 + }, + { + "restaurant_id": 2232, + "name": "스시이야시", + "address": "경기 성남시 분당구 판교역로 136 1층 1059호", + "average_price": 90000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 17:00", + "phone_number": "031-778-7017", + "score": 4.4, + "review": 31, + "duration_hours": "16:00 ~ 17:00", + "category_id": 12 + }, + { + "restaurant_id": 2233, + "name": "스시히로", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 109호", + "average_price": 110000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 09:00 ~ 22:00", + "phone_number": null, + "score": 4.0, + "review": 27, + "duration_hours": "09:00 ~ 22:00", + "category_id": 12 + }, + { + "restaurant_id": 2234, + "name": "Ymr커피", + "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 1-100호", + "average_price": 7809, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 10:00 ~ 17:00", + "phone_number": "031-707-7678", + "score": 4.8, + "review": 84, + "duration_hours": "10:00 ~ 17:00", + "category_id": 12 + }, + { + "restaurant_id": 2235, + "name": "스시료코", + "address": "경기 성남시 분당구 수내로 38 두산위브센티움1 1층 101호", + "average_price": 84166, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 17:30", + "phone_number": "031-719-2013", + "score": 4.1, + "review": 120, + "duration_hours": "15:00 ~ 17:30", + "category_id": 12 + }, + { + "restaurant_id": 2236, + "name": "스시강", + "address": "경기 성남시 분당구 수내로 38 1층", + "average_price": 5300, + "caution": "예약가능, 포장가능", + "convenience": "WIFI", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 15:00 ~ 17:00", + "phone_number": "031-711-9907", + "score": 3.9, + "review": 17, + "duration_hours": "15:00 ~ 17:00", + "category_id": 12 + }, + { + "restaurant_id": 2237, + "name": "스시고산", + "address": "경기 성남시 분당구 백현로101번길 16 2층", + "average_price": 40000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 14:00 ~ 17:00", + "phone_number": "031-717-4353", + "score": 3.3, + "review": 88, + "duration_hours": "14:00 ~ 17:00", + "category_id": 12 + }, + { + "restaurant_id": 2238, + "name": "오마카세오사이초밥 정자역점", + "address": "경기 성남시 분당구 정자일로213번길 10 성원상떼뷰리젠시 101동 107호", + "average_price": 24000, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:30 ~ 21:00", + "phone_number": "0507-1490-0544", + "score": 4.1, + "review": 0, + "duration_hours": "11:30 ~ 21:00", + "category_id": 12 + }, + { + "restaurant_id": 2239, + "name": "스시언", + "address": "경기 성남시 분당구 정자일로213번길 18 성원상떼뷰리젠시 201동 102호", + "average_price": 60000, + "caution": "예약가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 18:00", + "phone_number": "010-7132-9069", + "score": 4.4, + "review": 120, + "duration_hours": "15:00 ~ 18:00", + "category_id": 12 + }, + { + "restaurant_id": 2240, + "name": "스시쵸우센", + "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 1층 104호", + "average_price": 65000, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-704-0207", + "score": 3.2, + "review": 39, + "duration_hours": "15:00 ~ 17:00", + "category_id": 12 + }, + { + "restaurant_id": 2241, + "name": "하루초밥 이매점", + "address": "경기 성남시 분당구 판교로 442 우일프라자 1층 102호", + "average_price": 8009, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 14:30 ~ 17:00", + "phone_number": "070-7672-3222", + "score": 4.9, + "review": 1, + "duration_hours": "14:30 ~ 17:00", + "category_id": 12 + }, + { + "restaurant_id": 2242, + "name": "유쉐프의도시어부", + "address": "경기 성남시 분당구 정자일로 192 지파크프라자 1층 103호", + "average_price": 67111, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 17:00 ~ 01:00", + "phone_number": "031-717-1678", + "score": 3.2, + "review": 32, + "duration_hours": "17:00 ~ 01:00", + "category_id": 12 + }, + { + "restaurant_id": 2243, + "name": "서현초밥", + "address": "경기 성남시 분당구 서현로 192 야베스밸리 1층 102호", + "average_price": 38000, + "caution": "예약가능, 포장가능", + "convenience": "동물출입\n주차\n놀이방\n흡연실", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 10:00 ~ 22:00", + "phone_number": null, + "score": 4.3, + "review": 18, + "duration_hours": "10:00 ~ 22:00", + "category_id": 12 + }, + { + "restaurant_id": 2244, + "name": "오도루네코", + "address": "경기 성남시 분당구 내정로173번길 49 궁전프라자3 1층 128호", + "average_price": 0, + "caution": "포장가능", + "convenience": "WIFI\n주차\n흡연실", + "expanded_days": "화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "화~일 11:30 ~ 20:00", + "phone_number": "070-7769-2074", + "score": 5.0, + "review": 14, + "duration_hours": "11:30 ~ 20:00", + "category_id": 12 + }, + { + "restaurant_id": 2245, + "name": "금호생선초밥", + "address": "경기 성남시 분당구 내정로165번길 38 금호행복시장 2층", + "average_price": 20600, + "caution": "예약가능, 배달가능, 포장가능", + "convenience": "WIFI\n동물출입\n주차\n휠체어사용", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 09:30 ~ 21:00", + "phone_number": "031-711-8093", + "score": 2.5, + "review": 5, + "duration_hours": "09:30 ~ 21:00", + "category_id": 12 + }, + { + "restaurant_id": 2246, + "name": "슌", + "address": "경기 성남시 분당구 장미로 42 야탑리더스 124,125호", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 16:00 ~ 02:00", + "phone_number": "031-709-5795", + "score": 3.7, + "review": 148, + "duration_hours": "16:00 ~ 02:00", + "category_id": 12 + }, + { + "restaurant_id": 2247, + "name": "스시하루쿠", + "address": "경기 성남시 분당구 판교대장로7길 5-19 1층 102호", + "average_price": 115000, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 15:00 ~ 18:00", + "phone_number": "031-713-3562", + "score": 5.0, + "review": 52, + "duration_hours": "15:00 ~ 18:00", + "category_id": 12 + }, + { + "restaurant_id": 2248, + "name": "스시소라 정자점", + "address": "경기 성남시 분당구 성남대로331번길 13 3층", + "average_price": 104000, + "caution": "예약가능, 배달불가, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 12:00 ~ 21:50", + "phone_number": "031-717-2700", + "score": 4.3, + "review": 381, + "duration_hours": "12:00 ~ 21:50", + "category_id": 12 + }, + { + "restaurant_id": 2249, + "name": "사카나야", + "address": "경기 성남시 분당구 쇳골로17번길 19 1층", + "average_price": 92571, + "caution": "예약가능, 포장가능", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": "031-702-0300", + "score": 4.2, + "review": 85, + "duration_hours": "15:00 ~ 17:00", + "category_id": 12 + }, + { + "restaurant_id": 2250, + "name": "부성초밥 야탑본점", + "address": "경기 성남시 분당구 성남대로925번길 11 1층", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:30", + "phone_number": "031-703-3999", + "score": 0.0, + "review": 29, + "duration_hours": "11:00 ~ 21:30", + "category_id": 12 + }, + { + "restaurant_id": 2251, + "name": "오마카세의", + "address": "경기 성남시 분당구 정자일로 135", + "average_price": 0, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 15:00 ~ 17:00", + "phone_number": null, + "score": 3.0, + "review": 31, + "duration_hours": "15:00 ~ 17:00", + "category_id": 12 + }, + { + "restaurant_id": 2252, + "name": "스시야", + "address": "경기 성남시 분당구 정자일로 146 엠코헤리츠 1단지 101동 203호", + "average_price": 27600, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 12:00 ~ 22:00", + "phone_number": "031-717-6689", + "score": 3.6, + "review": 225, + "duration_hours": "12:00 ~ 22:00", + "category_id": 12 + }, + { + "restaurant_id": 2253, + "name": "쿠모야", + "address": "경기 성남시 분당구 성남대로925번길 16 201동 상가 203~207호", + "average_price": 10160, + "caution": "유의사항 정보 없음", + "convenience": "편의시설 정보 없음", + "expanded_days": "월,화,수,목,금,토,일", + "is_deleted": "\u0000", + "operating_hour": "매일 11:00 ~ 21:00", + "phone_number": "031-702-2270", + "score": 4.4, + "review": 25, + "duration_hours": "11:00 ~ 21:00", + "category_id": 12 + }, + { + "restaurant_id": 2254, + "name": "스시윤", + "address": "경기 성남시 분당구 성남대로926번길 6 야탑대덕프라자 310호", + "average_price": 16857, + "caution": "유의사항 정보 없음", + "convenience": "주차", + "expanded_days": "월,화,수,목,금,토", + "is_deleted": "\u0000", + "operating_hour": "월~토 18:00 ~ 22:00", + "phone_number": "070-4833-4506", + "score": 4.8, + "review": 65, + "duration_hours": "18:00 ~ 22:00", + "category_id": 12 + }, + { + "restaurant_id": 2255, + "name": "만리어 장어 판교유스페이스점", + "address": "경기 성남시 분당구 대왕판교로 660 유스페이스몰1 지하1층 A동 113호", + "average_price": 46333, + "caution": "예약가능, 배달불가, 포장불가", + "convenience": "WIFI\n동물출입\n주차", + "expanded_days": "월,화,수,목,금", + "is_deleted": "\u0000", + "operating_hour": "월~금 11:30 ~ 22:00", + "phone_number": "010-2669-7017", + "score": 3.5, + "review": 25, + "duration_hours": "11:30 ~ 22:00", + "category_id": 12 + }, + { + "restaurant_id": 2256, + "name": "수요리식당", + "address": "경기 성남시 분당구 판교역로 230 B동 지하1층 b126호", + "average_price": 55000, + "caution": "유의사항 정보 없음", + "convenience": "동물출입\n휠체어사용\n놀이방\n흡연실", + "expanded_days": "null", + "is_deleted": "\u0000", + "operating_hour": "null", + "phone_number": "031-697-8996", + "score": 5.0, + "review": 3, + "duration_hours": "null", + "category_id": 12 + } +] \ No newline at end of file diff --git a/storage/input_json/restaurants_table1.json b/storage/input_json/restaurants_table1.json deleted file mode 100644 index 28d0b17..0000000 --- a/storage/input_json/restaurants_table1.json +++ /dev/null @@ -1,1005 +0,0 @@ -[ - { - "db_category_id": 1, - "restaurant_id": 1, - "name": "이가네양꼬치 판교본점", - "category_id": "중식", - "score": 4.0, - "review": 570, - "address": "경기 성남시 분당구 분당내곡로 155 KCC웰츠타워 104호", - "operating_hour": "매일 12:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 24:00", - "phone_number": 50713599688.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMjhfMTcz%2FMDAxNjk4NDkxMTgxMzYy.-3gFe2PO7rIPSDrlwbeOmiiSqMJQ66LgdVf1brGU18kg.OpOiCJe6eEFn0AcJ8BU1836sNDtOKGE4b3rzT1LsN5sg.JPEG.dpfxj1111%2F20231028%25EF%25BC%25BF171124.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F97392C3687274644B112066A925206EB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdf78e8d8a355447db13edf045f44a2f00fc387d1%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 2, - "name": "동청담 삼평직영점", - "category_id": "중식", - "score": 3.2, - "review": 39, - "address": "경기 성남시 분당구 대왕판교로606번길 45 푸르지오시티 2층 206호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317057777.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F16D1FEFB3DD449648023A221981855FF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe265568293a86fc9504782554887d6c9364099f7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3e6b914c4171fca1f47317ddddf551802ef9c49b%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 3, - "name": "차알 판교점", - "category_id": "중식", - "score": 2.9, - "review": 690, - "address": "경기 성남시 분당구 동판교로177번길 25 판교아비뉴프랑 2층 214-215호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317017679.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FBA3952388F0348B7B931B9B3B061B687, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F0D71DB703C11469CB551DF722E01FE6E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F5CAE69DCB1A14B34B410DC220D7A6CBF", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 4, - "name": "몽중헌 판교점", - "category_id": "중식", - "score": 3.7, - "review": 356, - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 2층", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 316017574.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F00FD2F7C54FC404C9CFF6D2D11FC47D2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6370D7FC53FC4E4EA6EF0EB5C11BFDAB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F49380BDD1A8B426ABC530CF37A206308", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 5, - "name": "최고집짬뽕", - "category_id": "중식", - "score": 3.3, - "review": 65, - "address": "경기 성남시 분당구 판교역로10번길 12-9", - "operating_hour": "매일 15:30 ~ 16:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:30 ~ 16:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBC0425B4A201423EAEB0A5B9D3DDF90C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc4bd0e01eba467395cb0befb258d7c342335a123%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqdh3RARi6_KZfwMV3YRhatB4Gf9gvGR0_img.jpg", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 6, - "name": "청계산수타", - "category_id": "중식", - "score": 3.3, - "review": 16, - "address": "경기 성남시 분당구 판교공원로5길 22 1층", - "operating_hour": "매일 10:40 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:40 ~ 21:00", - "phone_number": 317077647.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCBC21D8C02FF419ABDBC007A2D5389AA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc05a0ebac454496ccbc4ed8d20f12387a67bb2d3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa1edaf09a493e344d39b8015969d5289b6e49556ea62d5790e111662341ff86d", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 7, - "name": "신승반점 현대백화점판교점", - "category_id": "중식", - "score": 3.5, - "review": 379, - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~금 15:00 ~ 16:30", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 16:30", - "phone_number": 3151701051.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_176977703, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_199403226, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1295530062", - "convenience": "주차", - "caution": "예약불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 8, - "name": "베이징스토리", - "category_id": "중식", - "score": 2.6, - "review": 51, - "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 1층 120-1호", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 316960306.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F22128E45524E30CB09, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2770763D524E310D1D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F21537642524E311008", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 9, - "name": "마라공방 판교점", - "category_id": "중식", - "score": 3.7, - "review": 121, - "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋센터 2층 206호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 3180610780.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F669D7BAC37104B36A3D8E6A2FC8983B1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F006B465C9A5246BAAF4B76E815DD22AE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F94909EC75A7045CFB95886EDB234E11F", - "convenience": "주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 10, - "name": "명품조박사짬뽕짜장", - "category_id": "중식", - "score": 3.7, - "review": 36, - "address": "경기 성남시 분당구 동판교로 153 1층", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 7077185446.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0784AA1E82CB4E0EB1C03184ABF76C4C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqhyRG8Arr_GtmaJszNKfVWKaAKzXnZKK_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqhyjqhwcy_JOnw09K282lq3PCp8xw7cK_img.jpg", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 11, - "name": "전국5대짬뽕연화산", - "category_id": "중식", - "score": 3.4, - "review": 67, - "address": "경기 성남시 분당구 서판교로58번길 14", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317816350.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8424D495CF5944ACB5E3633BC3B996DC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F74677e854944460a9decfff29789b20a1d44399c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1abb316a163d2d063d28c0acfd94c94cbc3789a0%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 12, - "name": "왕스덕", - "category_id": "중식", - "score": 3.1, - "review": 183, - "address": "경기 성남시 분당구 대왕판교로645번길 36 지하1층", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 316068517.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F96A9AF7C198D4C76AF6F4319C2F909C6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3bef44b94fa60aa01e78500c9b598933e16fe680%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F71379f7d43159cfffd4010474af1786e8cf87d04%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 13, - "name": "공화춘 현대백화점판교점", - "category_id": "중식", - "score": 3.2, - "review": 134, - "address": "경기 성남시 분당구 판교역로146번길 20 5층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 3151701580.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD979CF8B6D5B45B98F7165570A7B58ED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc65d9b4b92d12c99ff5b92f59ae4d802c05ffed5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc87295a5fda768b97659d748246e775bb66541bd%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 14, - "name": "차엔", - "category_id": "중식", - "score": 3.6, - "review": 31, - "address": "경기 성남시 분당구 판교역로 235 H스퀘어 N동 1층", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 316967667.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FCB7D69506F0A4A1CBD4A5AD0260AC1C6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FDD6C069E499C408CB6E54D19DC548725, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FC484D11A90FF4621AA92A0695CF30FCB", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 15, - "name": "하이보", - "category_id": "중식", - "score": 3.5, - "review": 162, - "address": "경기 성남시 분당구 판교역로192번길 14-1 2층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 3180178615.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F3E540E6D5A314AFC912330FFF91679EE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F67EE57DBA60B4BE7B30DDA6E741D1C20, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F893AA6878FA74DB59F5716E4181D87E3", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 16, - "name": "덕후선생 판교아비뉴프랑", - "category_id": "중식", - "score": 4.2, - "review": 72, - "address": "경기 성남시 분당구 동판교로177번길 25 판교호밋써밋플레이스 2층 233-2,234,235호", - "operating_hour": "월~금 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:00", - "phone_number": 316055252.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb030003f83f72bc2fcf0416263638413eea91cd1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1e8f3d8c69b7f8a22196e550fbca524deb062094%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F631f71ff103bfaa85d18157fa27fea6030aaf55a%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 17, - "name": "js가든 판교점", - "category_id": "중식", - "score": 4.2, - "review": 11, - "address": "경기 성남시 분당구 판교역로146번길 20 9층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 3151701957.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2C2B2649054845549D4AEB9F7BB7C096, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBF7242DF2AF84BF7BF7103531745632B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F23DFCF87DDBA4CFEA7FF39AE5ADA4E83", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 18, - "name": "팔복판교", - "category_id": "중식", - "score": 4.0, - "review": 318, - "address": "경기 성남시 분당구 판교역로241번길 22 판교엠타워 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FED5E641F143346D493BD4384A96F8453, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F888ef44dadc413af934bce41f9145eb953b281bf%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F72b530f882da5e353ad35e690036e5ae9b19e319%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 19, - "name": "이가네양꼬치 유스페이스점", - "category_id": "중식", - "score": 4.2, - "review": 42, - "address": "경기 성남시 분당구 대왕판교로 660 2층 212호", - "operating_hour": "매일 14:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:00 ~ 02:00", - "phone_number": 317242688.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF5EC864A3B3C40169F9525DF87EFE202, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA90FC69F4DD74540B4D5ABD87AFCD835, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5f4e2646bb4bea62fb42089f922cc9ff503004a5%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 20, - "name": "미성양꼬치 판교점", - "category_id": "중식", - "score": 3.7, - "review": 111, - "address": "경기 성남시 분당구 판교역로192번길 22 판교효성해링턴타워 1층 107호", - "operating_hour": "매일 12:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 24:00", - "phone_number": 317085888.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F8F81049EA611442A8FE0262FD6A67C07, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FA7691E2F0AB64B36BC9A324D8E400B51, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F78800AAC510340BAA28D30CA0FACA332", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 21, - "name": "양우양꼬치", - "category_id": "중식", - "score": 4.4, - "review": 19, - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 144호, 152~154호", - "operating_hour": "월~금 14:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 24:00", - "phone_number": 317242500.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7EBE456EA3D7461B910D86C1C2961640, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb505043f0126a66d72230b8d1ed6db96babec03a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MTVfNTQg%2FMDAxNzEzMTg1Nzc5NDMw.irg-qltpNDYT1UCkIKLJdekadIgS9PLWYdpSHGEm2Q4g.Xw_Vj2kY_bi6xpaEDOfyjht0ijaTOUTZm2rc7tiW1Ukg.JPEG%2FIMG_6694.jpg%3Ftype%3Dw773", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 22, - "name": "하파 판교점", - "category_id": "중식", - "score": 3.6, - "review": 21, - "address": "경기 성남시 분당구 판교역로 145 알파리움2단지 2층 204,205호", - "operating_hour": "매일 14:40 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:40 ~ 17:00", - "phone_number": 317051117.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4FA40EF5B09949848991ACD30F20441E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0cb5da36e88fcb7fd6f56e18a1e5becaef763877%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc25c1236acacaa1bfde674f985eec11a4b3355ee%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 23, - "name": "진궁 운중점", - "category_id": "중식", - "score": 3.3, - "review": 10, - "address": "경기 성남시 분당구 운중로125번길 3-5 1층", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": 3180168181.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F1966CD404E9254AE02, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8b48a4a27a396ee03d392a8bf06b89934b098d16%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F94304f3d64b1e1eb50bc9c1b4554b0e1e27c47d4%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 24, - "name": "페이딤 판교점", - "category_id": "중식", - "score": 3.4, - "review": 191, - "address": "경기 성남시 분당구 판교역로 152 알파돔타워 2층 9호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 1081928528.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FE59727508D9C4F578F253A8774E50AD0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F441C78F61CDC44B1B8C091CE2772280A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FBB5036DECD66430DB48D5F519C76261D", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 25, - "name": "칭따오", - "category_id": "중식", - "score": 3.4, - "review": 253, - "address": "경기 성남시 분당구 판교로255번길 9-22 우림W시티 지하1층 105호", - "operating_hour": "월~금 11:00 ~ 20:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 20:30", - "phone_number": 316287750.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC5A86F926EC046F59400273CE68F5147, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F809ff9cd238df7c5e2dfb286044f57631a9c3b72%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F35c33b8880338384a406d21438812efba034dc2e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 26, - "name": "찬", - "category_id": "중식", - "score": 4.7, - "review": 35, - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 157~158호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 316982551.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0d9dbf2d5e527ba26e119bc3f0a5fd42d19bd80b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F056606fd05b02af6c0b2a7ddfc7507b233df3347%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Feddf34830aa91a189605a60e0c954c2f663bfa33%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 27, - "name": "동사부마라탕", - "category_id": "중식", - "score": 4.5, - "review": 34, - "address": "경기 성남시 분당구 판교역로192번길 14-2 골드타워 2층 211호", - "operating_hour": "월~금 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 22:00", - "phone_number": 3180165506.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F3F4829F2DE6640C2854737D4851FD24E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F1068FA5C565C4F29A811D415903EF9E2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F36035349FE004391ACD0146E4512186B", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 28, - "name": "최고야전국5대짬뽕 판교4호점", - "category_id": "중식", - "score": 1.9, - "review": 5, - "address": "경기 성남시 분당구 판교로227번길 6", - "operating_hour": "월~금 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F81D09C7D85724D56B7AB2F4DA3987A76, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F935d35178ddc9cef79bb04a97b316e4af6e5522f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FwMq2u%2FbtrDi4DXpxc%2FGm9B7NAaPES6if1Oo2hC10%2Fimg.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 29, - "name": "왕징양다리양꼬치 판교직영점", - "category_id": "중식", - "score": 4.7, - "review": 86, - "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움1단지 타워1동 2층 205~206호", - "operating_hour": "월~금 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 23:00", - "phone_number": 317055688.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F914523C5723B41B79049CD04D089F2A5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8656C7C885A84E4DA929C250D8083109, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMzBfMjkw%2FMDAxNzMwMjc1NjU5NDM1.cd5DS4Gf21hu4_hd8idduoZ7pNezdR_ukoEoli4bN0cg.1v-UMr4TUGdvqphXlsgRc7F87zbNIcTk0SGoUueuwI0g.JPEG%2FSE-4becb095-5ef2-4f7f-83b6-7b524fcea547.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 30, - "name": "골드피쉬 얌차하우스", - "category_id": "중식", - "score": 3.4, - "review": 331, - "address": "경기 성남시 분당구 동판교로177번길 25 아브뉴프랑 1층 112호", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 1053935266.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 31, - "name": "홍짜장 서판교역점", - "category_id": "중식", - "score": 2.6, - "review": 8, - "address": "경기 성남시 분당구 운중로 135 더원스퀘어 105호", - "operating_hour": "월,화,수,목,금,일 11:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,일", - "time_range": "11:00 ~ 20:00", - "phone_number": 317032200.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F92C96420905E49568DF9B267C4182C7E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F93d56bafcdbba67af40199a72c88a545351d24ca%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff28151be53abf309902fa431fdda7bf63037ae27%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 32, - "name": "차이펑", - "category_id": "중식", - "score": 5.0, - "review": 28, - "address": "경기 성남시 분당구 판교로319번길 13", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 215770000.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5FEF576EFC544C2C8552DD34BB3119C4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MDZfMjEz%2FMDAxNzIyOTMwNjY4NDQx.mhsX4A_cHsU2ILJUvqDB7JoGsyQblhLPBR98PBzPcLEg.AOOWVLXPz-sVt9nJc5Y-b6iDlqMlTj__vGVE0U3tCN4g.JPEG%2F20240703%25EF%25BC%25BF130126.jpg%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MDZfMTU0%2FMDAxNzIyOTMwNjY4MTQ1.u5Df_HRf2aymgMvW8FbyeQolr-IxqREBlURGD_pDGGQg.LJvfD2FpwcBueM6qk_oMMTQCcV_zP1ghfr-FoOGVbwAg.JPEG%2F20240703%25EF%25BC%25BF130039.jpg%3Ftype%3Dw580", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 33, - "name": "고수양꼬치", - "category_id": "중식", - "score": 3.7, - "review": 81, - "address": "경기 성남시 분당구 판교역로 145", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 317074111.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0E8375958B034C8F893338FF83CAECB6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb3aa4ae94d98b0563e30ac5bed3b3fdb5ec61411%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F37220ee474783916d3a577173400f0defd5062df%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 34, - "name": "쌍팔반점 동판교점", - "category_id": "중식", - "score": 4.4, - "review": 70, - "address": "경기 성남시 분당구 대왕판교로606번길 58 1층 103호", - "operating_hour": "월~토 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:30 ~ 22:00", - "phone_number": 317088189.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F332B1CB6374D42B6B5FCFEF1AA841D36, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0f08ff5c9280eb6417c305c0241749175aefc6f6%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff5286b67078cc1cdb07dab54cde1913e1121ac55%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 35, - "name": "일미양꼬치 판교역점", - "category_id": "중식", - "score": 4.3, - "review": 14, - "address": "경기 성남시 분당구 대왕판교로606번길 31 1층 115~117호", - "operating_hour": "매일 11:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 02:00", - "phone_number": 317118188.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F71E6388C13104DE3925D6350453A1A9A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2dc259db69259f57d2836e6296e2041db690e313384568b686b812342115685d, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5B5BC3562F70477E99B46CF0B00B1FE4", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 36, - "name": "다원", - "category_id": "중식", - "score": 4.3, - "review": 3, - "address": "경기 성남시 분당구 판교로 393 봇들마을2단지EG더원아파트 상가 1동 1층 B117호", - "operating_hour": "매일 10:00 ~ 20:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 20:30", - "phone_number": 317060774.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 37, - "name": "오한수우육면가 판교점", - "category_id": "중식", - "score": 4.1, - "review": 76, - "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어 S동 지하1층", - "operating_hour": "월~금 15:30 ~ 16:30", - "expanded_days": "월,화,수,목,금", - "time_range": "15:30 ~ 16:30", - "phone_number": 317893505.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F50184352AA1C4244838DE2A46D3C810C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F38639bea2f876d780af5d91c076ded1923c099f5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F80f052f92e9e064a9a6342cb4e906b4a151d9904%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 38, - "name": "양하오양꼬치", - "category_id": "중식", - "score": 3.4, - "review": 10, - "address": "경기 성남시 분당구 판교공원로2길 52 1층", - "operating_hour": "월~토 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 23:00", - "phone_number": 3180163339.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB43A4D6FFEBF4A0387D3F91AFBFF252B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4debe49f5e33c7721364011c5ee8f92ff7554879%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F873f242015f2830094aff315fb1d9319baa31d3d%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 39, - "name": "보배반점 판교점", - "category_id": "중식", - "score": 2.3, - "review": 29, - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 1층 128호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 316970616.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1505052D65B947618252B781A7566D63, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F45496de9524b57440ea93a3c882b9ad8375016bd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe024ef9ea5747b6db1b889820fa731f8ea611f39%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 40, - "name": "락앤웍 테크노밸리점", - "category_id": "중식", - "score": 2.6, - "review": 13, - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 지하1층", - "operating_hour": "월~금 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:00", - "phone_number": 3180184444.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC9ECCE0117E646B2A494B7B29E697CBB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F45da4d850c12e08376d22652d335c8197c8a04d1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcPMCIZym_8MbXCZFUImCPxhmys1YPD1_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 41, - "name": "라홍방마라탕 서판교운중점", - "category_id": "중식", - "score": 5.0, - "review": 45, - "address": "경기 성남시 분당구 운중로 124 204호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317037779.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1b49af36db06286405fd4d45b06c4b0284246cb3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB1074E9862344F0E856413C3777DC469, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc3231f0064b6f08199e98869977c82d3d99cb7c0%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 42, - "name": "미메이라", - "category_id": "중식", - "score": 3.1, - "review": 14, - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 120호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 43, - "name": "마라장룡 삼평점", - "category_id": "중식", - "score": 4.4, - "review": 13, - "address": "경기 성남시 분당구 삼평동 718 봇들마을4단지아파트 2층 202호", - "operating_hour": "매일 11:30 ~ 22:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:30", - "phone_number": 317078910.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F68BDE5CEFA1D45E7889ABEE0A0B96799, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F08c6058e2bc11e14a9c749b3d803e2aa95f097f5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffca4b75b7c45653bb31cfa444dcdf4c875903786%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 44, - "name": "마라장룡 마라샹궈마라탕", - "category_id": "중식", - "score": 3.8, - "review": 7, - "address": "경기 성남시 분당구 운중로125번길 4-9", - "operating_hour": "매일 11:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5D08F45198044055A45A001157D23469, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA1F448D793E545D99D55EEEEFE59B7A2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9F9CC206FC1747F0929247EFE33F7B62", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 45, - "name": "마부마라탕 판교점", - "category_id": "중식", - "score": 2.8, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 214호", - "operating_hour": "월~토 10:30 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:30 ~ 23:00", - "phone_number": 317398988.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc1a8351932910895e376fc3434f922606937ab71%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc1a8351932910895e376fc3434f922606937ab71%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fce3455aa3a1f836c53e8312cdbc1e5bda3198940%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 46, - "name": "호우섬 현대백화점 판교점", - "category_id": "중식", - "score": 2.8, - "review": 440, - "address": "경기 성남시 분당구 판교역로146번길 20 9층", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 3151701963.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0FA5D508A02E46398C25F3B98B6AF829, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FFB4B88FE9474496BB9CB255F085CC3D8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F78881e854a86b927e60e8e58b34c6833b5769f60%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 47, - "name": "중경별곡", - "category_id": "중식", - "score": 2.0, - "review": 1, - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 2층 222호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317398988.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F73B09259CEAC43F5AD267C0CEC115E54, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEwMjJfMjg2%2FMDAxNjY2MzY4NjE1MjQ1.041WpRzaNAOcLfqYXJ7h7W6KRGapt9KYUd-FUzxZqVQg.pYTGL7indbajz0cndLps2UTrOFDwZnU86KBkQzTFE0kg.JPEG.dj_mok%2F20221017%25EF%25BC%25BF203302.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEwMjJfMjYz%2FMDAxNjY2MzY4NjE0ODU4.H_mI4u8CPTebB5sCmiKcGtvGDYM7JU6W0aBW_0wDubMg.XD8LZzEvrTvERQUZ6q_M8-CT3dFh_IfoVRvKORTPHe8g.JPEG.dj_mok%2F20221017%25EF%25BC%25BF195843.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 48, - "name": "신라마라탕", - "category_id": "중식", - "score": 3.7, - "review": 8, - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 지하1층", - "operating_hour": "매일 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:00", - "phone_number": 317893688.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7198750A769941E0945D372BAD31B398, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Facd62c7ff83444aaa29320551b9ec8b647717d6d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8F9E33452F674975B2477B0BAF336439", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 49, - "name": "제프리웍", - "category_id": "중식", - "score": null, - "review": 12, - "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어 에스동 1층 125호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB11839382F914D3CA90B57537DC3DB88, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F00071e78fabcd8fe876804f07dea4a5b43c22d84%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3613aa61cd0fb22f6495f2d658ade7e9d0b1d3ef%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 50, - "name": "마라장룡 운중점", - "category_id": "중식", - "score": 0.0, - "review": 3, - "address": "경기 성남시 분당구 운중로125번길 4-9", - "operating_hour": "매일 11:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:30", - "phone_number": 50720869742.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2CFEC152E89A4D5EB43A563F285B14E4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD17346610C7844D386AB965CBED72DB9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEBCDAF43E3484016A0017B7D8C48AA08", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 51, - "name": "리치앤", - "category_id": "중식", - "score": 4.0, - "review": 20, - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 122호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F31BA8A5D610848FFB620BFA70ABFEB5C, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAzMjVfMTY1%2FMDAxNzExMzY1OTE3MTM1.Ez5Cz3mz87lOrs0E-mDWh0wDtjMsYqrSfLfcbnyQs9sg.Z377UF3E2ZLEJ3LDMHFDDeqFfVWDdukcGvTCQz207zog.JPEG%2F20240324_204847.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAzMjVfMjc0%2FMDAxNzExMzY1OTE3MTM2.Ml0dyjHzCiYKPoYR63ZX8viIQD8f2reihbrtXjNPYPIg.cg7PnG6HeXEQglVeWkgq4P4WXDKfk-TiiD_Q7UAxUfsg.JPEG%2F20240324_204718.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 52, - "name": "딩딤1968 현대백화점판교점", - "category_id": "중식", - "score": 3.0, - "review": 42, - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151702027.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F48B1C7E9E72A4841A65917E3CB0ABC87, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F812cb3fd684d6cfcbd33bb73814035694c45f323%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0596a6e142266455c7ec5ae6a4627599f71c071d%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 53, - "name": "왕푸징마라탕 현대백화점 판교점", - "category_id": "중식", - "score": 3.2, - "review": 10, - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 지하1층", - "operating_hour": "월~금 10:30 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701000.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F95229FFD8E80468FA66463CBE250D936, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F674eeca9bf46e5738a9d44cea311322484697c29%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F43c3c02409864234636070b3bdd99ded6816cb69%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 54, - "name": "중경별곡마라탕상궈", - "category_id": "중식", - "score": 2.5, - "review": 11, - "address": "경기 성남시 분당구 대왕판교로 670", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317398988.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F94CF3DCB654D458CA267CFD997E58BA9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMzFfMjUz%2FMDAxNzA2NjU3MDkyOTc0.-p0RvQxfw6lNTw4wPMgcA3kYdKmwJdcjHYtLG0IoKiYg.eqHHDBTsAcSzwFpCYL1yiVziLXQ-Qq3pkMLw6bvaWeUg.JPEG.koala1005%2FSE-CFF41E3D-F720-4F8E-8E82-559249825278.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzExMjlfODkg%2FMDAxNzAxMjIxNjI0NjA4.yIAsA1bKok_hTV-GWktPsCJ4Rsf8fCl3AW-sjj2ULs8g.FygwVNQ90t2RPDTxEMGcjie_rdfkUR7Opg0xDLjY018g.JPEG.ya91yul%2FIMG_0256.JPG%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 55, - "name": "진차이객잔", - "category_id": "중식", - "score": 2.4, - "review": 1, - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스몰1 지하1층 B128-4호", - "operating_hour": "월,화,목 10:30 ~ 20:30", - "expanded_days": "월,화,목", - "time_range": "10:30 ~ 20:30", - "phone_number": 316281960.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F864f048aed612fb61b320ebfe5efe02526ee0349%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F15a62fd600e179150b566ff49b706f17db9ac0cd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F747f9c2feefee4d91f440bd78c22a8ac3c07502a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 56, - "name": "마라환 판교점", - "category_id": "중식", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교공원로3길 9", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 5078977718.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5BD292B875EF4D968AB7A43C6AAB5B56, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF1CEA88F92B6495FABBE5D4324288D74, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBF128513DBD24236AE196664B9673461", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 57, - "name": "마라장룡 마라상궈마라탕", - "category_id": "중식", - "score": 0.0, - "review": 1, - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA1MTVfMTE1%2FMDAxNjUyNTkzNTE0MTE4.mx9j6JGaUenliBaT5uKVqHCpdorkh3_vEn75YpdylPkg.zCMpzorOsDkBBumYEu5riHAlfHAHbIxYOYz6yxO4y9kg.JPEG.123sysy%2FKakaoTalk_20220515_143154248_10.jpg%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA1MTVfNjgg%2FMDAxNjUyNTkzNTA2Nzk1.Y6CTBSkRYmtYbECK-N9bHun6JEWSfsrUt7jiCmheQpwg.H7Qli-ebgUZW0d9fYsgoq3jUtJ8-vGf-e5cDP9Ufc8Yg.JPEG.123sysy%2FKakaoTalk_20220515_143154248_09.jpg%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA1MTVfMTEy%2FMDAxNjUyNTkyOTAyNDg2.-beFYOEcqpYLnTkeZVf06-TVJi1FcMqlyx8nh0D_4Scg.ylR1-0HKdC030eo_stu4VEydOWzLTXjdzocq191RDjog.JPEG.123sysy%2FKakaoTalk_20220515_143154248_01.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 58, - "name": "메이루", - "category_id": "중식", - "score": 1.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교복합몰 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 1, - "restaurant_id": 59, - "name": "비스트로청", - "category_id": "중식", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 2201호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - } -] \ No newline at end of file diff --git a/storage/input_json/restaurants_table10.json b/storage/input_json/restaurants_table10.json deleted file mode 100644 index c0f0186..0000000 --- a/storage/input_json/restaurants_table10.json +++ /dev/null @@ -1,8502 +0,0 @@ -[ - { - "db_category_id": 10, - "restaurant_id": 1, - "name": "우설화 판교점", - "category_id": "고깃집", - "score": 3.7, - "review": "159", - "address": "경기 성남시 분당구 판교로 185 신화푸드빌리지 3층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317029407.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F383E105945974473A42C0027ACE08D1B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FA338503BE29E45A3AA71D8AA0BA9F9B2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F69086422965D4C6E8551D813AA38EA22", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 2, - "name": "신도세기 판교역점", - "category_id": "고깃집", - "score": 3.9, - "review": "143", - "address": "경기 성남시 분당구 판교역로 152 알파돔타워 2층 207호", - "operating_hour": "월~토 11:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 21:30", - "phone_number": 316227188.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC593658B84A742B6B73AE8200846EF5A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD7FB33C8795646F281F1F65624C61ED7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F57572BE51B22413F80EFAE8FB2FDAB14", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 3, - "name": "양우정 판교점", - "category_id": "고깃집", - "score": 4.6, - "review": "35", - "address": "경기 성남시 분당구 대왕판교로606번길 10 상가동 라스트리트 1동 1층 112~114호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317069252.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4B9AEE306E1849999B2990E0C3A280C2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F943016428C4B4DC1A01BE6F93583E4DA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F976B9189025042F3B7BC43B68C563D16", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 4, - "name": "천지연 판교점", - "category_id": "고깃집", - "score": 3.0, - "review": "52", - "address": "경기 성남시 분당구 판교로 185 신화푸드빌리지 1층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317029506.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F24256B4331F54E33A75621084D4A091E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F48d733ae8b8c69432af8f36e15d5de273863a531%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F76c3c1bc50e05f82c2bbc77d0a8b26f82709e541%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 5, - "name": "진1926 판교점", - "category_id": "고깃집", - "score": 4.1, - "review": "25", - "address": "경기 성남시 분당구 판교역로192번길 22 효성 해링턴 타워 1층 101호", - "operating_hour": "월~토 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 23:00", - "phone_number": 317070292.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF168C40DE36641EB858429EC14D1AF11, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe837ba37b7f18fbad5cc27b8086eac3929ae8667%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F013e161ed5ddc9305b2ffa35c55730a0f1433727%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 6, - "name": "숙성도 판교점", - "category_id": "고깃집", - "score": 3.7, - "review": "398", - "address": "경기 성남시 분당구 판교역로 136 힐스테이트판교역판매시설 1층 1042~1047호", - "operating_hour": "매일 11:30 ~ 22:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:30", - "phone_number": 3180239233.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4D0AAA62617C44A6865D5DA6112E38EC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFAA883636E294518A07AC8DBE70C07A3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2E4DD2E948B841118ECD01AE68223B92", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 7, - "name": "참다운정육식당 판교본점", - "category_id": "고깃집", - "score": 4.2, - "review": "1,079", - "address": "경기 성남시 분당구 판교로 182-7 지하1층 B01호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 3180168880.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5A92F88910704F96BCE92787D0896316, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F51EE23356DC84B21821748BF46BA856B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F26CB1BCE2EDB47A8BFBFFA3388A6A560", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 8, - "name": "화포식당 판교점", - "category_id": "고깃집", - "score": 4.1, - "review": "423", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 240호", - "operating_hour": "월~금 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 22:00", - "phone_number": 317242929.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA28F37DB411142CE9846E5FE1FD34B69, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F489A4D49880442C1A2FA99300EDC6D30, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC92383607391477C9246D83D4870CE0F", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 9, - "name": "얼룩도야지", - "category_id": "고깃집", - "score": null, - "review": "183", - "address": "경기 성남시 분당구 대왕판교로606번길 45 2층 205호", - "operating_hour": "매일 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 23:00", - "phone_number": 3180172840.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7F688135CFEF4C3DBB38A2C1729E890C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDVfMjYg%2FMDAxNzI1NTMzNTA2Mzgx.IMC-TVG7Aqtaj_NNhiFy9rfRUGtI9sUpGT8krgE8F7Yg.JveEqDljmv9-28imNKeV0cLf_BkHODhDXVXggMYPfeIg.JPEG%2FKakaoTalk_20240902_185343632.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDRfOSAg%2FMDAxNzMzMzE4NDkxOTIy.0sT4R8dBdQ3OT_sokohh9u3VrYxCcbtsdzdcYVwjcckg.gUo47QeohZcXjiv0PJ6z3FEL6ML0cdFtZN_3gRwcCxAg.JPEG%2F900%25EF%25BC%25BF20241014%25EF%25BC%25BF192927.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 10, - "name": "푸에르코 판교점", - "category_id": "고깃집", - "score": 2.9, - "review": "125", - "address": "경기 성남시 분당구 분당내곡로 117 그레이츠 판교 2층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 316227501.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FCFB276B4AB574EF3B6A51BC0CFC2992E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0EF20F04A47E46E9B95D1D4FE2FAFE76, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F82780DDCE6D14BA79CC23E9A2E1460F3", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 11, - "name": "황제갈비 판교점", - "category_id": "고깃집", - "score": 4.2, - "review": "26", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2A동 1층 104, 105호", - "operating_hour": "월~금 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 22:00", - "phone_number": 317398688.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F53F59B5366C84139B5F96D985340CA0D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F986a8b733c0b55caf4e2ceb52a12c31dff9dd97e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqhbGEGyY1_FbA3IgYaHb0RanIkaNXtk0_img.jpg", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 12, - "name": "이야기둘", - "category_id": "고깃집", - "score": 3.8, - "review": "127", - "address": "경기 성남시 분당구 판교로319번길 13 디테라스오피스텔 1층 113호", - "operating_hour": "매일 12:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 22:00", - "phone_number": 316078092.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6A8AE6D1782E4F55A5B5451CE3847E34, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF2B6A3ED92CE460BB2F905EA4E28CAAB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB00280FD8D2746A9B07C5F4AF3303390", - "convenience": "WIFI\n주차\n놀이방\n흡연실", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 13, - "name": "차고145", - "category_id": "고깃집", - "score": 3.8, - "review": "141", - "address": "경기 성남시 분당구 판교역로 145 라스트리트 알파리움2동 1층 108~110호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 317811450.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MjhfMjgw%2FMDAxNzI0ODI5MzQyNTgz.g45WjGt_RZZ7FLCZhNlN8EtaGEGQWuM60Q6AAIog4N8g.BjNwKryE85wv8nPHAtVjUa_Se1BHpltjKexUCVvBA1kg.JPEG%2FSE-32331d8f-49b0-44db-823c-7f354c67295b.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F61688C2472114061A9367457649CC7C7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F73320C9234154096A21A974A00848EC8", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 14, - "name": "송도갈비 판교브릿지타워점", - "category_id": "고깃집", - "score": 3.9, - "review": "46", - "address": "경기 성남시 분당구 판교로227번길 6 브릿지타워", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317020911.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2e06f0255f01b57d836ada31828838445fb3c59f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc461a5f9c7473442ddaac4a1dcc419516e9e5a44%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff3c7467844309c311e4742afe294e230f5b1d8bf%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 15, - "name": "돈블랑 판교점", - "category_id": "고깃집", - "score": 3.8, - "review": "66", - "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움1단지아파트 알파리움타워 1동 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317037722.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MjJfMjg2%2FMDAxNzI0Mjg1NzY4NDg5.xwNNssip7q8vxjMtvObBGpdUORSFO9DgFDg_4KSNpIwg.4UJnvebGpblWxGUZp3VmbYhVVYItE0TIgo5og06EGHwg.JPEG%2FIMG_2569.JPG%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3E107A3A4FE1496896D1A0CD48D3BB45, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe45b6cc8a702a174f6c6d9af15dfb0ec163d4083%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 16, - "name": "머내돌삼겹살", - "category_id": "고깃집", - "score": 4.6, - "review": "27", - "address": "경기 성남시 분당구 동판교로52번길 17-14 1층", - "operating_hour": "월,수,목,금,토,일 10:00 ~ 22:00", - "expanded_days": "월,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 3180176550.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F0E5A318194D440E3B860D1490A8E9BA9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F975d1b7eb3efc740e57c7e5701b8bee40b7de987%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc9e97164df7f2aca42692da5a95f8a50469736f6%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 17, - "name": "통통곱창", - "category_id": "고깃집", - "score": 4.3, - "review": "67", - "address": "경기 성남시 분당구 대왕판교로606번길 45 1층 102호", - "operating_hour": "월~토 10:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 24:00", - "phone_number": 3180176660.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9638DB25EF41496B8BA430EF53F965FB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMjVfMjM5%2FMDAxNzA4ODY1ODYyODc5.GIgQ5XKOuoO0Z7w5Mjfyl1LFNok5XaS58W7N149zP2sg.LWsPf4klm_-xjX94g5gVp4dGzhqbQ8dygEnEj6WSueog.JPEG%2Foutput_1099630603.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fstorep-phinf.pstatic.net%2Fogq_5ebebeedf0c9a%2Foriginal_23.png%3Ftype%3Dp100_100", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 18, - "name": "돼지맨숀", - "category_id": "고깃집", - "score": 3.7, - "review": "78", - "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 144,145호", - "operating_hour": "월~금 17:00 ~ 22:30", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 22:30", - "phone_number": 317064775.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEA9BBDB1C62D48A4ACDE2E9FB7036A87, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtql6lviDjU_IFk2vu3vD3pMd1kb9rSpWK_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqtlEpO3Ye_wtmJbEQkknvTWqqbsufLkk_img.jpg", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 19, - "name": "쉐누하누", - "category_id": "고깃집", - "score": 4.2, - "review": "95", - "address": "경기 성남시 분당구 판교역로 145 알파리움타워 2동 라스트리트 2층 201~203호", - "operating_hour": "월~금 11:00 ~ 21:40", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:40", - "phone_number": 317035530.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalad_thumb%2Ft%2F13c6a99dfdff6a668068b5877f07c93f632a255f, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0b0c495c409257933d0acd21d3e7a6ce39ee44af%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fedc2eb8a3ee92ce1830e4fbfc9d816654ee59604%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 20, - "name": "양재정육식당", - "category_id": "고깃집", - "score": 3.6, - "review": "33", - "address": "경기 성남시 분당구 분당내곡로 151 삼도타워 1층 102호", - "operating_hour": "월~토 11:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 24:00", - "phone_number": 317085705.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAAB66A1813E4450AAD1BDFDD5C7DE8ED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE3466C958CFA4401A56CEECB1B33ED5A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBAD67C2D6CF94862B2CCA4674494E998", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 21, - "name": "우테이블", - "category_id": "고깃집", - "score": 4.1, - "review": "97", - "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층 105호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317034775.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF3C391D460474049B23C0B78C48FA9DB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F93F13A09B7B0450B952DE21A149A2AF9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F14A8190CBCDD4ADD8D042A646BC618B6", - "convenience": "편의시설 정보 없음", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 22, - "name": "토속상황삼계탕", - "category_id": "고깃집", - "score": 4.0, - "review": "28", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 225호", - "operating_hour": "월~금 10:40 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:40 ~ 21:00", - "phone_number": 316286619.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F593C6AE5FF00424BBF912505C2CEFE89, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MjFfMTEz%2FMDAxNzI0MjE3MjU0ODg4.X1LVWXmGreFVfdcx0t-qjr8h4BDg6-1EzKbTurokcxog.PwWLfecJD55HFMfJymPCwWzifWdQEcRWC7iXos4H4o8g.JPEG%2FIMG_8646.jpg%3Ftype%3Dw275, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MjFfMjQ3%2FMDAxNzI0MjE3MjU0ODk0.gAM5UT4RdZwFFX1tTHXuMAoV6PLGqo4XBJqwJ-xVJfkg.PygydDw9UCdncnlrAE56XfmZTtu5ELgpv5J6CA55g5Ig.JPEG%2FIMG_8645.jpg%3Ftype%3Dw275", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 23, - "name": "양바위 본점", - "category_id": "고깃집", - "score": null, - "review": "84", - "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 아브뉴프랑 1층 110,111호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317069288.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1577493960, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_348914610, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_107879858", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 24, - "name": "홍대칼국수와족발 판교역점", - "category_id": "고깃집", - "score": 3.3, - "review": "14", - "address": "경기 성남시 분당구 대왕판교로606번길 45 1층", - "operating_hour": "화~금 11:30 ~ 02:00", - "expanded_days": "화,수,목,금", - "time_range": "11:30 ~ 02:00", - "phone_number": 317081779.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F717BEDBAE87845848C8C44F0D3141B59, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8f95ca4c9dda08995eefe11d4a1f49839002011d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc4a2dec366ad5ac303793d5a832894e4b18c57fe%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 25, - "name": "고반식당 판교아브뉴프랑점", - "category_id": "고깃집", - "score": null, - "review": "380", - "address": "경기 성남시 분당구 동판교로177번길 25 2층 205~207호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317075861.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC38FB03A3A804667BF7FC7C2BEB27B7C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F24813571CC1B482DAF63C97B10004213, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjdfMjYg%2FMDAxNzMyNjg1NTk2MTYx.WeQvX-X9T-99KPjWNBhB62pe-5RT-8y3zyPy0E6Fq8Yg.k_ywYbDF28BgUcaWgy5iSU75dEhInlGeaI_gCrWp_S0g.JPEG%2FKakaoTalk_20241127_132025186_11.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 26, - "name": "송추가마골 인어반 판교점", - "category_id": "고깃집", - "score": 2.6, - "review": "44", - "address": "경기 성남시 분당구 판교역로 145 알파리움2단지 라스트리트 2동 2층", - "operating_hour": "매일 11:15 ~ 21:45", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:15 ~ 21:45", - "phone_number": 317058503.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FFA8D789AD3FD4958B99627DF2A021D00, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2432147F21F34BC9B5E6B07E2D2E3FDC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9FCE3175C79F41A3B217A6989F971BAB", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 27, - "name": "일편닭심", - "category_id": "고깃집", - "score": 4.2, - "review": "75", - "address": "경기 성남시 분당구 판교역로192번길 22 효성해링턴타워 110호", - "operating_hour": "매일 17:00 ~ 01:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 01:30", - "phone_number": 316021847.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD9F4FFCAAF5B40B8B4DC27B6B1BC52B8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F612A0C4E1BC746A28B7CE8C3CC18507A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF4606E1D28394EAE84C86FF9D0C606A8", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 28, - "name": "금돈가", - "category_id": "고깃집", - "score": 3.3, - "review": "68", - "address": "경기 성남시 분당구 판교공원로1길 71 1층", - "operating_hour": "월~토 11:30 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 23:00", - "phone_number": 317096599.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCA0F42202A2E4C8B82D1F39E896D8CD0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0AB278131DB04841AD92D068817E9948, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7aba58c19230b28112ccd07e68956253ada7a3e2%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 29, - "name": "우몽 판교본점", - "category_id": "고깃집", - "score": 4.4, - "review": "734", - "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋타워 2층 204호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 3180610712.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F876FF9A7FA7A47AE8BCAF28496FA854E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F79607C5DA1E946BC9B49F2E0539DCFEE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F802E03AE111E47719DB7928DF200BF7D", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 30, - "name": "우대포판교", - "category_id": "고깃집", - "score": 4.6, - "review": "778", - "address": "경기 성남시 분당구 운중로 141", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7A8C54FFC12B408C944C455CA3890425, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa9d56d9ed121125a256312b38e6727693a5ed080%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa93bfb987f181e955606eba27453b464a01daec5%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 31, - "name": "판교인생곱창", - "category_id": "고깃집", - "score": 3.5, - "review": "91", - "address": "경기 성남시 분당구 판교역로192번길 16 판교타워", - "operating_hour": "화~금 15:00 ~ 22:50", - "expanded_days": "화,수,목,금", - "time_range": "15:00 ~ 22:50", - "phone_number": 317050731.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3A901B47F02940E1955AB52F4CA1C041, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc66e50e980992253cacdd0fd90cff945df393ade%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd1a5a90805a8bc9ce9569db5f018d376dc10bf39%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 32, - "name": "창고43 판교점", - "category_id": "고깃집", - "score": 3.3, - "review": "76", - "address": "경기 성남시 분당구 분당내곡로 131 2층", - "operating_hour": "월~금 14:00 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:30", - "phone_number": 316017543.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F745793B93F494207B2AC3F3CA3FD5AFA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3fc8e1b72ebaa8df58335aecfe8445430bd440a1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8ee3d19ee83f158c4e21ce307b11d432adef40b7%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 33, - "name": "우몽블랙 판교점", - "category_id": "고깃집", - "score": 4.6, - "review": "533", - "address": "경기 성남시 분당구 판교역로 145 알파리움타워 2동 1층 111~112호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317020218.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F0C6A64A8635B44309DC1170C84797CF2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFFC3495C6DA6471F906814D93711D2AD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA30D2734A88E4D7BA9FB647C6CD84D9C", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 34, - "name": "운중본가 장수촌", - "category_id": "고깃집", - "score": 3.5, - "review": "111", - "address": "경기 성남시 분당구 산운로32번길 14 1층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317059973.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0D680B81B9B745DFB28E421FF3BDDFBD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa0b74cc33d61fbd486161a8cac4e6a671dd92ec5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffa75ce00e07b5d63573fc16deeaad57aa570f536%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 35, - "name": "진짜돼지 판교본점", - "category_id": "고깃집", - "score": 3.6, - "review": "44", - "address": "경기 성남시 분당구 분당내곡로 159 판교역KCC웰츠타워 A동 1층 120호", - "operating_hour": "월~금 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 24:00", - "phone_number": 3180179547.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F744F3B3B91C7491E90619C14A319E938, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8326701e249bbb4fb170b9ef93a23300c46ac305%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff1b035a9935ba8dc7713fcfa59ddd88ea811b243%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 36, - "name": "제주가", - "category_id": "고깃집", - "score": 4.0, - "review": "8", - "address": "경기 성남시 분당구 동판교로52번길 5 1층", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 3180169292.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6ED0B5B8C1BE4B179C1F9303770F96C8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F285d0f3484bcd2fad24d6b2f433e702a89c2a561%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEC971007AB474ACB97437F87653B992E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 37, - "name": "일도씨닭갈비 판교점", - "category_id": "고깃집", - "score": null, - "review": "123", - "address": "경기 성남시 분당구 분당내곡로 117 그레이츠판교 지하1층", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 316227509.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F912D8ECA65E244B5AE68017629244454, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1AD7F3B2D0E24A50A05230A7DF4F22D4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F735F750D53314120813F1C68FF2C4D7B", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 38, - "name": "암돼지와꽃등심", - "category_id": "고깃집", - "score": 3.6, - "review": "187", - "address": "경기 성남시 분당구 운중로166번길 4-14 1층", - "operating_hour": "월~토 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:00", - "phone_number": 3180163566.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCAE8CB61727F49B3A3D3857080309FBA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4448c9e9013bde1e4ba83792c5ff014330fad45a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffe1e9e8186dda2703d8a5aa44de06b46d4a52c6e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 39, - "name": "이가네양갈비 판교직영점", - "category_id": "고깃집", - "score": 4.4, - "review": "2,119", - "address": "경기 성남시 분당구 판교역로 145 알파리움2단지 타워2동 1층 113~115호", - "operating_hour": "월~토 11:00 ~ 10:45", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 10:45", - "phone_number": 317019998.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7B4A47A61125421CB88A1A11672740FE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fff786939b92deddde63f00b76801f554b050ccaf%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F61a00749fe7632802e16a777a9adeef871fdc3fa%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 40, - "name": "유엔가든", - "category_id": "고깃집", - "score": 3.9, - "review": "101", - "address": "경기 성남시 분당구 동판교로177번길 25 1층 129~131호", - "operating_hour": "월~금 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 22:00", - "phone_number": 317089929.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF710415F5DDC4456A7B07BFC33DBC7AB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F787B1205CFF84E2BA71668B031306140, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F44e4d3474545f07e2fc2a9e7e1cad82369babc1d%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 41, - "name": "초심한우", - "category_id": "고깃집", - "score": 4.5, - "review": "25", - "address": "경기 성남시 분당구 운중로146번길 15-6 1층", - "operating_hour": "월~금 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6E0CFB5729B9421895A355F428521CB8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA7CA5DEAC9D94C5F97E46CD57F6E0563, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD90DD6A9C7894D8F97BB30C8E6DC2C6A", - "convenience": "WIFI\n주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 42, - "name": "램가 본점", - "category_id": "고깃집", - "score": 4.5, - "review": "225", - "address": "경기 성남시 분당구 판교공원로1길 63 지하1층", - "operating_hour": "월~금 17:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 22:00", - "phone_number": 317035043.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F29D6290059744494A110B0BC42121C4D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FADA7F8EED8564E63AD4BF374D69022F6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD9EEB8A8BACD4C26ADB2A6ED4E2C186C", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 43, - "name": "항아리보쌈 서판교점", - "category_id": "고깃집", - "score": 4.3, - "review": "18", - "address": "경기 성남시 분당구 운중로125번길 14-16", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 3180173377.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F197983CDEE8645C6839A8EE615927272, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3301e9e241e6dbb0fce6b88df6bd7172eeab92b5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fbd57e472539c618985cd9f4b3ae6e31e1f93916e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 44, - "name": "감성쪽갈비", - "category_id": "고깃집", - "score": 4.1, - "review": "136", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 211호", - "operating_hour": "월~토 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 24:00", - "phone_number": 317242885.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3C7E4D70F0644566A3E8E9A35EFE6773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F988c178c04af4668f4c5576f581491193b4dccbd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F06f38e8217e21812c0ee17e5c00ead579afa618c%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 45, - "name": "판교집 본점", - "category_id": "고깃집", - "score": 3.8, - "review": "116", - "address": "경기 성남시 분당구 판교역로 178 서건타워 1층 106호", - "operating_hour": "월~토 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDACA006E3FA24B2CB45009FD09B2A9CC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6E8C0D8AFD2A4363BA9851F85F6F09C7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FAB21303EC21F4013BAC0DC3C996E70AF", - "convenience": "주차", - "caution": "예약가능, 배달가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 46, - "name": "비와별닭갈비 판교아브뉴프랑점", - "category_id": "고깃집", - "score": 2.6, - "review": "50", - "address": "경기 성남시 분당구 동판교로177번길 25 2층 208호", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 3180167999.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF0DC39077B154FAE99623CE7C79B5D05, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F13E25F69499E48BA84852A659DB843D0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F06d0d365a5c4baaf50d18f041cd045a75f3e24f6%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 47, - "name": "됐소 판교점", - "category_id": "고깃집", - "score": 3.3, - "review": "141", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 지하1층 B101호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 316286092.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F07FE2FE38F354A308215BBDA098B9A26, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDlfNDEg%2FMDAxNzMzNjcyNzYxMjU3.lY53jWDhQ7CsFJ5yRTCA2yOHHc6xddSYZqDwC5wcqnAg.2QYtm_pKD2LOSRIVctge2Ie9LuXYTQpJ3hwlqV8eUoYg.JPEG%2FKakaoTalk_20241205_010453349_04.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDZfMzkg%2FMDAxNzMzNDYyNjg1NTkw.boiE46hbgkEsozHCuWa9lam4qDenJ-RDjQsSYim9LyYg.DR_rSBxHfs8tT56FPqGydgWnMekOWQgBBcqr_PPEDAMg.JPEG%2FIMG_6966.jpg%3Ftype%3Dw773", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 48, - "name": "순우가", - "category_id": "고깃집", - "score": 4.0, - "review": "117", - "address": "경기 성남시 분당구 대왕판교로645번길 36 NS 별관 지하1층", - "operating_hour": "월~금 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:30", - "phone_number": 316068516.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd5cdadbfea2d1b9bbc679fb3449dfaad46410107%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd5cdadbfea2d1b9bbc679fb3449dfaad46410107%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb99b475a3b0547da965fd0a9e8147619abbb29aa%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 49, - "name": "조재벌식당", - "category_id": "고깃집", - "score": 4.1, - "review": "41", - "address": "경기 성남시 분당구 판교로319번길 13 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 316096271.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F472A024DA0054294ADD21F86001FB804, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F35119807fd4651ee45095ce8b3bea28df807ac74%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqe3QigI3f_W1bl0vGw2GbPMZk8v4hVwK_img.jpg", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 50, - "name": "한와담 판교점", - "category_id": "고깃집", - "score": 3.6, - "review": "918", - "address": "경기 성남시 분당구 판교역로 152 알파돔타워 1층 1-2~3호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 316227182.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F44AC62245E1048A6B5AFF315A935608C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F827B9A8BA63C4E879FC23A733FC44AA1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB33BC70703E24D799B9F1E4954BF412B", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 51, - "name": "판교수갈비", - "category_id": "고깃집", - "score": 3.1, - "review": "8", - "address": "경기 성남시 분당구 판교역로10번길 23 1층 101호", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 3180168792.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_766614764, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd251ef03990742f1ed80282d2b19ae0ecdcf0f2c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0db01d6479a3444e72332ad10ce0dde4f6b61139%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 52, - "name": "흑화돗 판교본점", - "category_id": "고깃집", - "score": 3.9, - "review": "123", - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 1층", - "operating_hour": "월~금 17:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 22:00", - "phone_number": 316017455.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB4DACC6AB3A04318BEC2A96BF92F0726, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe14b859d2b6b6a15e75108308384a558c23b28a3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F073fc4f55560b4890420b5850416915b75f97e7b%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 53, - "name": "섬맛의공방 제주이야기 판교점", - "category_id": "고깃집", - "score": 3.1, - "review": "34", - "address": "경기 성남시 분당구 대왕판교로606번길 10 타워1동 1층 132~ 138호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 7044000919.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7A241D74BE3C4DAF8E7AA5DE95378570, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F701ad7fe841d75aaada139c46cd0dd6857e6eba1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcf123546561354951478a67c9271639f074f306d%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 54, - "name": "라무진 판교점", - "category_id": "고깃집", - "score": 4.4, - "review": "23", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 2층 236호", - "operating_hour": "매일 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA1BBA27B926D48B4AE7631440AFC3A3C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F235a68f9e21aca8b3008dbc94c78c2473f899d26%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F943b3c3ac17de4704cb229fc43b8bc105eb8fd21%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 55, - "name": "명륜진사갈비성 성남서판교점", - "category_id": "고깃집", - "score": 1.7, - "review": "28", - "address": "경기 성남시 분당구 운중로178번길 1 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317089288.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF8AFFAF1B9264C5B94228A5BECA8585B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MTZfMTgx%2FMDAxNzI2NDQ3NzI3ODkx.1Xajf8F4ah0EkabFsXsMKNU6piVJPHa6JkoGQVZnyoUg.Tr1mr6gcOAFRdTd2YrNU7BYqdd_VR-RGraQmh63Bzb4g.JPEG%2FIMG_4970.JPG%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MjhfNzQg%2FMDAxNzI0ODQ5OTQ2ODE2.8opTxQ8a2Fm8elba4uCbYCfqLstD6JvipwnxZmAcuBgg.wVCcimTMYkhIAh4bxj7ITOwoQtHZsa95ayt3mypcRp4g.JPEG%2FIMG_4834.jpg%3Ftype%3Dw580", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 56, - "name": "즐삼생고기", - "category_id": "고깃집", - "score": 3.5, - "review": "6", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 지하1층 119-4호", - "operating_hour": "월~금 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3BC953D01188484E9E9061C489EBA164, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdd48f54ce66d10b555e36bb035773abab76aa1ec%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MTJfMjgg%2FMDAxNzIwNzgxNzkyMjAz.KEXMUV8ERZXu-JZF2o5gZGN0q0aeqw7ED1C3UnPLyUgg.9nrliMvZHpEZ1ymbmNKS0Zk9LrIoT6UreE5pJMXRDicg.JPEG%2FIMG_9417.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 57, - "name": "한마음정육식당 판교테크노벨리점", - "category_id": "고깃집", - "score": 4.1, - "review": "78", - "address": "경기 성남시 분당구 대왕판교로 660 A동", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317011000.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFC95650CD0B54DE5AABA9EECFED6D992, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTdfMjc3%2FMDAxNzM0MzY5ODM5OTIx.qx_ogzKcnqW_gDAfrgzqv7B8xlXI40MUXH1c22fILdYg.whataEMUyMICpGnqaL0x58b13pc6E211G95tgfomg1sg.PNG%2F4.png%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMTFfMTQ1%2FMDAxNzI4NjIwMjI3MjI2.q1QnDHylHFJIp_dhFmQCoRe7yyCqc2UYOjV1uyi5q0og.8NOzIw8ZtvUcAivGKymdvGEjZCitxLX8JmqAccZNKe0g.JPEG%2FIMG_4223.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 58, - "name": "일로집 판교직영점", - "category_id": "고깃집", - "score": 3.5, - "review": "46", - "address": "경기 성남시 분당구 판교역로192번길 14-1 판교예미지 1층 105호", - "operating_hour": "월~금 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 24:00", - "phone_number": 317051215.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD9E2FF20A07544F296EDBDBE870C4F41, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA2CF6F7D1089465A987FD0B79CAC0135, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFD359F5A2BB948E29CF80674DBFB184E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 59, - "name": "허니피그", - "category_id": "고깃집", - "score": 4.4, - "review": "42", - "address": "경기 성남시 분당구 동판교로52번길 3-8 1층", - "operating_hour": "매일 16:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 22:00", - "phone_number": 3180167373.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF31A84DBBE4B43618605C907E119E5D4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffee57c6aff33e26053a00d376febd7d103bdfa4f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3d12cf72d56745b0cc0e70b85d4455b82cc40bf1%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 60, - "name": "양육점 판교점", - "category_id": "고깃집", - "score": 4.2, - "review": "543", - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 2층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317061624.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDF51CE7416914DD2B52BB40C04805BE1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCE72790E483D45BE81C19C2C36BD3D70, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7FB0BCEE4AC846A3A9C7FBB4BEC9423C", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 61, - "name": "원조닭한마리칼국수전문", - "category_id": "고깃집", - "score": null, - "review": "53", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하 1층 108호", - "operating_hour": "매일 10:30 ~ 20:50", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 20:50", - "phone_number": 317090176.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDB4FD7DA516B4603A6BCBE55B84437D0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC0640AE469904255A1A1879F6474020C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8C5911D8122D47958B6E7F8EEC907597", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 62, - "name": "팔각도 판교유스페이스점", - "category_id": "고깃집", - "score": 4.6, - "review": "180", - "address": "경기 성남시 분당구 대왕판교로 660 A동 2층 238호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 317242552.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB7E47599BE4D45DE9AD682205C1DE3F4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC4A22C7D09AF486882601FCE4DA45E2D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F14AA7BA210F4419D96F0F5C89DD860D6", - "convenience": "주차\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 63, - "name": "춘천명물닭갈비", - "category_id": "고깃집", - "score": null, - "review": "81", - "address": "경기 성남시 분당구 운중로138번길 18-5 1층", - "operating_hour": "월~토 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:30", - "phone_number": 1026448481.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3FC7180EFDC948B0A08F6CCAEA8B845F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEyMDRfMjE0%2FMDAxNzAxNjc1ODQ3MzA4.1pK_dWtZLyEY1yCPxlEjYo3yFwHQtZA4vGOfbhkRvmMg.RR7tc4739JCVQ3oAg8aLYg_k4DEDgjayPf6OR_dXeDQg.JPEG.vordooo%2FSE-c8ffc97f-8274-47cd-8615-aa94c6753b4e.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MTVfMzYg%2FMDAxNzIxMDAwODI5MjQ2.SCYasb6vLOG4Q206lbPKaMGiR4L7LOeUk1xoOsbBV7Ig.enDJ4BpT7U7fzHn1gy4r7gho-dx-hwWPf0G4M0UZPqUg.PNG%2FPhoto_1.png%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 64, - "name": "원조장충왕족발 삼평점", - "category_id": "고깃집", - "score": 3.3, - "review": "14", - "address": "경기 성남시 분당구 대왕판교로644번길 65 휴먼시아아파트 상가 1층 101호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317023324.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDF5E8572167A4CBA900428ED77ABB176, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2f013b13569a0fadf7e00bf13d86f8be25865077%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqnF8IfLiu_0OldxpICM68q62iNJG7qe0_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 65, - "name": "판교집 서판교직영점", - "category_id": "고깃집", - "score": 3.8, - "review": "103", - "address": "경기 성남시 분당구 판교공원로2길 58 1층 101호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 50714226650.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F26450A9006ED4F17B98F74B2848D2F29, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE12E98CBD65D482FA475C558BE4CAC98, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F81F6131CC8A54BAD97F2F0A8F004237D", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 66, - "name": "고화갈비살", - "category_id": "고깃집", - "score": 3.5, - "review": "214", - "address": "경기 성남시 분당구 판교역로192번길 16 1층 111,112,116,117호", - "operating_hour": "월~금 16:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9721E431996A499FB33BED01D004D644, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe9e7ee3423f3662108b9e506940fd1e7de8482b8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjhfMTU4%2FMDAxNzMyNzI0ODAyNTI4.VIV8xLNOdg86EYJHejHzmWzN7xZUup4ieWO2jjE_01Yg.IdoK9ra4maG72r9WHq_qFvs4YGG23hA5nkfslIYv7ycg.JPEG%2FSE-069955c4-17bd-46dc-a6e2-5baa369e939d.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 67, - "name": "판교삼대곱창", - "category_id": "고깃집", - "score": 3.6, - "review": "140", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 1 A동 202호", - "operating_hour": "월~금 11:20 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:20 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFEC671F149594E158855C26126C6B0A2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa8a70187c71f65c2de63b8a1af9de043331c64af%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fea88688b143d0e911556ebf4babad176204dfe15%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 68, - "name": "고대생막창", - "category_id": "고깃집", - "score": 3.4, - "review": "25", - "address": "경기 성남시 분당구 판교역로241번길 22 1층", - "operating_hour": "월~금 16:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 22:00", - "phone_number": 3180161992.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F253F354252652DAE2D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqeQjyNz0H_qzXvWafe6H5fLf791MXwO0_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqeTbAbb5F_dvH5IpKlebawaB1WxLhKX0_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 69, - "name": "원조부안집 판교직영점", - "category_id": "고깃집", - "score": 3.6, - "review": "1,419", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 214호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 50713936469.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F29E0BB6768CC4EB68D56B9C679EABC07, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1fa6dc0650003e07dc79dde81d521f4556138184%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb3acdc0c86d4711b9f112f9810f0c35da604620e%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 70, - "name": "오뚜기식당 판교점", - "category_id": "고깃집", - "score": 4.1, - "review": "46", - "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 108호", - "operating_hour": "월~금 12:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "12:00 ~ 23:00", - "phone_number": 317095882.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4017D06EFC5F48C2BF92E04F6D8E26D7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7fc03df0045000bc26ba349e0a25d2860c68fa1a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3167df04975f886327d074cf3939cc8a01a92704%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 71, - "name": "무안회관 판교점", - "category_id": "고깃집", - "score": 3.5, - "review": "42", - "address": "경기 성남시 분당구 판교역로192번길 12", - "operating_hour": "매일 11:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB52FF5976E29466683ABC0839515A4B5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F031c32131838e76d9cd9faf60be5b65a98df7878%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1110ed65f7f500efd6b0e050d94dd051b44167a9%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 72, - "name": "석기시대", - "category_id": "고깃집", - "score": 3.4, - "review": "2", - "address": "경기 성남시 분당구 운중로113번길 4-8", - "operating_hour": "매일 11:00 ~ 22:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:30", - "phone_number": 3180167172.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 73, - "name": "본가광양불고기", - "category_id": "고깃집", - "score": 3.8, - "review": "117", - "address": "경기 성남시 분당구 판교로255번길 9-22 우림 W-CITY 2층 227호", - "operating_hour": "월~토 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:30", - "phone_number": 316288066.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7C598D39316441AFACCAA9CA64AD6A82, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb64f7a4f6b983756db0c538b4406922b7b0a885242e4d7d66355184e85e49db9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9ea37932e53b7967ef5e054993c647008c9c7de5be1b388d071c15b40107edd7", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 74, - "name": "밥볶다 동판교점", - "category_id": "고깃집", - "score": 4.3, - "review": "33", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스A동 지하1층 B115~B115-1호", - "operating_hour": "월~금 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 21:00", - "phone_number": 316960317.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0BFC3A7D8078410D80050FA2437FB83D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6266DAD7FE7D4E80A62947195C8537DF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5c34a2a3feb96e1416728f0e871dc49ac531b210%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 75, - "name": "해가옥", - "category_id": "고깃집", - "score": 4.3, - "review": "21", - "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 1-78,1-79호", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 7088665020.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5A028FDF01FF49C2843C4DB115E2AE9E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa9c0dfe2c1dd8a85266fecb9d8fec0ed2985145b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0152bac37560c1b675b7c98a56cb0aba8f61e713%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 76, - "name": "압구정제주집 판교점", - "category_id": "고깃집", - "score": 2.4, - "review": "70", - "address": "경기 성남시 분당구 판교역로 138 1층", - "operating_hour": "월~금 11:30 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 23:00", - "phone_number": 3180395533.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDD68A92883604B3DBB9EA361DBC25173, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7deee97919971d2850d0e77dcfd6d95c593a2daa%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F130a602ad5d4a02c346e458476fe77dcfc47db14%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 77, - "name": "종로계림닭도리탕원조 판교점", - "category_id": "고깃집", - "score": 4.1, - "review": "53", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 2층 205호", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 317242933.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F31C64F31488345D297E9A9259045FF9D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3802DDF5C4BE419BA40AF664092B775D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB3CF05D920AA4F298B8E856760278B3C", - "convenience": "주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 78, - "name": "얼씨92숯불갈비", - "category_id": "고깃집", - "score": 3.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로192번길 16", - "operating_hour": "매일 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 24:00", - "phone_number": 3180178044.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 79, - "name": "새마을식당 판교점", - "category_id": "고깃집", - "score": 2.4, - "review": "16", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스몰2 2층", - "operating_hour": "월~토 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 24:00", - "phone_number": 316286694.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4E8ADC165605470CADE8C3A629925024, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqsydY8QFv_KhNKDUvlVUXqLpx4wc2NPk_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2314C34F5538B0BC08", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 80, - "name": "미방 판교점", - "category_id": "고깃집", - "score": 4.3, - "review": "9", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 B동 128호", - "operating_hour": "월~토 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 23:00", - "phone_number": 317398358.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FBC68198849264DEAAEFBC60B70A7460B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_471094998, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FBC2E6A59CEF242DEBC422DE94CC22FFE", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 81, - "name": "우상화로구이 서판교점", - "category_id": "고깃집", - "score": 4.7, - "review": "198", - "address": "경기 성남시 분당구 판교공원로1길 57", - "operating_hour": "매일 12:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F195FFD0371084C708D9F7AC0A4EB4222, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1E3514C1562D45668185B7F2A91F9BF9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6353e9c783f2ae5b8e210dc60f3aca701b28ecb4%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 82, - "name": "가장맛있는족발 판교테크노밸리점", - "category_id": "고깃집", - "score": 2.9, - "review": "8", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 1층", - "operating_hour": "매일 10:00 ~ 01:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 01:30", - "phone_number": 316281008.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5924CD00FBB848DC8FA1A1EA54C9F694, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F382c28bf8e791984c37267cfb79e7ecd7a37aca3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F088bdc09990dcb32a33ea2ea6cffff1b18e7aebe%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 83, - "name": "마포갈비집 판교점", - "category_id": "고깃집", - "score": 2.3, - "review": "110", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 2층 239호", - "operating_hour": "월~금 17:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 22:00", - "phone_number": 316281055.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F70927623C5A540D1962DAA32DEE5F139, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F37793DA134FF49BB93F1179925FF58E4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9F7B4C318BA346DAA95A2D2FF199C42F", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 84, - "name": "제주꾸숑", - "category_id": "고깃집", - "score": 3.9, - "review": "21", - "address": "경기 성남시 분당구 판교공원로2길 19 1층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 1089003800.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB8C86D54951A4B7CAC0BF52643CFF72E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF60ACEB39AFD4A23961F57310BE448D2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F839A3EC60DCD4E9D99E0944895E3F6FA", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 85, - "name": "두둑26", - "category_id": "고깃집", - "score": 3.5, - "review": "6", - "address": "경기 성남시 분당구 판교공원로2길 56 1층", - "operating_hour": "화~일 11:00 ~ 22:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317072656.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F04D165761CDA44D8BD9A0C9AF09169DB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9396367A7EF440DF800760CBAD2E84AB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjZfMTUx%2FMDAxNzMyNjE5NDQ2ODIz.-ir46oTfM5Dmx63VxfmjCx1Em8zKeC-jE5YIXLGKaJIg.IwiRqLgET0FBRoET7UqZOVlVXHXY2cV0NdvwJfxuyKkg.JPEG%2FIMG_5570.jpg%3Ftype%3Dw966", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 86, - "name": "판교한방삼계탕", - "category_id": "고깃집", - "score": 3.7, - "review": "29", - "address": "경기 성남시 분당구 판교역로 152 알파돔타워 지하1층 7~8호", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc34bd9b16ac851247b49fe38c632d39dc4753898%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2ac811e43884c8eb92009f5dc190fd5a33e76b5b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc34bd9b16ac851247b49fe38c632d39dc4753898%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 87, - "name": "마왕족발 판교점", - "category_id": "고깃집", - "score": 2.6, - "review": "191", - "address": "경기 성남시 분당구 대왕판교로606번길 45", - "operating_hour": "매일 11:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:30", - "phone_number": 317085892.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F365BF499C2D543B2881D7613E923696F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F21b10fc8f67f16a4624bc9b6ed9f3ce6dd987397%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F26d045e87b38950f6614eb7c269fdd2d0129d6f2%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 88, - "name": "판교도마집 판교본점", - "category_id": "고깃집", - "score": 3.0, - "review": "20", - "address": "경기 성남시 분당구 판교역로192번길 14-1 1층", - "operating_hour": "월~금 18:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "18:00 ~ 24:00", - "phone_number": 317031242.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe4926c3b1544342a598634c8a93d69425cd93af9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F07d39eb839d92c0b2f3d8eaa139024f57ab16525%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9ba92f8f63935a7d82bf572db93805e01bd5f63d%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 89, - "name": "정숙성 판교점", - "category_id": "고깃집", - "score": 3.3, - "review": "39", - "address": "경기 성남시 분당구 판교역로192번길 22 판교 효성 해링턴타워 1층 102~103호", - "operating_hour": "월~금 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 23:00", - "phone_number": 50714742105.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD3B5214BAA5447249889436EBFC3A97B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6A5C47C55468450087AA98EE1BD6ADFF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3DF4E4BC88F243398884A83DA0CD0BCE", - "convenience": "WIFI\n주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 90, - "name": "북청집", - "category_id": "고깃집", - "score": 4.7, - "review": "19", - "address": "경기 성남시 분당구 판교역로 230", - "operating_hour": "월~금 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 24:00", - "phone_number": 316982892.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F99D2D487A16545AE90C1371731AF3F64, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcTCfooIQ_gGU4KwqkADCBHtuQZfm3v1_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcTyYoz4L_XJ96bk8riCsB28sWC6ELp1_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 91, - "name": "청계산갈비", - "category_id": "고깃집", - "score": 4.1, - "review": "13", - "address": "경기 성남시 분당구 판교공원로5길 34", - "operating_hour": "월,수,목,금 13:00 ~ 22:00", - "expanded_days": "월,수,목,금", - "time_range": "13:00 ~ 22:00", - "phone_number": 317011211.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0125DEFD70C74FDEBEC360F86A1678B2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fff31ba070b4aefed3cc6cf18e7d9d09f6c564940%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fea384d434f350826ef9f6480bbccafa9295e87a2%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 92, - "name": "오투닭갈비&부대찌개 판교테크노벨리점", - "category_id": "고깃집", - "score": 4.6, - "review": "33", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 223호", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317398689.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBBF3EE241B56412F899286F8105F0AF2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faa15a428e0a5c06e82c74b8ec9cf7b90722afc76%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8682be163335bff3a7e6a7fb472b8b1d9cfbb27f%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 93, - "name": "행복한집", - "category_id": "고깃집", - "score": 3.7, - "review": "8", - "address": "경기 성남시 분당구 대왕판교로 670", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDA7822ED6D4B426EABF7119EB3348B1E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fed38a7c25bfbffb674b08c09318fe40ff24b761d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff3dba1d4c0ecb75b7f651d36d0e2e080c7955cb1%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 94, - "name": "한스족발", - "category_id": "고깃집", - "score": 3.3, - "review": "8", - "address": "경기 성남시 분당구 운중로125번길 5 1층", - "operating_hour": "월,수,목,금,토,일 11:00 ~ 21:30", - "expanded_days": "월,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317021007.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2724873A544DC0B135, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F216DDC39544DC0B934, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F210693F291A243C191C565D7BDAEA49D", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 95, - "name": "우뜰 판교본점", - "category_id": "고깃집", - "score": 4.7, - "review": "13", - "address": "경기 성남시 분당구 대왕판교로606번길 10 라스트리트 1동 1층 105호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317059252.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5CB624553BFE48A69A7830FED3872792, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9B29499791884FE48DE64CA194ADA3C5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAACBD346EE2F4CD89843956D3AF85D86", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 96, - "name": "고반식당 서판교점", - "category_id": "고깃집", - "score": 5.0, - "review": "28", - "address": "경기 성남시 분당구 판교공원로5길 7 1층", - "operating_hour": "매일 16:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 23:00", - "phone_number": 316020721.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F737C62C3ED8B4FC2A689E553D9260245, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F051d6d48d12b5e5d7d9563cb32d036f6386611d7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F61bb8920d99fde0393df487118dca864f29c7b9a%3Foriginal", - "convenience": "WIFI\n주차\n휠체어사용", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 97, - "name": "우화", - "category_id": "고깃집", - "score": 3.5, - "review": "136", - "address": "경기 성남시 분당구 동판교로177번길 25 2층 212, 213호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317074775.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F44F729021D2243F19C8AE6CC0F2EB6FF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MTdfMTc1%2FMDAxNjkyMjQ0NjUyMjc4.csULXrBSKeX2jbbzbO6g1TVRsoE4awl7UvA7wq9pRtcg.uM5mOnYxJ3YAGh_E47nOmTw4RWPAN4yhuBI01PTFhf8g.JPEG.sweetsalchow%2F1692244543209.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MTdfMjA0%2FMDAxNjkyMjQ0NjQ1NzYy.vPm8P5Klh65yoNExeVjfKDN_j97KuvUXW-K35g1gxmsg.nvVJdoFsS_Z8IGL7sKybq4yojIkXjdZV_lRf6xJjqm4g.JPEG.sweetsalchow%2F1692244507732.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 98, - "name": "삼산회관 판교유스페이스점", - "category_id": "고깃집", - "score": 2.8, - "review": "96", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 지하1층 B108호", - "operating_hour": "월~토 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 23:00", - "phone_number": 1026382909.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF2F901323AE543618D3B6ADBA26E4EFA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Feb932b58761d2a132772494e3aae3c142a4a4070%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb846b4888714ead57cd7ad6a8b1b53c99ec38d69%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 99, - "name": "꾸면돼지", - "category_id": "고깃집", - "score": 4.8, - "review": "28", - "address": "경기 성남시 분당구 동판교로 91 백현마을4단지 상가동 1층1110호", - "operating_hour": "매일 16:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 23:00", - "phone_number": 317031026.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F85BEB507BD8B4EF1B242E4A855585570, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F97962b5554228eed3fcf4656ab0c1ab2b5163731%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqlUYWJHCA_c0umHUGRsPZxq8MGvYc3mk_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 100, - "name": "고기원칙 판교점", - "category_id": "고깃집", - "score": 3.7, - "review": "20", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 1층 140호", - "operating_hour": "월~금 16:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 23:00", - "phone_number": 317242811.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC089A53D28974DB5B0EC739157FA4022, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA0MThfMjEw%2FMDAxNjUwMjg5ODE5NTA3.dDDeZNRcYsGjgDs9R1d3NOeGJPpERX_pIJLKDW-pPz4g.XThOogdaVSTv3Y6SCJEQCBGMYiYQIkSXFfV33BgOe4Ug.JPEG.heezzang5746%2F20.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA5MjJfMTQg%2FMDAxNjk1MzM2MTEzOTg4.KP6UANkyTkkbaIV5fKeEjs1DjDl7njo-69BmPRlrBr4g.x222lDdeQg9ypLmCNi0z_gBspFFweZ6yOrCgxbcY1Jgg.JPEG.tjk5894%2F20230921%25EF%25BC%25BF175813.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 101, - "name": "토평한우소곱창 판교점", - "category_id": "고깃집", - "score": 3.7, - "review": "11", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 A동 1층 121호", - "operating_hour": "월~금 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F76FB8C521B0149C4B2D038A8DEA5B7A1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3dcc8ce07a5d01710a1a39e3945a1b92aa191ab3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fccb6eab8f65a614a8aa737b7506c0662a77cc577%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 102, - "name": "봉추찜닭 판교테크노밸리점", - "category_id": "고깃집", - "score": 3.2, - "review": "12", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2관 219호", - "operating_hour": "월~금 11:00 ~ 20:40", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 20:40", - "phone_number": 316286981.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAE3464027C5F4D70ACEB852A5A429FC1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqdgNH3loP_C1qCf73kAMKhZNOdqHzfW1_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F09222C439E4C485BBF68682026D1198B", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 103, - "name": "토담정육식당", - "category_id": "고깃집", - "score": 0.0, - "review": "7", - "address": "경기 성남시 분당구 판교역로10번길 26 1층", - "operating_hour": "화~일 11:00 ~ 23:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB08F1F2A2F7947E3B00C08D21100EA9B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fphinf.pstatic.net%2Ftvcast%2F20241129_257%2FkL1sc_1732880032936cpVxO_JPEG%2FPublishThumb_20241129_203339_285.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjlfMjAg%2FMDAxNzMyODczOTY2NDMz.0FGuqht-9TDWNd0zetvYV5wf0GoUgBrRE-HgAFsEN7Eg.JIwjMVjZwYcQvlhWghN08K4rE5eIo_byaCGB1sL_fIIg.JPEG%2F15.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 104, - "name": "육회한김스지 판교점", - "category_id": "고깃집", - "score": 3.0, - "review": "19", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 123호", - "operating_hour": "월~금 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 01:00", - "phone_number": 317242580.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBD57994A733543A28A4C4184049CB43D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdee6fa2fbcc4163b4df03b9d773af24beb8e0c39%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F96d75241431acad4b71d0e6571ebe2a151cae6be%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 105, - "name": "데블스램앤펍 판교점", - "category_id": "고깃집", - "score": 2.9, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 판교테크노벨리 유스페이스 107~8호", - "operating_hour": "매일 10:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqsYUzey40_SUqAYHtYACN40HrORtk5l1_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqsYUzey40_SUqAYHtYACN40HrORtk5l1_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqs1PRiamL_gPexLIs0z795tRTd3f4Kgk_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 106, - "name": "원할머니보쌈족발 서판교배달점", - "category_id": "고깃집", - "score": 3.0, - "review": "10", - "address": "경기 성남시 분당구 판교공원로5길 3 1층 103호", - "operating_hour": "매일 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 24:00", - "phone_number": 317031330.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F60BAFE6CC18B42339D3EB8F353D767AD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF8581C67205346BBB3C85E3368922094, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FE14C6324166944C0A5F94C4A01F0A999", - "convenience": "편의시설 정보 없음", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 107, - "name": "불고기온소반 판교본점", - "category_id": "고깃집", - "score": 4.3, - "review": "3", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 B105,B105-1호", - "operating_hour": "월,화,수,목,금,일 11:00 ~ 20:30", - "expanded_days": "월,화,수,목,금,일", - "time_range": "11:00 ~ 20:30", - "phone_number": 50255514977.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA7F5C191DC594A87BAACD76CABF71984, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F0D69725A32794D8E99E0176437849F1E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5FFD201EE08345D3A578758348EC5FDC", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 108, - "name": "예다온", - "category_id": "고깃집", - "score": 3.5, - "review": "38", - "address": "경기 성남시 분당구 운중로126번길 10", - "operating_hour": "매일 11:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:30", - "phone_number": 317029222.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 109, - "name": "통큰곱창 분당판교직영점", - "category_id": "고깃집", - "score": 5.0, - "review": "46", - "address": "경기 성남시 분당구 동판교로 91 백현마을4단지 상가동 B105호", - "operating_hour": "화~일 16:00 ~ 24:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "16:00 ~ 24:00", - "phone_number": 7046470678.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDA0AFC067D974F27B3C42972A9B8264A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd4ea6424a1ecc7046fed04632f9339823cf1e48d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6b2db6e8d4ede5d24b968ca28efb656c569822e2%3Foriginal", - "convenience": "주차", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 110, - "name": "이치류 아브뉴프랑판교점", - "category_id": "고깃집", - "score": 4.7, - "review": "1", - "address": "경기 성남시 분당구 동판교로177번길 25 2층 202호", - "operating_hour": "매일 12:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 22:00", - "phone_number": 317070650.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F31EB30E660C5425B830F946B79CB61F6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9EC7D4CA98754B59850FC619256F3BB2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F676877F01F164AD68C44DF6C6522625F", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 111, - "name": "규정공 더판교", - "category_id": "고깃집", - "score": 4.0, - "review": "4", - "address": "경기 성남시 분당구 판교로227번길 6 브릿지타워 1층 110호", - "operating_hour": "월~토 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 22:00", - "phone_number": 317021661.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1160784502, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1F81FE87835B4CABBCB1A689ECB7F2B5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F41AFB72158504C1A8AE4DCEB65263505", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 112, - "name": "방이옥 판교점", - "category_id": "고깃집", - "score": 1.0, - "review": "21", - "address": "경기 성남시 분당구 대왕판교로 660 1동 2층 209-4호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F693B2751512F4030B1CF1682A40EABAD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTRfMjE2%2FMDAxNzM0MTU5Njc0NTkw.kW8v15gcuxxpPjLBjjIldoBiI2J68IiuGOG9kU5HgRQg.q3a98tpqZZj5WCSjDJ3rsMX_nGutOxjKnvdTqyA3Iy8g.JPEG%2F900%25EF%25BC%25BF20241214%25EF%25BC%25BF133246.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTRfNjMg%2FMDAxNzM0MTU2MjE2NDA1.1JTK6ylfTLu_XBRr3PfRB7xn5Ews66fxv5nN9Mwb2k4g.9nYoSaPWZl_iBEro96wtRY3Y6tDOuUR_hr1ZG2WsWDog.JPEG%2FIMG_6093.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 113, - "name": "기대만족 분당판교점", - "category_id": "고깃집", - "score": 4.2, - "review": "1", - "address": "경기 성남시 분당구 동판교로 155 A상가동 1층 102호", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 50713348464.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3BD415A26A554916B496AD09BBA17C31, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCE8054938FB24C52B23C257E53EE88ED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F64E1BBF7074C4A4FA1A0559016574FD7", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 114, - "name": "닭갈비야", - "category_id": "고깃집", - "score": 3.7, - "review": "15", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 2동 B114호", - "operating_hour": "월~토 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:00", - "phone_number": 317013666.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD7A71E92497D423D90506386380E5958, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6a265c72106183b2cb1f836059367069a27bfe5f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqetOLJAY0_a05kTr3Vm1kNM9FKlhLcj1_img.jpg", - "convenience": "주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 115, - "name": "식껍 서판교점", - "category_id": "고깃집", - "score": 3.1, - "review": "38", - "address": "경기 성남시 분당구 운중로126번길 12 1층", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCA36A975149A472EA49A20714DDF5A0D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F189fdb3fe441fdb4adfc05897e77ef9c70f5fef0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe94000f57638a87f9d7ca12cdbd8654333dc2cb2%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 116, - "name": "구구족 분당판교점", - "category_id": "고깃집", - "score": null, - "review": "1", - "address": "경기 성남시 분당구 동판교로 91 백현마을4단지 상가 지하 1층 108호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317039982.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD8279CF8ADF34E96BA44E44E93DAACEB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDEED99A234F34E9DAC41CE8756B0EB7C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAA22929876C64914A7A2AE9FF1A69173", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 117, - "name": "소도둑 판교점", - "category_id": "고깃집", - "score": 3.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 163호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F06ec57d349e7202fec25d0ae5d9fcea0101afdd1%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 118, - "name": "돼지야미안해", - "category_id": "고깃집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 45", - "operating_hour": "월~토 21:00 ~ 05:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "21:00 ~ 05:00", - "phone_number": 50720841676.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F25EFE0378F0F45C3BEDE92BD016D0785", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 119, - "name": "양문 판교점", - "category_id": "고깃집", - "score": 5.0, - "review": "61", - "address": "경기 성남시 분당구 대왕판교로 660 1층", - "operating_hour": "월~금 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F41EE7513F1354858B24B45816EA57454, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3EB0E453994F4CEFB82C5BDB5FF55FEB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2CA20DA42CF642D7BB0A612CA5F9E71F", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 120, - "name": "판교화로", - "category_id": "고깃집", - "score": 0.0, - "review": "7", - "address": "경기 성남시 분당구 운중로125번길 4-5 1층", - "operating_hour": "월~토 16:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB568CD6DF9D142AFA11700595FCCF6F1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTBfMjgz%2FMDAxNzMzNzg0OTAwMzM3.jrqHSdSbJEiaGn3sBzaXjnI5PjvfR5B_M7cbw8IyuBEg.4BJ6FDuqFFT85gP9Y0BVkdheJ565ck4OG6zMFZWW8mMg.JPEG%2F20241126_165145.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTBfODAg%2FMDAxNzMzNzg0ODk5NDQw.45a7YMmlo8qfYVF7W6uqBfyU7EOUyryyga525AJgANEg.i93RZHSkAWy890QYxGH6HDm1qbyDQOXaIQQLCsX6BuQg.JPEG%2F20241126_163903.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 121, - "name": "꼬들집", - "category_id": "고깃집", - "score": 1.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 231 H스퀘어S동 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317893789.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F42381CCD7D644EED90D4DD546C3D384A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0c8a526de06ba366767325e458fc16d09d8401a8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F36aafd7fd3aed851334025ab771d3fefe2c6c151%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 122, - "name": "됐소 판교본점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 지하1층 B101호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 316286092.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F40D59FB0E9DA4555A9353E0A3657B282, //img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDACA1029D0D14899A834A2D16D9AB224", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 123, - "name": "수작", - "category_id": "고깃집", - "score": 3.0, - "review": "214", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 지하1층 B115호", - "operating_hour": "월~금 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F10465DEA8CC74FB195F48189B8F2BAD9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0bdce5603456d2228224703f9fb4f6b34b865137%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc59299b0f5e26cf9cdce4938176251dacf70178a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 124, - "name": "신사부대찌개&품격삼겹살", - "category_id": "고깃집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 1A동 205호", - "operating_hour": "월~금 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9F2E0BE713B54B0BB53C2193224E3CB3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FCD87A454B3D548338FBA57050E866B75, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5b5b60267331431d773939b9ef580ea0f967e844%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 125, - "name": "마포갈비집 판교점", - "category_id": "고깃집", - "score": 0.0, - "review": "45", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 239호", - "operating_hour": "월~토 17:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F70927623C5A540D1962DAA32DEE5F139, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F37793DA134FF49BB93F1179925FF58E4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9F7B4C318BA346DAA95A2D2FF199C42F", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 126, - "name": "우리가정육상회 성남판교점", - "category_id": "고깃집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 B동 2층 213호", - "operating_hour": "월~토 11:30 ~ 22:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:30", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 127, - "name": "김인성의 토평한우소곱창", - "category_id": "고깃집", - "score": 4.5, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317242589.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0792d9035c9ac8a9f2f92843fe98d3c6bcac4bd4%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 128, - "name": "단푸드", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 136 힐스테이트판교역 판매시설동 지2층 비 2028호", - "operating_hour": "월~금 09:00 ~ 18:00", - "expanded_days": "월,화,수,목,금", - "time_range": "09:00 ~ 18:00", - "phone_number": 7079721525.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 129, - "name": "둥지", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로192번길 14-1", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180165103.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F88C1618F53D24E928D71067D961F0968, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F3257B4F0D48A4BD8A7935AD363E675E3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5AA58AEA88CC4E7ABC8FB506AF723676", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 130, - "name": "꿀돼지두루치기", - "category_id": "고깃집", - "score": 2.8, - "review": "10", - "address": "경기 성남시 분당구 판교로255번길 9-22 판교 우림 W-CITY 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F62CCB441546541489C33C64656720443, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff17e7f34ab9f242f3a1e677aa5a4abcf8781b852%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9c71a1ed0c2cc186f16104588fb12d053155a89a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 131, - "name": "막창막장", - "category_id": "고깃집", - "score": 5.0, - "review": "17", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 234호", - "operating_hour": "월~금 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8FFD78FA3D8D4966BD01CFF772191757, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDRfMTAg%2FMDAxNzMzMjk4MTM1OTgx.NRAr9WEw1MklOiB_PHY76kDrqxlvF0MpCcjyJU-3k6Ag.-IFv1QLu-xmd6vP-4uSK93cFQMM5cp66oWWXGXI-rI4g.JPEG%2F900%25EF%25BC%25BF20241121%25EF%25BC%25BF204048.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjNfMTk4%2FMDAxNzMyMzU5NzgzMzI1.DEmIiJAenazPmApc8YzpJLKHntDFkTo0vmdCEswBJHkg.6tioP0fWCP_K1U8l55iGSAkOp-6_zB2_tE089Xwp-tgg.JPEG%2Fc16481645378cf21cf5ec408d53172cd_thumb.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 132, - "name": "도시하누판교", - "category_id": "고깃집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7040771556.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 133, - "name": "편장군족발 현대백화점판교점", - "category_id": "고깃집", - "score": 3.0, - "review": "3", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701013.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD41D5D61761346249092A775BC6A9CA3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd3a387ecca32e6ce277a972744e8a4aa5282cec0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MTdfMzUg%2FMDAxNzEzMzU2MTA4NjMy.3OgdWW3ZntSsU8m5Bqed3DfPtd2Bu5VPyMJQhLWmyVYg.4UO5Fv42WQieotAy4P96OS7K6sTlpWtqgkeRwQA7yCYg.JPEG%2FIMG_8423.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 134, - "name": "신토제주왕족발", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 202호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 135, - "name": "프랑킨바베큐치킨 동판교점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로52번길 21-4", - "operating_hour": "월~목 14:00 ~ 17:30", - "expanded_days": "월,화,수,목", - "time_range": "14:00 ~ 17:30", - "phone_number": 50720841641.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB915D3F05D934023972597F6587B8FB7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE6AB104ADE4049338586E91F198B3872, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD0B134700BCE4A9281508038485BFEFE", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 136, - "name": "별빛뚝닭 판교본점", - "category_id": "고깃집", - "score": 2.0, - "review": "66", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 1층 109,110호", - "operating_hour": "월~토 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:00", - "phone_number": 316983303.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA182F4ECDE5347B4A9C951576DCFFF3A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEyMTJfMjg4%2FMDAxNjcwODI0NDY1MjQ5.tu-Ki2czGKsjKVUW3-clFUsrWIuwQcV0XzJFzQJTT0gg.okrPH8MILgMVRqiOBM1IyeERBaC_sIDyM94I_sHMV2gg.JPEG.chichiho8016%2FKakaoTalk_20221212_142116714_10.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA3MDdfMyAg%2FMDAxNjg4NjU3MzEyMjA5.zoM8w6n5mx8Y1V9rS4O24csiT_imdQU2hHME10_YUqwg.3pkvtrIiRrOpjobS0llmKegIbSJaF2e_1btSLfRlonkg.PNG.rert21%2FSE-81e8b91e-bbc5-47e7-89c8-73417e001713.png%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 137, - "name": "낭만족발", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 2동 107호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 318189943.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 138, - "name": "육촌 판교점", - "category_id": "고깃집", - "score": 0.0, - "review": "1", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 120호", - "operating_hour": "월~토 17:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 23:30", - "phone_number": 316284492.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 139, - "name": "약선닭한마리", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 58 푸르지오월드마크 1104호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 140, - "name": "38보쌈&족발", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 230", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7082371087.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 141, - "name": "몽촌닭갈비 현대백화점판교점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 본관 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151701021.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 142, - "name": "일만족발 서판교점", - "category_id": "고깃집", - "score": 2.3, - "review": "0", - "address": "경기 성남시 분당구 운중로138번길 36 1층 103호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317020993.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 143, - "name": "강씨돌판오리", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로712번길 22 판교테크노밸리", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 144, - "name": "편장군 족발", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F77822D6C039D4C82BE2BF6D77F1F87B3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MzFfOSAg%2FMDAxNjkzNDA4NTYxOTU4.r7SrMK_J8Hx_Y6zWiTvg2G7eE7i4sa6FNbjWOjRpqCYg.mHRhTuPYj2aSSWzmmmrP5OCc1t2jqBCh0b5gVGZkx1og.JPEG.lucky1127%2FKakaoTalk_20230824_121402025_01.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MzFfMzQg%2FMDAxNjkzNDA3ODIxMzMy.Xu3lMKGsQJbdJeCI-nJiPZJlLI0A-QL_QBFQAkvyMhsg.2LN7MQHJex-YYCmd4lEwFkEAbvN9xVlCAWaZMPg8O_cg.JPEG.lucky1127%2FKakaoTalk_20230824_121416615_06.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 145, - "name": "닭갈비야", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 230 삼환하이팩스 B동 208-2~3호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD7A71E92497D423D90506386380E5958, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6a265c72106183b2cb1f836059367069a27bfe5f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqetOLJAY0_a05kTr3Vm1kNM9FKlhLcj1_img.jpg", - "convenience": "주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 146, - "name": "양대포 판교점", - "category_id": "고깃집", - "score": 1.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 117호", - "operating_hour": "매일 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3a1645d410845a2b0f6d97ba2fae94a009781de5%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 147, - "name": "고깃집두마리", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 230", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 148, - "name": "어니스트키친 고깃간", - "category_id": "고깃집", - "score": 4.5, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316288892.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe674f3ab330652925c9ab915e3c4f946bf5b2fde%3Foriginal, //img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe674f3ab330652925c9ab915e3c4f946bf5b2fde%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 149, - "name": "1등급곱창", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 150, - "name": "족발의나라", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 151, - "name": "쭈꾸미온반", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로 52", - "operating_hour": "월,화,수,금,토 10:30 ~ 21:00", - "expanded_days": "월,화,수,금,토", - "time_range": "10:30 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1D63DF04687C4330A2758765886A3C0D, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0BD09AB689DB4B63AB7EE0D5B9D7A9C8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF541CC45BBC84E2CB009E8405089FE96", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 152, - "name": "마약생고기 판교점", - "category_id": "고깃집", - "score": 2.5, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 205호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 153, - "name": "미소한우등심", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 1B동 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 154, - "name": "수숯불직화꼬치 판교지점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로138번길 28-7", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 155, - "name": "돌판제주흑돼지", - "category_id": "고깃집", - "score": 0.0, - "review": "1", - "address": "경기 성남시 분당구 판교로255번길 9-22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 314287837.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTdfMjI3%2FMDAxNzM0Mzk4MjI4NDg5.cPZie7MPtFlWQ4eZsKTQ2J4LOXaKs7HkQE-enjP61vEg.2_97gCefq8eyxmVm6NNg2C3xsJqGILSVEGBJ32Uedu8g.PNG%2F4.png%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTdfMTI1%2FMDAxNzM0Mzk4MjE4MzM1.iU20chDivM7zMsnxBkWHZwYDdgGmK4pW6YRlN6clD7sg.U9nIjsnSlHWIubTKJbyErgDGCGHxpiiy8ZYP6ipzfPAg.PNG%2F0.png%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTdfMTgx%2FMDAxNzM0Mzk4MjIwMzg3._CJVX9BHK0LSd79Eq-1RmzpdWBjtUT3EzDCPx4BwJbEg.8WpGpTW0ysteOn1Jtc8Kl1AGpISn43kxnAcHrTCxNvcg.PNG%2F1.png%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 156, - "name": "나이스투밋", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22 우림WCITY 2층 227호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 157, - "name": "참숯불구이족발", - "category_id": "고깃집", - "score": 1.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로 226", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 158, - "name": "다이노소어레그 현대백화점판교점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 159, - "name": "돌구이돌판오겹살", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316287837.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 160, - "name": "육백", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스몰 지하1층 128-2호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F89070700B28F4481AAB91BB104E32E05, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMjFfMjQw%2FMDAxNzA4NTI0MzM0MDA4.iGswagD_1EXzqDK5sdRfPrU8JLqxKP83HwShqUhX4Lcg.YHXbHSqWfp_joPW0PrgN9a3zb7kfPIJJtKCUrNWtbW4g.PNG%2Fimage.png%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMjFfMjY5%2FMDAxNzA4NTI0MzMwMTcy.v1LxxFHAWE48nr8b7aXGPPC8iKw2xURGEaSH4UJF5QYg.75SSEH_byHRDYWnNG6oh2qbp9Jz0InZKSyI6_g8P-P4g.PNG%2Fimage.png%3Ftype%3Dw966", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 161, - "name": "서현궁 백현점", - "category_id": "고깃집", - "score": 3.9, - "review": "50", - "address": "경기 성남시 분당구 판교백현로 63", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317081141.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F99032CD9657A48FEA1771017DF530091, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5652C59CDCEE4C86A30281F596640D65, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6FFE669E5BEF4053BC694AC3E05D5DDC", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 162, - "name": "하누소 더힐", - "category_id": "고깃집", - "score": 2.0, - "review": "2", - "address": "경기 성남시 분당구 판교백현로 65", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317099980.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC2198923930D42109CA1A13145A05068, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FeG63pA%2FbtrIGx739Cg%2FF6Ik8izpDfsOYnVXnjt2o0%2Fimg.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbgM0Hl%2FbtrIEZcIuLL%2FyjJHfwportBNSuXwkji4c1%2Fimg.jpg", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 163, - "name": "청계산담백미", - "category_id": "고깃집", - "score": 4.3, - "review": "38", - "address": "경기 성남시 수정구 달래내로 22 1-2층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317070058.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC3531C4DCE5C4D0E8880239D746CA700, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5825238D0C104F31B16FA2A985BCF9AC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4FAA52C0C6254D9EB57CCDE111759DA6", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 164, - "name": "홍박사생고기 판교점", - "category_id": "고깃집", - "score": 3.8, - "review": "20", - "address": "경기 성남시 수정구 달래내로 14", - "operating_hour": "매일 11:20 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:20 ~ 21:30", - "phone_number": 317019700.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5539271B723D4D7CA98035F44EFA1DD7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa54081eb87213bbee94d9ee7e82835c7c38f8c55%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3cdee61e08ac925e72b16104d1780d8f7b7219e0%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 165, - "name": "도월", - "category_id": "고깃집", - "score": 4.3, - "review": "3", - "address": "경기 성남시 수정구 달래내로28번길 6", - "operating_hour": "월~토 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 166, - "name": "백현삼계탕", - "category_id": "고깃집", - "score": 1.0, - "review": "0", - "address": "경기 성남시 분당구 판교백현로 25 1층", - "operating_hour": "매일 11:00 ~ 20:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 20:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6DF4B3D7C545459E82FEC64FEFC52C42", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 167, - "name": "청계산담백미 가든", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 수정구 달래내로28번길 8 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 168, - "name": "돈우모리", - "category_id": "고깃집", - "score": 4.5, - "review": "11", - "address": "경기 성남시 수정구 창업로 42 판교 제2테크노밸리 경기 기업성장센터 지하1층 B120, 121호", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF6B30F3E442F4141B631BBECCEFCAE74, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9da307989e07de9d29e5fc7f840b79ba42061275%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F307ed963c784ba96f6358820e547dd87b65cf55d%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 169, - "name": "백경한우 판교본점", - "category_id": "고깃집", - "score": null, - "review": "804", - "address": "경기 성남시 수정구 창업로 42 경기기업선장센터 지하 1층 B117호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 50713840533.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB465233A12FC445BACC5E927A61585EA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F61AD1581B822442F86621F8FC32311B2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB9A54AD50D1F4AB98BED2AF3E2D3495D", - "convenience": "WIFI", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 170, - "name": "삼산회관 판교파미어스몰점", - "category_id": "고깃집", - "score": 4.2, - "review": "101", - "address": "경기 성남시 수정구 창업로 17 판교제2테크노밸리 파미어스몰 2층", - "operating_hour": "월~토 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:00", - "phone_number": 7048880691.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1141B172004C4E70AD644FB98C7D4875, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7fbafd703113aa0c6f44185487a0e1d98c081620%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff4816de63e13d92d100893a0d241834fb3025fe6%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 171, - "name": "오투닭갈비&부대찌개 판교아이스퀘어점", - "category_id": "고깃집", - "score": 5.0, - "review": "22", - "address": "경기 성남시 수정구 창업로 17 판교아이스퀘어 F동 201호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317558625.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBBF3EE241B56412F899286F8105F0AF2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faa15a428e0a5c06e82c74b8ec9cf7b90722afc76%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8682be163335bff3a7e6a7fb472b8b1d9cfbb27f%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 172, - "name": "빤닭빤닭 판교점", - "category_id": "고깃집", - "score": 2.3, - "review": "51", - "address": "경기 성남시 수정구 창업로 18 판교제2테크노밸리 C1동 1층 117호", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": 317519029.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7881ED6FB7894C46B31BE0DACFB6D698, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F11BC1816BB714F0EB50A3CEC68B813E6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd599ef4fabcf7ffb6b730e5d713262e09a64e153%3Foriginal", - "convenience": "WIFI\n주차\n놀이방\n흡연실", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 173, - "name": "서현실비", - "category_id": "고깃집", - "score": 3.8, - "review": "239", - "address": "경기 성남시 분당구 황새울로311번길 14 106~109호", - "operating_hour": "매일 11:30 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 23:00", - "phone_number": 3180160624.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F51C52607F10249EEB2DA36EB20FD58D6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F1944D3504FBEDDB20C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F133F47504FBEDDB316", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 174, - "name": "정선한우", - "category_id": "고깃집", - "score": 3.7, - "review": "40", - "address": "경기 성남시 분당구 하오개로 357 1층", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 3180178014.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F15847FD331DF4BE7A10156973A9474E0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7501b79ae8d70f67fbf736a6505c59fd003350b8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3304dccee2d879f05a3cbde88ebd125c40e5d02b45f45e38590bd2214dacc2d5", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 175, - "name": "육화몽 서현점", - "category_id": "고깃집", - "score": 3.7, - "review": "249", - "address": "경기 성남시 분당구 황새울로335번길 5 엔타운빌딩 1층 육화몽 서현점", - "operating_hour": "매일 11:30 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 23:00", - "phone_number": 316961292.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE05C35920A964645BFC825D631361502, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F055C00E07217427590C7E8C043640BCA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F46ABC3DB59E245D49296EB109B55FC74", - "convenience": "WIFI\n주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 176, - "name": "윤밀원", - "category_id": "고깃집", - "score": 4.2, - "review": "877", - "address": "경기 성남시 분당구 백현로 154 1층", - "operating_hour": "매일 11:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:30", - "phone_number": 317148388.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF8D1F059893342EB898BD2CA995DE4F3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F72D2DF04CBF547D6806749CF7B8437C0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3A2E2563D56E42A5B86DE168B296F143", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 177, - "name": "능이향기", - "category_id": "고깃집", - "score": 4.3, - "review": "74", - "address": "경기 성남시 분당구 하오개로 353", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 3180179092.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalad_thumb%2Ft%2F04cf3dcb1f1a3da2fa8b4721d8dca05f6c348c0b, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalad_thumb%2Ft%2F45c6da372aa06c00ee3e87c5ec3b6df5183ca43a, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F253A6A355625D6E11E", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 178, - "name": "한점의희열 수내돈", - "category_id": "고깃집", - "score": 4.6, - "review": "51", - "address": "경기 성남시 분당구 백현로101번길 12 세인프라자 2층 204호", - "operating_hour": "월~토 11:30 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 23:00", - "phone_number": 317160692.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F65F31C05C9664444A2F56B996953E77D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe9add62da9153eae68e7f7231e2b04f828bf1593%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcc19ee6d543d0966cff5c8b36272043cab1795bb%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 179, - "name": "교대이층집 서현점", - "category_id": "고깃집", - "score": 3.9, - "review": "41", - "address": "경기 성남시 분당구 분당로53번길 9 에이원프라자 2층 201~203호", - "operating_hour": "매일 11:00 ~ 22:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:30", - "phone_number": 317022222.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1386197397, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_860304922, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1140731520", - "convenience": "WIFI\n주차\n휠체어사용\n흡연실", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 180, - "name": "솔밭 삼겹살선지해장국설렁탕", - "category_id": "고깃집", - "score": 2.9, - "review": "72", - "address": "경기 성남시 분당구 황새울로 315", - "operating_hour": "매일 00:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "00:00 ~ 24:00", - "phone_number": 317070715.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2A9AFE4FAD5E43FC882170E44570CC79, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fad888c07068b072a0d03d2f5574ed6a3af70d066%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb02ca0e3e7a68259ac8b0c14cd7661422f29e6b4%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 181, - "name": "정글바베큐", - "category_id": "고깃집", - "score": 4.1, - "review": "46", - "address": "경기 성남시 수정구 달래내로207번길 44-3", - "operating_hour": "월~목 18:00 ~ 22:00", - "expanded_days": "월,화,수,목", - "time_range": "18:00 ~ 22:00", - "phone_number": 25044220.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9B10581E235847EF818B57766764550A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdccea98f16d59dcbbce1ca412d83910a6fcae77c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdedfe792f863459a0636d79501c0a0236771ec9f%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 182, - "name": "달구벌뭉티기", - "category_id": "고깃집", - "score": 4.0, - "review": "44", - "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 2층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317099257.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC453664683874CD6BEE9B2B88479B19E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fac1f7655c0ac67d83d07ba9bd2d7e74874bc6bab%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0fa9303f601a9c235ff7e408efd3ffb986919119%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 183, - "name": "우대포 분당직영점", - "category_id": "고깃집", - "score": 4.4, - "review": "1,843", - "address": "경기 성남시 분당구 황새울로335번길 5 앤타운빌딩 1층 106-1호", - "operating_hour": "매일 11:30 ~ 22:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:30", - "phone_number": 50713356139.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F54466A628A4049D08614562E44BB3416, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa568c081a48f6f541f02af963ad30f7c04d45340%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F634a0c1a95c8fc01a00bc6ec335f2edac1efa60d%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 184, - "name": "제주몬트락 분당수내점", - "category_id": "고깃집", - "score": 4.1, - "review": "410", - "address": "경기 성남시 분당구 황새울로258번길 23 분당수내동그라테아 1층 101호", - "operating_hour": "월~금 11:30 ~ 22:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 22:30", - "phone_number": 317147122.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F22655F3458CBB3DC09, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2224DD3558CBB3DB0F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F27501C3658CBB3DA1C", - "convenience": "WIFI", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 185, - "name": "마루돈가", - "category_id": "고깃집", - "score": 4.5, - "review": "143", - "address": "경기 성남시 분당구 황새울로258번길 10-9 1층", - "operating_hour": "월~토 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 23:00", - "phone_number": 317153692.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F484CBCC5629C4F35B045E27590F23398, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd8ec532d1e05a623646f4f69b80e8c82e37937ca%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F62a2f953bba3e5c6d5beb7f1e8ddd6b43195abe7%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 186, - "name": "개성전통삼계탕 분당본점", - "category_id": "고깃집", - "score": 3.4, - "review": "30", - "address": "경기 성남시 분당구 백현로 97 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317163454.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7629A09E795C426BB7A31B7952BEEB0E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F917bd3f354f1bdf5f4a13ea52bcb8019f6a6d29a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa1423cc8e855987c041f454df575cc72b81dd3e1%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 187, - "name": "서현방짜 본점", - "category_id": "고깃집", - "score": 2.9, - "review": "16", - "address": "경기 성남시 분당구 황새울로 315 1층", - "operating_hour": "월~토 11:00 ~ 22:20", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:20", - "phone_number": 317075992.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB303A12A01D94256829A84F99C8D992E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F22c0f785bc8fe6abfaf5ec57452c0e113c3571ce%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fafe1008b8b2fef8fe4b298672dae54d5f3cf1f53%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 188, - "name": "미방 정자점", - "category_id": "고깃집", - "score": 4.0, - "review": "105", - "address": "경기 성남시 분당구 느티로 16", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317117787.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD411823145CE40CC9A320C392CE89994, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCB1AC01C3E274A26BFADEAF0667E10EC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1c75e8f5ccb2726fde0ab882adb5d10de5b6dbf0%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 189, - "name": "삼다옥1947 수내점", - "category_id": "고깃집", - "score": 3.3, - "review": "45", - "address": "경기 성남시 분당구 황새울로258번길 28 한산이씨좌랑공파종중사옥 1층", - "operating_hour": "월~금 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 23:00", - "phone_number": 317173123.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F56D39F5F1C1E4E3F99B6951E7B537C2C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff79dcc68abad2bf8be140486311a85bd6a4aad76%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe1eb6b1f6be50101a85666b4697716023f9aba45%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 190, - "name": "하누비노 서현점", - "category_id": "고깃집", - "score": 4.4, - "review": "82", - "address": "경기 성남시 분당구 황새울로 314", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317092192.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F97B486C06B824B769311E9EAD79FD701, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3a801797b939963aa4aff74c604e60a78431c41c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8cc6d57bfa68fe10dec8bf49111cb07c0cd2222f%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 191, - "name": "소통", - "category_id": "고깃집", - "score": 4.2, - "review": "55", - "address": "경기 성남시 분당구 황새울로311번길 14 리더스빌딩 1층 104호", - "operating_hour": "월~토 16:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 23:00", - "phone_number": 317054469.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 192, - "name": "오발탄 분당서현점", - "category_id": "고깃집", - "score": 4.1, - "review": "49", - "address": "경기 성남시 분당구 서현로180번길 29 2층", - "operating_hour": "매일 11:30 ~ 21:50", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:50", - "phone_number": 317046527.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F32C83260E96848E8A12F6949F1C75924, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7845d4f12b561d2aaaeadf1e75b36737f362e0d1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2737e591ad48029ba61cae60c6d3927b52c58507%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 193, - "name": "양촌리 분당점", - "category_id": "고깃집", - "score": 2.2, - "review": "104", - "address": "경기 성남시 분당구 황새울로330번길 20 2-3층", - "operating_hour": "매일 00:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "00:00 ~ 24:00", - "phone_number": 3180178592.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD48F4A99E32B41B2A49D4A741E632569, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F3065DBFEF82C4D3A9C9432AB92C8DD93, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB6A8EAD00A34498082BF2C07792704BC", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 194, - "name": "삼김화로구이", - "category_id": "고깃집", - "score": 4.6, - "review": "73", - "address": "경기 성남시 분당구 느티로 16 젤존타워1 2층 207,208호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317118592.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD3EB108CF722452AB5DD62691397FEE2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2b67ba164728aaa59ac1ba6645be2b04ebba7837%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe5020b354b989b08adf7b0b81087fd1c0a65f6ce%3Foriginal", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 195, - "name": "교대거북곱창", - "category_id": "고깃집", - "score": 3.9, - "review": "18", - "address": "경기 성남시 분당구 황새울로258번길 32", - "operating_hour": "월~토 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 23:00", - "phone_number": 317139884.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F067520BBDDFA405AB1126115B4A1F038, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4e7a055c5edb1a32fc0b471c9e26c8843db305dc%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqg2ZMBeS7_nXBwMFn510RMeKlA9y1U7K_img.jpg", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 196, - "name": "예우", - "category_id": "고깃집", - "score": 4.5, - "review": "591", - "address": "경기 성남시 분당구 수내로 39 2층", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 316079220.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 197, - "name": "대현약수터옻닭전문점", - "category_id": "고깃집", - "score": 4.7, - "review": "2", - "address": "경기 성남시 수정구 사송로77번길 49", - "operating_hour": "매일 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:00", - "phone_number": 317211558.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F19591F0D1240465CB96F2E0671BBEE01, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MTRfMTY2%2FMDAxNzIzNjIwNTEwNzA2.BoVT9OpoxHn2pKbsGjh3VkQP9lmvq5mYwfnnUHK-9J4g.QyTXE0zHklcaoBXFFb7AfJSnaK7PcMdo9O4mEGe4RLIg.JPEG%2FIMG_4576.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MTRfMjU1%2FMDAxNzIzNjIwNTEwNTgx.JyrQC4Ba-UiGteVEDx0wLjxy2v6YfvyH2x_0sZUJRMUg.I2fqHL20zW91I2h3W0jl-EQSy1IWM_SFL_HTs_rg5Rcg.JPEG%2FIMG_4575.JPG%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 198, - "name": "참착한족발", - "category_id": "고깃집", - "score": 4.6, - "review": "37", - "address": "경기 성남시 분당구 황새울로342번길 11 금호리빙스텔 2층 203호", - "operating_hour": "매일 16:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 23:30", - "phone_number": 317096669.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F588791ADC6994A6488616A31A8EB132A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0adfa2ce2ffb19e2aecd08a2942fc5bbc6271c91%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb98a5b570cff52a08b8b3294fc49c3e8e9db517a%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 199, - "name": "수원왕갈비소떼마을", - "category_id": "고깃집", - "score": 1.9, - "review": "11", - "address": "경기 성남시 분당구 대왕판교로 287", - "operating_hour": "매일 00:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "00:00 ~ 24:00", - "phone_number": 317860066.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2AD51D8857654931B4F71D35E4C3AFB8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1d7501266bd34a8cdba4b8ceda810a1c3b16dedfea507bd7fba7d40be76d9fa4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9604ce507d9b2ebf8f060ff467d4cec9c33833bc4bf7d1a1483eee860c576450", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 200, - "name": "우경한우정육식당", - "category_id": "고깃집", - "score": 4.8, - "review": "61", - "address": "경기 성남시 분당구 성남대로779번길 22", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317095222.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3FA9D1AE6B58480BAB7562DA895BCCC8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd825e8e429b9d811b9bdfc2e64160689fb694b98%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F43e18f23e388b9103466a86f7d05c2cc0ac1bbbf%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 201, - "name": "보조락", - "category_id": "고깃집", - "score": null, - "review": "17", - "address": "경기 성남시 분당구 서현로210번길 10 다두프라자 2층 208호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 317097379.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F11343D3D50067E8B31, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FAE6E13DDCC974DE5933B47DC906F067A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F114A153D50067E8B0A", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 202, - "name": "굴다리집", - "category_id": "고깃집", - "score": 4.1, - "review": "31", - "address": "경기 성남시 분당구 서현로180번길 29 1층", - "operating_hour": "화~토 00:00 ~ 24:00", - "expanded_days": "화,수,목,금,토", - "time_range": "00:00 ~ 24:00", - "phone_number": 317072426.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD7E2D81625404FFF88D9A3CBDF2024D0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjdfNDAg%2FMDAxNzMyNzA5NjUyMDcw.EQSPPrYaRqusTEkVqLyI9Cqd_BdkEpJS5NGRZxjXGcsg.KbjrXauEoEbDayqyaSUd6EH4kSldqTWW2rNb-qCTJEgg.JPEG%2FSE-6f663255-e2a6-41fb-bdf9-949ea68f35c1.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MjNfMjAw%2FMDAxNzE5MTQ3MDAxOTE3.2LM3CDptk52z1DI8QEv-0Q-reIRwFUfyMjLi1BYcSQIg.PbDi7enkL52SxUEcDG5b3rzTqn0em6J7AOZ1XXmtCHYg.JPEG%2F20240623%25EF%25BC%25BF195259.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 203, - "name": "왕창족발", - "category_id": "고깃집", - "score": 3.6, - "review": "40", - "address": "경기 성남시 분당구 수내로46번길 11 대덕글로리빌딩 1층 114,115호", - "operating_hour": "월~금 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 24:00", - "phone_number": 317153666.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F25298C4F53F373043B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2247FB4F53F3730A06, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2337804F53F3730D1F", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 204, - "name": "청기와타운 서현점", - "category_id": "고깃집", - "score": 3.4, - "review": "1,028", - "address": "경기 성남시 분당구 황새울로342번길 9 서울문고 2층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 50713499736.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE0A7001A0E3F4801BB543BD0099D8EA4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBDF9FC5E67B546169CA8353519F590E0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F09731168310B424B88CDD198FE51AFB5", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 205, - "name": "영양센타", - "category_id": "고깃집", - "score": 3.6, - "review": "32", - "address": "경기 성남시 분당구 분당로53번길 9 1층", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 317079991.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F229C8725A7344A9D863E44A1F3AC3BAD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffb7f46a913c3935675014b713c699ab93f706214%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F71189d244f0beed787234ab46c0661f69dbb1b6c%3Foriginal", - "convenience": "주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 206, - "name": "정통춘천닭갈비", - "category_id": "고깃집", - "score": 3.6, - "review": "169", - "address": "경기 성남시 분당구 내정로119번길 15 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317182254.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1DAF9AB77AEB4C21A3FECF79E95EBDB7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F61f0a47df671ff48b744626ea7cdd66b2eb8c0ce%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6f41fd9a0a5f65051be6e8a1784095d769bc4b3a%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 207, - "name": "수내닭꼬치 수내본점", - "category_id": "고깃집", - "score": 2.5, - "review": "10", - "address": "경기 성남시 분당구 황새울로258번길 43 수내프라자 1층 110~111호", - "operating_hour": "월~토 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 24:00", - "phone_number": 317171255.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCE69468DB8944747AC9B0B3AC649597E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb1b10a72c7d614df0d288451d69ae53af5ded3bb%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqmaO5qSiI_w6zoqIOOKgzvM3Dsn06epK_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 208, - "name": "맛있는한우", - "category_id": "고깃집", - "score": 3.0, - "review": "26", - "address": "경기 성남시 수정구 여수대로 9 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317540113.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA0MDdfMTcw%2FMDAxNjQ5MzQxNTQ4MTQz.lWw_L0Gdu5DaS1Nl6AoJhrDlCvc0Gx-t3HpMjGtl1V8g.g7zYwWL501mHj4-ZwHwVAB9AEkpCQdgZ6Fo26nCR4jUg.JPEG.mango_junghyun%2Foutput_2899881037.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA0MDdfOTgg%2FMDAxNjQ5MzM5NTMwMTIy.QE5qTWnxG04-1TYXqPjKRDUp5w0UIjfx2zqswlsYpZ4g.7fqC278KlCmJhP41tHSe16cBnHXyMT9dBWEVAe_UrxIg.JPEG.mango_junghyun%2Foutput_812180514.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA0MDdfMTQ4%2FMDAxNjQ5MzM5NTI1NTAy.3RqkNIJwMc2NJnyz16Oy3rqoPm8k9Ls6NfG0J4dewIIg.fzYbXWEXwIqPaNy9N8AyLywTPaHYHyfkCWRFvN_DYn4g.JPEG.mango_junghyun%2FIMG_8717.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 209, - "name": "그리던고기 서현점", - "category_id": "고깃집", - "score": 4.5, - "review": "144", - "address": "경기 성남시 분당구 황새울로 325 서현하우비 2층 206호, 207호", - "operating_hour": "월~금 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 23:00", - "phone_number": 317089222.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F577615E90B64453B9C25AEB930627B12, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F1421B58DDC5E450EB1B1076BEF8B890B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCEF585452C3047C38F01B6C571F8CA91", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 210, - "name": "해방삼겹", - "category_id": "고깃집", - "score": 5.0, - "review": "9", - "address": "경기 성남시 분당구 백현로101번길 13 2층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3A0718AD7CB84D72AC22C188553C5385, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb82ab49f9575c4a17b683e45c784eacee08a4ac3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9d7918930e6d2de0346dc151fc9f0fb9fbba4f75%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 211, - "name": "종로영풍갈비", - "category_id": "고깃집", - "score": 4.1, - "review": "49", - "address": "경기 성남시 분당구 황새울로258번길 10-9 1층", - "operating_hour": "매일 11:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:30", - "phone_number": 317138082.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC8D29A10F38B4FA597B7337D2D358A55, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9fd00af67cf4499daaf97d14ed2cb8895bab6444%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqjhxTbszu_XQRTwB3hbWCKiQykOOsrH1_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 212, - "name": "옛집", - "category_id": "고깃집", - "score": 4.6, - "review": "37", - "address": "경기 성남시 분당구 판교로 437 1층", - "operating_hour": "매일 16:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 22:00", - "phone_number": 317041026.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 213, - "name": "청년한우투플 본점", - "category_id": "고깃집", - "score": 5.0, - "review": "100", - "address": "경기 성남시 수정구 사송로 48", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 3180239266.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC113C22738A646D8AE58A4E50DFFECCF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDBDF4AE41F7C4D0FB7E1149DDD7E831D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F39A4ECEBC64F4B9C862DE047D9D15035", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 214, - "name": "마장동 생고기 서현본점", - "category_id": "고깃집", - "score": 4.0, - "review": "257", - "address": "경기 성남시 분당구 황새울로 325 1층 103~104호", - "operating_hour": "매일 11:30 ~ 22:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:30", - "phone_number": 317073363.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB15412996096475CB380EB30A3CAD1F7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0006FDA428364B01B15624BEFC530939, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F843D2D423C9A4F2B84FA78D0B976BC58", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 215, - "name": "하남돼지집 분당수내점", - "category_id": "고깃집", - "score": 3.3, - "review": "19", - "address": "경기 성남시 분당구 황새울로258번길 32 1층", - "operating_hour": "매일 16:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 23:00", - "phone_number": 317263930.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F034BF8108CA149D7B99952CFFE19AF16, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa856ff53d22dc0f7e839859e1680542fe5964f1e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa5e8f5e2322c1a71db0a4cd43cea6832a4bd8b44%3Foriginal", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 216, - "name": "모꼬지", - "category_id": "고깃집", - "score": 3.8, - "review": "26", - "address": "경기 성남시 분당구 황새울로311번길 14 1층", - "operating_hour": "월~목 11:40 ~ 22:00", - "expanded_days": "월,화,수,목", - "time_range": "11:40 ~ 22:00", - "phone_number": 317047016.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 217, - "name": "판교집 수내직영점", - "category_id": "고깃집", - "score": 4.5, - "review": "378", - "address": "경기 성남시 분당구 백현로101번길 16 대덕프라자 1층 102호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 50713436110.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F0CE8AA7FB8FC4609BD61C0ED17A18F79, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F814A416EBB014CE0BA1F336A42335EF4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F18498CFB3DE14A23AA50E5EA05F82A37", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 218, - "name": "생활한우", - "category_id": "고깃집", - "score": 3.1, - "review": "12", - "address": "경기 성남시 분당구 백현로 97 다운타운상가 2층 206호", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F292AD177979E42929D6E9D56E3B33039, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faa392f138f9783289d1ec6a7718e2e7647f15510%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4bccc6cbb399e2e8e56691c09eb31db42d36563d%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 219, - "name": "됐소 서현점", - "category_id": "고깃집", - "score": 3.2, - "review": "177", - "address": "경기 성남시 분당구 중앙공원로39번길 49 지엔느빌딩 지하1층 B102호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317055676.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F75D9326491374CC0893715D05574C843, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA1MjVfMjYw%2FMDAxNjg0OTk2MTY1MDU4.mBwpJ4VL-ZPYiaUBrHe11oMjt5rottqVXM4fja41-WIg.HSYBRzp_f_nf3IK9RXf7vUxzPXzD95gJNB1vDwJg62Ag.JPEG.jyuebling%2FIMG_1658.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA1MjVfNyAg%2FMDAxNjg0OTk2MTYyMjQ0.lUtmzvwMzEE4ln912iaLlp7vMDAYdSO1-DTYg5BZIRsg.PPstB9o7_zGDUFgh81D5mtgsR2Gq-Pk_b4QvQgiOsLgg.JPEG.jyuebling%2FIMG_1657.JPG%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 220, - "name": "마당쇠곱창", - "category_id": "고깃집", - "score": 4.2, - "review": "256", - "address": "경기 성남시 분당구 분당로53번길 15 207,208호", - "operating_hour": "월~토 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:00", - "phone_number": 317039979.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FE4D59DD4007A45E3828B29C674113E62, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fccb06d8d2e3d464f612e0e6d78ab4fa674486197%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F31b188b8f24d7f62b1dc4be745e29d0125cd7548%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 221, - "name": "열문집", - "category_id": "고깃집", - "score": 3.5, - "review": "277", - "address": "경기 성남시 분당구 서현로180번길 19 비전월드 1층 102호", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 1091425402.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDED3E168EC7E4A55B48456A5B48E5ADB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFA4BEFDC70CA43B1B8A2DE25E84491B4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8677D0732B1C48E8B9D3E9BFA878CFA4", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 222, - "name": "도아들", - "category_id": "고깃집", - "score": 4.6, - "review": "240", - "address": "경기 성남시 분당구 분당로53번길 15 산호트윈스 1층 116~119호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 317052024.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3EC7885B1EFA45ABABD44384D93CAF22, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faff262998fc706728d7b467e0c98fbfe5636cb42%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6f051b9bc494bbe2a07d6ba080d18fd104e7a4bf%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 223, - "name": "하남돼지집 분당서현점", - "category_id": "고깃집", - "score": 4.0, - "review": "24", - "address": "경기 성남시 분당구 분당로53번길 12 서현나산플라자 1층 105호", - "operating_hour": "월~금 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 24:00", - "phone_number": 317073930.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEC24CFEEA93F4FF39FC5F8BCDA7D0512, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F83a3fa5333aeb530472aca3c7fba6c037bf75720%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F77DB62A2927F493682F70CC67A33B32C", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 224, - "name": "엉터리숯불구이", - "category_id": "고깃집", - "score": 4.6, - "review": "10", - "address": "경기 성남시 분당구 분당로53번길 15 산호트윈스 2층 202호", - "operating_hour": "월~토 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 22:00", - "phone_number": 317051366.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F1960B04C4FC6D07915, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F17716B424FC216ED05, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5bbcc25c481f6b6c94a12f7971c7c1561c90aa16%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 225, - "name": "소갈비살맛소", - "category_id": "고깃집", - "score": 4.3, - "review": "13", - "address": "경기 성남시 분당구 서현로180번길 29 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317015849.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F86E1B5BC79384F8E9ED33DAACBB3121E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F114333e99d174ec4234cf75c6a719fe4510146ed%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb2d3315ac5318bb521cbde211e736521d43afadd%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 226, - "name": "수내족발 분당수내역점", - "category_id": "고깃집", - "score": 4.6, - "review": "12", - "address": "경기 성남시 분당구 황새울로258번길 10-9 1층", - "operating_hour": "월~금 14:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 23:00", - "phone_number": 317129212.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDEDF06E85FA04A359A1D615470CFB81F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F20dfc693f95d26e38986709d085ccc4d257deb69%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMDRfMTA4%2FMDAxNzA3MDI0MDA4MjY2.-rbI2ldbqYguzYGiCRSDjfJcCYH5X6vEebqiVttiN54g.SLzT7_T-UmPNsDy5t_molS7wKf003mnspXxvdppQEokg.JPEG.sohwak_rich%2Foutput_3094173208.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 227, - "name": "세광양대창 분당수내점", - "category_id": "고깃집", - "score": 4.6, - "review": "124", - "address": "경기 성남시 분당구 황새울로258번길 32 2층 203~204호", - "operating_hour": "월~금 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 24:00", - "phone_number": 317145557.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1CA2FE9901C34955A86452D962A3C19D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7969EA8A8165452289E59FEE1241FAEC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F62DD3E9E74CE4E1C83FFF96D39E8720F", - "convenience": "편의시설 정보 없음", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 228, - "name": "새마을식당 분당서현점", - "category_id": "고깃집", - "score": 3.0, - "review": "6", - "address": "경기 성남시 분당구 서현로180번길 13 서현프라자 1층", - "operating_hour": "매일 11:30 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 01:00", - "phone_number": 317032888.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7DF2ED60F06145CF8B40A13BBA377EB4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2314C34F5538B0BC08, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAzMDVfMSAg%2FMDAxNjc3OTc5ODQxMjE3.W0NHhyzgFA2uZ3KEh0fDpZ3Dzn1Id1z8YUdfzzuZkVIg.eHhg-ib5EdBEByYhLqDJPbAQvqJpeeZi_e4ZgZEYT34g.JPEG.choizeun%2FIMG_9295.jpg%3Ftype%3Dw773", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 229, - "name": "삼족", - "category_id": "고깃집", - "score": 3.7, - "review": "103", - "address": "경기 성남시 분당구 서현로 204 LG에클라트2 2층 201호", - "operating_hour": "매일 15:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 23:00", - "phone_number": 317089333.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 230, - "name": "김청자매운갈비찜 서현점", - "category_id": "고깃집", - "score": 4.6, - "review": "176", - "address": "경기 성남시 분당구 황새울로330번길 16 천지오피스텔 2층 201, 202호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 317019372.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCDB2D5D0D4F441329A9C93E884983873, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc2970ad8fcd0acabcea51d91b0bc41a65cd07f38%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F863d699ae9ac546b8eb4030f978be4356ffc2f37%3Foriginal", - "convenience": "WIFI\n주차\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 231, - "name": "라무진 수내점", - "category_id": "고깃집", - "score": 3.9, - "review": "17", - "address": "경기 성남시 분당구 황새울로258번길 32 1층", - "operating_hour": "매일 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 24:00", - "phone_number": 317115501.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F0702E56BD6EC411893D6FB564BB64092, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F316ef18092b3e876f90730e583798f08b4079014%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe62fd7dbc1d73286cc9396272eab03830f9ae820%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 232, - "name": "봉추찜닭 분당수내점", - "category_id": "고깃집", - "score": 3.1, - "review": "11", - "address": "경기 성남시 분당구 백현로101번길 13 월드프라자 201호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317269381.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDFA1F2E56599414F9D61828CA8E8F9E4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd207f0512a702733a702c78bd433498e228fee79%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe75d851943902c52a61c278a1cd3ba0ee66657b0%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "배달가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 233, - "name": "국민한우집", - "category_id": "고깃집", - "score": 4.9, - "review": "260", - "address": "경기 성남시 분당구 하오개로357번길 4", - "operating_hour": "화~일 11:00 ~ 21:30", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317051592.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5027670FA29E416EB3B88FDDC6BC3F19, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2f0581a46b8ca20644346af865f72b394fa00cdc%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3ec8c6c59a55d7b5c57e9c7a61df836400abd9b8%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 234, - "name": "일미닭갈비파전", - "category_id": "고깃집", - "score": null, - "review": "10", - "address": "경기 성남시 분당구 분당로53번길 19 피아자코코빌딩 2층 207호", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 317091242.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F151DE14A4FC317B008, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMTZfMTEz%2FMDAxNzMxNzI0NTQxNjU1.qC2s8hQ8qZU_JCKPuRWXYvNuecLPgL9rzHYWeHIqyjYg.pk4dsGhXKSlXKWWi6C-Lqj-rHuERFyeI8-e7uFneS84g.JPEG%2F900%25EF%25BC%25BF20221009%25EF%25BC%25BF194138.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMTZfODkg%2FMDAxNzMxNzI0NTM2MjMx.E822ylWfVSMuEaNf6qkYeM1l7jK2C19KysY4A_a7NZUg.UignkyMaPLXn1V4jDxZBN8Wou-KA_cT27KAq_3G9gcwg.JPEG%2F900%25EF%25BC%25BF20221009%25EF%25BC%25BF193815.jpg%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 235, - "name": "명륜진사갈비 성남정자점", - "category_id": "고깃집", - "score": 2.7, - "review": "158", - "address": "경기 성남시 분당구 백현로 148 신흥조합상가 1층 101호", - "operating_hour": "매일 12:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 22:00", - "phone_number": 317129592.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F43F6DC300FF944C5ADB1CD28EB8AAA39, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEB3A602B3B8648CAB27A58F40AFA3975, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7ceab4d08602aefee14db563369f13eba68202d7%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n놀이방\n흡연실", - "caution": "예약가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 236, - "name": "우정가 수내역점", - "category_id": "고깃집", - "score": 5.0, - "review": "298", - "address": "경기 성남시 분당구 황새울로240번길 10-3 2층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317117965.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB357463B2D64431C8BBACF8568E15C5E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3D5A73B334644CF1B9D5D4B1CCDF41A5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F894C7861C9474E6AA33514FAC2D3B1F6", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 237, - "name": "최가네숯불구이", - "category_id": "고깃집", - "score": 4.4, - "review": "93", - "address": "경기 성남시 분당구 황새울로360번길 22", - "operating_hour": "화~일 16:00 ~ 23:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "16:00 ~ 23:00", - "phone_number": 317096824.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBBB97169A2F94EF08C74E3E5D38B44C5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc1c4c798dab82031c70377000f3a5545e7841167%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3e095c6104b9e934fce7df6cc7c0134d70a00bc3%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 238, - "name": "산아래염소이야기 판교점", - "category_id": "고깃집", - "score": 5.0, - "review": "62", - "address": "경기 성남시 수정구 여수대로56번길 1", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317588111.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3633BA7A1BE042F3B7C65FA4AE4EED8D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB4F726CC6B1A4F8790DDBACF2C2A0971, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF30963536F234A2A9C2CF5554D33CCCE", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 239, - "name": "1953연남서서갈비 정자직영점", - "category_id": "고깃집", - "score": 3.7, - "review": "147", - "address": "경기 성남시 분당구 백현로150번길 7 1층", - "operating_hour": "월~금 16:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 22:00", - "phone_number": 317191953.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F47823DDABC8A46F68C35466765343DED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa77e5c4e7f507040f2fbf7e58279d6c3d20d6634%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqqBXYM8r4_0AGL5XwekjoUbm1vos0Bnk_img.jpg", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 240, - "name": "방배소곱창", - "category_id": "고깃집", - "score": 4.3, - "review": "150", - "address": "경기 성남시 분당구 하오개로 366-3", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317090400.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F242B26D5E5D24723A371E4269F01DBD8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE99BDFC86A254DF3B137F8DCC7FD7332, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fda21886be2d5a75e7283d07c1feb9730f708d952%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 241, - "name": "돈멜", - "category_id": "고깃집", - "score": 4.1, - "review": "302", - "address": "경기 성남시 분당구 느티로63번길 6 1층", - "operating_hour": "화~금 17:00 ~ 23:00", - "expanded_days": "화,수,목,금", - "time_range": "17:00 ~ 23:00", - "phone_number": 317180092.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4D3442E1A16D4067A3E11438495D30A4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1C43D61CD0424954927BD3C69C4CAE50, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1650696ff8addc085f44c5cf5f649574b07636df%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 242, - "name": "오리랑돼지랑", - "category_id": "고깃집", - "score": 4.3, - "review": "11", - "address": "경기 성남시 분당구 황새울로258번길 28 한도회관빌딩 3층", - "operating_hour": "월~토 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:00", - "phone_number": 317115391.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB697AF5C44CB4577812E154B974EA006, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F608b71c4a35545979e054963a97addedfdbbe5d8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMjJfOTgg%2FMDAxNzI5NTYyODQ5NDU5.-2i2wrkoTasMc6gsDoCVgRTEv6egcyDOkCN1SmRdlK8g.nOzuicZ-2x829UN0lJB3GkuompjzcLWw8lFcJsbNTSIg.PNG%2F1.png%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 243, - "name": "수내곱창", - "category_id": "고깃집", - "score": 4.9, - "review": "107", - "address": "경기 성남시 분당구 수내로46번길 11 대덕글로리 110호", - "operating_hour": "수~수 11:20 ~ 22:45", - "expanded_days": "수", - "time_range": "11:20 ~ 22:45", - "phone_number": 317179210.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F998B01DCB80642599B70E57287F05D5D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdb1c36587c802b8df7b8ba6b7b7fc57eee4e0c88%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc4e3adc94989996e46dc20bd0bab261c8f6584c0%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 244, - "name": "조선부뚜막 서현점", - "category_id": "고깃집", - "score": 2.2, - "review": "49", - "address": "경기 성남시 분당구 황새울로 337 웰빙프라자 1층 101,102호", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F27228DDD467F4D71BFA534CD284BD0A2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F68abafb8fae594f98d6adaa1644f0dbe4788b573%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1e88531720ac85af6dafa45a0d8195ece5928d94%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 245, - "name": "판교돈 서현점", - "category_id": "고깃집", - "score": 3.8, - "review": "19", - "address": "경기 성남시 분당구 황새울로 325 1층", - "operating_hour": "매일 16:00 ~ 00:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 00:30", - "phone_number": 317061912.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA8C7BE0E95B648D3AF387A9BFA5F54F2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fbbfe266176388e492d7e33ac091527b077904870%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fbde9e4e435355729b79bdd0516ae051137358d85%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 246, - "name": "강산", - "category_id": "고깃집", - "score": 4.6, - "review": "9", - "address": "경기 성남시 분당구 판교로 442 1층", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 317061889.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F559EF3E16FC241E3AD120AF6602627C6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2f3aacfc3a59fe96c4ee1ce4c163b0396939c72a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe004bc10eeca41f25e7fd3316caf4f999ddee476%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 247, - "name": "춘천본점닭갈비", - "category_id": "고깃집", - "score": null, - "review": "54", - "address": "경기 성남시 분당구 서현로210번길 14 유성트윈프라자2차 1층 106,116~120호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317049686.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F1259A0334F4D3F0335, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F12576C334F4D3F0438, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA4MjlfMTAg%2FMDAxNjYxNzUzODk5NjU3.mjbD1A_cHT9a1QMqjOcmF66YPY-WA7wQFpkr2qLXdXYg.IcX1HS1zxAsElcohrZ-nn4SYSR-xCg_FucMZLWfi5jMg.JPEG.wshool14%2FKakaoTalk_20220829_145131070.jpg%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 248, - "name": "일로집", - "category_id": "고깃집", - "score": 4.5, - "review": "15", - "address": "경기 성남시 분당구 느티로 16 젤존타워1차 1층", - "operating_hour": "매일 16:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 02:00", - "phone_number": 316081515.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA87F743CCF7D4B0E931099AD8F38A19A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3c5736a9b0097d208abeca522af6d65e6d6aeeb7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd7b8f63a606202386d05f2ba59d02f5ddf0255d2%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 249, - "name": "서현닭한마리칼국수", - "category_id": "고깃집", - "score": 4.1, - "review": "12", - "address": "경기 성남시 분당구 황새울로360번길 28 은성프라자 5층 501호", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 317033500.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3e00e493ebac45859c752d74b4d23674d4b00497%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9c917a75224e2c02b9e99504b2442075854abb80%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8e8f89940157d9ea81fa42881bbd35044488b888%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 250, - "name": "산골밥상족발", - "category_id": "고깃집", - "score": 4.3, - "review": "10", - "address": "경기 성남시 분당구 백현로101번길 16 2층", - "operating_hour": "매일 10:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 23:00", - "phone_number": 317195834.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD8C8637C6F4F4C509F6826AA4D582B18, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F204a2628190be49c5307cdda80bc6ed255ab4a88%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F464c01b370af774cff50e4b4c7a86a0476700b79%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 251, - "name": "고봉삼계탕 분당점", - "category_id": "고깃집", - "score": 4.5, - "review": "43", - "address": "경기 성남시 분당구 황새울로360번길 35 서현현대프라자 1층 104, 107호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317017800.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9ECE8A55030D4AD295197DC8166EFA74, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5f89708134cc01c70d5dd492e5474a46bcb50932%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Febca1eca8e2dea1ee726ddc1a7f462ca784c2bb1%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 252, - "name": "제주클래식 분당점", - "category_id": "고깃집", - "score": 3.6, - "review": "1,282", - "address": "경기 성남시 분당구 정자일로 240 월드프라자 102호, 103호", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 317264295.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F48FE3AA3A13542CAA5236BBFF6A3C4BC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MjZfMTg1%2FMDAxNzI0NjM0NDIxODY3.FGxD0KS4uGUeezHrcFJBKS7XVXY0IpTcRTzgsNpxvQcg.L43C7vkfbKr--i830n0tvkCf9BpNr3AxY2eC0z0DVL8g.JPEG%2FIMG_29687.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTJfMTYy%2FMDAxNzMzOTgyMzgwMTkx.sGsY5JFRaxQJmfg4wQv_TBi7WJd19kGHdTwC3GO5Swcg.39WpvH931dGpTUtQlOaCqrqbjdYMNFHhs1KXJGdccXEg.JPEG%2FSE-749512c2-b537-11ef-a7f6-3ba8dc37ba74.jpg%3Ftype%3Dw966", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 253, - "name": "라무진 서현역점", - "category_id": "고깃집", - "score": 4.5, - "review": "146", - "address": "경기 성남시 분당구 서현로 192 야베스밸리 1층 105호", - "operating_hour": "월~금 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 23:00", - "phone_number": 317016544.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD076D87B72C54FFD9279AFAD3970A870, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5C3FB005DEB943EEBE4FB9419B222496, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9977AE38A97D41E88E24E3E5B25DC0A8", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 254, - "name": "육블럭", - "category_id": "고깃집", - "score": 4.4, - "review": "19", - "address": "경기 성남시 분당구 정자일로213번길 10 성원상떼뷰리젠시 101동 105호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317156692.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3053BCA3DA9341CAA74B87FB3A28C9B9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd197b69cf6929be06e4d34df7cd83fc99f9b62d6%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc6efd14ba3019707a5394b42060358e39267f8db%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 255, - "name": "천하제일족발얼큰등심칼국수", - "category_id": "고깃집", - "score": 4.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로258번길 32", - "operating_hour": "매일 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F1629929C3C3A4612B1110D8182A4843B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FF4DD84BA40A84B538918F0FC8426623D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FA7794100B3FF445781D2F93D4C790B94", - "convenience": "WIFI", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 256, - "name": "정든닭발 서현점", - "category_id": "고깃집", - "score": 3.8, - "review": "48", - "address": "경기 성남시 분당구 서현로210번길 16 유성트윈스 동관 2층 208호", - "operating_hour": "매일 16:30 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:30 ~ 02:00", - "phone_number": 317090092.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7AEA83D2C9204C159BA9A48E853A5EE2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqgPbssM5N_nxEbz2UEPqWw69JYhBZgw0_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdc18b56d86f466d78e7e86b78137b649472bf1ab%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 257, - "name": "인사동", - "category_id": "고깃집", - "score": 3.8, - "review": "9", - "address": "경기 성남시 분당구 황새울로200번길 26 지하1층", - "operating_hour": "매일 11:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2152364F54A1837427, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3b88d66f9a3795026849292952426e3cdab75b81%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdb0f46de7722300ba9b8eb54522aebd708c1c497%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 258, - "name": "항아리보쌈 분당정자점", - "category_id": "고깃집", - "score": 4.5, - "review": "75", - "address": "경기 성남시 분당구 내정로119번길 11 1층", - "operating_hour": "매일 11:00 ~ 22:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:30", - "phone_number": 317124119.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFB3B616EFA8C4477A0E53A7CCB9C42A0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F037fffff114b43616b9f31aa90db9f0faa956514%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa95b7ad14a933c3346cd3966619cace6852a4a2c%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 259, - "name": "248갈매기 서현점", - "category_id": "고깃집", - "score": 3.2, - "review": "40", - "address": "경기 성남시 분당구 황새울로360번길 12 2층", - "operating_hour": "매일 11:30 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 02:00", - "phone_number": 317040045.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1FC1107FB5F840848938BAF273100C7D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F19d0e5b2473c279ac6ec087b40226e9bc8fb3429%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fac266143b6b438d244bfb35b8202e687af2a30b0%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 260, - "name": "먹보집", - "category_id": "고깃집", - "score": 4.0, - "review": "8", - "address": "경기 성남시 분당구 황새울로258번길 32 2층", - "operating_hour": "월~금 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:30", - "phone_number": 317128253.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC4E43D833D554549A552EA73CFC259E7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1AA72FDE96394ABCB5BEAC17E010D2C6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F09C662ADBD604D85AEAEC4F1F4290643", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 261, - "name": "석아저씨족발", - "category_id": "고깃집", - "score": 5.0, - "review": "9", - "address": "경기 성남시 분당구 백현로101번길 12 1층", - "operating_hour": "매일 12:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 24:00", - "phone_number": 317152399.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFA0560A0F98540B9ACE997503756F8AA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F961610af48a71b1f0b66ed03282b590fa816601a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc92832bd43e0f95ceb6cd5d0713526a80541629c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 262, - "name": "고기를굽다", - "category_id": "고깃집", - "score": 5.0, - "review": "178", - "address": "경기 성남시 분당구 황새울로258번길 36 광진프라자 2층 201호", - "operating_hour": "월~금 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 23:00", - "phone_number": 317161960.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F501E9944113A44389FCD8D4429B5E829, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMTRfMTY3%2FMDAxNzI4OTEwMTgzMzE5.-uAHdKD1cbO3XRUblFuJuIW_shQhmRDn6KPxc0wze8gg.EwpD0VHOnGq4vU3ImerLc7QQgSnfr-8jGmNgvGLwpNkg.JPEG%2FSE-cb9f19bf-f1ed-425c-92ec-6063e0a97c48.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMTRfMjYg%2FMDAxNzI4OTEwMTc5MTY0.x7r0bTg8mzeg1Jixk_S-gg3TLcL0TGo6MY5k00jrbzYg.J_rAqSPWNFb-UhltJpDNVAbbIZMqjmcrd1IWtG2xXw4g.JPEG%2FSE-dff2ed2c-f458-42f6-8776-27d7ce25fbe0.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 263, - "name": "식껍 수내점", - "category_id": "고깃집", - "score": 4.0, - "review": "187", - "address": "경기 성남시 분당구 황새울로258번길 10-7 가나프라자 106호", - "operating_hour": "매일 15:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3B33E5C922804A7289B680F9FBE22F06, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F15d99f0d7da3bc8899dbbaece80c0fff87e716da%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA0MjJfMjYg%2FMDAxNjgyMTY3Mzc2NDM1.3cVHRyYXFi-l-ey8JlMf32ENbwK8BWkhREM4ebZfp4Qg.54VZ4T1jzWcZjCcNOWv9XZuLuLmJvqRkGuSt05bOFgIg.JPEG.wol1312%2FIMG_7006.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 264, - "name": "양푼애등갈비 분당본점", - "category_id": "고깃집", - "score": 3.2, - "review": "185", - "address": "경기 성남시 분당구 서현로 184 엘지분당에클라트 1차 2층 207호", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 50714048847.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFAFD09D5FA634DC4BAEA474FCE9E5C27, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe467e1fb5cac17fe67d5c70bb4fc386d15b1a001%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb4de12eac8db6058b32b6f80c21740c44b218141%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 265, - "name": "싸움의고수 분당수내점", - "category_id": "고깃집", - "score": 3.8, - "review": "8", - "address": "경기 성남시 분당구 백현로101번길 12 세인프라자 1층 110호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317120558.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD6383A71C8FE4E148DAE6809D15AFE53, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5ccc320c7fc20c0f4fa801dbdec1ef32484ac554%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe2f5e8e0dc3117ee05d7a6a78675bf75b7cf83a9%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 266, - "name": "한소헌", - "category_id": "고깃집", - "score": 4.4, - "review": "883", - "address": "경기 성남시 분당구 성남대로331번길 3-3 젤존타워3 2층 206호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317119220.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAD872E6CD91F438E93153B5310CE5B9F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBA3831B0812247AF96888497EBFD1516, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F748DA81D8E064F64B6DD667B8B7D6FA4", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 267, - "name": "산마루 양푼이닭도리탕", - "category_id": "고깃집", - "score": 3.6, - "review": "86", - "address": "경기 성남시 분당구 황새울로360번길 12 지하1층", - "operating_hour": "매일 16:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F12551CAAC35E45C5A7756899497C7EB6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF57BDDF211A34E94A80599FE51A3B53C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc195d7af81956a908eebb3a4215a1cdfead16771%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 268, - "name": "정가네능이백숙", - "category_id": "고깃집", - "score": 4.2, - "review": "53", - "address": "경기 성남시 분당구 서현로247번길 9", - "operating_hour": "매일 10:00 ~ 21:50", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:50", - "phone_number": 317038071.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD6D0ED7F808046058A97279D62B9B8DD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F06c8bb8338f93b0407107025eac1bc4802779db3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa0519f4d241f8605c1ffbc9d929978db9433da19ae3210bd8df176c68e8bfcc4", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 269, - "name": "돌담촌 서현1호점", - "category_id": "고깃집", - "score": 5.0, - "review": "2", - "address": "경기 성남시 분당구 황새울로351번길 10 여암빌딩 2층", - "operating_hour": "매일 10:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 23:00", - "phone_number": 316975292.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F1369FB4B4FE43E8E30, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F120DCA4B4FE43E7F0E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F121CCF4B4FE43E8601", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 270, - "name": "팔각도 분당서현역점", - "category_id": "고깃집", - "score": 4.0, - "review": "109", - "address": "경기 성남시 분당구 서현로210번길 16", - "operating_hour": "매일 11:30 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 23:00", - "phone_number": 317788786.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4cd9e43fa72ae8e876a3563d82197483cdcf148d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa348ba720145b0c9bfd89d89215dae1b980f12a0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F25b33e381ca5c1c754b1da59899a82b28ac48bfc%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 271, - "name": "화로사랑 분당수내점", - "category_id": "고깃집", - "score": 5.0, - "review": "6", - "address": "경기 성남시 분당구 백현로101번길 17 113,114,115호", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE15B9107F91E40669A63A8BAEC5624E9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff8d9ca974a77438850b066e3aeab41d68e8931b3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MTFfODAg%2FMDAxNzIzMzQ0MDQ3NjU3.T-qp7ICZq1qYWuhgJCZQ6HSOYr2K1PqPK4tq9eWT-D8g.vrKvRhxIDkC_NWwEIp2ryDGOg4qfY99wz0DDyhOzGP8g.JPEG%2FIMG_9619.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 272, - "name": "불고기미식관", - "category_id": "고깃집", - "score": 4.1, - "review": "223", - "address": "경기 성남시 분당구 느티로 27 하나플라자빌딩 2층 209호", - "operating_hour": "매일 11:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:30", - "phone_number": 50713138121.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F80281AE2FBAE4111957AE90C8D0A8779, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F36837C8F6CB64C1492C5C0029A483866, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD64C1299DA894EEFA8E5F18F4DB7DEB3", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 273, - "name": "부추삼겹살", - "category_id": "고깃집", - "score": 4.2, - "review": "201", - "address": "경기 성남시 분당구 서현로 204 엘지에클라트2차 1층 101호", - "operating_hour": "월~금 17:00 ~ 01:30", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 01:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBEE0771F507E4C21A66EA2BFA061A785, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F16D3E783CC914E6991BDA7441EB9D174, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F56254BF89EE14A148BC7A95325D789ED", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 274, - "name": "봉추찜닭 분당서현점", - "category_id": "고깃집", - "score": 3.7, - "review": "21", - "address": "경기 성남시 분당구 분당로53번길 15 산호트윈스 205호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317039381.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F399FC54B76B34D8EA5C00E7BE17E7DC3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4d0e98ba99339981ccf1a44a6f1d0be5452f19f2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4a9fd6cbd1506647cb4e4cbe562b1996a8ff28fa%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 275, - "name": "내가조선의족발이다", - "category_id": "고깃집", - "score": 0.0, - "review": "4", - "address": "경기 성남시 분당구 판교로 436 홍우프라자 1층 2호", - "operating_hour": "월~금 15:30 ~ 23:55", - "expanded_days": "월,화,수,목,금", - "time_range": "15:30 ~ 23:55", - "phone_number": 317097781.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEF1C8B29FF7646A5B0BF30AFC66E47BE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6FA7E17786E7430185FB39B1AEE45279, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5C29DF4EA1074D14BDA2DF025654FFF1", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 276, - "name": "1984냉골집", - "category_id": "고깃집", - "score": 5.0, - "review": "31", - "address": "경기 성남시 분당구 황새울로258번길 10-7 가나프라자 1층 102호", - "operating_hour": "월~토 15:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 01:00", - "phone_number": 317122400.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6627CCCF52C0479E956961F26C398F82, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdcaabdff46b24b91d58c0d589087fe17604ab297%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTJfNDUg%2FMDAxNzE4MTc2MzQ2OTgw.fH3ilyvqwDrIlXqJK1Pc_6ivNnUkBV1b5Wp9NQNmsikg.qRILpxC_tKqkaebLZ24jGfnKYxsGwgOUjJ-wI1tEogkg.JPEG%2F20240608%25EF%25BC%25BF180346.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 277, - "name": "부자갈비경복궁 야탑점", - "category_id": "고깃집", - "score": 3.0, - "review": "4", - "address": "경기 성남시 분당구 양현로 246 1-2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317812023.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F964EEE32A2A64AF08CC4B8F19D4A52B5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F118FF2073A5145528526F9A20FA1315F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDlfMTU4%2FMDAxNzMzNzE2ODU4MzIz.hTbhDM_f10reKAWoWaYUXM4waBFgJCGqpQ0cLwh2d-Qg.kJoT5bWjEaVOQTLaaFxS2WkEVRbNRXyzcWhfTKbyAkMg.JPEG%2F%25EB%25B6%2580%25EC%259E%2590%25EA%25B0%2588%25EB%25B9%2584_(71", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 278, - "name": "황제삼계탕", - "category_id": "고깃집", - "score": 2.9, - "review": "106", - "address": "경기 성남시 수정구 탄천로339번길 8 1층", - "operating_hour": "매일 10:30 ~ 20:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 20:30", - "phone_number": 317235949.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2125974E55A84DB109, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F224A934755A84DE219, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB0812FFAF8CC4D2988195029C73809F2", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 279, - "name": "육회한녀석들 분당직영점", - "category_id": "고깃집", - "score": 4.7, - "review": "20", - "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 2층 202호", - "operating_hour": "매일 16:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:30 ~ 24:00", - "phone_number": 7086910666.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F595657CD10DC42968899202D27012C97, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Feae66bfe0e004cd83267ead35a53b81e824a3600%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F51a189e1fbd88cdc7042908f8f2955bb29935578%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 280, - "name": "엄마네돼지마을", - "category_id": "고깃집", - "score": 4.3, - "review": "12", - "address": "경기 성남시 수정구 설개로2번길 19 1층", - "operating_hour": "월~금 11:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 20:00", - "phone_number": 317238925.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F402A568703884D50B4208171A748FB75, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F518232b8cf84724f58492ee19ee5dd40bda2c146%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2671cf4427fed3f777eefe7f0ea14909e9fb4490%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 281, - "name": "우야지막창 분당서현역점", - "category_id": "고깃집", - "score": 3.2, - "review": "51", - "address": "경기 성남시 분당구 황새울로360번길 26 삼보프라자 303호", - "operating_hour": "월~금 16:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 01:00", - "phone_number": 317054032.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F1826DA608A314AF6982A1A997CCFCA57, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F270CE843A82846D3AD39921B451C7084, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F35EB627C8D1A4046B31AF943B3C45FA9", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 282, - "name": "고공 분당점", - "category_id": "고깃집", - "score": 4.8, - "review": "214", - "address": "경기 성남시 분당구 백현로156번길 16 1층", - "operating_hour": "월~금 16:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 23:00", - "phone_number": 316085050.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F43444405697120f0b858bb1b3ed4271f79e206b3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1d61d14ae65a5cd84de8fa3fe1061854d683a687%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7b28e9e85388624b4330fb29523e975a37eda2fa%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 283, - "name": "족발팩토리", - "category_id": "고깃집", - "score": 4.5, - "review": "1", - "address": "경기 성남시 분당구 황새울로335번길 8", - "operating_hour": "매일 10:00 ~ 01:40", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 01:40", - "phone_number": 317018808.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F11544B75457A4E63A9A87A7AED30833E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F1710C5854A0A4836A5CBCFC19C239D1D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5289C9E32BB9429CA44EDA2C059CE248", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 284, - "name": "서현곱창", - "category_id": "고깃집", - "score": 5.0, - "review": "56", - "address": "경기 성남시 분당구 서현로210번길 2", - "operating_hour": "월~금 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FAA9F465DA38A4C2BB6905BFC1E7F93FF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2991309801e6560cb56fab8136760bfc1df869e3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd52875a92afa7f6981b9c2511b08c64e10f04255%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 285, - "name": "한우사랑 정육식당", - "category_id": "고깃집", - "score": 4.5, - "review": "2", - "address": "경기 성남시 분당구 판교로 437", - "operating_hour": "월,수,목,금,토,일 11:00 ~ 22:00", - "expanded_days": "월,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317079886.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3268ED7C949A4920BC901DB475B9716F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdefbbc76a9d8018b1f2dd018c13bf8670bcc606a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTdfMjg3%2FMDAxNzE4NTk5MDkwNTQ2.AnwcUbldB623LjS-deNkwevuysiDBWNLJQVf-pHmjPwg.E3uBqRP2LBGCp-hgYCjNBlrvnP644DrDAUtsauiexqIg.JPEG%2F1718599086073.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 286, - "name": "곱분이곱창 분당서현점", - "category_id": "고깃집", - "score": 1.0, - "review": "0", - "address": "경기 성남시 분당구 서현로 170 풍림아이원플러스 지하1층 B107호", - "operating_hour": "매일 15:00 ~ 01:50", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 01:50", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8D9917B3CB684BD3B73641692616FE5A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F60ACF244DDDA4582A55E61E31A795A9D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F45FFBCE893E847BE9AA2B40D72967EE6", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 287, - "name": "겨울엔 능계탕", - "category_id": "고깃집", - "score": 5.0, - "review": "5", - "address": "경기 성남시 분당구 정자일로 240 월드프라자 1층 115호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 7086914705.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5b4dbb90a4fa27e3b584412e181528a6f2e9a3af%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1D6BA682A6C3406FBF6F60D6E3A16115, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5b4dbb90a4fa27e3b584412e181528a6f2e9a3af%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 288, - "name": "느티나무집", - "category_id": "고깃집", - "score": 4.0, - "review": "53", - "address": "경기 성남시 분당구 성남대로762번길 16", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 317084346.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5CCE1E0C53BD4BA7BA7F8248484EEADF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F21391a0fb829b439c376b964da56136ae5acc779%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcb31fecdc55d2dcc256c61833574d2584714b2ee%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 289, - "name": "두찜 분당서현점", - "category_id": "고깃집", - "score": 4.5, - "review": "15", - "address": "경기 성남시 분당구 분당로53번길 20 이랜드분당프라자 1층 105호", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 317073336.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FFAC8FE8DC85D414F977DC48E67217743, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F47808EFF6A5D402BB638D78176BC1A56, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7998def1bf676d45457f88479133998617847e60%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 290, - "name": "대세박목살 분당서현점", - "category_id": "고깃집", - "score": 3.9, - "review": "1,365", - "address": "경기 성남시 분당구 서현로 204 엘지에클라트 2차 2층 202호", - "operating_hour": "매일 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 24:00", - "phone_number": 317078779.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE40D80733AF24C3B92BB1DAF4F581A8A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1f12e18d71c9dbec4a93233d389aea2d7a73d697%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F257f06eb1543e5ec5236ab289d8171250d8edb3b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 291, - "name": "화끈곱창", - "category_id": "고깃집", - "score": 4.4, - "review": "21", - "address": "경기 성남시 분당구 서현로210번길 16", - "operating_hour": "월~토 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 24:00", - "phone_number": 316236093.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F569F99689EDA4CC7968D70D86E9E2149, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F85411f523f279cdbf4ee0f44e0d3a8aab4d92123f83c103d6d853c297db34a35, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F07506bf649925bef55260bf7554fe27d9f3bde370d83b0033db26429db9a761e", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 292, - "name": "삼계마을", - "category_id": "고깃집", - "score": 4.3, - "review": "5", - "address": "경기 성남시 분당구 분당로53번길 13", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 317095722.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 293, - "name": "소담누룽지삼계탕", - "category_id": "고깃집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 하오개로 337", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1ed1757991d3eb95ed1866406e8341d313b2ed95%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 294, - "name": "여수아 솥뚜껑삼겹살", - "category_id": "고깃집", - "score": 4.4, - "review": "17", - "address": "경기 성남시 수정구 청계산로4길 17-12 1층", - "operating_hour": "월~토 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 22:00", - "phone_number": 317573668.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F080E116B40774604A5FB823CDE17B235, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F41671757c09d489f3af07d86088c672c7820bc9e5180eac2f1443ad731cf68c2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6adc7b26244bb9f9aad711588bb952150f0d4d83%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 295, - "name": "정통집 서현점", - "category_id": "고깃집", - "score": null, - "review": "102", - "address": "경기 성남시 분당구 황새울로360번길 22 영건프라자 2층 207호", - "operating_hour": "매일 15:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 23:00", - "phone_number": 317083300.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F28C5CE1E07CB4D99822A3CEDCAD3C719, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEyMDFfNTMg%2FMDAxNjY5ODk1OTMyNzA5.efEgEVTn8-XPqWyaZHSkW994-a2j_30FXPN7Z3Y3wsQg.VNz15k1bbxDg9sciTZq9Utalx99d7x-Qo-mqysGelPcg.JPEG.loftyyoon%2FIMG_1125.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MTJfNSAg%2FMDAxNzI2MTM0MTU3ODM2.eY-nVU6y_bDjcoXWqHAHlqOYpXFOsma_4EQjYT10q_wg.adu6TgBCz5DzYCUpt_PEFURwebe0Pz63SWBmso1qLJAg.JPEG%2F20240911_183643.jpg%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 296, - "name": "육회한시간", - "category_id": "고깃집", - "score": 4.6, - "review": "258", - "address": "경기 성남시 분당구 서현로 204", - "operating_hour": "월~목 17:00 ~ 01:00", - "expanded_days": "월,화,수,목", - "time_range": "17:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F63D1FC1717AC46DC8D01B48AEF24FDDB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fab82f72b1b4008cb6c2aa9b812198185b24a755821edbaf8dadd00372197dfab, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd412b3360c5587e7cac26d36a133cb677f18af87a052cf899c05adc338b178d0", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 297, - "name": "명륜진사갈비 성남야탑점", - "category_id": "고깃집", - "score": 2.9, - "review": "49", - "address": "경기 성남시 분당구 판교로 497", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317079298.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F864835BCA28B46CA995D5FD2F967785F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1801f4ccab1f204027d36e0231625107e7c7f7ce%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F346591235b13f7ad6f88c965a51901af285cc454%3Foriginal", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 298, - "name": "명가보쌈", - "category_id": "고깃집", - "score": 3.0, - "review": "46", - "address": "경기 성남시 분당구 서현로 184 LG에클라트 2층 206호", - "operating_hour": "매일 10:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:30", - "phone_number": 317085955.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 299, - "name": "석이네", - "category_id": "고깃집", - "score": 4.0, - "review": "5", - "address": "경기 성남시 분당구 판교대장로8길 10 클라우드베이6 1층 101,102,103호", - "operating_hour": "월,수,목,금,토,일 15:00 ~ 22:00", - "expanded_days": "월,수,목,금,토,일", - "time_range": "15:00 ~ 22:00", - "phone_number": 3180397892.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 300, - "name": "소우", - "category_id": "고깃집", - "score": 3.8, - "review": "55", - "address": "경기 성남시 분당구 황새울로 315 대현빌딩 2층 202호", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 317014734.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 301, - "name": "화로구이정", - "category_id": "고깃집", - "score": null, - "review": "42", - "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 1층 113호", - "operating_hour": "월~토 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:00", - "phone_number": 317113773.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1250733143, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F35E566F5AFB64905A0925FB1A08883CE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC680C31DCF03497EAC758C41354D3AE9", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 302, - "name": "한우마을장다리식당 정자점", - "category_id": "고깃집", - "score": 4.6, - "review": "7", - "address": "경기 성남시 분당구 내정로119번길 20 1층", - "operating_hour": "화~일 12:00 ~ 22:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "12:00 ~ 22:00", - "phone_number": 317191815.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F79FF8820672F4E4AA6334D0D9D2849B4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F138e970e242c3defda4c75acdacb3924900b3414%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5349ee0940574e0cac3a81d94f264262c9b9ddab%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 303, - "name": "한강장작구이", - "category_id": "고깃집", - "score": 4.0, - "review": "95", - "address": "경기 성남시 분당구 이매로 82-1", - "operating_hour": "월~금 11:30 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 23:00", - "phone_number": 317786068.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F600D5E4C1994485D9DB4BEC329BAC294, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F37D63425D2254DE5BEDAD8964E41B30A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F90530C9773C24F4EBEDCE21D6A0F4D90", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 304, - "name": "육값어치", - "category_id": "고깃집", - "score": 3.7, - "review": "1,545", - "address": "경기 성남시 분당구 황새울로360번길 26", - "operating_hour": "매일 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": 317038942.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFD35440E163946CBB9D53F998A75B6A2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F747e620f655548062b362d065da1176d415a0add%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F62aa5121c2665770b9aeb7725ff93dea832c28be%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 305, - "name": "백향목", - "category_id": "고깃집", - "score": 4.6, - "review": "8", - "address": "경기 성남시 분당구 정자일로198번길 15 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317860077.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 306, - "name": "환이네갈비살 서현점", - "category_id": "고깃집", - "score": 2.8, - "review": "47", - "address": "경기 성남시 분당구 서현로210번길 16 2층 202호", - "operating_hour": "매일 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 24:00", - "phone_number": 317074133.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6AF6E7E1A47749AA88910C637B2C762E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAxMTVfMTAw%2FMDAxNjczNzcwNTM0NTkx.LzD_3GRJnaTg7ryxYnMlr3VGPvOyYkoJrPEtojN3bOIg.5ExVDAXbLie74qS8XHqZDwCaG5Lej7L8LRHz_iechFog.JPEG.hsyzizi%2FSE-14842100-e4ed-4ab7-ab81-284b1d60a99f.jpg%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAxMTVfNTEg%2FMDAxNjczNzcwNTMxNjg0.KGys_QrcXzQAJq7_Ru_SGCXlZsZTkkoTh_bElMLCh7Eg.SfG852oTXNnm_icQJ7Gm10KFyRFS-Yos2tlWZ0dYZjkg.JPEG.hsyzizi%2FSE-B7CEFB0F-F684-4DF7-9DB4-4C3F0344C3AE.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 307, - "name": "식껍 대장점", - "category_id": "고깃집", - "score": 4.5, - "review": "8", - "address": "경기 성남시 분당구 판교대장로8길 15 1층", - "operating_hour": "화~일 16:00 ~ 22:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "16:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDE1360054BEB4199ABF5814245D31B3B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fffeb30343c2aa70228335f0fb036d9d7705cad76%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F62a7e1ccc03b7b34f6d780566f1e496aa9af6d95%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 308, - "name": "248도깨비", - "category_id": "고깃집", - "score": 2.7, - "review": "23", - "address": "경기 성남시 분당구 황새울로360번길 12 대명프라자 2층 202~203,205호", - "operating_hour": "매일 15:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 02:00", - "phone_number": 317040045.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F10CCF9D58827442A8E052BC5B5E3B428, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEwMzFfMyAg%2FMDAxNjY3MTk0OTIwMDg3.D2kHsTHTZBEDXD-OQloeiXksjzEgwPz_9o8R-AZ4ss4g.Yygs1PXXb_sVdWZzc92Nj344BCsK0DG59cwIBd1fGUIg.JPEG.cnpskin1%2FKakaoTalk_20221031_114620207_02.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FwH7yP%2FbtrHtgnI63x%2Fz2zDlvpRnFGMqelzy1fTQk%2Fimg.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 309, - "name": "유담", - "category_id": "고깃집", - "score": 4.6, - "review": "180", - "address": "경기 성남시 분당구 내정로119번길 6 1층", - "operating_hour": "화~일 11:30 ~ 22:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317179777.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6DED2AB17E5D4AC4A1388EB44A9C698D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMDFfMjgz%2FMDAxNzA2NzYzNzg4NzIx.5PsEPcClVA3uPXBqP88F26-aymb341zGeeMBe_SazGMg.rIkg2JaxglglH2rfBvt7hLJ4gUxEKNjv4fBClOCGRWAg.JPEG.uclayt%2F20231005%25EF%25BC%25BF174714.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMDFfMjI2%2FMDAxNzA2NzYzNzg4MzU5.9HsFlDz5v3V1JC8cnFfoLkjbkdp2s15hwq2gmWascFog.ICfE4CAsStB96YH7v_2Od-xNQJW5FArAiXmbXGsGPCgg.JPEG.uclayt%2F20231005%25EF%25BC%25BF174718.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 310, - "name": "대왕가든 2호점", - "category_id": "고깃집", - "score": 3.4, - "review": "19", - "address": "경기 성남시 수정구 여수대로 98 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317529292.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff8aad6cfad956126a23eb42cfd62a61491f97a16%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMDFfMjY2%2FMDAxNzI3NzgyMzczOTA3.HVFMh-9H6MdbFj9TPjAEOF7Iemfe7ukZDgCI3yTZZgYg.YcR-WeOuPJslgu3GuXMz5LHVv2ED85Uq1yKlhJFcC1Qg.JPEG%2FIMG_3228.JPG%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMDFfMTEg%2FMDAxNzI3NzgyMzcwMzcx.-QBljEzVoViU798ZN5HO20a325YkKXJdg4iStSYR_nog.qxyXulLXeTKmJhluoo3pEPZwnMVwMaARHqiu18jBtJ8g.JPEG%2FIMG_3223.JPG%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 311, - "name": "한마음정육식당 서현점", - "category_id": "고깃집", - "score": 4.5, - "review": "96", - "address": "경기 성남시 분당구 황새울로360번길 26 2층", - "operating_hour": "매일 11:30 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 23:30", - "phone_number": 317019243.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF8D020DF950C42E488F98C128C514D33, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb192de8c7ab571bef5bd2d320957aeb4d964ad29%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcc346c81526b2ada70afb6b06745105da4dc23de%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 312, - "name": "미담", - "category_id": "고깃집", - "score": 3.8, - "review": "1,338", - "address": "경기 성남시 분당구 성남대로331번길 9-13 1층", - "operating_hour": "월~금 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 22:00", - "phone_number": 317110774.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FABFE3F1745194A16B7323AF0AF1E94D0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3c358220e57cdb6dc10cf8ab16f51e39846df195%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6f9c13d4185b46ab3ec3852ea8bc3af124a509ac%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 313, - "name": "솔밭삼겹살해장국", - "category_id": "고깃집", - "score": 3.7, - "review": "140", - "address": "경기 성남시 분당구 성남대로331번길 11-15", - "operating_hour": "매일 00:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "00:00 ~ 24:00", - "phone_number": 317112638.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb6a6ce82200294b145efa41d34853887ae2b7cb3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa8253694f9df40e8df2b1fbe07d8a35697571262%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5849701503599c1b0be043e8c97dcfd39982218a%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 314, - "name": "자연갈비 분당수내점", - "category_id": "고깃집", - "score": 4.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로258번길 42 해암빌딩 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317179898.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 315, - "name": "직화에빠지다 분당1호점", - "category_id": "고깃집", - "score": 5.0, - "review": "2", - "address": "경기 성남시 분당구 양현로 126 미림프라자 1층 109호", - "operating_hour": "월,수,목,금 16:00 ~ 01:00", - "expanded_days": "월,수,목,금", - "time_range": "16:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9F9BE8E210814F0288D7DE876109CFB0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4480046B0B294A03813474EEC1D9CDC0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2CDA0D71106A417FBE4232EE96CFB8BD", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 316, - "name": "수내닭꼬치", - "category_id": "고깃집", - "score": 3.4, - "review": "0", - "address": "경기 성남시 분당구 중앙공원로39번길 49", - "operating_hour": "매일 12:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 01:00", - "phone_number": 7046524048.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA9805E8275714D708382DA02B3F5C167, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MDlfOTYg%2FMDAxNzE1MjIxNjU0ODg0.ZkyRXpITxuOZ3FHYX7YX2RqgNyWXkcEXRU0U2l3Rr48g.dU5NN6QSyI2qYjGd2Zl2v_rsu4jK083kbT66QM2zO24g.JPEG%2FIMG_4434.JPG%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAzMTNfODAg%2FMDAxNzEwMzIxODMwNDE5.veEezrZpYa0SM_zo51riJupgBRSnOjTzoAIao3U0-fYg.lbZT4yEn4MK6A-l9-dIlMB79ypacd8LLhn6hU7vqtWsg.JPEG%2FSE-17f2eade-1556-4a85-b245-2a59e23f91b1.jpg%3Ftype%3Dw773", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 317, - "name": "따띠삼겹 분당휴맥스점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로 216 휴맥스빌리지 지하1층 B101호 9호", - "operating_hour": "월~금 10:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE26F708F2AA640CB816B4B868BFD1A94, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7342E5735BDF4534A74AF55E10481719, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD57636ED5AD349659F065EAFC46C7C9E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 318, - "name": "옛골명가", - "category_id": "고깃집", - "score": 3.3, - "review": "48", - "address": "경기 성남시 수정구 달래내로 349 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317577038.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F214E2E5057E1D65818, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F270A414757E1D65825, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAzMjdfMjI5%2FMDAxNjc5OTE3OTQ5MDgz.huIhQ_MfQnndL8GqDW9_uaonsVCEC1mcd3nAVYR1GGAg.HOjIj0ia4DR0g3GVk981QHQrMeH5EVDgebXAQju7LL0g.JPEG.nara_yeeun%2FSE-d5fcec08-66f0-4cde-8cdf-e6e63776c93a.jpg%3Ftype%3Dw773", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 319, - "name": "경아식당 서현점", - "category_id": "고깃집", - "score": 2.4, - "review": "310", - "address": "경기 성남시 분당구 서현로210번길 2 1층 104호", - "operating_hour": "매일 11:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3B0642D7D4A046149F4D54D13E9E79F2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F15478f62537e07101d87e2804502a287871c59ca%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMTVfMjcg%2FMDAxNzA1Mjk4NzM1NDI5.haMhlxFSYNAmiPAk2fgeNQye38SNAFET4d9GjEHwCFQg.fet4tqLx9BbJfrPdd6WTJhndmIyx0Y6VHpiXKEna6oQg.JPEG.thdalrud0726%2F20240115-14.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 320, - "name": "도적", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 2층", - "operating_hour": "매일 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9D68A7D824A54D4F9236D48367DB8BA8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F0AA7BA9E8AEB4AE1AF2CB2F1EC557AC8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2BB3B933A5AA4F48A8588664B5D0C2DC", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 321, - "name": "육첩반상 롯데백화점분당점", - "category_id": "고깃집", - "score": 3.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로200번길 45 지하 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317382005.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe2a055f7a9e48aeca3ad9417f8e55ceaa7a6a8e2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F094bc186c80a820b668f51693a74a8ca302ad6b7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe2a055f7a9e48aeca3ad9417f8e55ceaa7a6a8e2%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 322, - "name": "도담뚝배기", - "category_id": "고깃집", - "score": 3.3, - "review": "5", - "address": "경기 성남시 분당구 하오개로351번길 8-7", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317018332.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBE5D0FEABF424478BD39C6D7AB48FDE2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa6967f46c260aaf7477af8074935e8b039e37385%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqt6CXLsaE_WJ9qzCNI6kArqiX1DKNkSk_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 323, - "name": "행자골왕돌판삼겹살구이", - "category_id": "고깃집", - "score": 3.9, - "review": "11", - "address": "경기 성남시 분당구 성남대로772번길 5 1층", - "operating_hour": "월~토 11:10 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:10 ~ 22:00", - "phone_number": 317095566.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB56B908B1E4C430CB1C6CE8A2807CF0F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F797ac72c03db0ee24629172f238fb0935c2031ff%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F79db8f6ddc5d206308275b01758378bfe2096b82%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 324, - "name": "양가네명품갈비찜 분당점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서현로 170 풍림아이원플러스 지하1층 B107-1호", - "operating_hour": "월,화,수,목,토,일 09:00 ~ 01:00", - "expanded_days": "월,화,수,목,토,일", - "time_range": "09:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F960B9A8D6F5A4BAE95E09A9DEFEAA89D, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F419C1323F942456C9158980664B9D8F9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6D5835F3D3BD45AD84150EBB03DA8510", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 325, - "name": "와규하우스", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 백현로101번길 12", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF117836D7824469FA7A13C931545DB44, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F741f0f4d163d8d0f4a94fe78c57aff9c75da8025%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0dca758ba96e6759c50a08ee570eeb40e6cbf06d4d9b2f8acbf1c02b081c5897", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 326, - "name": "쫄면주는삼겹본능 이매점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 성남대로779번길 48", - "operating_hour": "월~토 10:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:30 ~ 21:30", - "phone_number": 50437711918.0, - "image_urls": "이미지 정보 없음", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 327, - "name": "돈블랑 수내점", - "category_id": "고깃집", - "score": 4.0, - "review": "0", - "address": "경기 성남시 분당구 백현로101번길 21 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317157877.0, - "image_urls": "이미지 정보 없음", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 328, - "name": "행복한찜닭 분당수내점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로 216 지하1층 B101호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F871A27D887CE44CDA493248F42C53F41, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8A9AE38F64DC4823A9C5055E9A41AFF3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA17797425EC5472B8176B25EAD304395", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 329, - "name": "여장군 이매점", - "category_id": "고깃집", - "score": 4.0, - "review": "24", - "address": "경기 성남시 분당구 성남대로762번길 7 1층", - "operating_hour": "월~금 16:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 22:00", - "phone_number": 317029250.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F018CC53D0F1C4A81A0AD6A3232870E75, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F200569446d6d1afe8ad219cd398a3d5a35791698%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa01b21eb4367d669cae8c4ca5a7dbbd745709726%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 330, - "name": "정자동갈비살집", - "category_id": "고깃집", - "score": 4.2, - "review": "17", - "address": "경기 성남시 분당구 정자일로 197 1층 105-3호", - "operating_hour": "월~토 17:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F049D84D9E23C4745BDAE558C87966BF1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fced976f1d2d3a4a40eb52b966519a856d53ad1d5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdb0543f777c9386ad6af7c82e739d88e22a75bd7%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 331, - "name": "이가네양갈비 서현점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로335번길 10 멜로즈프라자 1층 101호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 332, - "name": "돈마니마니홍보관 수내본점", - "category_id": "고깃집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 수내로46번길 20", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 333, - "name": "김청자매운갈비찜 분당본점", - "category_id": "고깃집", - "score": 0.0, - "review": "50", - "address": "경기 성남시 분당구 황새울로330번길 16 2층", - "operating_hour": "월~토 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC73F1B4DFF1C44CAA0E0F01C1EABB5B7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjdfMjIy%2FMDAxNzMyNjkxNjA0Njc2.KwHNekacNZUodtsS0adrqLyZsioWieNFKLKxF8MmVfAg.6O0GBzvudRwllpF1mf8h_A40_ICzuyylh_PUjO5gH7Ug.JPEG%2F650%25EF%25BC%25BF20241127%25EF%25BC%25BF134242.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMTNfMzcg%2FMDAxNzI4Nzk4MTQ2MzU5.F037kRo2K3cOWDhFOyLUlP2wTxQGJ3OjxabCQ0Sd_Kgg.FrCuzS-0jHbtkbAsVwlpZWyIw8rewzkQoGzsst7kRnMg.JPEG%2FIMG_5440.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 334, - "name": "제주돔베옥", - "category_id": "고깃집", - "score": 0.0, - "review": "1", - "address": "경기 성남시 분당구 판교대장로7길 16", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317115256.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 335, - "name": "제주명가", - "category_id": "고깃집", - "score": 1.0, - "review": "0", - "address": "경기 성남시 분당구 백현로101번길 20", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317184335.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 336, - "name": "육회왕자&연어공주 분당서현점", - "category_id": "고깃집", - "score": 2.8, - "review": "2", - "address": "경기 성남시 분당구 황새울로360번길 26 삼보프라자 지하1층 B05,B06호", - "operating_hour": "월,수,목,금,토,일 17:00 ~ 02:00", - "expanded_days": "월,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": 7046474242.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA9127382F3CE4187962F16F81E0B0A5E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F86c1a23981e4c42e538c181c9d0f230031ed0361%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F53865aa079d5c371667cdb34ad238fb70e283447%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 337, - "name": "불꽃돼지 서현직영점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로 315", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7081935079.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 338, - "name": "남문보쌈", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 수내로 42", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 339, - "name": "정빙고", - "category_id": "고깃집", - "score": 2.5, - "review": "33", - "address": "경기 성남시 분당구 정자일로198번길 22", - "operating_hour": "월~토 16:50 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:50 ~ 23:00", - "phone_number": 317182018.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F07FAB439C37B4B4D8C9E86722E7501B8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjNfNjkg%2FMDAxNzMyMzM3MDg3ODg3.8EjkA_a-j4ThGX2mst7VvlYHHchBfsIlFKgRPySZXfMg.Q3kV-_mz8nz4n51odBzFhtdV08fystTJL5HMTngCM6Yg.JPEG%2FIMG_1674.jpeg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMTlfMTAx%2FMDAxNzMxOTc2Mjc0MjQy.Gkos_AlsXQs3d9QrvddNZ8HAqiaRytkk24THe5HJN4wg.yzDc2QyghPArd3YokeNYKZ0xZw0gwD4AGWKOEshZ_m4g.JPEG%2FIMG_9459.jpg%3Ftype%3Dw966", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 340, - "name": "금호돼지", - "category_id": "고깃집", - "score": 5.0, - "review": "21", - "address": "경기 성남시 분당구 내정로165번길 38 금호행복시장 2층", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC512B441A1CB4E60B8CA6DD06FC90166, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD7B23F70AFF24FB5B55C9EEFE254DD44, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FE40EB93B94964F25A24185E270CFA01A", - "convenience": "편의시설 정보 없음", - "caution": "포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 341, - "name": "냉철한삼겹 대장동점", - "category_id": "고깃집", - "score": 0.0, - "review": "26", - "address": "경기 성남시 분당구 판교대장로8길 22", - "operating_hour": "매일 11:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:30", - "phone_number": 3180239392.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F152958E1483F4B2AB1FA17A3CC2582CE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDJfMjI1%2FMDAxNzI1Mjg4ODQ1NzM2.cdSIIPOIYsG1RXVgfoDnpekK-jlu2fIVF_jNOIQ5EqUg.ZATk47qh9G28emp4IjUKfhQeu6LNmtpnbB4EECfeNpog.JPEG%2FSE-B0F6CD76-546F-4641-B1E7-7BA9443242A0.jpg%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MjZfMjY3%2FMDAxNzI0NjUwNTc1MTQ1.JJMfa4Qaj3dcmfpGWQIAIe9ZphpUnBql1rc031fZFsIg.Aizs8sakODiMyDdhpWIfQIDzrY5J3tt8E5WBQCOlIGcg.JPEG%2FKakaoTalk_20240825_232824279_07.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 342, - "name": "옥돌명가", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로 325", - "operating_hour": "매일 10:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F170AC34B4F55558F29, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2005D14B4F5556142C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F1149924D4F55564139", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 343, - "name": "지랄닭발 분당점", - "category_id": "고깃집", - "score": 0.0, - "review": "7", - "address": "경기 성남시 분당구 내정로165번길 38", - "operating_hour": "매일 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 01:00", - "phone_number": 317144647.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0C8E80BB1B5845E59104F211D254DDDE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1F2B1FC00BA242A9A5B6C10F06CB0C5B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F62F30C39CAFE43C68795D74B874570AB", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 344, - "name": "옥수동돼치집 돼지와김치의완벽한비율을찾다 야탑판교점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 성남대로779번길 52", - "operating_hour": "화~수 10:50 ~ 22:30", - "expanded_days": "화,수", - "time_range": "10:50 ~ 22:30", - "phone_number": 50720905521.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAB23F9F489DB44AF88484F4B1A469657, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4F6D22C5F809407BAC597E21513F295A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F552DA15375A84D06AB26F07785B9A790", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 345, - "name": "곱창과막창사이 분당서현역점", - "category_id": "고깃집", - "score": 5.0, - "review": "4", - "address": "경기 성남시 분당구 황새울로360번길 26", - "operating_hour": "월~목 16:00 ~ 24:00", - "expanded_days": "월,화,수,목", - "time_range": "16:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F019997D42AC743CB898A66352B80BD8D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4D64D4397AEA49DEA8141FC28ADB3BD9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMjlfNzMg%2FMDAxNzMwMTk5OTMxNTIy.pFjG9sejrQNMFvIIaIuoARpQYInkhmpQNmUUdI3L0fMg.pIz2nkGBt_uZVP-_q5yynJFIGk_MtK1mnpM-4jWeVW8g.JPEG%2FSE-cb91ac03-406b-47e7-887e-b06f6b5a49d5.jpg%3Ftype%3Dw466", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 346, - "name": "오뚜기식당 정자직영점", - "category_id": "고깃집", - "score": 4.0, - "review": "24", - "address": "경기 성남시 분당구 백현로150번길 5-1 1층", - "operating_hour": "매일 10:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 24:00", - "phone_number": 317177617.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA79D3B1DAC104E278D044B135A28B0FC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAzMTVfMTY4%2FMDAxNzEwNDg1NjcxNzgy.sBfwTk1QhyN3wZVI0cwFuiUw3WtpM0yFqENIqQx9E8kg.jaJ0NoQ8Q8Kl5-TSBx_fYR7hh3UgAEOUFd01zwYiUcYg.JPEG%2FIMG_4960.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAzMzFfODcg%2FMDAxNzExODgxNTQyNjk4.u09SgyBWcxMv8wY6DPn-7duBAWlFNYituLYPYjdcE7Qg.GDkzry99MUXRDHhV5JbqiaEQpzhcDv_77JNLH0BGWbUg.JPEG%2FIMG_1924.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 347, - "name": "대장닭발&닭도리탕 본점", - "category_id": "고깃집", - "score": 5.0, - "review": "14", - "address": "경기 성남시 분당구 판교대장로7길 6-35 1층 1호", - "operating_hour": "월~토 16:30 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:30 ~ 23:00", - "phone_number": 317122911.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCDC10C5C2E754222976EF89FA5213AD9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7C51C1C9F6D742BD9F56AF9ECC3418A4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F1043B84089854D699A428EC05402B37E", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 348, - "name": "고기극찬 분당점", - "category_id": "고깃집", - "score": 0.0, - "review": "5", - "address": "경기 성남시 분당구 백현로101번길 16 대덕프라자 지하 1층 B102호", - "operating_hour": "수,토,일 11:00 ~ 22:00", - "expanded_days": "수,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7C962FA84A424BF789987F6D66150796, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F82EA62FEFE8B4506889752E2E53D4D7D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F773BC7F9D50749E0B17621ABDBCB7C36", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 349, - "name": "귀한족발 정자역점", - "category_id": "고깃집", - "score": null, - "review": "2", - "address": "경기 성남시 분당구 느티로 16 젤존타워 1차 2층 201호", - "operating_hour": "매일 11:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:30", - "phone_number": 317161036.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F23FBB1D6C8D04398BC5AF0128BD78655, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFB48A700D369468B97884408B5DCCF9C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F76B42808CB264FC2AAE90266463CE62D", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 350, - "name": "배밭갈비 분당점", - "category_id": "고깃집", - "score": 4.3, - "review": "320", - "address": "경기 성남시 분당구 판교로 501 2층", - "operating_hour": "월,수,목,금,토,일 11:30 ~ 22:00", - "expanded_days": "월,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317093359.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F318026B3936744DEBDA62C82A08E9E21, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F022ea78dc62e44f9379c88ad483cbd5ce9a69926%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1fe319ee8726eeb98e6728e6d71144ed0f02e8ec%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 351, - "name": "왕십리닭곰탕", - "category_id": "고깃집", - "score": 3.2, - "review": "41", - "address": "경기 성남시 분당구 성남대로 345 1층", - "operating_hour": "월~토 00:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "00:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F194A83344F5EF9FE14, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F864c38734d0577c6691feca68adbc369dce3613e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F47953d34ce393e8eccdf031bd6ebc332e01fbac7%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 352, - "name": "동작그만 본점", - "category_id": "고깃집", - "score": 4.4, - "review": "18", - "address": "경기 성남시 분당구 내정로107번길 15 1층", - "operating_hour": "매일 12:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 24:00", - "phone_number": 317151134.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F8F352CD8563440C4BC5C466ED3DE06FB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB998B45631EB4C9CBE9BC9799C73AE60, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F52053440eb6fbfcced6ee2a0eb70ada60f9c35a9%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 353, - "name": "곱분이곱창 분당서현점", - "category_id": "고깃집", - "score": 4.4, - "review": "56", - "address": "경기 성남시 분당구 서현로210번길 14", - "operating_hour": "매일 15:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 02:00", - "phone_number": 317061242.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8D9917B3CB684BD3B73641692616FE5A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F60ACF244DDDA4582A55E61E31A795A9D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F45FFBCE893E847BE9AA2B40D72967EE6", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 354, - "name": "진대감 분당점", - "category_id": "고깃집", - "score": null, - "review": "594", - "address": "경기 성남시 분당구 성남대로331번길 3-10 1층", - "operating_hour": "월~금 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 22:00", - "phone_number": 317170111.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F627C1D3383FD4454AF103476CAF891EF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_196016908, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F605E1D93113B450381F035B06C356675", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 355, - "name": "돈멜 서현점", - "category_id": "고깃집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로360번길 21 1층", - "operating_hour": "월~금 16:30 ~ 23:30", - "expanded_days": "월,화,수,목,금", - "time_range": "16:30 ~ 23:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6E48886776884D0599D0422571CA7D61, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F02089B11E00045A3B0E53F22ECD87B45, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3668DFCC4234448EAA47F7981026744B", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 356, - "name": "마포화곱창 서현역점", - "category_id": "고깃집", - "score": 4.0, - "review": "5", - "address": "경기 성남시 분당구 서현로210번길 14 유성트윈프라자2차 2층 204호", - "operating_hour": "매일 15:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 01:00", - "phone_number": 3176048377.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9932F678EC3641D6B82E4208F2A061F4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbmqlSe%2FbtrB45LRkw8%2FYr1QmFIgVzb7EN4xKGGmXk%2Fimg.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA4MjVfMTk5%2FMDAxNjYxMzkzODAyODQ3.fGto8Te-oxKiabl210Arog-ZjB-WTVRQbFhx2E0GJtkg.n2gOZN5ijnUn3qqaA6Sc8q9jAvVih3XN7oUvma7o2OUg.JPEG.k_saeon%2FIMG_1757.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 357, - "name": "알맹이 분당점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로258번길 10-7 가나프라자빌딩 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 358, - "name": "신국민닭발 정자직영점", - "category_id": "고깃집", - "score": 3.8, - "review": "11", - "address": "경기 성남시 분당구 느티로69번길 6-5 1층", - "operating_hour": "매일 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 01:00", - "phone_number": 317192119.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8429C4F8FE9F447DAC9B72CB89C66B6A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F698EE7667DE247D3AE97017227B7C474, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3CBD51086D6740459426329B1CC3F7B4", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 359, - "name": "죽집 엄선 분당점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 백현로101번길 16", - "operating_hour": "매일 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA6F1BCF19C734B3BB50A6EDC60885C1B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F37C1E34FDE9041C8927F55254BD068CC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA2FFC993B98643C596219EB8DC36A230", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 360, - "name": "천족 수내역점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로258번길 32 코리아나 빌딩 1층 111호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F230DB94E52D35E8F2C, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2620D94A52D35E8F2E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2730D94A52D35E8F27", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 361, - "name": "상상오리 정자점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 내정로129번길 32", - "operating_hour": "수~금 15:00 ~ 03:00", - "expanded_days": "수,목,금", - "time_range": "15:00 ~ 03:00", - "phone_number": 317199252.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDB07D869A85D4C82A9AE4ABB488A18E3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE128B7F8820D4816A1F7B48EEAC3EBBD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3C41649B758C42EFAF05D766F58AE06B", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 362, - "name": "한우명가 정육식당", - "category_id": "고깃집", - "score": 1.9, - "review": "18", - "address": "경기 성남시 분당구 야탑로69번길 18", - "operating_hour": "매일 00:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "00:00 ~ 24:00", - "phone_number": 317036921.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9D6075F0E43740CEA92F7DAA8055E391, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4062d90ed6c520f4914a29fe39eaf102e8f817ed%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTBfMTE3%2FMDAxNzMzODMwMDc0Mjky.KmyMX2Ub2i2PDpEJbhWGqu8Nb4QJ0BCj1Fc6PUTw1kgg.pjnTPgjfaxTM7KPSdaJgbP8nkI_Von8f5lrb3iqMnxcg.JPEG%2F900%25EF%25BC%25BF20241210%25EF%25BC%25BF194007.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 363, - "name": "토성오리삼겹", - "category_id": "고깃집", - "score": 5.0, - "review": "1", - "address": "경기 성남시 분당구 내정로119번길 8", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317165359.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 364, - "name": "강돈", - "category_id": "고깃집", - "score": 4.7, - "review": "16", - "address": "경기 성남시 수정구 청계산로2길 31 1층", - "operating_hour": "월~토 16:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 22:00", - "phone_number": 317599233.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_284075086, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1028687038, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1438954063", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 365, - "name": "토미스육회", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로258번길 43", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317168331.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 366, - "name": "탄로", - "category_id": "고깃집", - "score": 4.5, - "review": "155", - "address": "경기 성남시 분당구 느티로63번길 5 1층", - "operating_hour": "월~금 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 23:00", - "phone_number": 317149290.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff5bf74b4e10132f44e07e3bb6e4d789c1d3f8472%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 367, - "name": "서현마루", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로 315 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7081933392.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 368, - "name": "미가숯불구이", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 분당로53번길 19", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 369, - "name": "명가비빔국수 보쌈", - "category_id": "고깃집", - "score": 4.0, - "review": "0", - "address": "경기 성남시 분당구 서현로 184", - "operating_hour": "매일 09:15 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:15 ~ 21:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCAE2D2861FDB48DF9D4E6E757B36C19F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5EAC70746489471CA1DA17502C964C99, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCE09CDC8BA3E428EA3820ABE7C80FFC4", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 370, - "name": "99육회본가 분당서현역", - "category_id": "고깃집", - "score": 0.0, - "review": "2", - "address": "경기 성남시 분당구 서현로 184", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317058847.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F54420D3D159A4BA5BB9282C5227E1D00, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MDFfMTI0%2FMDAxNzE5Nzg4NjY4NjU3.xEyJLJ5Tdq_IbhSVCUIRYieQcQtk-FS54dwL0pPii8gg.4yJvLkXIORoMJtVRw1Dw3AR_t7mAnSgiS-PupIKu6sYg.JPEG%2F6b062fdc-0c2a-4bf8-a953-318a60757811.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MDFfMjgg%2FMDAxNzE5Nzg4NjY0MjE2.VM53q8LYtd0JgMnpdTvBQWnG6j_IZuYDOB0sEne9LBsg.wigxFEEK1zNxtGkKGhnzYGHZVDkUgv4-RB2Vu7QIm_og.JPEG%2F8149822d-00ef-4805-8d33-f94bba8302f6.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 371, - "name": "참우본가", - "category_id": "고깃집", - "score": 2.0, - "review": "0", - "address": "경기 성남시 분당구 분당로53번길 9 에이원프라자 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 327063366.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 372, - "name": "맛찬들왕소금구이 분당정자점", - "category_id": "고깃집", - "score": 4.5, - "review": "207", - "address": "경기 성남시 분당구 성남대로331번길 3-6 1,2층", - "operating_hour": "월~금 16:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 22:00", - "phone_number": 317133392.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F6BD8B9E13D8D446594B6099B1A6E92B1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F722E7A3FA322472E957628C0A5B501FF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F7BE614E4E75C463D8FC0CD4D9A07FD6A", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 373, - "name": "미담휴", - "category_id": "고깃집", - "score": 3.0, - "review": "1,060", - "address": "경기 성남시 분당구 성남대로331번길 9-12 우경빌딩 2층", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD00181ED29BB44A8993BEBC58E9E5EBC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F705700C2A2D146FD896BBD8413417792, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF6DB02A0E9F04ED292A738B6CED54FCD", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 374, - "name": "육시리 야탑점", - "category_id": "고깃집", - "score": 4.5, - "review": "183", - "address": "경기 성남시 분당구 장미로48번길 14 엔즈빌오피스텔 121, 122호", - "operating_hour": "월~토 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:00", - "phone_number": 317056671.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD5542E1FEA6E4321A44CF929656DBEA0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F53498EA4D5DC487294CBD54560234591, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCFC29B330CFC4B0F905D69F8B8A18304", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 375, - "name": "야끼니쿠PM6", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 분당로53번길 21 산호프라자 2층 203호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317079533.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 376, - "name": "딸바보곱창", - "category_id": "고깃집", - "score": 3.0, - "review": "3", - "address": "경기 성남시 분당구 백현로150번길 17-4 1층 101호", - "operating_hour": "화~토 17:30 ~ 01:00", - "expanded_days": "화,수,목,금,토", - "time_range": "17:30 ~ 01:00", - "phone_number": 317197797.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FAE8D514B5562454984E681897C833DF9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDBB5DDAD28C54D58864FDB908A5351E8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7CDB40CB448545F8AE313CD96980E43C", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 377, - "name": "도축장집아들들", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 분당로53번길 15 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 378, - "name": "육회달인", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 수내로46번길 11", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFA0109854EF04444B85D90FF5F99C703, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMDlfMTI2%2FMDAxNzA0Nzg4NzY5NzA2.6hft5-r3Sk2ALELwUSbixjbnHG6j66DCh4NM7ZheSOkg.XTICBmtFSsO9bcd2QLcNx0fNNAY-gfY3jCFJ4cfqogUg.JPEG.1226tnwls%2FIMG_7632.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMDlfMjE4%2FMDAxNzA0Nzg4NzcwNDI1._wpT_yIwbdkc70pt62oK8-91kvcDqzsYukGV92aFN2Qg.WkwGcxxiBfH1L2329r01XoWmHNblegax9ruewgjZt8kg.JPEG.1226tnwls%2FIMG_7630.jpg%3Ftype%3Dw773", - "convenience": "동물출입\n주차\n놀이방\n흡연실", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 379, - "name": "육회연가", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 분당로53번길 19", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 380, - "name": "온돌집 서현점", - "category_id": "고깃집", - "score": 2.5, - "review": "0", - "address": "경기 성남시 분당구 서현로210번길 2 성지하이츠텔 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317022420.0, - "image_urls": "이미지 정보 없음", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 381, - "name": "깨닭", - "category_id": "고깃집", - "score": 2.8, - "review": "28", - "address": "경기 성남시 분당구 서현로 204 엘지에클라트2 1층 102호", - "operating_hour": "매일 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 24:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 382, - "name": "화화돼지왕갈비 야탑", - "category_id": "고깃집", - "score": 4.2, - "review": "195", - "address": "경기 성남시 분당구 장미로48번길 14 엔즈빌오피스텔 2층 204,205호", - "operating_hour": "월~금 16:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 22:00", - "phone_number": 317074545.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD63AC4B83EFE4877817E9AA41587FF2F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F0CB79FC83A4A4AA6AC94D2B239785B82, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA3A3CA8EDB7342F09C48B6893C841609", - "convenience": "WIFI\n주차\n흡연실", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 383, - "name": "효원식당 분당정자점", - "category_id": "고깃집", - "score": 4.4, - "review": "1,980", - "address": "경기 성남시 분당구 느티로69번길 6-3 (정자동 66-11) 1층, 효원식당 분당정자점", - "operating_hour": "매일 11:00 ~ 21:40", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:40", - "phone_number": 317154943.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB5260610BAE046EDA55893265B1EC88F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F263A5EC6BED34521A3DC0BCB63740B80, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F05DCA4BD0324495A9125672798C61B96", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 384, - "name": "앤마켓불고기박스", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 정자일로213번길 18 성원상떼뷰 201동 1층 107,108호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317140377.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 385, - "name": "정이네서서갈비", - "category_id": "고깃집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 275", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 386, - "name": "박대리고기세상", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로335번길 10", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317058235.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 387, - "name": "윤스테이크 본점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서현로 170", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 388, - "name": "별을품은곱창", - "category_id": "고깃집", - "score": 5.0, - "review": "2", - "address": "경기 성남시 수정구 청계산로 752", - "operating_hour": "매일 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCBA15AF33DC0407DA164523CB2B8B36A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcd684720cfae165765dd2854d37a52456e248d75%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcc4a4b9cc7e0a10111f43fd70d8f083a01a2cd47%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 389, - "name": "겨울엔계삼탕", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 정자일로 240 월드프라자 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 390, - "name": "금호생고기", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 내정로165번길 38 양지마을 602동 2층 201호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 391, - "name": "논현삼계탕 분당점", - "category_id": "고깃집", - "score": 4.5, - "review": "9", - "address": "경기 성남시 분당구 내정로113번길 4 1층", - "operating_hour": "화~토 11:00 ~ 21:30", - "expanded_days": "화,수,목,금,토", - "time_range": "11:00 ~ 21:30", - "phone_number": 317133240.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7B45376759894D6BB4F80EC12D39266B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3a82d4c36fb3a9c635375f7fd451f878e95a691f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa765a8e10be6e6e0f07d55c45b85bb42da62eda7%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 392, - "name": "히바치", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로258번길 28 한도회관 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 393, - "name": "홍닭백닭", - "category_id": "고깃집", - "score": 0.0, - "review": "14", - "address": "경기 성남시 분당구 판교대장로8길 10 클라우드베이6 1층 106,107호", - "operating_hour": "매일 12:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 24:00", - "phone_number": 316983350.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7D97748AE7764D74BDCF555DF985E621, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBDB972DA4E9E4C97826A242A4E51CE03, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD60C7EA6CBE6482593920500CFA8FC7F", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 394, - "name": "동경 롯데분당지점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로200번길 45 롯데백화점분당점 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 318786400.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 395, - "name": "해남오징어갈비", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로258번길 28", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 396, - "name": "알렉시스플래닛", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 성남대로 393 두산위브파빌리온 B동 1912호", - "operating_hour": "매일 00:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "00:00 ~ 24:00", - "phone_number": 50701770946.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 397, - "name": "엘에이갈비찜&냉면", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로132번길 28 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 398, - "name": "248연탄집", - "category_id": "고깃집", - "score": 1.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로360번길 26 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317040045.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 399, - "name": "달족&보쌈 분당본점", - "category_id": "고깃집", - "score": 3.9, - "review": "1", - "address": "경기 성남시 분당구 내정로129번길 5 1층", - "operating_hour": "매일 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 24:00", - "phone_number": 317017008.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBB07ED522C724C1486C488D315DDBB0C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBB24284F194A4D82B9A0A43F8C142022, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7522C345DE2D4343A3C46776344C091E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 400, - "name": "유니춘천닭갈비", - "category_id": "고깃집", - "score": 4.4, - "review": "49", - "address": "경기 성남시 분당구 성남대로925번길 11 1층", - "operating_hour": "월,수,목,금,토,일 11:30 ~ 23:30", - "expanded_days": "월,수,목,금,토,일", - "time_range": "11:30 ~ 23:30", - "phone_number": 317074758.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F61D3A24163A348E089C7723410793127, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F42844da21d4c71e684b3c2a1da1b66a8cd8c7894%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fab46d71993306bf21831fe5af55be1b26b6e6a15%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 401, - "name": "퐁립 분당서현점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로 326 2층 204호", - "operating_hour": "월~금 12:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "12:00 ~ 24:00", - "phone_number": 317091533.0, - "image_urls": "이미지 정보 없음", - "convenience": "주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 402, - "name": "돌판365", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서현로180번길 13", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317051821.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 403, - "name": "늘푸른목장 분당점", - "category_id": "고깃집", - "score": 4.0, - "review": "74", - "address": "경기 성남시 분당구 성남대로331번길 13 1층 119, 120호", - "operating_hour": "월~금 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 23:00", - "phone_number": 317151312.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA37BA6DB921E4A6EA478471030566F9E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd2783776f549e747aec43acc4e5c3d00c1a03e1e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2b05737036e3e6aceb93fe29a0c56284bd25998b%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 404, - "name": "큰양푼집 서현점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서현로180번길 13", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 405, - "name": "더맛있는족발보쌈 야탑점", - "category_id": "고깃집", - "score": 4.6, - "review": "69", - "address": "경기 성남시 분당구 야탑로105번길 12-1 1층", - "operating_hour": "매일 14:30 ~ 01:50", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 01:50", - "phone_number": 317094999.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2A00CD3256E04EC5802CB7D14F4AE086, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F43863602F34845B0BC55AA58054343A6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB434A62657C74F23AB6F57B9DA285A10", - "convenience": "주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 406, - "name": "가장맛있는족발 느티마을점", - "category_id": "고깃집", - "score": 4.7, - "review": "5", - "address": "경기 성남시 분당구 느티로77번길 8 1층", - "operating_hour": "매일 15:30 ~ 01:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:30 ~ 01:30", - "phone_number": 317119882.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1072226792, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1380411167, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1750428435", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 407, - "name": "마왕족발 정자본점", - "category_id": "고깃집", - "score": 3.0, - "review": "40", - "address": "경기 성남시 분당구 내정로 111 금성플라자 1층", - "operating_hour": "월~금 14:10 ~ 23:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:10 ~ 23:30", - "phone_number": 317185892.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F227BDD9D45D64E0B89B0BAD5F8E47387, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1723e5936fec7387c5de2cf398addaa5667d0dc2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7fe17e551d5fcc8645717973381927acae4ef8e0%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 408, - "name": "청춘연가 서현역점", - "category_id": "고깃집", - "score": 0.0, - "review": "10", - "address": "경기 성남시 분당구 서현로210번길 16 3층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317093903.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F59FDCD55A53B4DE9A7A36363CB6BDFE6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjExMzBfMjc5%2FMDAxNjY5NzkwOTk2NzYx.NJfmxOMImtMsRdInuyPO3aKZmtstZ94kFTbntbYJcmAg.n1Gu68M4YJvhiDxnJKhSyGhSOJSjEjHlQ1sfX4hoYrMg.JPEG.ilkon_kim%2FIMG_9068.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEyMDZfNzYg%2FMDAxNjcwMzM4MDU4MzA1.tHn030n8KDMKqNgpcOtMhN3l2C8iSbTvNVhirLCAXLUg.6KZ3VbFemgduKJR1KYJxrXYN66m-xPh8qVaOPi7OEuog.JPEG.amurojiha%2F20221206%25EF%25BC%25BF202543.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 409, - "name": "곱창에빠지다", - "category_id": "고깃집", - "score": 4.0, - "review": "1", - "address": "경기 성남시 분당구 서현로210번길 14 유성트윈프라자2차 204호", - "operating_hour": "매일 15:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 24:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 410, - "name": "김삿갓 고깃집", - "category_id": "고깃집", - "score": 3.8, - "review": "15", - "address": "경기 성남시 분당구 성남대로331번길 9-15", - "operating_hour": "월~토 11:30 ~ 22:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:30", - "phone_number": 317168592.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F50754cea207b8f2bd3db2a527fc56681becb8c7e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F041122503f42016929a0f9fea36e9c9689260f0a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F706c9e69ef747a9ceeb64cc1ccecc9240a2aecec%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 411, - "name": "온육집 숯불갈비 정자점", - "category_id": "고깃집", - "score": 0.0, - "review": "1", - "address": "경기 성남시 분당구 느티로69번길 18-1", - "operating_hour": "월,수,목,금,토,일 11:00 ~ 21:30", - "expanded_days": "월,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 50720790546.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8C65D405532B4EC3A16082C88B5C2D5C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF910212A3E704CC088F4777F20F41E61, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7E2EC85AAD1946E1B2C9DD3C81C7E6E6", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 412, - "name": "닥엔돈스 분당서현점", - "category_id": "고깃집", - "score": 5.0, - "review": "3", - "address": "경기 성남시 분당구 황새울로360번길 28 은성프라자 지하1층 B07~B09호", - "operating_hour": "매일 16:00 ~ 01:50", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 01:50", - "phone_number": 317028673.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE979126CDCB74258854E6346E79F8678, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDA87219EA1D04CEABFFE9B4793394079, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9795190B292B457EAB8DF5DC3CEFE433", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 413, - "name": "소곱창신화 본점", - "category_id": "고깃집", - "score": 3.9, - "review": "4", - "address": "경기 성남시 분당구 야탑로69번길 18 동아프라자 105호", - "operating_hour": "월~토 16:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 23:00", - "phone_number": 317068892.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F58C0453611BF4300B6477CC20AF1CB6E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F061E0C3B41EE4408A15431081A7E6A9D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3E0CADD65AAC46C1A4488443E89402A9", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 414, - "name": "돝통집", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서현로 204 엘지에클라트2 1층 102호", - "operating_hour": "매일 16:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 01:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 415, - "name": "마포갈비", - "category_id": "고깃집", - "score": 3.2, - "review": "370", - "address": "경기 성남시 분당구 서현로257번길 14 1,2층", - "operating_hour": "월,수,목,금,토,일 11:00 ~ 22:00", - "expanded_days": "월,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317019292.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F164A95904CDB4605982129A4992EBB4E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MjZfNDAg%2FMDAxNjkzMDM4NjYyMTEz.JedrnKgsH_62vAbh12O-M0589NIqIBneTZWLqQ4URSog.rYjC2jkjsPWDJlD2_lvBpnvlDAvD724qmBLaP8dAoo4g.JPEG.izzyoh%2FIMG_9842.JPG%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MDlfMTQx%2FMDAxNjkxNTc3OTIxMTAx.w4nwN8zpFjz0e0TAk65knSnkd-H1BdBt1Oq5U5Aux2sg.zMJFxoFXYaBdfI9VNWkSeJzFerLMVbLoozlhj21Q7T0g.JPEG.road-friend%2F20230809%25EF%25BC%25BF131830.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 416, - "name": "강호식당 정자본점", - "category_id": "고깃집", - "score": 4.6, - "review": "39", - "address": "경기 성남시 분당구 정자일로156번길 11 1층", - "operating_hour": "월~토 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 23:00", - "phone_number": 317113692.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F524E25ED6B6A4ED3B43C0FB6AE0C4E9D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F5BC1D17CD1CD4EBBB00F8DB301FB9C34, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FCFFE050942964DF1A80514A1480B0763", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 417, - "name": "만족오향족발 정자점", - "category_id": "고깃집", - "score": 4.0, - "review": "22", - "address": "경기 성남시 분당구 성남대로343번길 12-6 1층", - "operating_hour": "매일 11:30 ~ 22:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:30", - "phone_number": 317059244.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB7330C7070C74266B9BBA4A8B6F51742, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F1748187864F24AB484AC9A988D198D1B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5C0BE7F1605740998FCE40AA7214F5CA", - "convenience": "WIFI\n동물출입\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 418, - "name": "교대이층집 야탑점", - "category_id": "고깃집", - "score": 3.7, - "review": "234", - "address": "경기 성남시 분당구 야탑로105번길 15 1층", - "operating_hour": "매일 11:30 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 23:00", - "phone_number": 317077177.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBF7EAA6B4AE8490BBF10EEBF00CF4B79, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb3f86cb389ccc38ef338cc8cacf2da03acd5b4cd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa2aef4b7278e1374bdf225eb2bbe4dcefe4e7dae%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 419, - "name": "삼육가 야탑점", - "category_id": "고깃집", - "score": 3.3, - "review": "138", - "address": "경기 성남시 분당구 성남대로926번길 20", - "operating_hour": "매일 11:00 ~ 21:50", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:50", - "phone_number": 317063637.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA136556D7BAD47CB9889A5EBD0EC6026, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7314dce5ce30ed4e99569bea175713e044125a74%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff758cf0a8d2fffff3cb862c8c6ec0459e0a9103d%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 420, - "name": "레트로냉삼집", - "category_id": "고깃집", - "score": 4.0, - "review": "2", - "address": "경기 성남시 분당구 황새울로360번길 12 2층", - "operating_hour": "매일 15:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F85328034F6244EC7AFC1CAF718168FCD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0db45b48fc7b13463153b09312106b3a1f760e7d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb2244664dec8ecb1954475ac2d37a07f3a61fba9%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 421, - "name": "숙성돼지 분당본점", - "category_id": "고깃집", - "score": 4.1, - "review": "590", - "address": "경기 성남시 분당구 성남대로331번길 9-9 1층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317148892.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F83468B810D7E4FADAD9D78D53908C3CF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F737F6733EB3647EA98FC8F8E31608984, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FAF38965EF0DC4EE0AEB74EBCD99045EC", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 422, - "name": "청계냇가집", - "category_id": "고깃집", - "score": 3.9, - "review": "59", - "address": "경기 성남시 수정구 옛골로 58 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317238994.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA6232F3BDFB34A44B6069120A48C18CC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0D0ED2D91C904E289C6E49C53559B0D9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4342fd105dde813eda41e5b182ff594dd19fa0d2%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 423, - "name": "우리식당, 삼겹, 곱창", - "category_id": "고깃집", - "score": 4.0, - "review": "0", - "address": "경기 성남시 분당구 양현로94번길 21", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 424, - "name": "야왕곱창", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 백현로 152", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 425, - "name": "우돈정자생막창 정자1호점", - "category_id": "고깃집", - "score": 5.0, - "review": "59", - "address": "경기 성남시 분당구 백현로156번길 17-8 1층", - "operating_hour": "월~토 16:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 23:30", - "phone_number": 317146692.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1257C17251524A948FB8AD1E9FBD36E8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0b09e450ef89fe9037c26ecad9d4d623989740c3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F14c1dcae1fd24ad6ad399cb71b23c8fca882e5a3%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 426, - "name": "논골집", - "category_id": "고깃집", - "score": 3.7, - "review": "11", - "address": "경기 성남시 수정구 청계산로 686 1층 131~132호", - "operating_hour": "월~토 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 22:00", - "phone_number": 317588892.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBCF395A4D08F4A43B491940BD707B16F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffe54b5a8c609f8335f7d3a6b57c855c7a2b2eb3f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4756a06dbad1b9c605b51cc0e7bc5fd0bc74dfd4%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 427, - "name": "고기원칙 성남고등점", - "category_id": "고깃집", - "score": 3.6, - "review": "63", - "address": "경기 성남시 수정구 청계산로2길 21 1층", - "operating_hour": "매일 12:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 22:00", - "phone_number": 7078072631.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F56C6736682CD41E6B4460FB82628690A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe7e66d6b8c5d6a338042bef146c23437890d1cd3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdb2f5ebc1428ed7f484bd641f542932bd1d75a3d%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 428, - "name": "순우리한우", - "category_id": "고깃집", - "score": 3.5, - "review": "1", - "address": "경기 성남시 분당구 쇳골로17번길 3 A동 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317167896.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0699dbbdedf6d3ce5afbb440c64d3e6600c08538%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fbac573acd4787d6284e8513b33fc9ea731fae7d9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe5aceabc038964c5ead66dfbb7f173e42bc38a54%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 429, - "name": "일미리금계찜닭 정자점", - "category_id": "고깃집", - "score": 1.0, - "review": "1", - "address": "경기 성남시 분당구 내정로113번길 20-6 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317148806.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0E1D1A970F104474B5DC0D1524CA4623, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMjNfMjI3%2FMDAxNjk4MDM3ODczMTI3.KZP8l16SiQ6PWfObK0k_dxSgjVYqnX3OqwbBVpQuYUEg.6yZ8TH6sCxudQ4DQLaJuNYKCExT_YG0WGxXIsMJsgPsg.JPEG.kimsahy2013%2F20231019%25EF%25BC%25BF195707.jpg%3Ftype%3Dw386, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMjNfNDIg%2FMDAxNjk4MDM3ODcyNzk5.vauMK7gNHdDy1F9yUU8Fv6EEuf8l0A-D8BGRd_y1_7Ig.mILDtWShhoG8-iDYm6xwiyVd1lyrmbtLkpPa_drUuqYg.JPEG.kimsahy2013%2F20231019%25EF%25BC%25BF194639.jpg%3Ftype%3Dw386", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 430, - "name": "훈이네", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 분당로53번길 21", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317013340.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFDEFCC329B7A43E09AD3FBD9B9A2E5E3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF91D28B37968474D83B5D55516EEC877, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F394575aa47431b0558ef45900e2c95538b9f59c6%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 431, - "name": "한양족발", - "category_id": "고깃집", - "score": 5.0, - "review": "2", - "address": "경기 성남시 분당구 백현로144번길 7-3", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317148888.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 432, - "name": "휘나리", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 내정로165번길 38 602동 지하1층 43-1호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 433, - "name": "족발사랑", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서현로210번길 10 다두프라자 106호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 434, - "name": "마장돈백갈비 정자역점", - "category_id": "고깃집", - "score": null, - "review": "292", - "address": "경기 성남시 분당구 성남대로331번길 3-8 1,2층", - "operating_hour": "매일 12:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 22:00", - "phone_number": 317143381.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F53122121F7694D76BDD0D2E69612FD54, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7E5DAC36934340709A207CCBD7442716, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F55DE6FC23EDA4C7F90C1522185C59684", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 435, - "name": "모토이시 정자", - "category_id": "고깃집", - "score": 5.0, - "review": "37", - "address": "경기 성남시 분당구 성남대로331번길 13 백궁프라자1 111호", - "operating_hour": "매일 16:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 01:00", - "phone_number": 317115554.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFBBAE68384E746EEB8C553309F5AE8DA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F28f1e149000c72375081434d2ac004176815758b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe74ed4549ac2107a68becfdb1d175cc11930b44d%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 436, - "name": "깜보 분당정자점", - "category_id": "고깃집", - "score": 4.7, - "review": "458", - "address": "경기 성남시 분당구 느티로63번길 8 1층 102호", - "operating_hour": "매일 16:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:30 ~ 24:00", - "phone_number": 50713937545.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F348796079F0041E0BA5DC0D8B556C797, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9D281F6C5C00499A8D8E8FEB8D04FEE7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FECA637A83701474A8A0257E39C5852A1", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 437, - "name": "우리맛고기", - "category_id": "고깃집", - "score": 5.0, - "review": "14", - "address": "경기 성남시 수정구 청계산로2길 13 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317582846.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDNfMjk5%2FMDAxNzMzMjEwNjg0MjAw.jCUOqeoooJzEZ9E3PebAVEi9phrrmj0V9UJSs48Sgz4g.RCUnlxeAQQcyXvLmpIfeF3YJPb-1nXRtCo9sjce4vmkg.JPEG%2F900%25EF%25BC%25BF20241030%25EF%25BC%25BF195345.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDNfMjkx%2FMDAxNzMzMjEwNjg1MTI2.CrAqNpmGFfsWVxStdNwIwfqQ7ZwfCA3t-yCW8keidmIg.DEHPmPs_mwPXFqqKZXgTdjDf6KdQfrLGJthKb0kOhjog.JPEG%2F900%25EF%25BC%25BF20241030%25EF%25BC%25BF191015.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjJfMjM4%2FMDAxNzMyMjQyMjAyMDI1.IyDJYabpAitYxmq-dDT6-k_cHkLPZs7Cd7zZniIRGTUg.cs7XAJtN64rg8SKGinKf2tvxfqcmkso2HADmtEDBSigg.JPEG%2FSE-CF056EF4-3602-4A6B-94CD-4074E97FAB43.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 438, - "name": "숙성돼지3", - "category_id": "고깃집", - "score": 4.0, - "review": "315", - "address": "경기 성남시 분당구 느티로87번길 10", - "operating_hour": "월~금 17:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 22:00", - "phone_number": 317177597.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB73187825A5C4B0FA37CB4E571BB6C16, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzExMDdfMTE3%2FMDAxNjk5MzI5OTg0MTgw.RcEqCdffrceviQDkGq5o8gWLwXoX0Kw_xQ-ciGduABUg.eJvYTlOEAQNON7n9e5dyOZkcivq4szKXjuWLpYODVs4g.JPEG.fitdiet%2FKakaoTalk_20230920_135035523_03.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMDdfMjM4%2FMDAxNjk2NjQ1ODg2NTU3.EB0YyMn82M9fVb4VJc0MtC1Z2oLrqMl6unEUzK7Wc-Qg.7GZj8uV5D0hPAuAkgBq7sMmUNJ3FtJ6ZT5cWPr2E1Ywg.JPEG.bibi02486%2FSE-ccb37317-31d2-43e5-96ea-3d0ba7f47d57.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 439, - "name": "양우정 정자본점", - "category_id": "고깃집", - "score": 3.5, - "review": "17", - "address": "경기 성남시 분당구 정자일로156번길 6 뉴본타워 1층 104~107호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317139252.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F8C5E9C94060043E09C3DE8E292F43CF3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7DE149EB82BF4699A8629C08386E51F4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqhP8IHoS2_RxehctVVyfskqlrueYVlU1_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 440, - "name": "일미리 금계찜닭", - "category_id": "고깃집", - "score": 3.5, - "review": "195", - "address": "경기 성남시 분당구 야탑로69번길 8", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 316036366.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5DE78B56FF024BF0986C5D0ACEF22444, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F550e3d317752c73fd973a9731f937a52ecc50520%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F39931da1297650bef220be952288d4233f5e05fa%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 441, - "name": "김가네육곳간", - "category_id": "고깃집", - "score": 2.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로360번길 22 3층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 442, - "name": "화포식당 야탑점", - "category_id": "고깃집", - "score": 4.3, - "review": "59", - "address": "경기 성남시 분당구 야탑로111번길 14 1층", - "operating_hour": "월~금 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 23:00", - "phone_number": 317010201.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD6AB68BD42B241E6BCAB5EBA1963E0C8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb6f1dfa4437cdab9c26f9288c3836ea576b2a2bf%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0381ad785054faf4cce01fe8ce508ab60b05fb21%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 443, - "name": "화우가", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 성남대로 389 폴라리스2차2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBA2BCB7093B941F2940130A5BF67593F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F10f47020efd97844cf729f57762d1305f0ebd0e3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe9504612f09018c0345af6e928fc20334a8e4cd9%3Foriginal", - "convenience": "WIFI\n주차\n휠체어사용", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 444, - "name": "제육의계절 분당직영점", - "category_id": "고깃집", - "score": 0.0, - "review": "2", - "address": "경기 성남시 분당구 백현로 152 1층 107호", - "operating_hour": "매일 09:00 ~ 03:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 03:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF8B979BEFCB5402DBE091CAFDC988BB7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA333FE013B794E2583C619ABA81F2131, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1A30965892A4495781FF547D1E3F003C", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 445, - "name": "키로족발 분당수내점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 내정로173번길 11", - "operating_hour": "월~토 16:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 22:00", - "phone_number": 50720861212.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1243B8ACFC5448C2B56177F29030B645, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA24F68CE51AE4491A01720EBEDA481C5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FED4949C413C54978A32CD96336DCF421", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 446, - "name": "우마블", - "category_id": "고깃집", - "score": 3.8, - "review": "679", - "address": "경기 성남시 분당구 정자일로 135 푸르지오3차 D동 101호", - "operating_hour": "매일 11:30 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 02:00", - "phone_number": 317264020.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6C21F08C138141D5987C3642EA1D87C0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4A2261CDBFAD4F82A5843211DCFFF163, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEAEBF9485D0141E09BC22C3503B82BBF", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 447, - "name": "깜보 야탑", - "category_id": "고깃집", - "score": 4.9, - "review": "252", - "address": "경기 성남시 분당구 야탑로111번길 17 1층", - "operating_hour": "월~토 16:30 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:30 ~ 23:00", - "phone_number": 50713817977.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F914A0E27FAF54E449C6385AF21F4B8B8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F48EE0347FA0648A5A48F6656AF32366D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F064EF23CF4204525AC37700E488A778B", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 448, - "name": "미녀와족발 정자점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 느티로 16 젤존타워1 106호", - "operating_hour": "월~토 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F166213384F4C202939, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F191751384F4C202903, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F18146C3A4F4C22B134", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 449, - "name": "불꽃 불맛돼지갈비찜", - "category_id": "고깃집", - "score": 5.0, - "review": "1", - "address": "경기 성남시 분당구 내정로173번길 11 양지마을한양아파트 603동 지하1층 B03-14호", - "operating_hour": "매일 18:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "18:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F33d7ab1518778245fe1e832ffdbf9c56cb48bbd9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F39CB72D1D57C46B3AE7F808D38517DBC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F691E2B6394AE48EE90DD03894AAE3881", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 450, - "name": "세광양대창 정자점", - "category_id": "고깃집", - "score": 4.0, - "review": "62", - "address": "경기 성남시 분당구 정자일로 162 젤존타워2 2층 203~204호", - "operating_hour": "매일 14:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 24:00", - "phone_number": 317182007.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2AE6AEE11C3A4C0E95657B1C678CB81A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6C02A75802CA47418957F54C2DD4FD67, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1FCB2C8667F148F491C3E9CA8324B7CF", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 451, - "name": "돼소 서현점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 중앙공원로39번길 49", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317055676.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 452, - "name": "곱창앤야끼", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 탄천로 215", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5D8EFE7DC2CF4F16AE37FEF54F0B7068, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F132BE4B6EFEA4595B3681EDB7A7E4F42, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MDRfMTcy%2FMDAxNzEyMTY0MDU4MTUy.7gEwHYzT_W3ntpb4a0OyFYihr7hOhy4Jy182wIxaJscg.4IiaDu3KjuHlGwmRCT3r2PAhgytQIlMfqFc1Qjucgvgg.JPEG%2FIMG_7945.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 453, - "name": "바른삼계탕닭한마리", - "category_id": "고깃집", - "score": 0.0, - "review": "68", - "address": "경기 성남시 분당구 야탑로75번길 9 금호프라자 2층 204호", - "operating_hour": "월~토 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFD5612265231427D81133D53BF88847E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MTBfNDgg%2FMDAxNzIwNjExMjA4MDMx.pKicxSIcQnAXd0qMS45nbB42a8UXV8hdusNBIsPz5d0g.ov0Tcs872FDk8VPpRhuIDg2E71g4-IQigY0ycLTw1Kcg.JPEG%2FSE-f411821b-1af0-461d-a8d5-1da9eb78f9f7.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MTBfMjQ1%2FMDAxNzIwNjEwNTk3NjM5.vAWThxUAdCVjQ3ttWSeWlivDTn6tal9BKGl__3KQQ1kg.b4Gk5N7pKggr6cPUOc7JJkXjIhGBmm7bQsPS_So3hDwg.JPEG%2FIMG_0322_2.jpg%3Ftype%3Dw466", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 454, - "name": "248도깨비 별관", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로360번길 12 2층 217~220호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 455, - "name": "청계산토종닭집", - "category_id": "고깃집", - "score": 3.0, - "review": "1", - "address": "경기 성남시 분당구 하오개로 263", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317090121.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD0EA891A8E0E4F72965CBA6A5ACEA3CA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F68e21fa2823a54c7db4e131aaab56396fb0316b7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEwMDFfNzcg%2FMDAxNjY0NjI1MDczOTg1.A_5yz1tLrdm0tRXhbuKNXD9hiVxqSS_QiwAipfOAvVog.hN75KzfJmthq-rg804eVsgHsU8a1fh9Vd51gY3mlWJUg.JPEG.apple3kim%2F1664625014117.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 456, - "name": "종로계림닭도리탕원조 야탑점", - "category_id": "고깃집", - "score": 3.8, - "review": "73", - "address": "경기 성남시 분당구 장미로48번길 10 1층", - "operating_hour": "월,화,수,목,금,일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317023082.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6AC17AA598A342CA84D7CE4B708A74F2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff9f8face5e07df8aff7c1b93e083a71491e041a3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8c960a57ebff3ab7e5c2c27fd0fea2694102f3fb%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 457, - "name": "돈방석", - "category_id": "고깃집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 방아로 20", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317029980.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 458, - "name": "고기하나 고등점", - "category_id": "고깃집", - "score": 4.7, - "review": "24", - "address": "경기 성남시 수정구 청계산로1길 23 1층", - "operating_hour": "매일 16:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 22:00", - "phone_number": 317562414.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F000252670BC74F21A29599952CEDA749, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMTNfMTI5%2FMDAxNzMxNDU5MDM0MzUx.8U-HVxHV6xlx6amRhim-fIk3rA4u7tJxtR0ygjU0FYEg.4CZOVtVbstwEZNEOuyMUq2hFJkSntqFlsiFQSx8O8yUg.JPEG%2F20241111%25EF%25BC%25BF184545.jpg%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MTRfMTA4%2FMDAxNzIzNjAyNTQwMjA1.pBdimkIaYqcqOtBKPHM1utex_Nz5OG1xPz8cwv7dLvYg.3euAshR6-WELjyTZCZ5JI17lk_pkhVrVVIVWtAwdOTAg.JPEG%2FSE-a0469a24-a1f6-434e-ac36-19fbabd9c0e6.jpg%3Ftype%3Dw966", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 459, - "name": "독보적", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 내정로165번길 35", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7081930521.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FFE7BAEBE191840699F88BB10C4C02469", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 460, - "name": "동방양고기", - "category_id": "고깃집", - "score": 4.0, - "review": "95", - "address": "경기 성남시 분당구 야탑로 103 노블리치 오피스텔 204~205호", - "operating_hour": "월~토 11:30 ~ 23:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 23:30", - "phone_number": 317211315.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6AFDB756D91C49DC87D4E0E39827EA62, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0072bd7ae8c27203928aeae87eb0abfac42baffd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F363486027058dd0a1fa205e22780baeac562a125%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 461, - "name": "무한정생고기", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로360번길 26", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317019242.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 462, - "name": "오뚜기 식당 서현점", - "category_id": "고깃집", - "score": 2.6, - "review": "40", - "address": "경기 성남시 분당구 서현로257번길 5 1층", - "operating_hour": "매일 15:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 23:00", - "phone_number": 317030703.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F03A6D28E1F6F423DACA0E66F9623E5AE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8D0C2D4A2ED14090A04C1DBF8FA73A6C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F58D3B3B8DF064BECA99B9154B612E0A7", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 463, - "name": "지촌", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 내정로165번길 38 2층 229호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 464, - "name": "두찜 분당야탑점", - "category_id": "고깃집", - "score": 4.1, - "review": "30", - "address": "경기 성남시 분당구 야탑로69번길 18 동아프라자 2층 204호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317075131.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD128910B1BD1497E8015B80B97322316, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDCB41C99736F4D6DAE44F965D93CAF29, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb086d627ad3109ed189b90e5223e5f483cbc8e76%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 465, - "name": "스모크가든", - "category_id": "고깃집", - "score": 4.3, - "review": "0", - "address": "경기 성남시 수정구 달래내로377번길 31", - "operating_hour": "매일 09:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F516f32d071764e5801e1301c69f44a67219212f3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F482df11d0a6ffacb248918af456af334192db907%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8cf0705a87605b4814e8248efdffa2fa9021e4aa%3Foriginal", - "convenience": "주차", - "caution": "배달가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 466, - "name": "인생신닭발", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 내정로165번길 35", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317134234.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 467, - "name": "춘천진미닭갈비", - "category_id": "고깃집", - "score": 4.3, - "review": "39", - "address": "경기 성남시 분당구 성남대로331번길 13 2층", - "operating_hour": "월~금 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6D93AA4BC6164D25ACAB1611B0614809, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD6A7E980B3944ADAB36D73FA74D89E42, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMTNfMjMy%2FMDAxNzMxNDYxNDEyNDU3.UHk3Zz9pMb37UUpNQHLfQUVBtY5nR-SVN4EqTAAiKZYg.yeNTwG-SfmTewE7q1-vxzbX5TBUcJRxuL2LkYQ85TWYg.JPEG%2F20230626_142023_HDR.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 468, - "name": "탐라국생고기", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 수정구 청계산로4길 59", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 469, - "name": "임옥자곱창볶음 분당점", - "category_id": "고깃집", - "score": 1.0, - "review": "0", - "address": "경기 성남시 분당구 백현로144번길 7-3", - "operating_hour": "매일 09:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 23:00", - "phone_number": 50720845461.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFEC3E9762E5D4EF4AF73CB4DAF84CC27, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA5EA6F7C153946C5895C5989ABA391BC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6B93CF7CBA984483B83FDC7818A69288", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 470, - "name": "양마담방촌양고기 분당직영점", - "category_id": "고깃집", - "score": 4.3, - "review": "38", - "address": "경기 성남시 분당구 정자일로 162 1층 105호", - "operating_hour": "월~금 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC1AC1A9F88AA4F499BBEAEF78CF14E93, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd9f3f1150a646692523375bf43e35f24881e13c2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6a29f4e0344a38e8e8c3f72fd30dfc523fe73be0%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 471, - "name": "라무진 분당정자점", - "category_id": "고깃집", - "score": 4.3, - "review": "39", - "address": "경기 성남시 분당구 정자로 13 월드비터 1층 113호", - "operating_hour": "월~금 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 23:00", - "phone_number": 317155709.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2153D536584F53D921, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F22600534584F53DA24, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6474cf256fdf200ccff4e3e2bc9ce092deb72e5c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 472, - "name": "서현실비 정자직영점", - "category_id": "고깃집", - "score": 3.1, - "review": "54", - "address": "경기 성남시 분당구 성남대로331번길 3-3 젤존타워3 1층 101~104호", - "operating_hour": "매일 11:30 ~ 05:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 05:00", - "phone_number": 3180396969.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB42FEBE92A0B451E90D1E8D1701641D4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1AEA76BF2BFC4B1CA720052369E8AEA3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Facb20a90bd89ab14ae09d89256a807b9df760d89%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 473, - "name": "우레", - "category_id": "고깃집", - "score": 4.8, - "review": "1,394", - "address": "경기 성남시 분당구 정자일로 158 백궁프라자2 1층 105,106호", - "operating_hour": "매일 16:30 ~ 00:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:30 ~ 00:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5BBD71F1479A46F088A9B3BC194DE103, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9f8fb48cb6685f8ab976e1b910b6772b5b47fcd9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff55f115e8b47ce3d354428c3fae7f7430797220c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 474, - "name": "돈블랑 분당서현점", - "category_id": "고깃집", - "score": 3.9, - "review": "67", - "address": "경기 성남시 분당구 새마을로 8 1층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317078100.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F263E929497074C9FA3EED1C42BD395EA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FCB3F8EB119FE44AE86B65BB66EFBB3BA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FAF07122989A4481E9B878A0E8C117143", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 475, - "name": "황소고집", - "category_id": "고깃집", - "score": 2.0, - "review": "0", - "address": "경기 성남시 분당구 성남대로331번길 13 백궁프라자1 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317148288.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F50AF910834574603A1D477D6D7A07000, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F75888484f0792df96d9f5a9a0b537f8d4e066c9e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F96de84cb4b537ccf0df1e76bc4d0b7d0e8584f18%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 476, - "name": "춘천황가닭갈비", - "category_id": "고깃집", - "score": 4.2, - "review": "57", - "address": "경기 성남시 분당구 야탑로111번길 11", - "operating_hour": "월,화,수,목,금,일 11:30 ~ 22:30", - "expanded_days": "월,화,수,목,금,일", - "time_range": "11:30 ~ 22:30", - "phone_number": 317016009.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F12294B3E4F4B1E9331, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F1942583E4F4B1E9404, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F113DEE3E4F4B1E930E", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 477, - "name": "남영불갈비", - "category_id": "고깃집", - "score": 4.0, - "review": "13", - "address": "경기 성남시 분당구 야탑로105번길 6 1층", - "operating_hour": "매일 14:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:00 ~ 24:00", - "phone_number": 317038892.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F194FE14B501B5F4032, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F4001E0007A5A4FB5A34CBE8156D85EC7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FFA0F4E47A4164BE8836158DA33378EF3", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 478, - "name": "김사부의곱창명가 분당점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로116번길 20 1층", - "operating_hour": "월~토 15:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4CDB9406B9DD41F093FB0D752F2CD04C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4CC4E21C1DEC455C89D09CB45E887668, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB8C94DC28E17478C9287120AA51DC745", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 479, - "name": "황소곱창", - "category_id": "고깃집", - "score": 2.4, - "review": "23", - "address": "경기 성남시 분당구 성남대로331번길 3-9 1층", - "operating_hour": "월~토 16:50 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:50 ~ 01:00", - "phone_number": 317028558.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F813D9F55A9244479AFE5F424356F4984, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F239761e9f707a19050889563c8e021ab9c64108d3076f3bb002fae39a3a41d62, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F27d226959ad563028be78ca442fd159ac2fd2f54%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 480, - "name": "죽왕숯불닭갈비", - "category_id": "고깃집", - "score": 4.8, - "review": "1,468", - "address": "경기 성남시 분당구 성남대로916번길 20 2층", - "operating_hour": "화~토 11:00 ~ 23:00", - "expanded_days": "화,수,목,금,토", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F31ECBC0B3C4B4002931308FE55B3F210, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb7ec4faf9d01bf67653a87d1d595d7bf7f90a8d6%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F88529064e283f2e3ea612b3585d72c34ccf44bf0%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 481, - "name": "광명대창집 분당정자점", - "category_id": "고깃집", - "score": 4.8, - "review": "361", - "address": "경기 성남시 분당구 성남대로331번길 3-12 1층", - "operating_hour": "월~금 16:00 ~ 04:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 04:00", - "phone_number": 317157881.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MDZfMjM2%2FMDAxNzEyMzg0NDAxMDcy._ej2aYp04_ZglepfmCU39Lpz0gVTO29IFYrGmuBb2Qog.WPOWIiOdJNkQQ2KRJYy5mPXTprgJw7fdnjtFJbLpoUQg.JPEG%2FIMG_8968.JPG%3Ftype%3Dw386, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5EB23C39EB224F2E96A40645E76F6549, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3C00235441FD47088A35CEE7BC8E687D", - "convenience": "편의시설 정보 없음", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 482, - "name": "대명곱창김밥", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 내정로173번길 11", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317114526.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 483, - "name": "박정자할매족발보쌈 수내동점", - "category_id": "고깃집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 내정로173번길 11", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 484, - "name": "김선생의불닭발", - "category_id": "고깃집", - "score": 1.0, - "review": "1", - "address": "경기 성남시 분당구 황새울로116번길 20 1층 101호", - "operating_hour": "월~토 15:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5E3B27B0812D49C5854CEFDA1A55FCE6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F13CFE50E8A7241849F610CFD06DC3AD5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F34A6FE9627EF468B9E2B51D61371613A", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 485, - "name": "고기의즐거움 분당직영점", - "category_id": "고깃집", - "score": 3.6, - "review": "43", - "address": "경기 성남시 분당구 성남대로331번길 9-14 1층", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1c675f7ccd4d1e6ad48468d69acbb5da047f3dc4%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1c675f7ccd4d1e6ad48468d69acbb5da047f3dc4%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F50c4065e7072cb1d34f9b1532e76e1e4b16cdba1%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 486, - "name": "정자동 백두산황소곱창", - "category_id": "고깃집", - "score": 3.5, - "review": "38", - "address": "경기 성남시 분당구 성남대로331번길 3-9", - "operating_hour": "매일 16:00 ~ 12:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 12:00", - "phone_number": 317125582.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F026019C92EBD4B6FB8984AC2D9C3A2B0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F94cba03f1d9d6eb225225be9500e1d0bb800654f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F35ffb4a90adf822656220bd24fa3bbb9398c2f94%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 487, - "name": "유송", - "category_id": "고깃집", - "score": 1.0, - "review": "1", - "address": "경기 성남시 분당구 정자일로 197 정자동2차푸르지오시티 1층 116,117호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 488, - "name": "오투닭갈비", - "category_id": "고깃집", - "score": 3.4, - "review": "7", - "address": "경기 성남시 수정구 고등로1길 6-6", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 317224575.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBBF3EE241B56412F899286F8105F0AF2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faa15a428e0a5c06e82c74b8ec9cf7b90722afc76%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8682be163335bff3a7e6a7fb472b8b1d9cfbb27f%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 489, - "name": "야탑옹기족발", - "category_id": "고깃집", - "score": 4.3, - "review": "38", - "address": "경기 성남시 분당구 야탑로 103 노블리치2 오피스텔 1층 106호", - "operating_hour": "매일 14:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:00 ~ 24:00", - "phone_number": 317043434.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F44f8e6e7db0f3fcb3177fda57fbf48d8af4ff74a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1c65d4e5daf79f5b1ec94011e8f41bb9f14c0812%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe0a45ef10823cf0041517ce325fdc4e3916a8920%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 490, - "name": "태영생막창 분당정자점", - "category_id": "고깃집", - "score": 3.0, - "review": "44", - "address": "경기 성남시 분당구 정자로 13 월드비터 1층", - "operating_hour": "매일 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 24:00", - "phone_number": 317135055.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBB313833B68D4CA7A31CC976F08650D3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5d8919c5d97e7fd069046bbe8daa67ae8285a73c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff6a9583b08fc2296eeb2b6f54aea9b6ab77259b3%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 491, - "name": "금정황소곱창", - "category_id": "고깃집", - "score": 3.5, - "review": "2,636", - "address": "경기 성남시 분당구 야탑로105번길 9 금정빌딩 1층", - "operating_hour": "매일 05:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "05:00 ~ 23:30", - "phone_number": 317028395.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_2080524573, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_402063019, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_679354149", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 492, - "name": "고향집", - "category_id": "고깃집", - "score": 3.5, - "review": "53", - "address": "경기 성남시 수정구 달래내로377번길 13", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 317520368.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF60474E4A78B440EA554102F8E5C1CB4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fddfd8783f7b90291dbd6ffc6596b4dfe3686210d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F22313d62a9d383c486f544dfd5525f80bc0c0c10%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 493, - "name": "가장맛있는족발 야탑2호점", - "category_id": "고깃집", - "score": 3.2, - "review": "27", - "address": "경기 성남시 분당구 야탑로105번길 17 인제빌딩 1층", - "operating_hour": "매일 12:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 02:00", - "phone_number": 317810018.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5CCBD6235E254A38AC1B4D0601D791B1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4bd1a7dda1ec811655489341d5f6f391ee15a042%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6f1ec164c81168d6d14a174fe6e131b078fb289e%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 494, - "name": "초원의집", - "category_id": "고깃집", - "score": 5.0, - "review": "3", - "address": "경기 성남시 수정구 달래내로377번길 15", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317236255.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 495, - "name": "정자족발", - "category_id": "고깃집", - "score": 5.0, - "review": "2", - "address": "경기 성남시 분당구 느티로 67 수내조합상가 지하1층 104호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317154042.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD4AFA8EC6019401C8230A9C8CFE89015, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTdfOTIg%2FMDAxNzE4NjEyMDUxNzcy.ls5M-BZQJbaaXULuOTbkeZDVxX8yEx0YJnCX_uHmwg0g.04R3IuxPoWRYbXMbxbqDZYqWaB746w6ocbtKlfjcvacg.JPEG%2FSE-72e81e93-acf8-4fd1-855e-93c3c46a7ed5.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTdfMjY4%2FMDAxNzE4NjEyMDUyNzY3.l_xVE66NPlhS5hvDCRVpoFgDY2c_UDKm6yYAFV_YZIog.boSM6axuBMT0ben_Zpa3d8r-FBCiqJ28_bstVS0MSTcg.JPEG%2FSE-8c05bd7f-0f36-4e7f-abef-51a2ef56c838.jpg%3Ftype%3Dw386", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 496, - "name": "호세야오리바베큐 정자점", - "category_id": "고깃집", - "score": 0.0, - "review": "1", - "address": "경기 성남시 분당구 느티로77번길 10-2 1층", - "operating_hour": "수요일", - "expanded_days": "수요일", - "time_range": null, - "phone_number": 317155293.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fstorep-phinf.pstatic.net%2Fogq_5eedbcd06ab59%2Foriginal_8.png%3Ftype%3Dp100_100, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAzMDFfMjM0%2FMDAxNjc3Njc0MjE5NzIz.5OJkz-uY5NIrmlGVfVbESyDixb-v6UPD9_IQpuxv6xkg.82VODTYkMi0lM6UVO36keHf9WLsYzX0rlVE60cpUjqEg.JPEG.kangmj1992%2FIMG_3893.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAzMDFfMTc1%2FMDAxNjc3Njc0MjIwMDAz.o_3udK3qIJMOpkGOPjYHYwhJcnac128r4vO0kTjSTyIg.YLCP6PdzTb6M1ZlP2AoZ9hUBUqRlTkj1bL_gBhdzEPIg.JPEG.kangmj1992%2FIMG_3892.JPG%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 497, - "name": "족발의장인 족장 분당정자점", - "category_id": "고깃집", - "score": 3.0, - "review": "10", - "address": "경기 성남시 분당구 정자일로156번길 6 뉴본타워빌딩 102호", - "operating_hour": "월~토 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 24:00", - "phone_number": 317155330.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FADFCEFDB250F47109EF925393552B394, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F91C46A4F87D641FE81B9950B7F66629E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F56BFE7379B9A4D3B8AF37E0F49189E34", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 498, - "name": "육칠이 분당점", - "category_id": "고깃집", - "score": 0.0, - "review": "1", - "address": "경기 성남시 분당구 느티로77번길 10-2 1층 101호", - "operating_hour": "화~일 11:30 ~ 00:30", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:30 ~ 00:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF39D79A558814C3FA1736D44EE44EDC0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDC9F08A0F8B344948ECBD5B9FDDDA5AB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9FFD5583C79344DB9DFF1FC060543C82", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 499, - "name": "한성닭칼국수닭매운탕", - "category_id": "고깃집", - "score": 3.3, - "review": "17", - "address": "경기 성남시 분당구 야탑로81번길 10 아미고타워 지하1층 104~105호", - "operating_hour": "매일 10:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:30", - "phone_number": 316220606.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F24A8C7274A0E495AB3205D0B80AAFBA3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fedcbe6073e4077f089174aa5309bb915bc3d23b5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0470422e2594fbb3110dadff02175440611707da%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 10, - "restaurant_id": 500, - "name": "한양화로 분당야탑점", - "category_id": "고깃집", - "score": 4.1, - "review": "12", - "address": "경기 성남시 분당구 야탑로105번길 18 1층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 1043215016.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBBAA5A11FF7043A7912FDA6A20439C04, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F64C9EDFD68304BF3AE414EFE9E8CD3B3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6E2F75AFCB0345D38CF3D45AD9E19C95", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - } -] \ No newline at end of file diff --git a/storage/input_json/restaurants_table11.json b/storage/input_json/restaurants_table11.json deleted file mode 100644 index f2416f4..0000000 --- a/storage/input_json/restaurants_table11.json +++ /dev/null @@ -1,1413 +0,0 @@ -[ - { - "db_category_id": 11, - "restaurant_id": 1, - "name": "구우트", - "category_id": "다이닝바", - "score": 4.6, - "review": 135, - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 지하1층 B109,110호", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 50713970922.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6A9F6ECC24C7452294CE40371EF339E2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4B462B6BDC544376871579B67173AF79, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F849176E7AEFE48A890C1CAF648B7EF49", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 2, - "name": "오늘와인한잔 판교역점", - "category_id": "다이닝바", - "score": 2.9, - "review": 9, - "address": "경기 성남시 분당구 대왕판교로606번길 45 판교역푸르지오시티오피스텔 1층 103,104호", - "operating_hour": "매일 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9782875C838E4A908E2930BA15D14C63, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F18dfa74e842b2d1f821333317d795eeb07c6b6b8480274dba292d51b54573367, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdbda9a9ab71c1dda5597fdf932439b4158daa69a%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 3, - "name": "콘노이", - "category_id": "다이닝바", - "score": 4.0, - "review": 20, - "address": "경기 성남시 분당구 운중로138번길 24-1 1층", - "operating_hour": "매일 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 24:00", - "phone_number": 50713260064.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7401528A82004731AD892BB94880C212, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F475e8473308788178d822ed7e3bdc2948d199699%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F54ac32166b8d9af4bf0cf58475eeaddfdcc63d98%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 4, - "name": "물뭍", - "category_id": "다이닝바", - "score": 4.7, - "review": 7, - "address": "경기 성남시 분당구 판교공원로3길 36 상가 1층 101호", - "operating_hour": "수~토 16:00 ~ 24:00", - "expanded_days": "수,목,금,토", - "time_range": "16:00 ~ 24:00", - "phone_number": 7086571264.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F82f4b0778561a2df379d23fa6ab0b0f4e9e4524c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8aeffa0bebc2ddeae41c6918914d268096efc8bd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa9707d7bfd5f1ee1947b7097718ff31fab9acd9a%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 5, - "name": "퍼프시가바", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교로25번길 8-4 1층", - "operating_hour": "매일 13:00 ~ 01:10", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "13:00 ~ 01:10", - "phone_number": 1097709311.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 6, - "name": "비눔", - "category_id": "다이닝바", - "score": 5.0, - "review": 143, - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 B106호", - "operating_hour": "월~금 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 24:00", - "phone_number": 50714356693.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4632DF873CFB48419A38790C9D8A2E1A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F3EE1E4786B194A9CAF89DD28E09089ED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA3B82EA27D4244A18B480F5AD98DD7E1", - "convenience": "주차", - "caution": "예약가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 7, - "name": "풀문", - "category_id": "다이닝바", - "score": 5.0, - "review": 0, - "address": "경기 성남시 분당구 판교공원로1길 50 1층 101호", - "operating_hour": "월~금 19:30 ~ 01:30", - "expanded_days": "월,화,수,목,금", - "time_range": "19:30 ~ 01:30", - "phone_number": 317072056.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdb0b34293c493e10264f75cec279bdfda3847dad%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MDdfMjMy%2FMDAxNjkxNDE4MDg3Mzkx.FzVdbeZ4eOl5ynbsynrdew02B3-B5S3skR81JdTlSSIg.BRBbZH-wOaBNSzsBrTTZeA80DCTZiS8dCm806ekoM4Ig.JPEG.yhs04065%2FIMG_8219.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MDdfMTI3%2FMDAxNjkxNDE4MDg2ODk4.iOYA01oZMombSCr_SvoyQUzgssIwBHnKYpL6GeOqiX4g.RWUulXRvPsTUIvwOjvqpyw9anjD_keBLFUv6BzqXKXYg.JPEG.yhs04065%2FIMG_8218.JPG%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 8, - "name": "나함", - "category_id": "다이닝바", - "score": 4.6, - "review": 0, - "address": "경기 성남시 분당구 서판교로44번길 3-5 1층", - "operating_hour": "화~토 19:00 ~ 24:00", - "expanded_days": "화,수,목,금,토", - "time_range": "19:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2c63b1e80b6f0a65c79a92209345b9ad1f935a54%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2c63b1e80b6f0a65c79a92209345b9ad1f935a54%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F462a0db40631da2136ddf80a3c196752868c1100%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 9, - "name": "오아시스터즈", - "category_id": "다이닝바", - "score": 0.0, - "review": 5, - "address": "경기 성남시 분당구 판교역로 136 힐스테이트 판교역 상가1동 1036호", - "operating_hour": "월~수 08:00 ~ 20:00", - "expanded_days": "월,화,수", - "time_range": "08:00 ~ 20:00", - "phone_number": 3180397230.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F443E8598B2F14D38AEEE50C8BB0D195C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MDFfMTI1%2FMDAxNjkwODc4NTU1Mzc5.h87gsXgg1f-tbDBlMLWgEKt0ysMoI9TwKv_0MltpTk8g.szQGR8_eFIk8kRKzz4OMo5bnIw47m434xcpPFMbBrv4g.PNG.llsyll94230%2F%25EC%258A%25A4%25ED%2581%25AC%25EB%25A6%25B0%25EC%2583%25B7_2023-08-01_%25EC%2598%25A4%25ED%259B%2584_5.28.54.png%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MDFfMTEg%2FMDAxNjkwODc2OTU4NzY3.kPfn-5FOGXDxx0VrV7CuvV8I-uGnq7b1z0qgaVkkgl8g.XXFhwN5LyJ6RpuJJ2sjmZBXkxoVSx_ztYClvgv6s3iMg.JPEG.llsyll94230%2FIMG_2828.JPG%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 10, - "name": "와인G", - "category_id": "다이닝바", - "score": 3.3, - "review": 0, - "address": "경기 성남시 분당구 판교역로192번길 12 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 11, - "name": "와인팩토리", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로192번길 14-2", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 12, - "name": "루프", - "category_id": "다이닝바", - "score": 3.0, - "review": 0, - "address": "경기 성남시 분당구 동판교로52번길 25-18 1층", - "operating_hour": "매일 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 24:00", - "phone_number": 317079863.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 13, - "name": "와인샵 현대백화점 판교점", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151702078.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 14, - "name": "설탕바", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 15, - "name": "레끌레 드 크리스탈 판교점", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 서판교로58번길 4-2", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 16, - "name": "트웬티포세븐", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 동판교로52번길 26", - "operating_hour": "월~금 17:00 ~ 03:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 03:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 17, - "name": "바에이팀", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로 670", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 18, - "name": "삼평동솜씨방", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2동 3층 310호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 19, - "name": "부에노부스", - "category_id": "다이닝바", - "score": 4.0, - "review": 40, - "address": "경기 성남시 분당구 장미로 42 야탑리더스 1층 116호", - "operating_hour": "매일 18:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "18:00 ~ 24:00", - "phone_number": 7041893425.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3216B58D98C4436D89A8B0DB9261AAF4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqrM2llxnd_9CgcOcx7GU5ESpsKYfkJh1_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqrOgQIeni_MkEWCVLDhh5ZulyiqRKCs0_img.jpg", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 20, - "name": "어바웃풍미", - "category_id": "다이닝바", - "score": 4.6, - "review": 68, - "address": "경기 성남시 분당구 서현로210번길 2 성지하이츠텔 209호", - "operating_hour": "월~토 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 01:00", - "phone_number": 317078771.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F37268F424C514B65B17991CADBB0F304, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F02FE82F350AA4C369196B99C48C7F6A5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F460caf90126cb5c28af20d073d8bcff89a5a4a19%3Foriginal", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 21, - "name": "비율", - "category_id": "다이닝바", - "score": 4.5, - "review": 59, - "address": "경기 성남시 분당구 서현로210번길 2 성지하이츠텔 2층 208호", - "operating_hour": "매일 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 23:00", - "phone_number": 1033003250.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 22, - "name": "오늘와인한잔 서현에스점", - "category_id": "다이닝바", - "score": 5.0, - "review": 10, - "address": "경기 성남시 분당구 중앙공원로39번길 49 서현지엔느 1층 101-2호", - "operating_hour": "매일 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE4BBBA698C064CDA9F7EB6FA79EDDBEE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fddf41b2005c575ad2aabce0924250f18ede19018%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDRfMTEx%2FMDAxNzI1NDU5MTIwODAw.ZV2Mv4jh5LlHbii3mxkdGzYyMMfWFkH29rHpzjmTOSog.18ESLWVb_1cplfUk040UsCwG37W09A0M99g97B-IYesg.JPEG%2FSE-C233275F-5BB1-475A-B5F7-D263637C2BF6.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 23, - "name": "로디드", - "category_id": "다이닝바", - "score": 5.0, - "review": 0, - "address": "경기 성남시 분당구 느티로69번길 18 1층 103호", - "operating_hour": "월,화,수요일", - "expanded_days": "월,화,수요일", - "time_range": null, - "phone_number": 50371506543.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC43D42A43BBF4DFABA04FB6E26C14C50, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB6D85447E04047FEA6FD758C08848C54, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F46227678B521447EBA963F68BBA9FDB8", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 24, - "name": "수내와인", - "category_id": "다이닝바", - "score": 5.0, - "review": 0, - "address": "경기 성남시 분당구 내정로165번길 50 크리스탈빌딩 101호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 25, - "name": "우즈(WOODZ)", - "category_id": "다이닝바", - "score": 5.0, - "review": 0, - "address": "경기 성남시 분당구 정자일로 197", - "operating_hour": "월~토 18:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "18:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F786D063CAE1149DF9A0A8E71A98F6616, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FBE8039F6CAE74985A84961CBE1C5EE1C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6182e265ce0610f5410746439854b19830c4d7e7%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 26, - "name": "아르노", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 성남대로331번길 13 백궁프라자1차 3층 303호", - "operating_hour": "월~토 19:30 ~ 03:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "19:30 ~ 03:00", - "phone_number": 317188858.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F96616FDA80BD4087A92418E74B71B505, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F5EBAE4D802214A15BA3CE78BB48E111C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FA677E84614AB4F2CB352712FB0B7E1CE", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 27, - "name": "카사아지오 분당", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 느티로51번길 4-12", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 28, - "name": "와인바벨벳", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 서현로 184 LG에클라트 214호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "주차", - "caution": "예약가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 29, - "name": "Y바", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 황새울로258번길 32", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 30, - "name": "와인크래프트 비어바", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 31, - "name": "루프일레븐(ROOF11)", - "category_id": "다이닝바", - "score": 4.6, - "review": 128, - "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 11층 1101호", - "operating_hour": "월~토 18:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "18:00 ~ 02:00", - "phone_number": 3180171300.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE4CF0D7569DC4974B385B4F0E14CC156, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD7723E7376DF4D8ABCD7D81E57101A28, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F03C9873E4C2B4DE2B08E050593EF7292", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 32, - "name": "벙크오프", - "category_id": "다이닝바", - "score": null, - "review": 192, - "address": "경기 성남시 수정구 고등로1길 12 1층", - "operating_hour": "화~일 12:00 ~ 24:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "12:00 ~ 24:00", - "phone_number": 50714900803.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCF2DC669C19B4CDDA430B36650923CC1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F98C989555F8C4E52BD4CE92B9230E4D5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEwMDJfMjQw%2FMDAxNjY0NjcxMDc5NzE1.Q2pn3Kwyvpt8lH7kbZjvCSdz7nJp4Qe0lO9xSCQl4Ygg.oLswfEEUz0gYHim-jsFvtiEuFHch1NiMsnyyDsF_wAMg.JPEG.bodybani1%2F%25EB%25B6%2584%25EB%258B%25B9%25EC%259E%2584%25EC%2582%25B0%25EB%25B6%2580%25EC%259A%25B4%25EB%258F%2599_%25EB%25B6%2584%25EB%258B%25B9%25EC%2582%25B0%25ED%259B%2584%25EC%259A%25B4%25EB%258F%2599_%25EB%25B2%2599%25ED%2581%25AC%25EC%2598%25A4%25ED%2594%25844.jpg%3Ftype%3Dw773", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 33, - "name": "제로비티 그래비티 서울 판교", - "category_id": "다이닝바", - "score": 3.1, - "review": 91, - "address": "경기 성남시 분당구 판교역로146번길 2 그래비티타워 1층", - "operating_hour": "매일 07:30 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "07:30 ~ 23:00", - "phone_number": 315394810.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3A89B499736E4582811795ED6BBEFD3C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F385b896077d91c39d8491f12f949fcc5741a258f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fbddceb9f6e0ded8061f3dc08097cbc983da4c476%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 34, - "name": "엔젤스셰어", - "category_id": "다이닝바", - "score": null, - "review": 126, - "address": "경기 성남시 분당구 판교역로10번길 12-6 101호", - "operating_hour": "매일 19:00 ~ 03:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "19:00 ~ 03:00", - "phone_number": 317023551.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA0MTZfMTkg%2FMDAxNjUwMDk5NDM2ODE2.kCtP5bIM-980thWn3vuVKzy38ca43mmjGmZ4430qftEg.xwRsjJFjw38KiGmHb8lnuwFWsMXgdDqYhQLXcBVN2nIg.JPEG.ziwoni94%2FIMG_9944.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzExMTlfMTk2%2FMDAxNzAwMzYxNTAyMzk2.42YEE80azXiQFd935w_5wz4oZVNk4I4sKuT7uEyZ5lYg.0cls3bl72TEtNwZrl_IpdmgyLC9COo8Qsd3BLjfOEUUg.JPEG.yunji0203%2FDF842442-515A-4130-926D-B2348E410353_1_105_c.jpeg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMjJfMjIx%2FMDAxNjk3OTU2ODcwNTgw.90svi_4-VVe35u95IbEaE8LpfFbcMMJh2o3bP0Vw_xsg.j6GWgKAM3rIxslSWdM-SvOHbXa9rdmc3wLxdCnPQeY8g.JPEG.apple0978%2FIMG_6352.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 35, - "name": "잇트", - "category_id": "다이닝바", - "score": 4.3, - "review": 55, - "address": "경기 성남시 분당구 대왕판교로606번길 10 107호", - "operating_hour": "매일 18:00 ~ 03:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "18:00 ~ 03:00", - "phone_number": 317062789.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFF250BE023FC4CEEB2D2F4275D93895C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F525904328BBE438A8F1F1865586876C2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTJfMjEw%2FMDAxNzMzOTgyMDEwNjkw.7dNNphFFgAqsCrO5upGwZqwi9765_HIh7qn49pT2fekg.4bdkiAEopcnnpHE28yWORjtVZRMAHRIgBY5mG_UFeFIg.JPEG%2FIMG_7296.jpg%3Ftype%3Dw580", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 36, - "name": "닙스", - "category_id": "다이닝바", - "score": 0.0, - "review": 6, - "address": "경기 성남시 분당구 산운로160번길 22 105호", - "operating_hour": "월~토 18:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "18:00 ~ 02:00", - "phone_number": 316042024.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F07CF47A27BF9439D961EBDE0711FD18D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDC129D57B46D4A1995E1E1DB03E2A463, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA5FFA035C7BD46BA91363C59126CDA83", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 37, - "name": "프로짓", - "category_id": "다이닝바", - "score": 5.0, - "review": 238, - "address": "경기 성남시 분당구 판교역로 136 힐스테이트판교역 지하1층 오렌지존 B1029호", - "operating_hour": "월,화,수,목,일 17:30 ~ 01:30", - "expanded_days": "월,화,수,목,일", - "time_range": "17:30 ~ 01:30", - "phone_number": 7043340219.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F145C15B0D47C49FE845BDD41834849A5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB2D00FC26325420288F6BD1F5EB56D44, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD36FD38840544E0AA86AFE85B1F75DCB", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 38, - "name": "웨스턴 소마", - "category_id": "다이닝바", - "score": 4.8, - "review": 23, - "address": "경기 성남시 분당구 대왕판교로 660 1층 114호", - "operating_hour": "월~금 19:00 ~ 02:00", - "expanded_days": "월,화,수,목,금", - "time_range": "19:00 ~ 02:00", - "phone_number": 1051067012.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7cda926c7e4f80d7a968a530701a41cf6675b637%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMTJfNiAg%2FMDAxNzA1MDM2ODI0Mjg5.yhCdKZvxq5Px3FBNAtg2Uf1VpU2U4T_bPBBbkboVwxAg.tgzDLrQD7pZzyb8jx8wQRCTR-Rm2JN4rJn_uuFm4kR8g.JPEG.hsphsh122%2F4BBD1496-BDCA-4630-A799-8F3DA8EB5C68_1_105_c.jpeg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAxMjdfNjEg%2FMDAxNjc0Nzk4NjUyNzAx.gwX9bH_H62bvr8dqt4eQSsawLDUniXphYCgbvw86dMAg.RGJATAI4ShnO_v8gX2tunoMYOZ2VRllhQLYZ1aiEitQg.JPEG.da_num%2FIMG_4170.JPG%3Ftype%3Dw773", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 39, - "name": "와이키키", - "category_id": "다이닝바", - "score": 4.7, - "review": 2, - "address": "경기 성남시 분당구 판교로319번길 13 디테라스 107호", - "operating_hour": "월~토 19:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "19:00 ~ 02:00", - "phone_number": 317070107.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F65AAFF5A0BA34094B6A37B95E4DFDAFD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd3201cf3065013462daaa38dffabce2e13878f9f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA2MDdfMTA4%2FMDAxNjU0NjA5MzEzNTM5.GoSKdjqCRbFBIQqA2YZ37oIHD2Td1m7z7QPQLXDf8Y4g.q4SXKJAjynPyULGDE6vDCEA_1EwAmcVml-iniBh49agg.JPEG.hw00116%2Foutput_3690812414.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 40, - "name": "타임", - "category_id": "다이닝바", - "score": 5.0, - "review": 4, - "address": "경기 성남시 분당구 판교공원로2길 42 지하1층", - "operating_hour": "화~토 19:00 ~ 01:00", - "expanded_days": "화,수,목,금,토", - "time_range": "19:00 ~ 01:00", - "phone_number": 1089867888.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 41, - "name": "몰트바소마", - "category_id": "다이닝바", - "score": 3.0, - "review": 23, - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 3층 326호", - "operating_hour": "월~금 19:00 ~ 02:00", - "expanded_days": "월,화,수,목,금", - "time_range": "19:00 ~ 02:00", - "phone_number": 1083300999.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFF7AB197C667484594FB81348B8A88CD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F278EF2C55BC849F7B269E020FB3F9378, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD68D4A58D5464C1AB8909653C15A4296", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 42, - "name": "퀸바", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교로319번길 13", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 43, - "name": "끌로에바", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로192번길 14-1", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 44, - "name": "어썸스테이지", - "category_id": "다이닝바", - "score": 0.0, - "review": 2, - "address": "경기 성남시 분당구 동판교로52번길 17-9 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAyMjZfMjk3%2FMDAxNjc3NDEzMDQ5MTQ2.wGGfNeNiQcxQOV5TPuieePeh6bjI0gpaZNhmUBrJQxsg.2TJ8GwmlkyuUUoPSnfRPVox5ZIUiIF1TJPeQJGlJ2mIg.JPEG.soo_omin%2Foutput_3403644910.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAyMjZfMjUw%2FMDAxNjc3NDEyNzE0NDEw.nDifQiZ1op0h_BoVuNYADr9RtIFDHTG8bDjZheY1ZfEg.uDI7VtccMFZSRe5CwgeUO8kGdEI62kezEU00MH9scbIg.JPEG.soo_omin%2FIMG_3739.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAyMjZfOTIg%2FMDAxNjc3NDEyNzE0MjYz.qDjHY8dWoYOtdpJDzpn6VVwqlvP55YqCb_SFSnKso9Eg.NMGpQt0FLWBTO8TxI-h_J1HOuyzXfEjvig0kHc5KCyEg.JPEG.soo_omin%2Foutput_695805026.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 45, - "name": "바코드", - "category_id": "다이닝바", - "score": 1.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로192번길 22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 46, - "name": "설레임바", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로606번길 45 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 47, - "name": "바비", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로606번길 45 판교역 푸르지오시티 3층 301, 302호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 48, - "name": "문바", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 분당내곡로 151", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 49, - "name": "디얼위스키", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 230호", - "operating_hour": "월~금 19:00 ~ 03:00", - "expanded_days": "월,화,수,목,금", - "time_range": "19:00 ~ 03:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 50, - "name": "퍼니붐", - "category_id": "다이닝바", - "score": 4.7, - "review": 198, - "address": "경기 성남시 분당구 서현로210번길 16 유성트윈프라자 1차 5층 501호", - "operating_hour": "매일 19:00 ~ 03:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "19:00 ~ 03:00", - "phone_number": 7047910740.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FE40EC760FCF14FE68944AFCD9F40C242, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F5EBEEECF7BF240909DCFB4ADCE0C39F0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8968b23f86b9d99b9d51fc9546587444d8246725%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 51, - "name": "불스바", - "category_id": "다이닝바", - "score": 4.8, - "review": 11, - "address": "경기 성남시 분당구 서현로210번길 10 다두프라자 3층", - "operating_hour": "월,화,수,목,일 19:00 ~ 03:00", - "expanded_days": "월,화,수,목,일", - "time_range": "19:00 ~ 03:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F12294C4C500F7FDF08, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F1907914C500F7FDF3C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F172C044C500F7FE003", - "convenience": "WIFI\n동물출입\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 52, - "name": "테일스", - "category_id": "다이닝바", - "score": 4.4, - "review": 7, - "address": "경기 성남시 분당구 성남대로 381 폴라리스빌딩 1층 105호", - "operating_hour": "매일 19:00 ~ 02:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "19:00 ~ 02:30", - "phone_number": 317143551.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA3MjNfMTcg%2FMDAxNjkwMTAxMDk1OTQ3.aw8MPbcSI_wCFRI30gy1RZjp3yTjSENjCmjAaoeuHzEg.x4V9vt4szPvDV3sfV9jMbas_jVgLqEvuwISsDWHUe0Yg.JPEG.hineinhi%2FIMG_6349.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA3MjNfMTA2%2FMDAxNjkwMTAxMDk1OTAw.uh9pfRjsDHIIoyCE3cJSwbFnZeH5_l4ctlg0kG3JBH0g.QIyTh-p0EpimkYqYGkK0tAgcT-A4blDkPPtHeOm6l8Yg.JPEG.hineinhi%2FIMG_6350.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA3MjNfMTg1%2FMDAxNjkwMTAxMDk1MzQy.0OkBQbd7jUkvxnYn1DnLlXkcka-Jlx-a9XfU6sz3WOwg.h4sgQTwAob_nj5kvxq1iuPCZCW3p8h5n1MTsoWw4q_Eg.JPEG.hineinhi%2FIMG_6360.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 53, - "name": "펍포유", - "category_id": "다이닝바", - "score": 0.0, - "review": 1, - "address": "경기 성남시 분당구 황새울로330번길 18", - "operating_hour": "월~토 19:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "19:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2460DD85F52F42179E2BEFA916D9D26B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTNfMjUy%2FMDAxNzM0MDc4Nzc5MDc2.k5SBhQzwVL0d-x2V5KG3cG_HmI_EVBcUEdjEHY9Z8dEg.DAhTHAuPFNcixzdDkCxNCn9Kk5ev5PdAXuUN57-Mnwog.JPEG%2F900%25EF%25BC%25BF20241211%25EF%25BC%25BF210540.jpg%3Ftype%3Dw466, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTNfMjg2%2FMDAxNzM0MDc4Nzg0NTc4.42kagKP2kly-9FBm0pqkyXV4uK18TSRlSEL2u1neMqcg.ZVjWVXWyy0Fcs-iBhtBwgkbIc0glEnKwCi5qg2FMYBEg.JPEG%2F900%25EF%25BC%25BF20241211%25EF%25BC%25BF211205.jpg%3Ftype%3Dw466", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 54, - "name": "더펍포유", - "category_id": "다이닝바", - "score": 5.0, - "review": 0, - "address": "경기 성남시 분당구 분당로53번길 21 산호프라자 3층", - "operating_hour": "월~토 19:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "19:00 ~ 01:00", - "phone_number": 317032061.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F438e94b438a3d9011abdee63000a3acbefafa30b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd8adc3394b1027dcda8584a8ef241a771b0668a0%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 55, - "name": "엠바", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 분당로53번길 13", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317035070.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F35022D65EC744C189DBC3D8B5BAB7FD2, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF658CCCB457F4B99A563C591ED1915D8, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F93d7d5372e0b8161b1ad0e846afb1a50dda80e88%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 56, - "name": "아소바", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 수내로46번길 11", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 57, - "name": "에임", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 황새울로360번길 22 영건프라자 3층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 58, - "name": "탐스빌", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 서현로210번길 16", - "operating_hour": "매일 18:00 ~ 04:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "18:00 ~ 04:00", - "phone_number": 317068895.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F25308756ED6F4C649E75510CA694E754, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4A71C9C923B747B68D223CB64965E7E9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5AC256F24EB74C8C89A5A64EAD79C786", - "convenience": "WIFI\n주차\n흡연실", - "caution": "배달불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 59, - "name": "레솔베르 시가바 라운지 분당", - "category_id": "다이닝바", - "score": null, - "review": 1, - "address": "경기 성남시 분당구 정자일로 197 정자동2차푸르지오시티 2층 220호", - "operating_hour": "월~목 12:00 ~ 01:00", - "expanded_days": "월,화,수,목", - "time_range": "12:00 ~ 01:00", - "phone_number": 1097765546.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8A9C21DD69234D9C8A24D7DA2F4AE07E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2D3E46E83AA9440F974A61E2DE3D9459, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F215208EF391644E29E4D8C29AC13B53C", - "convenience": "WIFI\n주차\n휠체어사용", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 60, - "name": "벤틀리", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 내정로119번길 11", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317162080.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 61, - "name": "바밤바", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 느티로 16 젤존타워1 3층 308호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 62, - "name": "녹녹", - "category_id": "다이닝바", - "score": 5.0, - "review": 14, - "address": "경기 성남시 분당구 느티로87번길 7 1층", - "operating_hour": "매일 18:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "18:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTZfMjE3%2FMDAxNzE4NDcxMTk3MTIz.XYMvhaoDz_Oe4ZFJ790lyfBe2BEjeNJjpDX5TRXL05og.lCGNq2X5H8UtcdO6OKVbd_95c8Z1SyWEWtiiQap8-I8g.JPEG%2FIMG_5917.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTRfOTMg%2FMDAxNzE4MzIwMjE1NjM5.Qjva4z7NBgW97w8BevsW9O_KajCPxHagXA5E2cZjUEsg.onyZSDbCwipHKsm50aDazhCbdyuJZp56WeKS-9-h8Xog.JPEG%2FIMG_5919.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTZfMTQ3%2FMDAxNzE4NDcxMDM2NjQ4.fiZQBnLcBl6CA8fZypKNGI2X0LMnLUXGmMceccTW4nEg.Zabp30RoVrx6dU46jDvL0GMTqHBY0acR0AzWQd21Sywg.JPEG%2FIMG_5932.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 63, - "name": "스카이라운지(SKY Lounge)", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 정자일로 192", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317126156.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 64, - "name": "썸바", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 성남대로331번길 13", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 65, - "name": "S라이브", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 성남대로331번길 9-6", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317145483.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 66, - "name": "더모멘토", - "category_id": "다이닝바", - "score": 3.2, - "review": 1, - "address": "경기 성남시 분당구 정자일로 146 엠코헤리츠 101동 1층 126호", - "operating_hour": "매일 19:00 ~ 03:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "19:00 ~ 03:00", - "phone_number": 316034481.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA464E950B55E42048898D4F3AEAD0768, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5EF01E65610840BFADF05CC1DD5A0364, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F1D1D37F50E7E4625B7C190500E9F57B3", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 67, - "name": "살롱드위스키", - "category_id": "다이닝바", - "score": 5.0, - "review": 1, - "address": "경기 성남시 분당구 성남대로331번길 3-13 1층", - "operating_hour": "월~토 19:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "19:00 ~ 02:00", - "phone_number": 5050910917.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6CE07E6F8377443C82A8C1E086B83770, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0FFB32F1EFEB466484DA1CF608A3323B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1905917184BC495EA88A6CFC2265E899", - "convenience": "WIFI", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 68, - "name": "MA BAR", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 장미로86번길 6 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 69, - "name": "올드톰", - "category_id": "다이닝바", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 정자일로 140 202동 125호", - "operating_hour": "매일 18:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "18:00 ~ 02:00", - "phone_number": 317192789.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC4B31F678B9F43F18B6B124F5F6C0D9C, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F14F3878ED0704CD9B07D03E0912A02EB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC3290938AE0541549105191AFF64C1F8", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 70, - "name": "텍사스로드하우스 현대백화점판교점", - "category_id": "다이닝바", - "score": 3.0, - "review": 685, - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701046.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F24601735EB134173903B12CA68ED72EF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4ba9f6e9c11f8fba9d97bad406bfe6eae1be36b5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffa607a8abc7318e723825580dd676fb3bdfb6275%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 71, - "name": "디셈버세컨드", - "category_id": "다이닝바", - "score": 5.0, - "review": 60, - "address": "경기 성남시 분당구 판교역로192번길 22 판교효성패링턴 타워 2층 202호", - "operating_hour": "매일 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": 50714309630.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2B215851A9DF4D3AB96D494F60475BFC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd945fd9842030be51379083a06f88bd9a20f53ed%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff0030f3e99f7393e02bdb0fac9d2b6c25d74e8c5%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 72, - "name": "몰트바 케이브", - "category_id": "다이닝바", - "score": 4.7, - "review": 83, - "address": "경기 성남시 분당구 분당내곡로 151 2층 201호", - "operating_hour": "월~토 19:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "19:00 ~ 02:00", - "phone_number": 50255515353.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE83EB98E55AC40E7AE103B4358EA3E15, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fda6d1b75417529645ded570b798b7d765c2a939f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MDdfNjEg%2FMDAxNzIzMDE5NTQ4NzY2.oY3cugA0VUU7XVg5c61gLohUwigCi5OjEBbfyv0Vrf8g.pTogeMEGGAVbnFIjtGIT5JASqt5GEM4xwOS7GXJD0XIg.JPEG%2F20240726%25EF%25BC%25BF190759.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 73, - "name": "진달래", - "category_id": "다이닝바", - "score": 5.0, - "review": 1, - "address": "경기 성남시 분당구 산운로 146", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F88D4FBCC89494E77B3AC729DC9C436AD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F69a7912ada7e902bb0fcfeb0b93724826ab4cc16%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MDJfNzQg%2FMDAxNzE0NjIzNjkyMjk0.3Vdm1scBwJRTq07hFsyy1_KHHYTTyvEEVKRxJHlyFkIg._nSQeZn5lCOOMCHuA7bCzg4QaVV0XutP3WPvMToQtJYg.JPEG%2FIMG_8503.JPG%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 74, - "name": "알아이피", - "category_id": "다이닝바", - "score": 4.2, - "review": 4, - "address": "경기 성남시 분당구 서현로210번길 17 광림프라자 지하1층 101호", - "operating_hour": "월~토 18:00 ~ 04:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "18:00 ~ 04:00", - "phone_number": 317060701.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 75, - "name": "에이치앤에이치바", - "category_id": "다이닝바", - "score": 3.0, - "review": 112, - "address": "경기 성남시 분당구 황새울로360번길 24 대명코아 2층 206~207호", - "operating_hour": "매일 19:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "19:00 ~ 02:00", - "phone_number": 50371510052.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBD89866CD1A4438794EA0FAE665417A6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd4f7329ed7605f120aa7ded4a2ea6ce4b399f3f1095d2ff9fa96c4459894671e, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MTRfODEg%2FMDAxNzE1NjkxODM2MTIx.HAEuUi12rwbXFf2R3H1LSwH4BOon5leIFtl0uLhHVhog.MOgv4Dq7DFfOOP1rbbq8wop6Nlr8oFmJTovqo9ylmjQg.JPEG%2FIMG_7146.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 76, - "name": "멜트인몰트", - "category_id": "다이닝바", - "score": 4.6, - "review": 24, - "address": "경기 성남시 분당구 황새울로360번길 24 대명코어 2층 205호", - "operating_hour": "매일 19:00 ~ 03:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "19:00 ~ 03:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_233809042, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1880978531, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fbf572fbfec9e97946d86dc54988b42340f49b883%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 77, - "name": "모조더라운지", - "category_id": "다이닝바", - "score": 4.3, - "review": 0, - "address": "경기 성남시 분당구 장미로 42 리더스빌딩 113호", - "operating_hour": "월~수 08:00 ~ 18:00", - "expanded_days": "월,화,수", - "time_range": "08:00 ~ 18:00", - "phone_number": 317040120.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FD8708F478833404C87464F4FC8CA03F0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA92CE6D701F54CDD9DB9CF9D3801CB7F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc3f8538468489cb01955541e5dfd1465a6fd6cc7%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 78, - "name": "소셜197", - "category_id": "다이닝바", - "score": 0.0, - "review": 7, - "address": "경기 성남시 분당구 정자일로 197 1층 119호", - "operating_hour": "월~토 19:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "19:00 ~ 02:00", - "phone_number": 50371507174.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5CED3F0874304980AA10BC9B1DE75DF4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F93F2B2EED72A490EA51BBB23C6E1E6B7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FADA8B00939074DCD8500C61BFED72DF5", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 79, - "name": "조이펀", - "category_id": "다이닝바", - "score": 5.0, - "review": 5, - "address": "경기 성남시 분당구 황새울로360번길 24 대명코아 5층 503~504호", - "operating_hour": "매일 19:30 ~ 06:05", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "19:30 ~ 06:05", - "phone_number": 317097905.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 80, - "name": "아지트바", - "category_id": "다이닝바", - "score": 0.0, - "review": 2, - "address": "경기 성남시 분당구 성남대로331번길 13 백궁프라자1 4층 410호", - "operating_hour": "매일 19:00 ~ 03:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "19:00 ~ 03:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbrjOD7%2FbtrMYqYE4fx%2FmmW7dV4orGwTXbo9kBpbg0%2Fimg.png, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2F2SWSq%2FbtrMUGV13PE%2FqFs9MOIRRIEFhakK3jKPvK%2Fimg.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fb5OXdy%2FbtrMUFbLAL8%2FXftYvsWZcoWHXpyHZE2Hbk%2Fimg.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 81, - "name": "코너21", - "category_id": "다이닝바", - "score": null, - "review": 67, - "address": "경기 성남시 분당구 정자일로 136 정자역엠코헤리츠3단지 301동 112호", - "operating_hour": "매일 18:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "18:00 ~ 02:00", - "phone_number": 1094297003.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCBD25A354E1749628E04D827C471851B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F027E9597E7DB4C20A2FB886F26632B82, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F447414100FB440BB899D181E1F79FA38", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 82, - "name": "살토", - "category_id": "다이닝바", - "score": 4.3, - "review": 48, - "address": "경기 성남시 분당구 정자일로 136 정자역 엠코헤리츠 3단지 C동 105, 106호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC25B5010D13749C58C56DF465F87EA00, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FAD2BBB5A07FD4EB1ADEB2EBB8363CAF2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA8C56E3DDE8C4BA7BE4F604B35C2E247", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 11, - "restaurant_id": 83, - "name": "뮤직온", - "category_id": "다이닝바", - "score": 5.0, - "review": 67, - "address": "경기 성남시 분당구 야탑로105번길 12-6 2층", - "operating_hour": "월~토 19:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "19:00 ~ 01:00", - "phone_number": 50255500421.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - } -] \ No newline at end of file diff --git a/storage/input_json/restaurants_table12.json b/storage/input_json/restaurants_table12.json deleted file mode 100644 index 6cae184..0000000 --- a/storage/input_json/restaurants_table12.json +++ /dev/null @@ -1,563 +0,0 @@ -[ - { - "db_category_id": 12, - "restaurant_id": 1, - "name": "오마카세 오사이초밥 판교점", - "category_id": "오마카세", - "score": null, - "review": "1,696", - "address": "경기 성남시 분당구 판교역로 180 알파타워 1층 106호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 50714020542.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBB4E387222A14F2694FF39F9D3B114DF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2864117C1C3D483EA0F929D9F80B33E5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8AEE1BB53C4B4CA2BD490FFD22E6FB60", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 2, - "name": "오마카세 스시이찌 판교점", - "category_id": "오마카세", - "score": 4.0, - "review": "25", - "address": "경기 성남시 분당구 판교역로192번길 22 판교효성 해링턴타워 2층 201호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317788002.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7C0197CD3349406192730035A78FDF1D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEF1D74DD364947A8A10CDAA9058A9846, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2F1084CC6228464C998DC99760E25967", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 3, - "name": "스시쿤 판교", - "category_id": "오마카세", - "score": null, - "review": "128", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스몰 1차 지하1층 115호", - "operating_hour": "매일 15:00 ~ 18:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 18:00", - "phone_number": 316286972.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0F75D52459234FFEB5730B3021D5E1ED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAzMDZfMjU5%2FMDAxNjc4MTA0OTAwOTg1.JeSJ1FAemg4-wGkfqdeTIDK1XazGzxev9Yn5-heBLgAg.DU0XLQL5llOsE8vbv1s2ySJNZb0qsTS2VwWYH4C97vcg.JPEG.hleezzang%2FSE-66859AFE-F1D1-4507-BD38-1161AD979173.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAzMDZfMTg1%2FMDAxNjc4MDk2MDYwMjc1.Caic-G4miiBSjRWeRn-qDbKan_z6zivhynWzZvbqMocg.mZ4CtgVQDdSdeBesy3fEP2jmFztz5cQK5CIdg0A6MVog.JPEG.hleezzang%2FIMG_7813.JPG%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 4, - "name": "스시혼 판교본점", - "category_id": "오마카세", - "score": 3.5, - "review": "3", - "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층 137,138호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2220A0445546FC2A1E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F21399A415546FC470D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F451f9fa3c51308e90a7ac5a84bc1e3b76b860b27%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 5, - "name": "초루", - "category_id": "오마카세", - "score": null, - "review": "89", - "address": "경기 성남시 분당구 서판교로44번길 3-19 1층", - "operating_hour": "월~토 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:30 ~ 17:00", - "phone_number": 317057676.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7A463BF7104C4C19ADFB9F8024241097, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5FA8F2D32F7F4E6AB738EC7EDBF72CC6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F12A8D6821C574F83AD185A44BB2FA623", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 6, - "name": "스시쇼우민", - "category_id": "오마카세", - "score": 4.5, - "review": "79", - "address": "경기 성남시 분당구 운중로125번길 14-10 1층 101호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317818070.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5978D218BB2A4B72A77D285A8B7F41BE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4b636ba1dc5ab475fa10880c1b33d47027ddcf29%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0bb99a23020a21d49aa9563150a1d0fb12b3a66c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 7, - "name": "스시코호시", - "category_id": "오마카세", - "score": 3.2, - "review": "125", - "address": "경기 성남시 분당구 판교역로 230 1층 124호", - "operating_hour": "매일 15:00 ~ 18:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 18:30", - "phone_number": 316984777.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F45A61B60EB5B46E6879FBA347F518A5D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5c3885fd097544a3ec1d9f914fae84e8ec1b26cd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1ebb2f284e7d53a079b39b61a4b3ad5c58170435%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 8, - "name": "스시다케루", - "category_id": "오마카세", - "score": null, - "review": "128", - "address": "경기 성남시 분당구 판교역로10번길 12 1층 102호", - "operating_hour": "화~일 15:00 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317017017.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB7D09985464049DC9D92A7A5FD6A448F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD13F4EFCFBBA43ACB60C0152E851E2AD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2AC57343D981406F8CB22BC3EBF22F0C", - "convenience": "편의시설 정보 없음", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 9, - "name": "스시이야시", - "category_id": "오마카세", - "score": 4.4, - "review": "31", - "address": "경기 성남시 분당구 판교역로 136 1층 1059호", - "operating_hour": "월~토 16:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 17:00", - "phone_number": 317787017.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1C1B75D5506E4FDE8E12274516368F6D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F68388c1dd2e026fcce022ded771a2c5d0c683e18%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff03ecb322260133977b214c00b8d8b69ef571650%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 10, - "name": "스시히로", - "category_id": "오마카세", - "score": 4.0, - "review": "27", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 109호", - "operating_hour": "월~토 09:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "09:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEB643CE18C924B2692F82E4EBAAF7B9A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7963BFBA778649D29054BFCB477DA484, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4192F7FD7B9344D7937CC5AE1202F479", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 11, - "name": "Ymr커피", - "category_id": "오마카세", - "score": 4.8, - "review": "84", - "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 1-100호", - "operating_hour": "매일 10:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 17:00", - "phone_number": 317077678.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD804138C655040F29CBB18A554CF0563, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F888980cf6a790d094fe116b23b3af283cbfc8d09%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F78341be76a32565127f8c86f4486c88c8c1f61e3%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 12, - "name": "스시료코", - "category_id": "오마카세", - "score": 4.1, - "review": "120", - "address": "경기 성남시 분당구 수내로 38 두산위브센티움1 1층 101호", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 317192013.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F09E5E4B3DB304A3CA5AD1B74ABADBB84, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDD6DAC8405584EF8B84D67FF4BBFB022, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa475477d9bc74c383f919e196cdc882b5f6bbb46%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 13, - "name": "스시강", - "category_id": "오마카세", - "score": 3.9, - "review": "17", - "address": "경기 성남시 분당구 수내로 38 1층", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317119907.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8D73A3D3C1BC42BCA966466C74D973C7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc96dcac2b5f1e6ea56cdce42907cdc11095ea7ff%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb3ea1fb1be8e54eb761c3a8325cff1fa6dcb5a43%3Foriginal", - "convenience": "WIFI", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 14, - "name": "스시고산", - "category_id": "오마카세", - "score": 3.3, - "review": "88", - "address": "경기 성남시 분당구 백현로101번길 16 2층", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": 317174353.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE565E92BC56744468AA41F74D647BC87, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2150cddb23b4b2282b1acd89eaf6951eb06a2943%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa516594187ba450d289ddb5ddb76c830e89d05bb%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 15, - "name": "오마카세오사이초밥 정자역점", - "category_id": "오마카세", - "score": 4.1, - "review": "1,253", - "address": "경기 성남시 분당구 정자일로213번길 10 성원상떼뷰리젠시 101동 107호", - "operating_hour": "매일 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 50714900544.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F58289156DADF4342AAB63EC40B5961C3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7E1CC18E36BA4E118A1E18CFD6D973CD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEE6D3A8666DD45D4BA11F6B115C57C3A", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 16, - "name": "스시언", - "category_id": "오마카세", - "score": 4.4, - "review": "120", - "address": "경기 성남시 분당구 정자일로213번길 18 성원상떼뷰리젠시 201동 102호", - "operating_hour": "월~토 15:00 ~ 18:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 18:00", - "phone_number": 1071329069.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F23E08E4C9AA840ACAF4146D0E5B1B44A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5612EF377BE64E1ABB6EFB8BB933462F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F094E3C58AE824D64BD93F4875BCC94E8", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 17, - "name": "스시쵸우센", - "category_id": "오마카세", - "score": 3.2, - "review": "39", - "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 1층 104호", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 317040207.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA9B333A7B25A4120844B2AE904F62CD1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC20C9F0FB3354CD3A82348923009C090, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F523f6727fe320d03bc33de9376c4c05fb8afe13b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 18, - "name": "하루초밥 이매점", - "category_id": "오마카세", - "score": 4.9, - "review": "1", - "address": "경기 성남시 분당구 판교로 442 우일프라자 1층 102호", - "operating_hour": "매일 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 17:00", - "phone_number": 7076723222.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F600cd94b442375e769aa548fdb174407648c3f6c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdfe52beac601048981a5d3bc070e77dabd5bf8a7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F600cd94b442375e769aa548fdb174407648c3f6c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 19, - "name": "유쉐프의도시어부", - "category_id": "오마카세", - "score": 3.2, - "review": "32", - "address": "경기 성남시 분당구 정자일로 192 지파크프라자 1층 103호", - "operating_hour": "월~토 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 01:00", - "phone_number": 317171678.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB1A82CD52C19469CBC4E246E4648F7E8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9B1ABCF5A7B34E73800E9F72545E9ADD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB55A233F46D74B8885A2939A8CF59B92", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 20, - "name": "서현초밥", - "category_id": "오마카세", - "score": 4.3, - "review": "18", - "address": "경기 성남시 분당구 서현로 192 야베스밸리 1층 102호", - "operating_hour": "월~토 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F229704422C0642E28C1340EFAB1D3C64, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5b64ed6593c2135cdc87d71eed036bb1abb04edc%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9d0aaf7023d1ec92a542726388d30ad4797f3798%3Foriginal", - "convenience": "동물출입\n주차\n놀이방\n흡연실", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 21, - "name": "오도루네코", - "category_id": "오마카세", - "score": 5.0, - "review": "14", - "address": "경기 성남시 분당구 내정로173번길 49 궁전프라자3 1층 128호", - "operating_hour": "화~일 11:30 ~ 20:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:30 ~ 20:00", - "phone_number": 7077692074.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F53B243AB02D44B8797B567138D46D8BC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBB91DBEF2A3C4DC3A2BE6985E4D57E01, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB3BE6AAA60F249B2B75BA5E3453A5999", - "convenience": "WIFI\n주차\n흡연실", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 22, - "name": "금호생선초밥", - "category_id": "오마카세", - "score": 2.5, - "review": "5", - "address": "경기 성남시 분당구 내정로165번길 38 금호행복시장 2층", - "operating_hour": "매일 09:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:30 ~ 21:00", - "phone_number": 317118093.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F208BEC644F3A47519D78AE35DFC053D0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F32c5d1a22962ad9f4404b4276c84b60a1e8e71fdcf09a7cf976706200a684939, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff5157f99bac8d45a9c503da7f8a4ea3b626028aac4bb9a607fdcc6f249acd08b", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 23, - "name": "슌", - "category_id": "오마카세", - "score": 3.7, - "review": "148", - "address": "경기 성남시 분당구 장미로 42 야탑리더스 124,125호", - "operating_hour": "월~토 16:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 02:00", - "phone_number": 317095795.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 24, - "name": "스시하루쿠", - "category_id": "오마카세", - "score": 5.0, - "review": "52", - "address": "경기 성남시 분당구 판교대장로7길 5-19 1층 102호", - "operating_hour": "매일 15:00 ~ 18:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 18:00", - "phone_number": 317133562.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF4BC3235226D4FFFBC4FDCFA8BA9D1CA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffcbac375d59ab8dea314b224f903e3d0c398d8b0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8dc0baea6dfde28b0aa872d9c790e37a13588d5a%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 25, - "name": "스시소라 정자점", - "category_id": "오마카세", - "score": 4.3, - "review": "381", - "address": "경기 성남시 분당구 성남대로331번길 13 3층", - "operating_hour": "월~금 12:00 ~ 21:50", - "expanded_days": "월,화,수,목,금", - "time_range": "12:00 ~ 21:50", - "phone_number": 317172700.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEFA667B42F9C4764B21B0A22B0F8ABBC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0689b83e234b9df46c81e6353cfe87b6c2317d60%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb422b4d43cb850afbca03924f1eada08da43b9b1%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 26, - "name": "사카나야", - "category_id": "오마카세", - "score": 4.2, - "review": "85", - "address": "경기 성남시 분당구 쇳골로17번길 19 1층", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 317020300.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F8E33A827BD2E49B99FB364B0BE692890, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1E38EB8E94534ED1B347FE566E470AFF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F67ba36da566e51a25bbd37134601bca50d78c902%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 27, - "name": "부성초밥 야탑본점", - "category_id": "오마카세", - "score": null, - "review": "29", - "address": "경기 성남시 분당구 성남대로925번길 11 1층", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317033999.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEDBFC3236BDF4C4A825F189896B96CC2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F391CB9C062604CA19540B40E4EEDA50E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6F9718BF8043414ABBC97BBFBF89DCA4", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 28, - "name": "오마카세의", - "category_id": "오마카세", - "score": 3.0, - "review": "31", - "address": "경기 성남시 분당구 정자일로 135", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F53F767AD8DCB4CB49F65681D68C8AC49, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb8b837f2b88c7902853755825c67b8c6e158c624%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb29e8126e11e0a3bcd1ed1cfc7c73c8169d45ebb%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 29, - "name": "스시야", - "category_id": "오마카세", - "score": 3.6, - "review": "225", - "address": "경기 성남시 분당구 정자일로 146 엠코헤리츠 1단지 101동 203호", - "operating_hour": "월~토 12:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "12:00 ~ 22:00", - "phone_number": 317176689.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalad_thumb%2Ft%2Fe5b4e2b10eadeb23b657335987bf2a0fafc7488b, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalad_thumb%2Ft%2F3a2cd6d00c84f4fa8358cb31bc365e0483d4be8b, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalad_thumb%2Ft%2Fa7002bcd95e78bf56ab015e978d6da7049c7bf56", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 30, - "name": "쿠모야", - "category_id": "오마카세", - "score": 4.4, - "review": "25", - "address": "경기 성남시 분당구 성남대로925번길 16 201동 상가 203~207호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317022270.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FC103442115B14F6DA9DB891BCAB681B7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F3ECA2081EECB480B8A0875DC92EA696C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffcc915401d0860a0e6eae7e88d43b1425c540a79%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 31, - "name": "스시윤", - "category_id": "오마카세", - "score": 4.8, - "review": "65", - "address": "경기 성남시 분당구 성남대로926번길 6 야탑대덕프라자 310호", - "operating_hour": "월~토 18:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "18:00 ~ 22:00", - "phone_number": 7048334506.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC34BA02C02844612897AC25DEB1E6DF2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC7964F0D061045F1B2C3B7D615E50ABB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa12254a64ba070a255a635ad48471d02632501ee3b45a5400af89094e624e32d", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 32, - "name": "만리어 장어 판교유스페이스점", - "category_id": "오마카세", - "score": 3.5, - "review": "25", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스몰1 지하1층 A동 113호", - "operating_hour": "월~금 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 22:00", - "phone_number": 1026697017.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F78896D430EE3432385C063F804A9629A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F3CF90648696940299A5FA4ECB18D274A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F1E8D07650898447A8F42F143A4270EC3", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 12, - "restaurant_id": 33, - "name": "수요리식당", - "category_id": "오마카세", - "score": 5.0, - "review": "3", - "address": "경기 성남시 분당구 판교역로 230 B동 지하1층 b126호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316978996.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7B7454E6C33D4958ABFED7A48B921AEE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F911C56640D934232BD2D82DF3B0A518F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE02EA25299564DF4AC5C2EA8258C1BA2", - "convenience": "동물출입\n휠체어사용\n놀이방\n흡연실", - "caution": "유의사항 정보 없음", - "is_deleted": false - } -] \ No newline at end of file diff --git a/storage/input_json/restaurants_table2.json b/storage/input_json/restaurants_table2.json deleted file mode 100644 index 6018af7..0000000 --- a/storage/input_json/restaurants_table2.json +++ /dev/null @@ -1,5340 +0,0 @@ -[ - { - "db_category_id": 2, - "restaurant_id": 1, - "name": "삿뽀로 판교점", - "category_id": "일식집", - "score": 3.5, - "review": "93", - "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 2033호", - "operating_hour": "매일 11:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:30", - "phone_number": 3180165990.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE606CFA1CB824BA4AE71DA0153F55E98, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb17fceb3fd0bfe9e39f63ef1be8aa86858ae5b61%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F484da537b8d8c42b64db7c4562f49312409299f7%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 2, - "name": "긴자 판교점", - "category_id": "일식집", - "score": 3.3, - "review": "105", - "address": "경기 성남시 분당구 판교로 185 신화푸드빌리지 3층 301호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317029317.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F236B2B4F55763D8E42, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9abf41100b3f195e8ca1c5570ba9e4b964de91ac%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffa8842f45688b5a5e812afedd1cb9b98a614dd13%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 3, - "name": "도원참치", - "category_id": "일식집", - "score": 4.2, - "review": "975", - "address": "경기 성남시 분당구 판교역로192번길 14-2", - "operating_hour": "월~토 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 23:00", - "phone_number": 3180164588.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F018BEFE5225D49F296596D5866EBF734, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F740C41374D50487C9C4BB51919F26454, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA5EEDA1294AD49ADBD9857B05F4563F8", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 4, - "name": "다이호시", - "category_id": "일식집", - "score": 3.8, - "review": "1,349", - "address": "경기 성남시 분당구 판교역로10번길 6 1층", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 317058322.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FA3532FA38DD7485F8E952DB6C8D1F521, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5FC43EF6CB1949D88ADA25B314418035, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F8877FE4598C24C459ED55A340EEDC34D", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 5, - "name": "후라토식당 아브뉴프랑판교", - "category_id": "일식집", - "score": 3.7, - "review": "525", - "address": "경기 성남시 분당구 동판교로177번길 25 2층 220호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 316077090.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_294781750, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F0497301F15384E5AACD535C63C71B08D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F2608D192D7F443CF8A01526A296D6BEA", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 6, - "name": "아나바", - "category_id": "일식집", - "score": 4.2, - "review": "131", - "address": "경기 성남시 분당구 대왕판교로606번길 58", - "operating_hour": "매일 14:20 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:20 ~ 17:00", - "phone_number": 316266002.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1947D433B11D472182719FE3028B2A3E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F12A8A68448964DFD9302102308BBD7B3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9c1b66c606f45bda0ac539e9f5d1be9f4264fc008502195f5c3ab2d1011ce0ab", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 7, - "name": "판교매일식당 판교본점", - "category_id": "일식집", - "score": 3.5, - "review": "81", - "address": "경기 성남시 분당구 판교역로192번길 14-2 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBAC97A276A3340FD9246B7AC6A8B7860, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4c7b3641a6660d71941c5fb24a1247b61719760e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F97d830f498f5f106efb8bb7f40eeaf19812168fe%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 8, - "name": "스시쿤 판교", - "category_id": "일식집", - "score": null, - "review": "128", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스몰 1차 지하1층 115호", - "operating_hour": "매일 15:00 ~ 18:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 18:00", - "phone_number": 316286972.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0F75D52459234FFEB5730B3021D5E1ED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAzMDZfMjU5%2FMDAxNjc4MTA0OTAwOTg1.JeSJ1FAemg4-wGkfqdeTIDK1XazGzxev9Yn5-heBLgAg.DU0XLQL5llOsE8vbv1s2ySJNZb0qsTS2VwWYH4C97vcg.JPEG.hleezzang%2FSE-66859AFE-F1D1-4507-BD38-1161AD979173.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAzMDZfMTg1%2FMDAxNjc4MDk2MDYwMjc1.Caic-G4miiBSjRWeRn-qDbKan_z6zivhynWzZvbqMocg.mZ4CtgVQDdSdeBesy3fEP2jmFztz5cQK5CIdg0A6MVog.JPEG.hleezzang%2FIMG_7813.JPG%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 9, - "name": "스시가좋아서", - "category_id": "일식집", - "score": 4.7, - "review": "33", - "address": "경기 성남시 분당구 판교로 372 스타식스코아 2층 202호", - "operating_hour": "화~일 15:00 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317814920.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FFBDE778B4FC64F16AFEB7A9EEABD5D98, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F856202271C024BF6B374DFC273C87217, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0cf78c1b5e5b880c9463b8ad4a34079286666245%3Foriginal", - "convenience": "주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 10, - "name": "스시혼 판교본점", - "category_id": "일식집", - "score": 3.5, - "review": "3", - "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층 137,138호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2220A0445546FC2A1E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F21399A415546FC470D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F451f9fa3c51308e90a7ac5a84bc1e3b76b860b27%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 11, - "name": "카츠쇼쿠도우 판교본점", - "category_id": "일식집", - "score": 4.0, - "review": "79", - "address": "경기 성남시 분당구 판교역로 152 알파돔타워3 지하1층 9호", - "operating_hour": "월~금 11:30 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 21:30", - "phone_number": 316227134.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FE08DFB864DAB4371BA443B43E55B8FB7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F18E9BA5208934147955077A5B5CF083A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F6718D6BC0BE1420A82542A7F5AA1F4ED", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 12, - "name": "오복수산 판교점", - "category_id": "일식집", - "score": 4.1, - "review": "353", - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 2층 3호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 50713987544.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0D8D462CA4934A30BF145D89DA9B5A10, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7486FC32212B471E8AA2D17917AC5D31, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA1A4857FBD54494BA5CD81863B56B096", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 13, - "name": "판교초밥", - "category_id": "일식집", - "score": 3.5, - "review": "18", - "address": "경기 성남시 분당구 운중로125번길 4-7 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317037607.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD69BB95F79404E63843290BE9AD79BBF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb0d0f8db61985b3fc9d191ab55eb5137bc9befd4%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fabb4852c155dd5bbd33e0cd91f1c4d40052f0b16%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 14, - "name": "이춘복참치 판교", - "category_id": "일식집", - "score": null, - "review": "141", - "address": "경기 성남시 분당구 동판교로177번길 25 2층 216호", - "operating_hour": "매일 14:30 ~ 16:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 16:30", - "phone_number": 317044558.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9064B3F96BFB4028BF77CB26DDED1033, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F41F39DA899DE493397C4606759348595, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F29A2888FF5E84749994ACD5D0968CA51", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 15, - "name": "히카루후", - "category_id": "일식집", - "score": 3.9, - "review": "305", - "address": "경기 성남시 분당구 동판교로177번길 25 아브뉴프랑 판교점 2층 217호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 316260073.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1053499694, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1198859513, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_166687543", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 16, - "name": "스시선", - "category_id": "일식집", - "score": 4.4, - "review": "31", - "address": "경기 성남시 분당구 판교로 375 메가스페이스1 1층 105호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317018880.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF09DA459EB464B8991DCE64F50BBABB1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe05da42aaa9fb0bd8f88f354a8a45c8df62fa50c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb43a9ec90f9341b062323d1e18b8ea71b4819cab%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 17, - "name": "오마카세 오사이초밥 판교점", - "category_id": "일식집", - "score": null, - "review": "1,696", - "address": "경기 성남시 분당구 판교역로 180 알파타워 1층 106호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 50714020542.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBB4E387222A14F2694FF39F9D3B114DF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2864117C1C3D483EA0F929D9F80B33E5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8AEE1BB53C4B4CA2BD490FFD22E6FB60", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 18, - "name": "규카츠정 판교점", - "category_id": "일식집", - "score": 4.8, - "review": "735", - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 115호", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 7043236201.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F961490C8A5C34E01821C9D7C4CF50E2C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb8865d98230e8e0945cea2f673e483d9d56931ad%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F88d9b1f0e84ba0fed94efa2d2e0adb94f289de32%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 19, - "name": "소바니우동", - "category_id": "일식집", - "score": 4.1, - "review": "73", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하 122호", - "operating_hour": "월~금 14:00 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:30", - "phone_number": 317242711.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F66CEE6717F8C48F4A8B2A6A092F66B75, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F45a2b7f4581fa2782d85b38dea695111099f5146%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fec0c628c71f6d6b294a4f06553d57b9328d93add%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 20, - "name": "서호돈가스 판교점", - "category_id": "일식집", - "score": 3.9, - "review": "19", - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 s동 1층", - "operating_hour": "월~금 14:50 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:50 ~ 17:00", - "phone_number": 317893630.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F25B9E0F47F6642B8AC806ABB88AA2BCA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa7c18003e562c10586a2140f3d5721a610a18209%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6d69f3458810faec57f27285d98e322aa900171d%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 21, - "name": "풍류 더 블랙", - "category_id": "일식집", - "score": null, - "review": "30", - "address": "경기 성남시 분당구 대왕판교로606번길 39 럭스타워 지하1층", - "operating_hour": "월~금 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 24:00", - "phone_number": 1040307311.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F25EBE932F75E464686DE33718C7B3D70, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F11C2D894BD3C48DEA757CAB7F179A4ED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8707A04069C047C98E7FF09A9F656073", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 22, - "name": "클준빛날영", - "category_id": "일식집", - "score": 4.3, - "review": "64", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 126호", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": 5067189296.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA80224C7E6A54A74B91B6C0374D0957C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6a9df9d8f811690709ad127f54381ec5fec3ccaf%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2bbc6586f6cd5bcb6124fb7f386bbe45b77331d1%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 23, - "name": "킨파", - "category_id": "일식집", - "score": 4.2, - "review": "61", - "address": "경기 성남시 분당구 판교로227번길 6 판교테크노밸리브릿지타워 1층 106호", - "operating_hour": "월~금 11:10 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:10 ~ 21:00", - "phone_number": 50713213677.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FBB068973D37E40CCB59D7C75A85CF266, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9CC36D6486984B9D90DC836DF27C3177, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2B4CFDAC9D5F4DD588A93741A4EF86A8", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 24, - "name": "천야", - "category_id": "일식집", - "score": 3.6, - "review": "37", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 B동 지하1층", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317398335.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 25, - "name": "초루", - "category_id": "일식집", - "score": null, - "review": "89", - "address": "경기 성남시 분당구 서판교로44번길 3-19 1층", - "operating_hour": "월~토 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:30 ~ 17:00", - "phone_number": 317057676.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7A463BF7104C4C19ADFB9F8024241097, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5FA8F2D32F7F4E6AB738EC7EDBF72CC6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F12A8D6821C574F83AD185A44BB2FA623", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 26, - "name": "스시쇼우민", - "category_id": "일식집", - "score": 4.5, - "review": "79", - "address": "경기 성남시 분당구 운중로125번길 14-10 1층 101호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317818070.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5978D218BB2A4B72A77D285A8B7F41BE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4b636ba1dc5ab475fa10880c1b33d47027ddcf29%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0bb99a23020a21d49aa9563150a1d0fb12b3a66c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 27, - "name": "미스터신돈까스", - "category_id": "일식집", - "score": 3.6, - "review": "30", - "address": "경기 성남시 분당구 판교공원로5길 35 1층", - "operating_hour": "화~일 15:30 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "15:30 ~ 17:00", - "phone_number": 3180163389.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB8702ED4DD614F0C83A5B57F4746BE14, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb9aa6faad1ad9f82ea01740bc04ad27d8301fc1a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqfqZsSQ2A_oJL6aeDAYUv1qhNHNHgQVk_img.jpg", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 28, - "name": "스시가오", - "category_id": "일식집", - "score": 3.3, - "review": "20", - "address": "경기 성남시 분당구 판교로255번길 9-22", - "operating_hour": "월~금 14:00 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:30", - "phone_number": 316287828.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD01B5E5D54554C7486EDD2030A52A6A1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F580738a2300e1d7f6c0934b7b66d0f16c0078960%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7d0bb40723cde47ce865d20a8f8d51eb47e79216bfc8333e098c929a8a23686c", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 29, - "name": "기요항 판교점", - "category_id": "일식집", - "score": 4.3, - "review": "383", - "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 1-90호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317078589.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F01B7B46C13ED476CBF881C031AA0408A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F59A8B01E743A471B837DFA4DFD1E3855, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F753D6D75317748CA86C49E1200066D6F", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 30, - "name": "오마카세 스시이찌 판교점", - "category_id": "일식집", - "score": 4.0, - "review": "25", - "address": "경기 성남시 분당구 판교역로192번길 22 판교효성 해링턴타워 2층 201호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317788002.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7C0197CD3349406192730035A78FDF1D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEF1D74DD364947A8A10CDAA9058A9846, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2F1084CC6228464C998DC99760E25967", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 31, - "name": "메종드도쿄", - "category_id": "일식집", - "score": 4.1, - "review": "25", - "address": "경기 성남시 분당구 판교로25번길 16 1층", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 317051030.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2689842FB0D94D6A878026454EA2FA3C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F188e402f3eeeb0d14af0f86d35c338fb0b63fc19%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4bf3840da9449f9b53c3b03e1b7dacf5e1942f53%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 32, - "name": "댓짱돈까스", - "category_id": "일식집", - "score": 3.1, - "review": "5", - "address": "경기 성남시 분당구 운중로166번길 10", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317818259.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FED20197497E1475592DDFBFE09FCC139, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0af488a726fef1a6c1a0f3117e9ed2f71ba76ead%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe96471a1f4a23b9b095dd345062b4e0228aa7dd5%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 33, - "name": "하루", - "category_id": "일식집", - "score": 4.3, - "review": "40", - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 131호", - "operating_hour": "월~토 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:30 ~ 17:00", - "phone_number": 316967588.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F247CF7345706029E1B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MjdfMTI3%2FMDAxNzE5NDc3MTI4Mzc3.nNGII15a5y5VRUhr0V2nxpuCAtSrQi9IYmlG0ciTpDsg.ONo43xmh_bBM3HgYUOuat9F-y9GlfrxI05X1W0yW0HAg.JPEG%2F%25ED%2598%25B8%25EC%258A%25A4%25ED%2585%2594%25ED%2595%2598%25EB%25A3%25A8_6.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MjdfMjQ5%2FMDAxNzE5NDc3MTI4Mzgx.BZdXjPKKgHPiHiyywLZXKOr4QcR3-n2oC4k-LNMuZqkg.NEQrC5f4fUOLuUn1yx7Iih6upj9xCe5Str-Fb4uimFIg.JPEG%2F%25ED%2598%25B8%25EC%258A%25A4%25ED%2585%2594%25ED%2595%2598%25EB%25A3%25A8_5.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 34, - "name": "일상화식", - "category_id": "일식집", - "score": 3.6, - "review": "55", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 226호", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": 317398340.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fec0c7e52e706147ab20192379605875f44c72137%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff87eed3158912271f7390d52e686bf6a5bfcf185%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fec0c7e52e706147ab20192379605875f44c72137%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 35, - "name": "흥도식당 판교점", - "category_id": "일식집", - "score": 4.4, - "review": "282", - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 2층 12호", - "operating_hour": "월~토 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3D820D567AF541B6A20A5CAC09855097, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F8F2C132255DD481DA36CBF8884931F3D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F730a5d73810487ac46927b8d31a73e2a85ae3ac7%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 36, - "name": "야키토리 야키준", - "category_id": "일식집", - "score": 4.2, - "review": "84", - "address": "경기 성남시 분당구 판교역로 178 서건타워 1층 101호", - "operating_hour": "월~토 18:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "18:00 ~ 23:00", - "phone_number": 317076447.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD688F795A2034A83A5F754B289CDACAA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7e3fca58f02c88f47e457e3d7940381c727c7a10%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F17b78eae71b3d3bd75a31f9ce56bb90ec2059e33%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 37, - "name": "스시코호시", - "category_id": "일식집", - "score": 3.2, - "review": "125", - "address": "경기 성남시 분당구 판교역로 230 1층 124호", - "operating_hour": "매일 15:00 ~ 18:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 18:30", - "phone_number": 316984777.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F45A61B60EB5B46E6879FBA347F518A5D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5c3885fd097544a3ec1d9f914fae84e8ec1b26cd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1ebb2f284e7d53a079b39b61a4b3ad5c58170435%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 38, - "name": "스시다케루", - "category_id": "일식집", - "score": null, - "review": "128", - "address": "경기 성남시 분당구 판교역로10번길 12 1층 102호", - "operating_hour": "화~일 15:00 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317017017.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB7D09985464049DC9D92A7A5FD6A448F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD13F4EFCFBBA43ACB60C0152E851E2AD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2AC57343D981406F8CB22BC3EBF22F0C", - "convenience": "편의시설 정보 없음", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 39, - "name": "오레노카츠 판교점", - "category_id": "일식집", - "score": 2.4, - "review": "215", - "address": "경기 성남시 분당구 판교로 372 1층 104~105호", - "operating_hour": "매일 14:30 ~ 16:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 16:30", - "phone_number": 317015989.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9A54483243F444419750E34C80942D05, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdd40c60ad870d6e67f7f7d03ac98855e9553f4de%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F59827F1E041C4409834DD2BC94E768AB", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 40, - "name": "스시이야시", - "category_id": "일식집", - "score": 4.4, - "review": "31", - "address": "경기 성남시 분당구 판교역로 136 1층 1059호", - "operating_hour": "월~토 12:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "12:00 ~ 22:00", - "phone_number": 317787017.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1C1B75D5506E4FDE8E12274516368F6D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F68388c1dd2e026fcce022ded771a2c5d0c683e18%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff03ecb322260133977b214c00b8d8b69ef571650%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 41, - "name": "네코부루 본점", - "category_id": "일식집", - "score": 4.2, - "review": "19", - "address": "경기 성남시 분당구 판교로319번길 13 디테라스 1층 112호", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 316060112.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd9a95cac2281926266ec239eed25ab58abc79f6f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1c56ad1dfed68bdb21d0404dbafe1717df624c86%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd9a95cac2281926266ec239eed25ab58abc79f6f%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 42, - "name": "서호돈가스", - "category_id": "일식집", - "score": 3.9, - "review": "30", - "address": "경기 성남시 분당구 판교로255번길 9-22 판교우림W-CITY 지하1층 106호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 316287729.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F39CA195D7B724A949CCED913E48F37C0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fabdaa9d104df4bf9a87b970a9dcdd30c9d999c00%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd6ebd55d956bc4ebc94eecbc5f1623ca545ba3b5%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 43, - "name": "야끼니꾸 쿄우", - "category_id": "일식집", - "score": 4.5, - "review": "53", - "address": "경기 성남시 분당구 판교역로 138 힐스테이트 주차타워 201동 1층 105호", - "operating_hour": "월~토 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9954EEEBED2746E9871A10E2E6F648E5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjVfNDkg%2FMDAxNzMyNTI2NzA3ODcy.cfqVHFdEXNOzKJKMBvU6lKIesl2sdATxWtrXjiyMTXQg.ni04UpJbhvNEov9B_hkwS0kY4Sp-k-fczGL5RyRPs8Ig.JPEG%2Foutput_2380037815.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjVfOTkg%2FMDAxNzMyNTI2NzA2NTU5.cM1Z0gkIV7_lDYF0gwk-27lgypFUBYoggqxDwAbf4LAg.uKS9D3Kfrbr7S4fhTE1SLQH8PthvluIj46CboigRVNsg.JPEG%2Foutput_3745208567.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 44, - "name": "카소 미야 서판교점", - "category_id": "일식집", - "score": 4.0, - "review": "39", - "address": "경기 성남시 분당구 판교공원로3길 2 1층 101호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317077545.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9320681840564C3191E96E7EEF7D3112, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9803742A45284581A1F0BA8033F8DA43, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBB1B39099DE7432B8B5B2A0DF714F3E7", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 45, - "name": "백소정 판교점", - "category_id": "일식집", - "score": 1.0, - "review": "16", - "address": "경기 성남시 분당구 판교역로 240 110호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDA02B8964987460D9FF20B322C2427BA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F30d509da7dc8f1cf8f078b16a97d15a341efe072%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbSmJ1Z%2FbtsKQF5skvB%2FA2KJda99cgV97Ml08CvKQk%2Fimg.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 46, - "name": "효 판교점", - "category_id": "일식집", - "score": 2.8, - "review": "29", - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 9층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 3151701970.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFC7712A708854DD48FDEC9086C98B63F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9625F7CA5F2A49C3A1B2DFD78F5FF9EF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC56711F46CAC4DCD9FD233A05A273349", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 47, - "name": "스시가오", - "category_id": "일식집", - "score": 3.6, - "review": "23", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 지하1층 121호", - "operating_hour": "월~금 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 22:00", - "phone_number": 317242822.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD01B5E5D54554C7486EDD2030A52A6A1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F580738a2300e1d7f6c0934b7b66d0f16c0078960%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7d0bb40723cde47ce865d20a8f8d51eb47e79216bfc8333e098c929a8a23686c", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 48, - "name": "소코아 판교점", - "category_id": "일식집", - "score": 4.2, - "review": "367", - "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크아파트 상가동 1층 65호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 50714797752.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FBA06998F547E4332A629650BACB8A5CE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F974a43695792fe6cc43e4932045a22b8f46707dc%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F335c13bb7c702ecead32138b46ed96a4ba1889e0%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 49, - "name": "배키욘방 판교직영점", - "category_id": "일식집", - "score": null, - "review": "889", - "address": "경기 성남시 분당구 대왕판교로606번길 10 119~121호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE14937097A4D40E8B95534136EDDA96B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDFfMTE2%2FMDAxNzI1MTgxMzQwMjgy.HnOKwMU-n40irJ_Hx-VFwy4G5H7ECEJ-0xXwmlFxmn4g.EqWt9AzNH7jUIUCD045tKC5bLgBn_RXknAjNat4qUtEg.JPEG%2FSE-91d696d9-6840-11ef-be1f-d33e2b0ec6a3.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDFfMTk3%2FMDAxNzI1MTgxMzI3MjQz.HsrEyzBsQkWvDIwj4y7Xdllwb6JV7roFSIqZKUyLfe0g.WxK5JP68aV7S--bqNQhmvdzexM9_G4DrmwP3bO49W94g.JPEG%2FSE-91b48fe0-6840-11ef-be1f-ab5e80b5ca8c.jpg%3Ftype%3Dw966", - "convenience": "WIFI\n주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 50, - "name": "모로모로", - "category_id": "일식집", - "score": 4.7, - "review": "7", - "address": "경기 성남시 분당구 운중로 129", - "operating_hour": "매일 10:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 24:00", - "phone_number": 3180171267.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8ef91669f505826cb2357a836de758bd2ac63c63%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdd013b77aa3939be992b507acf822642b094236f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fbe727995c94a2004215f121cff4061767f605312%3Foriginal", - "convenience": "휠체어사용", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 51, - "name": "연어로만 운중동점", - "category_id": "일식집", - "score": 4.1, - "review": "9", - "address": "경기 성남시 분당구 운중로 128 1층", - "operating_hour": "월~토 15:00 ~ 16:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 16:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE1FCBC0E910D4504A7004D5B3D97AC9E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffabb7a81b7c8047a84aaf0befccdbf142522800f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd89b7f42f466a46160c69e209abc184532c3b0bf%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 52, - "name": "예술작품을 빚다 비즐", - "category_id": "일식집", - "score": 4.0, - "review": "125", - "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어 S동 1층 126호", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 317893530.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F586F92A4034049C1A23F9B4299DEB386, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F42ff5e565035eca5b5eb12ac0a39ad9818bd8ffe%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F97d3632f2f87aaa120bda171971a6ae700503d5b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 53, - "name": "아세야마 판교우림W점", - "category_id": "일식집", - "score": 3.4, - "review": "16", - "address": "경기 성남시 분당구 판교로255번길 9-22 2층 209호", - "operating_hour": "월~금 11:30 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 21:30", - "phone_number": 316288123.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F60D6A06C1B1745C385FDAB50B9425918, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fec7a1107917c15679a456038465ad0ffd45052ed%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqgH5kpqpl_0ypbniVWMKGuffigoFOdU0_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 54, - "name": "하즈벤 판교점", - "category_id": "일식집", - "score": 4.5, - "review": "5", - "address": "경기 성남시 분당구 판교역로 136 힐스테이트판교역 판매시설 1층 1002호", - "operating_hour": "매일 10:30 ~ 19:50", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 19:50", - "phone_number": 7077669397.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB7D94E20B9FC424489D655F814C3B00C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F89E50FCA38214A60AF9FD7AF48EDC431, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2BD82694A6DC430CA1236F96ABC0E1E6", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 55, - "name": "역전우동0410 판교역점", - "category_id": "일식집", - "score": 4.3, - "review": "20", - "address": "경기 성남시 분당구 대왕판교로606번길 31 102호", - "operating_hour": "월~금 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 21:00", - "phone_number": 317816999.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAA619D5B576648B9B7659EDFB0FB8DC4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2d36a050cb10d9f711e72926238d0effbf5f4a89%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6c2089495cafe21c4bea11b51c066a90b1f5fb6c%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 56, - "name": "빅피쉬", - "category_id": "일식집", - "score": 4.5, - "review": "17", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 1동 1층 145호", - "operating_hour": "월~목 16:00 ~ 01:00", - "expanded_days": "월,화,수,목", - "time_range": "16:00 ~ 01:00", - "phone_number": 50713288917.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 57, - "name": "스시집막내아들", - "category_id": "일식집", - "score": 3.1, - "review": "27", - "address": "경기 성남시 분당구 판교역로 136 힐스테이트 상가 7-1블럭 1층 1037호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 3180239877.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3FF6F0286E904A58854DAB9FEF92C40E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff2419301c7558023dd05bb04be77300c8a463679%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8764c44a45c7b7c054b216f078163bdaa9023478%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 58, - "name": "하나시", - "category_id": "일식집", - "score": 4.5, - "review": "13", - "address": "경기 성남시 분당구 동판교로52번길 21-2 1층 101,102호", - "operating_hour": "매일 16:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 01:00", - "phone_number": 317178233.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 59, - "name": "츠키야", - "category_id": "일식집", - "score": 5.0, - "review": "45", - "address": "경기 성남시 분당구 분당내곡로 151 삼도타워 1층 111호", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": 317080827.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F96BA7B303E33458E96C736897565A087, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F35BBB414FE184AACA815D22931E8ED54, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F293F5518F0614F9BA7BBB05BE819B437", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 60, - "name": "카도", - "category_id": "일식집", - "score": 4.3, - "review": "84", - "address": "경기 성남시 분당구 판교역로 184 1층 103호", - "operating_hour": "월~토 17:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:30 ~ 24:00", - "phone_number": 7042430707.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 61, - "name": "포크포크 매콤돈가스&칡불냉면 판교점", - "category_id": "일식집", - "score": 2.8, - "review": "12", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 지하1층 104호", - "operating_hour": "월~금 10:00 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 21:30", - "phone_number": 316286629.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F98BBFCC33E6844C1A8D83D5DBE030F11, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqewqxxM8K_5U3v35HncWMAZlUfNRU4GK_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqeuMOvvYs_kmqFiHmpAxoAJfU55zx9JK_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 62, - "name": "이즈미 현대백화점판교점", - "category_id": "일식집", - "score": 3.5, - "review": "22", - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 9층", - "operating_hour": "매일 14:50 ~ 16:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:50 ~ 16:30", - "phone_number": 3151701980.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F684090B427694C908C4C7621C0943C0B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F022164f555389752233592349faa359a9fdbf65e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F089048c2f974218b7949553d2a027065fa5c90e4%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 63, - "name": "교소바", - "category_id": "일식집", - "score": 3.2, - "review": "25", - "address": "경기 성남시 분당구 대왕판교로645번길 36 NS홈쇼핑 별관 지하1층", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 316068521.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDA58265DB53D440D9A992FC3661F7B7A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffa4dceabb4d6adefb757fc27438fc1d30655812f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F31482340a6efec9947feffb114690c95ab73a00a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 64, - "name": "카츠쇼신", - "category_id": "일식집", - "score": 4.2, - "review": "425", - "address": "경기 성남시 분당구 동판교로177번길 25 아브뉴프랑 판교 2층 204호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F93D37E3BBE0B41768E5379AC6EBFDD11, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FE77EA0F541D242CB9241D09C29B9F847, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F594806233B2844D19A606DA9E4043C23", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 65, - "name": "스시히로", - "category_id": "일식집", - "score": 4.0, - "review": "27", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 109호", - "operating_hour": "월~토 14:30 ~ 16:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:30 ~ 16:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEB643CE18C924B2692F82E4EBAAF7B9A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7963BFBA778649D29054BFCB477DA484, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4192F7FD7B9344D7937CC5AE1202F479", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 66, - "name": "하츠", - "category_id": "일식집", - "score": 3.8, - "review": "30", - "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움 라스트리트 상가동 1층 111호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 3180397776.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA8B11DCBAE6F49AA967FE2352B40CF33, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffbd2f493a23ecb9c196a8f786f2c70d60152c51f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F70969e49516261cb2c8d03800d65cc7edb6fde0e%3Foriginal", - "convenience": "WIFI\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 67, - "name": "고쿠텐 판교점", - "category_id": "일식집", - "score": null, - "review": "61", - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 B104,B105호", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": 3180395747.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F555F7E7CBE74449DB6C22EFC43882E7B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAyMDdfMzUg%2FMDAxNjc1NzUwNjg4MDAz.pcecWUHLrqhYrnfZvzZCTQzNd4zHmrfCmblGZkY0kuIg.H0-CkufxH5HbR8XjrAZU0UCEmSLQsXfQjZQBVzSwXMUg.JPEG.gpfl620%2F20230207%25EF%25BC%25BF114259.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAyMDdfNzUg%2FMDAxNjc1NzUwNjg2Nzgx.xjyuRtdksuOPdPoOI6U78mSv0ZVoVlnmG0udnztds0wg.AjE--pqcJRiOcbKQDTHYZUzuHx2u5kF55KAUVQRcIFog.JPEG.gpfl620%2F20230207%25EF%25BC%25BF114218.jpg%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 68, - "name": "진가와 현대백화점 판교점", - "category_id": "일식집", - "score": 2.6, - "review": "51", - "address": "경기 성남시 분당구 판교역로146번길 20", - "operating_hour": "월~금 10:30 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701011.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F35384FCCC0634677A1D7D339DAB8B20A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8a9d1bcc1483ccde17262dfb0e5f9a76d9ae56a6%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9652a3077c7b0fbff2e7891a9cba22b16ec28635%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 69, - "name": "스시나나", - "category_id": "일식집", - "score": 4.6, - "review": "73", - "address": "경기 성남시 분당구 판교공원로1길 61", - "operating_hour": "화~일 14:50 ~ 17:30", - "expanded_days": "화,수,목,금,토,일", - "time_range": "14:50 ~ 17:30", - "phone_number": 317071626.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9BDEE1C106F749B8B1176D18301D5B38, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F96e5f405d1383e546a262f15d0349b37b6a50cab%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb77e7bca5a1db760ca47fb209281286065842aaf%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 70, - "name": "정돈 현대백화점판교점", - "category_id": "일식집", - "score": 4.1, - "review": "556", - "address": "경기 성남시 분당구 판교역로146번길 20 9층", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 3151702896.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2D159B5DEC34441283099002E1EEC48D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F75a7d6d2cbc4713279aba0d3e8037762f99624c0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8a1ecaa9a721638788e7137cd2820bdd2e02b976%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 71, - "name": "하코야 판교아브뉴프랑점", - "category_id": "일식집", - "score": 2.7, - "review": "45", - "address": "경기 성남시 분당구 동판교로177번길 25 아브뉴프랑 2층 222호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0804E8FA47F04B7AA8B1215CE0072695, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2880395233184a92ab7d17d04cd2c17716b334ab%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9f858b3f8936061a337695411c761447c45cba59%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 72, - "name": "미도인 판교테크원", - "category_id": "일식집", - "score": 3.3, - "review": "1,334", - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 지하1층 31호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 316017407.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F53D6902A6B464629B25ABF78F90945F7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F409DC33A9DD74B41A1E5E61CC562ED94, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB0920B03D39749739755313E58955E7F", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 73, - "name": "마츠노하나 현대백화점판교점", - "category_id": "일식집", - "score": 3.8, - "review": "406", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "매일 10:30 ~ 20:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 20:30", - "phone_number": 3151702032.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F25C9C133B5164F9293D16F8479E60018, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0C1E01C260C44B38861C65819E4FA043, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff60cd84c1a517fc6a22cdf39a915b5fc492a5ab3%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 74, - "name": "쿄다이라멘", - "category_id": "일식집", - "score": 3.7, - "review": "142", - "address": "경기 성남시 분당구 판교공원로5길 1", - "operating_hour": "월~토 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:00", - "phone_number": 316071396.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC95345C5DD4F4E779999B0E88C71820F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE74D9C7D48694FB8947393EF73103FB6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F43e3e7cc6ccf6d408cf4b1a96349fb07f6744f29%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 75, - "name": "고다이주방 판교본점", - "category_id": "일식집", - "score": 5.0, - "review": "7", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 B102호", - "operating_hour": "월,화,수,목,금,일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 316984945.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F434605EF5E344C0A974063319374E7C9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4B1E6E833E4A47129C17E5F6E646A41A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FAD18CB009E084744BFF9ED8942B1E46B", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 76, - "name": "정직유부 판교점", - "category_id": "일식집", - "score": 5.0, - "review": "1", - "address": "경기 성남시 분당구 대왕판교로606번길 31 1층 123호", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": 317057911.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1F4D39704CF548F884E0C5DEBBAD8B69, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDEDB8E3F62D64295910DCA9098DF168D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDVfMjE2%2FMDAxNzI1NTE5NzM4ODg0.xsDo1_6yw-XMpj-pWA6crgw828cM0_pK0ENfjOvGdQAg.lf59TJ3NZf1Am6Ikv_dxMxuc4AaGTZS7L8zf_XmhoZMg.JPEG%2FIMG_6949.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 77, - "name": "코이라멘 판교점", - "category_id": "일식집", - "score": 3.0, - "review": "12", - "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 지하층 B113호", - "operating_hour": "월~토 11:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 20:00", - "phone_number": 316982979.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8A6CB866588449BCA75A5C00108D93C7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2C4521D807654992B81688356C3D6C91, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCBF707D86FE54D48A711F840038CF0AF", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 78, - "name": "이황식당", - "category_id": "일식집", - "score": 3.9, - "review": "75", - "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 1층 104호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1458D83B85A844E4B45E2C69B1CAB4BF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1ff343e8fd2926df431610348601734eea2d918f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6ea8ceb6f67530ecfe7b7687d8f8999adb21cdbf%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 79, - "name": "미스터빠삭 서판교점", - "category_id": "일식집", - "score": 3.1, - "review": "19", - "address": "경기 성남시 분당구 운중로 140 101,102호", - "operating_hour": "매일 10:50 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:50 ~ 22:00", - "phone_number": 317071123.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC1C2D37627354C679FA56928437A9EC9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fbef738e6a008aabb416607c93fb0a6790e10749a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb5cd1ae822a24da5be6130b16021d7b258ba6426%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 80, - "name": "우쿠야 유스페이스점", - "category_id": "일식집", - "score": 3.3, - "review": "6", - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": "월~금 11:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 20:00", - "phone_number": 316281966.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1EF7DD410CF742B68A789E2CF92615DF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqelcNBrmP_Jv62n4qAv1N3gaFQATs5j1_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqen3vGdxs_4pYmOvV2v9b3WIiDld8Kr1_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 81, - "name": "아이가사", - "category_id": "일식집", - "score": 4.7, - "review": "24", - "address": "경기 성남시 분당구 판교역로192번길 22 판교효성해링턴타워 1층 118호", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": 7088771194.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9C67848E95B441E8BBBE50DD8BF4F671, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEBBEBC0F213C4280A8C6DCE71D7718FB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDCE84215703E46BBA64EDB22D4F5DBB2", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 82, - "name": "면학", - "category_id": "일식집", - "score": 4.4, - "review": "145", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 1층 103호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 83, - "name": "오이소", - "category_id": "일식집", - "score": 0.0, - "review": "23", - "address": "경기 성남시 분당구 판교역로 230 지하1층 B102, B102-1호", - "operating_hour": "월~금 10:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 23:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 84, - "name": "본가스시 현대백화점 판교점", - "category_id": "일식집", - "score": 2.0, - "review": "49", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151702023.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5CB67652C52A4232AD3743B722E06544, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6eb777d0d5283fd7673683043c8e2a7104bb8dfb%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F75000bb76af903538be91f48552e19505efb1c43%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 85, - "name": "지산초밥", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로 52 제이스타빌딩 1층 107호", - "operating_hour": "월~토 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:00", - "phone_number": 317022001.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FBDB4CEB89D764E8B8FACCC123EBEB1D9, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F268BAC8D561843D99A35C82BFA1FC22A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F39C5CB783ED245DBA1CC3B1886034A9A", - "convenience": "주차\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 86, - "name": "혼키라멘", - "category_id": "일식집", - "score": 3.6, - "review": "40", - "address": "경기 성남시 분당구 대왕판교로645번길 36 NS복합건축물 주건축물제1동 지하1층", - "operating_hour": "월~금 11:00 ~ 20:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 20:30", - "phone_number": 316068520.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F50313D91F4D04068A58FFD3784AC347D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqgNBkiI9R_D5AeoXpQLQKxGTQUm80t01_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F42bc6e90dbfcec8fbe7faef5b3488a1f33c32c0b%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 87, - "name": "리윤스시이도&구전동화 판교점", - "category_id": "일식집", - "score": 4.5, - "review": "95", - "address": "경기 성남시 분당구 동판교로177번길 25 호반써밋플레이스 지하1층 B101호", - "operating_hour": "화~토 17:30 ~ 20:30", - "expanded_days": "화,수,목,금,토", - "time_range": "17:30 ~ 20:30", - "phone_number": 317075563.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE4FD51DB9F4F4663A4CBF0DA2E63858F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F77d55a144e30ca8298a0ae4bd13c80cd3a709418%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F579838106a9b447e410d5104a392e8a9a0bdb85f%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 88, - "name": "모모야", - "category_id": "일식집", - "score": 3.9, - "review": "3", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층 H키친", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151701581.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA858A09286774659BBC67DF6E3EAF6AE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD412379243C1470F8F61846E58BF9B0E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F03052E063F304BBFA44F377AFE3CBD79", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 89, - "name": "훈스시 판교M타워점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로241번길 22 엠타워빌딩 107호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F26239A4F58410CD104", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 90, - "name": "지직 판교점", - "category_id": "일식집", - "score": 4.3, - "review": "3", - "address": "경기 성남시 분당구 대왕판교로606번길 47 SG타워 1층 102-2호", - "operating_hour": "월~토 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F056c5d41fad72f5f6c0730a3ecbdee478b89b3ce%3Foriginal, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5960ceb0c902743f8ee08f868ecb83938477f9e5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5d35f32c3a4482d1549af3a95313f559c38a0ac3%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 91, - "name": "도제", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 230", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316984832.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF0CF0E6291C242C8B634C706DAC0B0CB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Face4c04b7e7e598d14c8d3223bd386c438d547bb%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5799b39ff20038a84b74e1107aaf6dc44e2ff5c464276fb1bc4405f53bf35b09", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 92, - "name": "미소야 서판교점", - "category_id": "일식집", - "score": 3.1, - "review": "8", - "address": "경기 성남시 분당구 운중로138번길 28-7 1층", - "operating_hour": "매일 11:30 ~ 20:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 20:30", - "phone_number": 317023477.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F64978E6985564434973562D20ECE3019, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F807b10d88318f1c53e183ee1199442d489e1be1a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6cf168d4f4fb75bc5e3cd9c63e96fda0e5eadd3f%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 93, - "name": "차차식당", - "category_id": "일식집", - "score": 4.2, - "review": "23", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 B-119-1호", - "operating_hour": "월~목 14:00 ~ 17:00", - "expanded_days": "월,화,수,목", - "time_range": "14:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F84E8DB76ADB946B294E4A30B163DC1BE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F285b89796826d62ec8bebe59c2f29d10fa2492dc%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa346f0d4ccad5a1f463e549cc026f6c508ab9a47%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 94, - "name": "이치노야", - "category_id": "일식집", - "score": 5.0, - "review": "13", - "address": "경기 성남시 분당구 판교역로241번길 22", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6E8A79A002F644E9B81E94AA21F81C0F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F60cd30a1843a24de3245b770c9a1f7d5dabc301d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc73c2d89c8c19b38fe931c7d370380f7f0627f2b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 95, - "name": "카레공방 판교테크노밸리점", - "category_id": "일식집", - "score": 4.0, - "review": "3", - "address": "경기 성남시 분당구 판교역로 240", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": 316982801.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8A254F06FC874207A7D18F40182290A5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F828003BA3C3443B5929713D72BCC9AA1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F83EAC77CEE7A41D694E9FC6296F74E2B", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 96, - "name": "스시이도 판교점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로177번길 25", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 97, - "name": "돈돈정 판교아브뉴프랑점", - "category_id": "일식집", - "score": 2.8, - "review": "2", - "address": "경기 성남시 분당구 동판교로177번길 25 2층 203호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317080418.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3F85091E4E5F49F8AF10D228F95C2BA9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2cba29a7550c0541b5d73b1d74dfc3e3dd3905f9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6d4e62bbdfc2e693fb7348dbac264ca1efbc2feb%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 98, - "name": "토나리우동 현대백화점 판교점", - "category_id": "일식집", - "score": 2.2, - "review": "408", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~금 10:30 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701013.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F31301111403D44548993BC3BFF69A2C3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc84b890097e47fb0f83475a3f4287af47f5daf72%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcf016fc178da1a384a64fab1ee71525b52b0843d%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 99, - "name": "큐슈울트라아멘 판교점", - "category_id": "일식집", - "score": 3.2, - "review": "23", - "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어 에스동 지하1층 B110호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 50714600984.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC3873585B68B453A953695D1B228D863, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8d694300f72f5389e3a6eea3841457e4ce88c0e9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8cef3ef346eafa0b2e9f34ebfbe194f762ee0065%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 100, - "name": "부타이 3막", - "category_id": "일식집", - "score": 2.5, - "review": "81", - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 지하동", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 50713451087.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F39035B3F803D4174B616D516AF7FD291, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5653fc26e264b1c1dc2c19fb9973ed6f89e514ac%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc6123bc92c8c4429813254e85b60ecc532f5b8e7%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 101, - "name": "효카츠", - "category_id": "일식집", - "score": 5.0, - "review": "10", - "address": "경기 성남시 분당구 판교역로 240", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316981136.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1F48AA87E8A94284BE77319791CC2316, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff9b55974baf7dc891e89faf122ef03812e467fa3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMjNfMjgx%2FMDAxNzA1OTc2NTY0NDA1.3_L2n51fjbKskXcSsk4eOs53PwkLFSSrJNl9w2mCT4Ig.wnu2KlB7jDTC7X_pTrh7N366UYH04f-3B1X-A6Li2MQg.JPEG.hayeon961%2FIMG_5987.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 102, - "name": "우나기 강 판교점", - "category_id": "일식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로241번길 22 1층", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 103, - "name": "길우동", - "category_id": "일식집", - "score": 0.0, - "review": "2", - "address": "경기 성남시 분당구 운중로 123", - "operating_hour": "매일 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDE6082F4155049B495C7E6F100DE8867, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMjlfNTYg%2FMDAxNzMwMTg0MTI1NTk5.-eb9iXT24a-ApcK4PgWarDo09cOIh6ovHpF8iZyEnnog.9fpR_Sst6d7U83INoQ45SE8SVlGu1IPD1ZmiMZBPIiAg.JPEG%2F1730103899459.jpg%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMjlfMTIy%2FMDAxNzMwMTg0MTI0NDQx.i6OPIt5o7qmxFjlDCxsYx4qabr8HYmYkZJr_OOCbHcsg.M1OXg8lXZ-x6aEKFM6YsdGhHLsdvctC2h2vsIAvlaRgg.JPEG%2F1730103896628.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 104, - "name": "수요리식당", - "category_id": "일식집", - "score": 5.0, - "review": "3", - "address": "경기 성남시 분당구 판교역로 230 B동 지하1층 b126호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316978996.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7B7454E6C33D4958ABFED7A48B921AEE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F911C56640D934232BD2D82DF3B0A518F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE02EA25299564DF4AC5C2EA8258C1BA2", - "convenience": "동물출입\n휠체어사용\n놀이방\n흡연실", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 105, - "name": "키친쥰", - "category_id": "일식집", - "score": 5.0, - "review": "33", - "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 지하1층 B103호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 316984407.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB1C1FC9ECF234D118B948B84D699D5F9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4B451DCE3FF44DE2BB41BC70F759E5EA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCD15A2B5F06C49D4AAA4FC2986D092D0", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 106, - "name": "하코야 판교우림점", - "category_id": "일식집", - "score": 3.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22 판교우림 W시티 2층 219호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F26707E4B5539D17122", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 107, - "name": "타코비 서판교점", - "category_id": "일식집", - "score": 0.0, - "review": "3", - "address": "경기 성남시 분당구 운중로 124 마크시티블루 109호", - "operating_hour": "매일 12:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 22:00", - "phone_number": 3180165060.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F983A2CFF17804C8AACCACE732ACBF2A2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fstorep-phinf.pstatic.net%2Fogq_61b1039609f23%2Foriginal_20.png%3Ftype%3Dp100_100, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjFfOTUg%2FMDAxNzMyMTk2NDU5MTY0.-JMJBQ81hqUchZjVdJ5yuXfsKWkk6iNShxSSa2KTmlMg.hipk2YH2GkIsfzckKY_rxBjmnHA7LiAoKyrrvqA_1x8g.JPEG%2FIMG_2260.jpg%3Ftype%3Dw386", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 108, - "name": "야끼니꾸오", - "category_id": "일식집", - "score": 2.0, - "review": "12", - "address": "경기 성남시 분당구 대왕판교로606번길 10 1층 131호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 109, - "name": "통영물회 회덮밥", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교공원로2길 38-1", - "operating_hour": "매일 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 5079666306.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE0BF80FCAB7B40FEBAB9C9045D1EC97E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 110, - "name": "나베모노 현대백화점 판교점", - "category_id": "일식집", - "score": 1.6, - "review": "25", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~금 10:30 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F395B9DFC0AEC4D939E7368D751A599DC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6414ff125d1f1d346ae107223e90bb5e669e172d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcea4e05006ba50642fb2288e09bb67ee9fb6bc2b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 111, - "name": "데판본가 현대백화점 판교점", - "category_id": "일식집", - "score": 3.5, - "review": "20", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 3151701022.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F86ceac01e7ad27930932ae843329594b1ed659db%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F22d27f531f365e39c28eb8ac0cecf58a61b0e9a4%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F237982a111d90a05e7edcab3e76cc8689a4ad7dd16bd539f956b53e747d60206", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 112, - "name": "타비타비 현대백화점판교점", - "category_id": "일식집", - "score": 5.0, - "review": "1", - "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", - "operating_hour": "월~목 10:00 ~ 20:30", - "expanded_days": "월,화,수,목", - "time_range": "10:00 ~ 20:30", - "phone_number": 3151701000.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8BE8D706510542818740BFAAC6016F18, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTVfMjAx%2FMDAxNzE4NDQ1OTEzNTE4.d3cWEZMJAOhwsgZ2-LeVjDmfHboVwCjCfnRaY_Vcmesg.07jRa5JlUnzhtp8fu9o6aNNQMqnU_YS78fvH6WcATXAg.JPEG%2F1718445912388.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTVfNjkg%2FMDAxNzE4NDQ1OTI5MzUz.iR4HSlrcHeSfZ6aZjMSgVnjWb4mvb3a0-zFMnwWm7Acg.fuMoEeapVOZxT3G-MSa_waslvhXOMKdmznkenW3m87cg.JPEG%2F1718445928302.jpg%3Ftype%3Dw386", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 113, - "name": "더바다횟집", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로 92", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180165551.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 114, - "name": "신기소 판교점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 58 푸르지오월드마크 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317893737.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F276FB23F552E2DB20E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 115, - "name": "요일 현대백화점판교점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151701038.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 116, - "name": "겐지야 현대백화점판교점", - "category_id": "일식집", - "score": 3.0, - "review": "2", - "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151701013.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8097C2871F134F2A8D2B62508C6F2C85, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMjdfMTcx%2FMDAxNzA2MzQ3MDYyODY3.lOnZ0PTTH8WzT0MjF_jmgqznfaDY-J7crfzAOF8213Ug.a06Odj5OnzuUjhClktY0Ykak8L4XLhLAWSYV55QRUQgg.JPEG.kyoo323%2F03.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEyMThfMjMy%2FMDAxNzAyODc2ODEwODc4.qRpF85ejorJx3h1o2Nk9ur00xbOjlYjmTK3TN7QRmIgg.FyFXyQy6iI6wAM9-S2Xhzz1UVVU4e4Mp8Ke5NSiIDL8g.JPEG.syso4890%2F20231217%25EF%25BC%25BF160811.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 117, - "name": "도원참치 판교본점", - "category_id": "일식집", - "score": 0.0, - "review": "5", - "address": "경기 성남시 분당구 판교역로192번길 14-2", - "operating_hour": "월~토 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F799C75FD3AE140149BEF829A400CB8FE", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 118, - "name": "토호", - "category_id": "일식집", - "score": 4.0, - "review": "0", - "address": "경기 성남시 분당구 판교로319번길 13", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 119, - "name": "율", - "category_id": "일식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 B112호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 120, - "name": "서울마구로동 현대백화점판교점", - "category_id": "일식집", - "score": 0.0, - "review": "6", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151701013.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3C56ABEABB4E4A37BA59B0A9A04056B3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FcrmELy%2FbtskIRb9M2m%2F6xrUQlOIJaJd798OnKBk1K%2Fimg.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FtNnGt%2FbtskJGgCbjm%2F5vCDVuujTtjQObdASLYP90%2Fimg.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 121, - "name": "방가흑돈김치찜", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로146번길 19-2", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 122, - "name": "스시노백쉐프 분당백현48호점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로 52 제이스타빌딩 2층 203호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F4C84CC450B1648728FE8398030215733", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 123, - "name": "프라이빗", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 3층 316호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F5C530C88F7F342D2A7DCB499DA96BF0D", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 124, - "name": "쿠시쿠시", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교공원로2길 62", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180176655.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 125, - "name": "쿠스코퍼레이션", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로192번길 22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 126, - "name": "엔소쿠", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로52번길 17-4", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180160720.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 127, - "name": "두툼바삭가츠 판교운중점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로 117", - "operating_hour": "매일 10:30 ~ 19:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 19:00", - "phone_number": 5045258082.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD086DA6912D746C9AD8931048E166E20, //img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3D80DA0961344A4A97B070EF785864F4", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 128, - "name": "베럴온더라이스 현대백화점판교점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151702233.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 129, - "name": "센다이", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로192번길 22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317044550.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF57DBC65D82743B68BCDACFECA781659, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2dcbf9e1c5567cc52156dba37ff5b5a19e2d7872%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd79e8c60b7837c3531ff87bd98225bacb8a144d4%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 130, - "name": "오뎅에필꼬치면", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교공원로1길 61", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7046991333.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 131, - "name": "엔야 동판교 직영점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로2번길 33", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 132, - "name": "롤스롤스 현대백화점판교점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151701011.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 133, - "name": "나베모노by사이카보 현대백화점판교점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151701013.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 134, - "name": "봇들일식 판교점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 205호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316286122.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 135, - "name": "하이스끼", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스A동 1층 118호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 316983550.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 136, - "name": "참초가", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로125번길 5", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 137, - "name": "수타우동겐 본점", - "category_id": "일식집", - "score": 4.1, - "review": "497", - "address": "경기 성남시 분당구 야탑로 72 야탑시장주차장 1층 3호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317045545.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FED3AFE2230BD4242A3751813F0279DBD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3ac3bc791ee91e293c51ff2cf1f115e1e19cc78a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F27adfa9bc15aad9f5a3d48d0e026374b5424cad8%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 138, - "name": "긴자 백현점", - "category_id": "일식집", - "score": 3.3, - "review": "85", - "address": "경기 성남시 분당구 판교백현로 37", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317056606.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6498CF89CB9D49BF9E438D1DF51F1DDD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0cc1d1ef7b2ad034ef85a2391ad01c96ab1ae4b5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff7b4b9e70f814e4efcf1b089ff268d7be35be804%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 139, - "name": "사누키진우동", - "category_id": "일식집", - "score": 4.0, - "review": "288", - "address": "경기 성남시 분당구 황새울로335번길 8 덕산빌딩 1층 104호", - "operating_hour": "매일 11:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 17:00", - "phone_number": 317081357.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F160C644A4F45D39514, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F140D8C4A4F45D39712, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F892c0e1fa6786d0b03fdea0815d6379289c0e115%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 140, - "name": "최가돈까스", - "category_id": "일식집", - "score": 4.0, - "review": "101", - "address": "경기 성남시 분당구 정자일로 210 동양파라곤 1단지상가 지하1층 104호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317151104.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1356c888d2b2e4730cc54cf50667fb53ac5258ca%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7ba9115a869815460f6b83074a555cc014131da5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F82213be2c74d187aa9de7a86228a4e8a44c1a69b%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 141, - "name": "니고라멘", - "category_id": "일식집", - "score": 3.8, - "review": "322", - "address": "경기 성남시 분당구 황새울로214번길 8 MS프라자 1층 107호", - "operating_hour": "매일 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 17:00", - "phone_number": 7041492525.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5FE5BDB4EAC74F029DE1D96E9DE62846, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F15999D5306E847AAA0AF8C3C62D92BE1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6eab0fb0603ef8790fcc8330898f5c88dba83f74%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 142, - "name": "고쿠텐 서현점", - "category_id": "일식집", - "score": 3.2, - "review": "337", - "address": "경기 성남시 분당구 황새울로335번길 5 앤타운빌딩 1층 105-1호", - "operating_hour": "매일 14:30 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 17:30", - "phone_number": 316961297.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1642649368, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_2063963076, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_724068341", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 143, - "name": "호시", - "category_id": "일식집", - "score": 4.0, - "review": "126", - "address": "경기 성남시 분당구 분당로53번길 14", - "operating_hour": "화~일 14:30 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "14:30 ~ 17:00", - "phone_number": 317077682.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 144, - "name": "유타로 서현본점", - "category_id": "일식집", - "score": 3.1, - "review": "183", - "address": "경기 성남시 분당구 황새울로335번길 8 덕산빌딩 101호", - "operating_hour": "매일 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 17:00", - "phone_number": 317085999.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F152E414A4FC580B317, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F50515D9F69904BEFA6C5597E4BF06DD4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F202F1C4A4FC580B415", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 145, - "name": "마초야 수내", - "category_id": "일식집", - "score": 3.7, - "review": "140", - "address": "경기 성남시 분당구 백현로101번길 13", - "operating_hour": "매일 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 317173366.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEyMjdfMTgz%2FMDAxNzAzNjc2MTg1MDYw.P4Lz5C8iKYVsSAMYlm-jta-cxF9ZhoX3uybqAWXN1I8g.UidN0xUWCyXYgICq3ODe_omjAV-wV4EoVSG76eSVBGcg.JPEG.1223qhrud%2F20231225%25EF%25BC%25BF131255.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7680349aa11b3de1d4b6afa1b2d2c84dafc0b33f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe13f52ab748a26b7d89b737614a212698810b32a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 146, - "name": "유촌참치마을 서현점", - "category_id": "일식집", - "score": 3.9, - "review": "17", - "address": "경기 성남시 분당구 서현로 204 1층", - "operating_hour": "월~토 11:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 24:00", - "phone_number": 317025588.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9AFEBE4686414A9984C304D43064F5DC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F634AB3F3971D467482839A3A20AF3AA5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F24445DD1883F4864BC8CE77E9B1417B1", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 147, - "name": "김초생초", - "category_id": "일식집", - "score": 3.9, - "review": "52", - "address": "경기 성남시 분당구 대왕판교로 255", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 317112234.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2C189E8DC247457AB387B970C04639F4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0414ee2f95e86c1b3a4e2a8ccbfa6c9a46101f50%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc61f9008ab3ec99bb675aa7d90038532ca590b60%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 148, - "name": "스시언", - "category_id": "일식집", - "score": 4.4, - "review": "120", - "address": "경기 성남시 분당구 정자일로213번길 18 성원상떼뷰리젠시 201동 102호", - "operating_hour": "월~토 15:00 ~ 18:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 18:00", - "phone_number": 1071329069.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F23E08E4C9AA840ACAF4146D0E5B1B44A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5612EF377BE64E1ABB6EFB8BB933462F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F094E3C58AE824D64BD93F4875BCC94E8", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 149, - "name": "미스터스시 정자점", - "category_id": "일식집", - "score": 4.2, - "review": "120", - "address": "경기 성남시 분당구 정자일로213번길 10 성원상떼뷰 101동 102호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317146679.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2BC413C7A3B942E6AAD9BF5371EF1052, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB4D7C610C5AE464CB25B08761164BF05, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC1CEED0D59B04D86A66E571027C539F4", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 150, - "name": "스시료코", - "category_id": "일식집", - "score": 4.1, - "review": "120", - "address": "경기 성남시 분당구 수내로 38 두산위브센티움1 1층 101호", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 317192013.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F09E5E4B3DB304A3CA5AD1B74ABADBB84, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDD6DAC8405584EF8B84D67FF4BBFB022, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa475477d9bc74c383f919e196cdc882b5f6bbb46%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 151, - "name": "상무초밥 분당서현점", - "category_id": "일식집", - "score": 4.1, - "review": "1,286", - "address": "경기 성남시 분당구 황새울로 348 세현주차빌딩 1층", - "operating_hour": "매일 10:50 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:50 ~ 21:30", - "phone_number": 317810077.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F39D4754D45CF4A48B1D6FBE307668C14, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE8AFDBA6A9384C02B2694A28EC3AB32D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5E79D81DE5E14824913ADF060B52FF89", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 152, - "name": "돈까스클럽 성남시청점", - "category_id": "일식집", - "score": 3.2, - "review": "111", - "address": "경기 성남시 수정구 탄천로307번길 16", - "operating_hour": "화~일 15:30 ~ 16:30", - "expanded_days": "화,수,목,금,토,일", - "time_range": "15:30 ~ 16:30", - "phone_number": 317511769.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBFF862EFE5E24A05A7880D2A41ADAEE7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F05784b08a4ff8a92a90c5820f6420d267344d60d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5d9c27e12db319beecbf7d73434b5f9ecafc0dcc%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 153, - "name": "코이라멘 지로2호점", - "category_id": "일식집", - "score": 3.2, - "review": "11", - "address": "경기 성남시 분당구 정자일로198번길 15 제나프라자 111호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317150869.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC06B99474E3D4367AC2AC8985456EFAB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1718d3d7b6558d537a05d8efae6860ea62297f77%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F32e48e6a2ec9e876f37e7fe279ab9848ad20bc70%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 154, - "name": "사카나", - "category_id": "일식집", - "score": 4.8, - "review": "79", - "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 1층 104호", - "operating_hour": "월~토 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:30 ~ 17:00", - "phone_number": 317140968.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE80F73027DD445FDA5F7E4BED521D20E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe64b1ff8e512fb7ef78b4d5bc10eb66460ea444d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fea47e7a8170bb147ee62e7b2f0b94e45c8a582d6%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 155, - "name": "미카도", - "category_id": "일식집", - "score": 4.3, - "review": "7", - "address": "경기 성남시 분당구 성남대로343번길 10-6 동원빌딩 2층", - "operating_hour": "월~토 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:00 ~ 17:00", - "phone_number": 317125288.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9E49D12F68924EDFBDC449D3D22DF929, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F31b6de2ec020fdc382a0e64d2782706e8f68d06f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F39f440fe358a27f8cee22feac35f5fe292462a39%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 156, - "name": "블루핀튜나", - "category_id": "일식집", - "score": 4.2, - "review": "32", - "address": "경기 성남시 분당구 황새울로200번길 28 오너스타워 103,104호", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 317129996.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F893A67A93291437BB09BA0C88420A8DE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa6c1cb9b88b4f400bd95ad4aeee1ef2f4070bbfa%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F82bb639c7ba2d01928b1637aec09e02646d9988b%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 157, - "name": "스시강", - "category_id": "일식집", - "score": 3.9, - "review": "17", - "address": "경기 성남시 분당구 수내로 38 1층", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317119907.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8D73A3D3C1BC42BCA966466C74D973C7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc96dcac2b5f1e6ea56cdce42907cdc11095ea7ff%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb3ea1fb1be8e54eb761c3a8325cff1fa6dcb5a43%3Foriginal", - "convenience": "WIFI", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 158, - "name": "스시홍", - "category_id": "일식집", - "score": 3.8, - "review": "37", - "address": "경기 성남시 분당구 황새울로360번길 28 은성프라자 1층 109~111호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317067077.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F592701A9662849B285F2D0D64F0B4518, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb8bcec2aafe04087acda1260a13b15e9ef5f8e7c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0368c83ef9e4191a881717d99dbdfd8382700645%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 159, - "name": "주누돈까스냉면", - "category_id": "일식집", - "score": 3.4, - "review": "121", - "address": "경기 성남시 분당구 서현로210번길 14", - "operating_hour": "월~토 15:30 ~ 16:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:30 ~ 16:30", - "phone_number": 317067749.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 160, - "name": "스시고산", - "category_id": "일식집", - "score": 3.3, - "review": "88", - "address": "경기 성남시 분당구 백현로101번길 16 2층", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": 317174353.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE565E92BC56744468AA41F74D647BC87, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2150cddb23b4b2282b1acd89eaf6951eb06a2943%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa516594187ba450d289ddb5ddb76c830e89d05bb%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 161, - "name": "참치랜드", - "category_id": "일식집", - "score": null, - "review": "126", - "address": "경기 성남시 분당구 수내로46번길 11 대덕글로리빌딩 1층 103, 104호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317139429.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF6171D18845447B5B4E4E5B5F64B3A61, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1192F307E3A949179E9B0C6CBC95E80B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff189ad0fb29797d198c6b5d7d2be76d726aed89da051cb5810a23f3ae9651413", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 162, - "name": "속초오징어어시장", - "category_id": "일식집", - "score": 3.0, - "review": "24", - "address": "경기 성남시 분당구 느티로 27", - "operating_hour": "매일 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 24:00", - "phone_number": 317118909.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F06DF84834CEB46A3A76BE7040F1D59EF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA35DBEBAEE384B788C66A983C202CF4B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA7FDA4A304CA41C8BB96D98CAA7AC582", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 163, - "name": "스시앤스시 본점", - "category_id": "일식집", - "score": 2.8, - "review": "41", - "address": "경기 성남시 분당구 백현로101번길 11 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317178812.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F76ad3348591d7a6a94dfd2066ef74dcddeba673739c9d0612f0360703815aacb, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F691bc2e16204d0522d4bc315a1425c49272ab21c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9df0d22159b6b1f816c1f6e4b61afa54a9c78513%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 164, - "name": "은뜸", - "category_id": "일식집", - "score": 3.8, - "review": "2,574", - "address": "경기 성남시 분당구 분당로53번길 15 산호트윈스 1층 107~109호", - "operating_hour": "월~금 15:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:30 ~ 17:00", - "phone_number": 7082337732.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDB542B1319864E6DA6B685D85BB09491, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8bb865e5900585a3c50caddbe53b7021f82455bf%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F80f9a114569157dd6a1e36e2419de36c7fead10ecb80e2d26ac0bdf3171dda94", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 165, - "name": "나지미돈부리", - "category_id": "일식집", - "score": 3.0, - "review": "60", - "address": "경기 성남시 분당구 황새울로200번길 32 삼라마이다스빌 1층 101호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317113938.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2489e29e697459fd5f2ec370140d3b77d32fac7e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fffbbe1bfd4a47c85e6c33f3c44f6fdcc365d0fd7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtql92JEDuJ_z0PfzJtksnjnBeil34nep0_img.jpg", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 166, - "name": "부성초밥", - "category_id": "일식집", - "score": null, - "review": "185", - "address": "경기 성남시 분당구 서현로210번길 20 코코프라자 1층 105호", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317031999.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F3B0C18EA6CA44BB8877E2DB137F0D04A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F423E715844EE49BE9CAE643C32CD12C5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F02E71846FAA748149D6C7DF434AE9922", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 167, - "name": "차슈멘연구소", - "category_id": "일식집", - "score": 3.1, - "review": "64", - "address": "경기 성남시 분당구 황새울로330번길 16 천지오피스텔 2층 203, 204호", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 317093292.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD88E1B618D1A4F3A80CF14A143836B7B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F89C5CA37BDFC42D4BD31E418CA2D9417, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB65FA7DD91904304ABEB329F9A72218B", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 168, - "name": "미카도스시 정자점", - "category_id": "일식집", - "score": 3.1, - "review": "8", - "address": "경기 성남시 분당구 느티로 16 젤존타워 1층 113,114호", - "operating_hour": "월~금 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:00", - "phone_number": 317125656.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F246CB35058C642D110, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F461f64261e754bf4c4e5886f8e587f6298008e56%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4b1a3f9c5116a9d9751026e3044a6fcd0d3ff104%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 169, - "name": "스시이안앤 분당서현점", - "category_id": "일식집", - "score": 3.7, - "review": "1,113", - "address": "경기 성남시 분당구 서현로 184 2층 209호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 50713097443.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1188266F9E1A40F78354E40D8C6B9A3D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8e776c707d7502fb2065ef152c7bb5a3baca055f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5bb35baa13c89dad36155efc1bccdd6269e41814%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 170, - "name": "라멘모토", - "category_id": "일식집", - "score": 4.1, - "review": "48", - "address": "경기 성남시 분당구 정자일로 220 1층", - "operating_hour": "매일 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_928037016, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F156C774D4F79497533, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F16094D4D4F79497602", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 171, - "name": "나라돈까스", - "category_id": "일식집", - "score": 4.7, - "review": "63", - "address": "경기 성남시 분당구 서현로 192", - "operating_hour": "월~토 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:30 ~ 21:00", - "phone_number": 317014743.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 172, - "name": "연돈볼카츠 분당서현점", - "category_id": "일식집", - "score": 3.0, - "review": "17", - "address": "경기 성남시 분당구 서현로 184 1층 105호", - "operating_hour": "매일 11:30 ~ 22:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7B16D7A748EE4C2E8CA6E432B21A73D5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F61ffff552b1df29e6d37a285b8e137f74df2f36e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4e9db899314910de80fe92fb1cc2512a3b48bc11%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 173, - "name": "바삭돈카츠 서현점", - "category_id": "일식집", - "score": 4.3, - "review": "222", - "address": "경기 성남시 분당구 분당로53번길 14", - "operating_hour": "매일 10:50 ~ 21:20", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:50 ~ 21:20", - "phone_number": 317065795.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F254E9C0DA6D341E9ADD96CB9CE7ECD8C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd59cac0efbb7ff1c8fe285118437e42d0cad7803%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff06612ce802c85896213b4c5be957e0dfaafbc1c%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 174, - "name": "오늘초밥 분당서현점", - "category_id": "일식집", - "score": 3.9, - "review": "88", - "address": "경기 성남시 분당구 분당로53번길 12 서현나산플라자 2층 210~215호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317811334.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F11610DF11B3A4F4A876CC777A8679E61, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB81A5E9E01A14F56AB3F7A7C2E2CE0A1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF44F9A6CF6F744CA822781FD39DDF286", - "convenience": "WIFI\n주차", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 175, - "name": "참치플러스", - "category_id": "일식집", - "score": 4.4, - "review": "12", - "address": "경기 성남시 분당구 황새울로330번길 16 지하1층", - "operating_hour": "월~토 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 23:00", - "phone_number": 317023738.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F21793A4C556BAC3D22, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F217BA94C556BAC421C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F220DDD4C556BAC3F16", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 176, - "name": "브라운돈까스 서현점", - "category_id": "일식집", - "score": 3.2, - "review": "26", - "address": "경기 성남시 분당구 황새울로342번길 11 금호리빙스텔 2층 206호", - "operating_hour": "월~금 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 21:00", - "phone_number": 317810223.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F8332106985EB4C3B9F3FC76437015073, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FE4FECE8DF40146FFB6C8FEA0F582F787, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F14C5336D8ABB455B86B7A692C5423609", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 177, - "name": "효세이로무시", - "category_id": "일식집", - "score": 3.0, - "review": "5", - "address": "경기 성남시 분당구 느티로 2 102,103호", - "operating_hour": "매일 14:30 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 17:30", - "phone_number": 317122755.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F731ae657cd91f96801e7b76e7890dcec3e508ef9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa0cba0c80fb6ec757c99f1ca662e73e7a73567c7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd8a693ba10199849d0546e6e98b4b72818ef2606%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 178, - "name": "생선가게 1호점", - "category_id": "일식집", - "score": 3.7, - "review": "20", - "address": "경기 성남시 분당구 대왕판교로 255 1층", - "operating_hour": "월,화,수,금,토 15:00 ~ 17:00", - "expanded_days": "월,화,수,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 317020300.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FD79192B9488D41A18E9C6764819B07D6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FF0E26EAF1AB446779C7639A3BBB7EB55, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F8B606F2992324CEE97258D77C0387844", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 179, - "name": "돈까스브라더스", - "category_id": "일식집", - "score": 3.9, - "review": "13", - "address": "경기 성남시 분당구 내정로165번길 38 금호상가 지하1층 20호", - "operating_hour": "월~토 15:00 ~ 16:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 16:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F196BA5757E434122B66AAEC5279D5FF9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5955F7E8E20F45D2BB955A53E1B3A5E1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdd3680c00fcae9c96df634df409aa10557f8361e%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 180, - "name": "라멘시간", - "category_id": "일식집", - "score": 3.1, - "review": "326", - "address": "경기 성남시 분당구 느티로 16", - "operating_hour": "월~토 15:00 ~ 16:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 16:30", - "phone_number": 317166231.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCB1D392DCCB7417F94E60EE7092742FE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F21c2e610b96db91dd04db2daee3e208fbda09d71%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd195d4d3a8c71c86c8f238939f929b389b7e59875cf0c93c14eff526b7df2896", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 181, - "name": "스시니와", - "category_id": "일식집", - "score": 4.1, - "review": "8", - "address": "경기 성남시 분당구 느티로51번길 4-9", - "operating_hour": "수요일", - "expanded_days": "수요일", - "time_range": null, - "phone_number": 317137634.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1FAD5796AE3448F0B120CBE8172069C6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe72caabb19f4a5cbaea62a0422aec55c8eec5adc%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe6de9c0580c3a688676e1076fe6788644226b72b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 182, - "name": "스시쵸우센", - "category_id": "일식집", - "score": 3.2, - "review": "39", - "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 1층 104호", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 317040207.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA9B333A7B25A4120844B2AE904F62CD1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC20C9F0FB3354CD3A82348923009C090, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F523f6727fe320d03bc33de9376c4c05fb8afe13b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 183, - "name": "미도인 서현", - "category_id": "일식집", - "score": null, - "review": "1,163", - "address": "경기 성남시 분당구 분당로53번길 10 2층 202호", - "operating_hour": "매일 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 317031990.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6753A4FE415149F381220542B21DF569, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F734A939860A844C09B0BB5E40DCBD2B3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F73582D49B9ED47FE9688DFE08B26D49E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 184, - "name": "돈가스에미치다 수내본점", - "category_id": "일식집", - "score": 2.6, - "review": "151", - "address": "경기 성남시 분당구 백현로101번길 11 동현프라자 1층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317210307.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD157A30C10E24AED88E8DFB82BCAF9BE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6C29CA24A0BE4C8DBEF63D3523BCBDAC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9DEEC8C354744A65A5B9E9EBBFCEE997", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 185, - "name": "참치대가 서현점", - "category_id": "일식집", - "score": 4.8, - "review": "142", - "address": "경기 성남시 분당구 서현로 192 야베스밸리 2층 204호", - "operating_hour": "월~금 11:30 ~ 22:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 22:30", - "phone_number": 317083733.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE270C2C4FC084E3EA00F7D24E6278E88, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F98ed42b7a0bb6457189fcd4881d683bc8df63f87%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe6b17012cfd61fd0ae3f4c8f9dae35c6e308e4bd%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 186, - "name": "오마카세오사이초밥 정자역점", - "category_id": "일식집", - "score": 4.1, - "review": "1,253", - "address": "경기 성남시 분당구 정자일로213번길 10 성원상떼뷰리젠시 101동 107호", - "operating_hour": "매일 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 50714900544.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F58289156DADF4342AAB63EC40B5961C3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7E1CC18E36BA4E118A1E18CFD6D973CD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEE6D3A8666DD45D4BA11F6B115C57C3A", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 187, - "name": "동경키친슈", - "category_id": "일식집", - "score": 4.6, - "review": "63", - "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 2층", - "operating_hour": "월~금 14:30 ~ 16:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 16:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F5C16204FC7CC48DBA6ADDE2509DF8711, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB72799A753E24936A47EBAB464C23E66, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F86e77ff05e9a948ad551c65c8ec8e35bc170261b%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 188, - "name": "니꼬", - "category_id": "일식집", - "score": 4.3, - "review": "23", - "address": "경기 성남시 분당구 황새울로 325 1층", - "operating_hour": "매일 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 17:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 189, - "name": "긴자료코 수내점", - "category_id": "일식집", - "score": 4.0, - "review": "39", - "address": "경기 성남시 분당구 황새울로258번길 10-9 1층 102호", - "operating_hour": "월~토 15:00 ~ 16:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 16:00", - "phone_number": 317115045.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5c1f4bf71c96e2379a620b0e4b41acd0a2909b4c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F95e8993012c326513839051dd8697a4c7a288fd1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5c1f4bf71c96e2379a620b0e4b41acd0a2909b4c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 190, - "name": "호랑이굴 서현점", - "category_id": "일식집", - "score": 4.1, - "review": "1,048", - "address": "경기 성남시 분당구 서현로 204 엘지에클라트2 1층 102호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317035582.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC5F008BDB2904176AE1C6A441668B41F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9a54e28ea691c366f50d7a8f174617ade1b75ddb%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fafe1fa4fa97dc43e4ee30bdb6cc183760e3ca43e%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 191, - "name": "맛집돈까스소바", - "category_id": "일식집", - "score": 4.3, - "review": "22", - "address": "경기 성남시 분당구 황새울로258번길 10-9 2층", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317126625.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F998112E470C64435BC6209A9169A6F78, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FBA3AE33B7DF64A728A1F21E981E68CA1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0C6FFAE6C5A94737B87E05C698700BD8", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 192, - "name": "오끼참치 분당본점", - "category_id": "일식집", - "score": 3.3, - "review": "16", - "address": "경기 성남시 분당구 서현로210번길 2 2층", - "operating_hour": "월~금 14:00 ~ 16:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 16:00", - "phone_number": 317113735.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA2E588E7A63C4EBCA730FBAE7DBE795B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MTdfMTQ5%2FMDAxNzEzMzM2NjY4MTM3.QvfZV4UMy5PpFr4b2UL2Fk6G1WkfefaitB-wZDn58MEg.Lr3bWEkY0l9GWB2zLuUGNCPKDQCLkdqB-QCJrhbSJlMg.JPEG%2FIMG_2859.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAzMTlfMTA5%2FMDAxNzEwODU4NTE3NTE3.r5FAxqbyYJT0kZ0M1UPi9tXuSEa2bLy1dEyPNrKbByYg.-_H_mDadnZkmka7BcWJyNHROQCph1oGEsaubWXCFfC8g.JPEG%2FIMG_5730.jpg%3Ftype%3Dw773", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 193, - "name": "스시하루쿠", - "category_id": "일식집", - "score": 5.0, - "review": "52", - "address": "경기 성남시 분당구 판교대장로7길 5-19 1층 102호", - "operating_hour": "매일 15:00 ~ 18:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 18:00", - "phone_number": 317133562.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF4BC3235226D4FFFBC4FDCFA8BA9D1CA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffcbac375d59ab8dea314b224f903e3d0c398d8b0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8dc0baea6dfde28b0aa872d9c790e37a13588d5a%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 194, - "name": "에도마에텐동하마다 서현점", - "category_id": "일식집", - "score": 3.8, - "review": "81", - "address": "경기 성남시 분당구 분당로53번길 10 동호프라자 2층 201호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317017233.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F96C9093C3A794BB49346E0C6A8587ED4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F55CA7020F267497C80D5788F1A334B56, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3e914bd720f23e80cba0302f31724adea8c8a8c8%3Foriginal", - "convenience": "주차", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 195, - "name": "울진항", - "category_id": "일식집", - "score": 0.0, - "review": "2", - "address": "경기 성남시 분당구 서현로 170 분당풍림아이원플러스오피스텔 212호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 196, - "name": "바바스시 비스트로", - "category_id": "일식집", - "score": 4.1, - "review": "18", - "address": "경기 성남시 분당구 황새울로 315 대현빌딩 2층 203호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317019913.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7731A6B6109C4EE8AD4D0A4CF0ABE8B2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F61E0A9E4FD7D4B1D909725601AD70005, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2536672F2C0F4F648C7A11DAAD719052", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 197, - "name": "서현초밥", - "category_id": "일식집", - "score": 4.3, - "review": "18", - "address": "경기 성남시 분당구 서현로 192 야베스밸리 1층 102호", - "operating_hour": "월~토 15:30 ~ 16:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:30 ~ 16:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F229704422C0642E28C1340EFAB1D3C64, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5b64ed6593c2135cdc87d71eed036bb1abb04edc%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9d0aaf7023d1ec92a542726388d30ad4797f3798%3Foriginal", - "convenience": "동물출입\n주차\n놀이방\n흡연실", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 198, - "name": "참치대가", - "category_id": "일식집", - "score": 4.3, - "review": "7", - "address": "경기 성남시 분당구 백현로101번길 13", - "operating_hour": "월~금 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:00", - "phone_number": 317173733.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 199, - "name": "수내초밥", - "category_id": "일식집", - "score": 4.8, - "review": "71", - "address": "경기 성남시 분당구 수내로46번길 11 대덕글로리 1층 102호", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 317113721.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF667DC6D78CC4214B007566101AF21B7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEwMTNfMTc2%2FMDAxNjY1NjU1NTA2OTMy.L1Q0C49ZyfJHf3djKty02p_UmOe7b1dKLt5IxQD8_nkg.U6V_lmcDSRLpZjcKVfXHAxjRodbHPVF0Hd374NqMUTYg.JPEG.wlsdn6508%2FSE-660d16fd-e020-4e6d-acf7-8d278caae58d.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEwMTNfMTk1%2FMDAxNjY1NjU1NTE4ODYx.7MhVRIvs00HwtK-6fW32PjwN5DNMheVFwviQdMpmEPMg.k6M4_-Nm0mu0RfihpGo1M40zj3vYPkayYsZKUH6tB_sg.JPEG.wlsdn6508%2FSE-19ac4806-55b7-47fe-835e-e66bd4ec8666.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 200, - "name": "참치정육점하이튜나", - "category_id": "일식집", - "score": 4.0, - "review": "0", - "address": "경기 성남시 분당구 백현로 152", - "operating_hour": "월,수,목,금,토,일 15:00 ~ 24:00", - "expanded_days": "월,수,목,금,토,일", - "time_range": "15:00 ~ 24:00", - "phone_number": 317178237.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F20270e33208c219e620e88b70c4baac6a89f3c21%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F20270e33208c219e620e88b70c4baac6a89f3c21%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe475691a5f151610f25cf4043a02d26b673964ca%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 201, - "name": "역전우동0410 분당서현점", - "category_id": "일식집", - "score": 2.7, - "review": "9", - "address": "경기 성남시 분당구 서현로 192 야베스벨리 109호", - "operating_hour": "매일 09:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 22:00", - "phone_number": 7042368288.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA63E9CB70E6942528184EB1CE3DD2873, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5c0097e337f18f394c5bdbfb79308f40ca7ad22f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2D25CB54498A4A1391B1B4C58C83BE33", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 202, - "name": "금호생선초밥", - "category_id": "일식집", - "score": 2.5, - "review": "5", - "address": "경기 성남시 분당구 내정로165번길 38 금호행복시장 2층", - "operating_hour": "매일 09:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:30 ~ 21:00", - "phone_number": 317118093.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F208BEC644F3A47519D78AE35DFC053D0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F32c5d1a22962ad9f4404b4276c84b60a1e8e71fdcf09a7cf976706200a684939, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff5157f99bac8d45a9c503da7f8a4ea3b626028aac4bb9a607fdcc6f249acd08b", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 203, - "name": "미아리우동집 서현점", - "category_id": "일식집", - "score": 2.0, - "review": "8", - "address": "경기 성남시 분당구 황새울로 337 1층", - "operating_hour": "매일 10:00 ~ 20:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 20:30", - "phone_number": 317065951.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1905945A78AF443FAE1166904D52F30F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MTFfMjUx%2FMDAxNzIzMzgzOTAwNzk3.izcAgrhv7kQGoGKXxnAGmrPxQjFJkURBAfyOY8i9jyog.w0dIxQfGc46qT8E_DBLsRSZLaUtlW-EoSm7L8dEy6fUg.JPEG%2F%25EA%25B0%2591%25EC%259D%2584%25EA%25B4%2580%25EA%25B3%25842-%25EB%25AF%25B8%25EC%2595%2584%25EB%25A6%25AC%25EC%259A%25B0%25EB%258F%2599%25EC%25A7%2591-61613552876.jpg%3Ftype%3Dw386, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MTFfMTEy%2FMDAxNzIzMzgzOTAwMTEx.QCq_KaafSmL2UtL1xbEvbJuTbF5CB_P0HJ7t4V2e_6Eg.fH8AO4piUIIva3ZhbFqh2VVNpQ04fNm54_S1iOs60lEg.JPEG%2F%25EA%25B0%2591%25EC%259D%2584%25EA%25B4%2580%25EA%25B3%25842-%25EB%25AF%25B8%25EC%2595%2584%25EB%25A6%25AC%25EC%259A%25B0%25EB%258F%2599%25EC%25A7%2591-61613552875.jpg%3Ftype%3Dw386", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 204, - "name": "다께야", - "category_id": "일식집", - "score": 4.3, - "review": "10", - "address": "경기 성남시 분당구 분당로53번길 19 피아자코코 106호", - "operating_hour": "월~금 15:00 ~ 16:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 16:00", - "phone_number": 316978776.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 205, - "name": "정직유부 수내점", - "category_id": "일식집", - "score": 4.5, - "review": "3", - "address": "경기 성남시 분당구 내정로165번길 50 1층 103호", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": 317177911.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3DD3090C7A4947B1A9EA3913FE1494EA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F46f16dcdde072c1b1a196b796fdd9d69fb1a422e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MjBfMTM4%2FMDAxNzI2ODEyMjY4NTU0.QjMPORYCQqMNEfsDGMg04JXPk_eJmkZXrQuvBAtrGZIg.jCd9FETbfbZH2LGkin9pFRlK-UQyDnXAkdMrwu17-o8g.JPEG%2F20240918%25EF%25BC%25BF170826.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 206, - "name": "야미카츠 판교점", - "category_id": "일식집", - "score": 4.7, - "review": "55", - "address": "경기 성남시 수정구 대왕판교로 815 기업지원허브 1층 106호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 50713244790.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4E809C57B3AC40B084315A987FC2612A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F914d8187caca5536432fe090a8525fdebcbb843d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faf4b8c7c05e6ddd707ec884c60ed3f79faf5328ca52940b9cf33d21e6d2d6943", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 207, - "name": "하루초밥 이매점", - "category_id": "일식집", - "score": 4.9, - "review": "1", - "address": "경기 성남시 분당구 판교로 442 우일프라자 1층 102호", - "operating_hour": "매일 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 17:00", - "phone_number": 7076723222.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F600cd94b442375e769aa548fdb174407648c3f6c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdfe52beac601048981a5d3bc070e77dabd5bf8a7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F600cd94b442375e769aa548fdb174407648c3f6c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 208, - "name": "신독", - "category_id": "일식집", - "score": null, - "review": "41", - "address": "경기 성남시 분당구 성남대로 381 폴라리스빌딩 1층 104호", - "operating_hour": "화~일 18:00 ~ 24:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "18:00 ~ 24:00", - "phone_number": 1026780381.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 209, - "name": "백소정 서현역지점", - "category_id": "일식집", - "score": 2.8, - "review": "76", - "address": "경기 성남시 분당구 분당로53번길 12 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE6EADFAB66DD42929281B596B2938B51, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F454dd15d713a5da1e5da49cbd180d8d4725f80dc%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd5eb4a67410bfc6d01d0bc594b0273afa76a0c45%3Foriginal", - "convenience": "주차\n흡연실", - "caution": "예약불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 210, - "name": "후토루 분당수내점", - "category_id": "일식집", - "score": 5.0, - "review": "144", - "address": "경기 성남시 분당구 황새울로200번길 9-7 1층", - "operating_hour": "월~토 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:00", - "phone_number": 317262587.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC393B46D8C264537B2CE8C45A8B84C9F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe76779c755e579b54484322b0979e264c0b1ad41%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6049826938c7c427d2cb704caddd73c16437481d%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 211, - "name": "가츠몽", - "category_id": "일식집", - "score": 4.2, - "review": "2", - "address": "경기 성남시 분당구 성남대로 389", - "operating_hour": "매일 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:00", - "phone_number": 317167990.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0061ACB6F3DB411A9253544F4846BB1E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F593459d99b610aa084e35ce2dcdb0deb7e75711d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7f1bd5eb9c1d6e51fa47aa8d25df95480ea8aa55%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 212, - "name": "멘츠루 서현점", - "category_id": "일식집", - "score": 4.1, - "review": "22", - "address": "경기 성남시 분당구 서현로210번길 14 유성트윈프라자2차 1층 110-111호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317099289.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F17797040D2694F7A85D97B9D841EBE92, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7bc8cbce430e8e76163027f768d8f60fbfcb85b5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F600b36df3059c0ea85658bde9160d8f875513344%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 213, - "name": "쿠시야", - "category_id": "일식집", - "score": 2.8, - "review": "71", - "address": "경기 성남시 분당구 황새울로342번길 11", - "operating_hour": "월~토 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 01:00", - "phone_number": 317079859.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F43E06D9EAAD943119DFE2D1D60851EBE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAD7919991A7B47769107DA76CBAD83E2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6463E2B420AA41279CCDDBEB4E5D6646", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 214, - "name": "가츠몽 서현점", - "category_id": "일식집", - "score": 4.7, - "review": "10", - "address": "경기 성남시 분당구 중앙공원로39번길 49 지엔느상가 1층 104호", - "operating_hour": "월~토 15:30 ~ 16:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:30 ~ 16:30", - "phone_number": 317041950.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE3B6D9A2F5304807B9343B42757A2833, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3787c28aff8539cc3ae0f35f66bafb298325344f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F68953bce5a777ae519266c382a9c0f7bbb6756df%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 215, - "name": "오로지라멘 판교대장점", - "category_id": "일식집", - "score": 0.0, - "review": "4", - "address": "경기 성남시 분당구 판교대장로7길 6-23 1층 101-1호", - "operating_hour": "월~금 11:00 ~ 13:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 13:00", - "phone_number": 317110701.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F062289122F2A4930B46F3270FC99C317, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F27EA2EB7F2384653A7CBFF234E7F177D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMzFfMjMx%2FMDAxNzMwMzgwNzgwODc3.icOQqyOMHAugalS8pSc8gm5dugXLFVeLmlCgu9BycXEg.icUJNNRs8FekGQcVBc1J2NZrrEyx4_YxfKqa_KXIoAkg.JPEG%2Foutput_4178005817.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 216, - "name": "미어가 참치전문점", - "category_id": "일식집", - "score": 4.6, - "review": "0", - "address": "경기 성남시 분당구 백현로101번길 20 그린프라자 201호", - "operating_hour": "월~금 12:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "12:00 ~ 22:00", - "phone_number": 317197930.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 217, - "name": "삼미당 정자점", - "category_id": "일식집", - "score": 4.3, - "review": "50", - "address": "경기 성남시 분당구 성남대로343번길 12-8", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F63E67F56416E4E539AA9FF114ACE5085, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9a30a39fadaf55ea1929228c80783134920d7a73%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdba3e81657df441fdf97c9733d63b116f8414692%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 218, - "name": "청수", - "category_id": "일식집", - "score": 4.7, - "review": "12", - "address": "경기 성남시 분당구 정자일로 234 태남프라자 103,104호", - "operating_hour": "월~금 11:00 ~ 20:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 20:30", - "phone_number": 317172474.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F54FA5729B63F4D81B64623D15A632176, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC6EB1C29E9364687A5FE4748128EA8E5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F12D35FD1D8254FD5B234B73ED8D5E21D", - "convenience": "WIFI\n동물출입\n주차\n흡연실", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 219, - "name": "스시바라", - "category_id": "일식집", - "score": 4.8, - "review": "3", - "address": "경기 성남시 분당구 내정로165번길 38", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317128442.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0a48839220f860b6d6f2f15d7fa8a0afafebe17f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1f4fae7530b87023d03eae0271baaa259ed81b07%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F72a85ffcdcdbbfc6e6d49d905491c549a049c44f%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 220, - "name": "토끼정", - "category_id": "일식집", - "score": 2.5, - "review": "0", - "address": "경기 성남시 수정구 창업로 17", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA88703CF8140423D91BA9DF687D1D10A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9888684C12164A96B9548917880D9C46, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4ABD0E30825B40CC99D0503A316707CF", - "convenience": "주차", - "caution": "예약불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 221, - "name": "돈화당 분당서현점", - "category_id": "일식집", - "score": 3.8, - "review": "18", - "address": "경기 성남시 분당구 분당로53번길 15 산호트윈스 1층 102~103,105호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317240278.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4547345B481140FA8CBB7997166FA44A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff7907175bb5bd230cca5e87ee39b0109f280bca2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8127760973a3f69071cded6b69847ef9b70421c1%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 222, - "name": "참다랑어막주는집 참치정육점 분당서현점", - "category_id": "일식집", - "score": 4.7, - "review": "1", - "address": "경기 성남시 분당구 중앙공원로39번길 49 1층 107-2호", - "operating_hour": "매일 15:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 23:00", - "phone_number": 317013963.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC4E5B633E73F439898385C4616C294B6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffa4c156b6d9caeba1e721244fe452abb156b05e9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6AA7EBA8CB50468DA42140A6AAE19CB7", - "convenience": "주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 223, - "name": "황작가", - "category_id": "일식집", - "score": 3.8, - "review": "91", - "address": "경기 성남시 분당구 서현로210번길 10 다두프라자 3층 308호", - "operating_hour": "월~토 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 02:00", - "phone_number": 317033682.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9B3B80532FE740EC851161AC56E993E2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F409771DBAF7944F99D670D7F6F9748F6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4ADEDFD203C240058773677710FCE7A2", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 224, - "name": "미소야 분당서현점", - "category_id": "일식집", - "score": 1.7, - "review": "27", - "address": "경기 성남시 분당구 분당로53번길 13 산호트윈스11 102호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317060277.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F408818DA12AA4E1094364A4873CE98F9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc996ac947427c8b920705b012fe37a37679856ae%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F687267afe19d49f599c33f4d51e9614379bac291%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 225, - "name": "소소한식당 정자점", - "category_id": "일식집", - "score": 3.7, - "review": "10", - "address": "경기 성남시 분당구 정자일로 230 동양파라곤아파트 106동 상가 1층 117호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317155358.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_175166052, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1963239574, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_81284063", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 226, - "name": "다께야", - "category_id": "일식집", - "score": 3.9, - "review": "7", - "address": "경기 성남시 분당구 백현로101번길 20 그린프라자빌딩 1층 102호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 227, - "name": "세희네돈까스", - "category_id": "일식집", - "score": 4.7, - "review": "43", - "address": "경기 성남시 분당구 판교대장로7길 16 힐스테이트 엘포레 6단지 상가 1층 107호", - "operating_hour": "화~금 14:00 ~ 17:30", - "expanded_days": "화,수,목,금", - "time_range": "14:00 ~ 17:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F627C3068BA8E4CB381E9F0F1099E3C3B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3C3210348DAD43498D6DACC98855270F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F859c0ac197fbdda39f2e36f0ebdaa2957ee7b0ed%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 228, - "name": "카레모리", - "category_id": "일식집", - "score": 4.8, - "review": "44", - "address": "경기 성남시 분당구 황새울로360번길 28 은성프라자 2층 208호", - "operating_hour": "매일 11:30 ~ 20:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F39C337281707451FB102BF41A07B3BFF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE05A0539EC4D4C01B6F809D1FB2040B5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F58689fa56d4f686ed2a799a6cc06a306f686312c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 229, - "name": "은강참치", - "category_id": "일식집", - "score": 4.0, - "review": "6", - "address": "경기 성남시 분당구 성남대로772번길 5 지하1층", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": 317033566.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC853E3FAEADA4CCAB957B2F3E9E6C2BB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F38e6c4d383892213fa24e6d84b1148b2ac9ad7b2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F849f695f2383e3dc015757e67e8a8ad350b81118%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 230, - "name": "은화수식당 분당야탑점", - "category_id": "일식집", - "score": 5.0, - "review": "3", - "address": "경기 성남시 분당구 야탑로 22 1층", - "operating_hour": "월~토 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:30 ~ 17:00", - "phone_number": 317065150.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA5A1B189D648434F829298741A7ED1A5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDVfOTEg%2FMDAxNzI1NTA2NDI5MTEz.6hCEHFd5PF7D0bzQsZYjen4z1mGw9QrNEV1-zZZuXa8g.dTvOiomoCxtJYD4m0dW8QEIf6WVYeH1njGj9GVLvfLAg.JPEG%2FIMG_8626.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjRfNSAg%2FMDAxNzMyNDI4NTg3OTA1.JqbFq-Acyo_wA-WrX5HjX3t0Rd5wKUAYz4KqXhceHbIg.Ckk_IBseB3w-FvxcDr158q7GwcYdaOcNxSFR8eWaVzMg.JPEG%2FIMG_5022.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 231, - "name": "오도루네코", - "category_id": "일식집", - "score": 5.0, - "review": "14", - "address": "경기 성남시 분당구 내정로173번길 49 궁전프라자3 1층 128호", - "operating_hour": "화~일 11:30 ~ 20:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:30 ~ 20:00", - "phone_number": 7077692074.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F53B243AB02D44B8797B567138D46D8BC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBB91DBEF2A3C4DC3A2BE6985E4D57E01, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB3BE6AAA60F249B2B75BA5E3453A5999", - "convenience": "WIFI\n주차\n흡연실", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 232, - "name": "에바돈가츠 성남고등점", - "category_id": "일식집", - "score": 4.2, - "review": "9", - "address": "경기 성남시 수정구 청계산로4길 59 109호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 3180239876.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F65E51FB3143E4EE6848224510922FE81, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8f77bbdb845f66d0d3ce3b81bdd44eeb9b14106c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F452012e08c3fe307a3cc7d342bebd2933c8ffe3a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 233, - "name": "하치로돈부리", - "category_id": "일식집", - "score": 3.7, - "review": "216", - "address": "경기 성남시 분당구 분당로53번길 14 1층", - "operating_hour": "매일 14:30 ~ 16:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 16:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F62DF752CAD6D48399C523FDAE43366A9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2c1365e2bedc1d5d8c0ff6d30f555eeb04c92ea1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff9293850176c3140fb4b2143f3a30d4da1c25d51%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 234, - "name": "길동우동 정자점", - "category_id": "일식집", - "score": 0.0, - "review": "1", - "address": "경기 성남시 분당구 성남대로 389 폴라리스빌딩2 1층 110호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317195989.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FFB345A56B6AD489EAA26C7E864C481EF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEyMDlfNDYg%2FMDAxNzAyMTMyNjIwMzk0.KYUEmb3r8TqEfGS_6I1JBMJPKgeylhiEkSfqjI9NynIg.Ob_TZQBFT3b1dSGbF7HtT47f7narIsHqwEYN4WMmrmEg.JPEG.9843049%2F20231124%25EF%25BC%25BF171044.jpg%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEyMDlfMjA0%2FMDAxNzAyMTMyODcwNzE1.6QnrtOZC8ZvOAlMuHN_lBZLwRFWFtu5_ZRRD0OZmhjAg.rGKV6mhVNVOizSd8_S_tyhcfm7lL4dVyaYqO9GgcAi8g.JPEG.9843049%2F1702132869236.jpg%3Ftype%3Dw580", - "convenience": "WIFI\n흡연실", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 235, - "name": "101번지남산돈까스 판교파미어스몰점", - "category_id": "일식집", - "score": 1.1, - "review": "40", - "address": "경기 성남시 수정구 창업로 17 지하1층", - "operating_hour": "월~금 11:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F45408581E6C74C8088158F73C5A363CC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDRfMTkw%2FMDAxNzMzMjkwOTkyOTY5.dfcwKpKkICGJ6_ZN2TrWgdIHUJ-9wQP_Rt0GxHVf8t4g.01IR5t1MxB45LCSJvQLMluP6tdLlut6C2KLEZlJWFFAg.JPEG%2FSE-8f90d734-b128-4a37-9c5b-c9e9b7977056.jpg%3Ftype%3Dw386, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDRfMjkg%2FMDAxNzMzMjkwOTkwOTI2.wlaQzuh5TFbNK46rPJDSN8RtKUk7PfyPPHyhVzujhaMg.sjg758GejFrnxA6DVBaUPdb65Ukgwf1Gd_PQqTuQgW8g.JPEG%2FSE-0bd47dab-5797-4a0c-bb27-0f2019fd6d50.jpg%3Ftype%3Dw386", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 236, - "name": "도시참치", - "category_id": "일식집", - "score": 4.1, - "review": "21", - "address": "경기 성남시 분당구 느티로51번길 6 1층 102호", - "operating_hour": "화~일 16:00 ~ 03:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "16:00 ~ 03:00", - "phone_number": 1047621171.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 237, - "name": "이백장돈가스 분당아름마을점", - "category_id": "일식집", - "score": 4.4, - "review": "4", - "address": "경기 성남시 분당구 판교로 437 숭문상가 1층 101호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317070290.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F053A98B046E24A76A5322B9152AF2188, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F22A5D80A0F1346F1ACDB91E5430EAE3A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2F33C80E373A45C18C5D8C1EE2B0E75F", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 238, - "name": "하루", - "category_id": "일식집", - "score": 4.7, - "review": "5", - "address": "경기 성남시 분당구 백현로150번길 5 1층 103호", - "operating_hour": "매일 11:30 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 23:00", - "phone_number": 317147222.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F247CF7345706029E1B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MjdfMTI3%2FMDAxNzE5NDc3MTI4Mzc3.nNGII15a5y5VRUhr0V2nxpuCAtSrQi9IYmlG0ciTpDsg.ONo43xmh_bBM3HgYUOuat9F-y9GlfrxI05X1W0yW0HAg.JPEG%2F%25ED%2598%25B8%25EC%258A%25A4%25ED%2585%2594%25ED%2595%2598%25EB%25A3%25A8_6.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MjdfMjQ5%2FMDAxNzE5NDc3MTI4Mzgx.BZdXjPKKgHPiHiyywLZXKOr4QcR3-n2oC4k-LNMuZqkg.NEQrC5f4fUOLuUn1yx7Iih6upj9xCe5Str-Fb4uimFIg.JPEG%2F%25ED%2598%25B8%25EC%258A%25A4%25ED%2585%2594%25ED%2595%2598%25EB%25A3%25A8_5.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 239, - "name": "카츠살룬", - "category_id": "일식집", - "score": 4.6, - "review": "11", - "address": "경기 성남시 분당구 느티로69번길 9 1층", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF0077BDE23FE471EAD04F715528F18CA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa5ee81ddb56cfa7381690c5439007b6562ac6af1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0dafb11dbad8a20bf3a7e5f15da2185a18b44601%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 240, - "name": "육덮밥", - "category_id": "일식집", - "score": 4.8, - "review": "0", - "address": "경기 성남시 분당구 내정로173번길 11", - "operating_hour": "월~토 11:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 20:00", - "phone_number": 7088270348.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC17BEED27EAE499CBAE6E23FDF736516, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F72463101CE3F44788992B40813AABE3A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFE1AD3C84ECA45EEBBD8405673055CC8", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 241, - "name": "타코비 분당점", - "category_id": "일식집", - "score": 4.8, - "review": "35", - "address": "경기 성남시 분당구 황새울로360번길 12 1층 110호", - "operating_hour": "매일 12:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF71FAF1AAD244E60AA4C860389BFBB7B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8764edaa2d9347a5be5711aeceb63495e6f39329%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0d4c4f2ed0a6dc800cdc0d2957fec862d5b0821b%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 242, - "name": "면식당 분당서현점", - "category_id": "일식집", - "score": 5.0, - "review": "20", - "address": "경기 성남시 분당구 서현로210번길 14 유성트윈프라자2차 2층202호", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 317021242.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fefd501812117df051889c6a1957325e3fea4edfa%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F40ddf3d6397cdcbbaf0b6e24d12dcbef82d04264%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3dda62724a975e812a57147dcd79d830ee4c0fb6%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 243, - "name": "석스시", - "category_id": "일식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 성남대로 393", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD8ADF4770B8043B6893723F053A97B9C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcd1aa5d773ed9704d500fe8f985cecf8889f8a85%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0b859afec93e8022ceec3e4cf992fa04bb438334%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 244, - "name": "바돈바돈가스", - "category_id": "일식집", - "score": 3.0, - "review": "9", - "address": "경기 성남시 수정구 창업로 43", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317268887.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC19E9DEEB03D47BFA2BD6DF68F2331FB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMTRfMTEg%2FMDAxNzI4OTEyMzM5OTc4.MQSVyt8yhW-Z-0JwSSc7eeNyMHdMCfmLTNcrhB4hyRUg.phU4gOSJTDhfs5AuA_9Uw5mXHDmjlWYe8nERu-Hr-vUg.JPEG%2F20241011%25EF%25BC%25BF122458.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDlfMyAg%2FMDAxNzI1ODgyMzQyOTg1.oQHpWY95GkNP6v_8e7aCgzCQEeYUzGhZpN6NuwTMMxAg.0P8Cl7-Is8I5-XXbtx9zGdKMu3fVDhgXJogm-qbA5oUg.JPEG%2FKakaoTalk_20240909_202237045_04.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 245, - "name": "라라멘 수내점", - "category_id": "일식집", - "score": 3.8, - "review": "8", - "address": "경기 성남시 분당구 황새울로258번길 10-9 영성라벤더 1층 102호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317119530.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD2D9CF75C9CF4F3EB74F63EF5ECFB641, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F09729978DD7E4A888909A7AB538280D3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5C78DA92BBE7405E8DAFED47FD37A464", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 246, - "name": "미소야 분당정자파크뷰점", - "category_id": "일식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 정자일로 248 1층 110호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317182021.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F262EA5375538A55E36", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 247, - "name": "일식당 소솜", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 백현로101번길 16", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7041792392.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 248, - "name": "카츠젠", - "category_id": "일식집", - "score": 3.6, - "review": "2", - "address": "경기 성남시 분당구 내정로173번길 11", - "operating_hour": "매일 11:00 ~ 20:20", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 20:20", - "phone_number": 317177709.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3842A8C7B766479DB2570E9E630B219A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2121a0d29afa2b0a77b35f2c1216614cd6e1b9db%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5805f3c68f926ce7d448ffd63b25822475172189%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 249, - "name": "시마스시 롯데백화점분당점", - "category_id": "일식집", - "score": 3.0, - "review": "9", - "address": "경기 성남시 분당구 황새울로200번길 45 지하1층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 317382021.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F22A1FA0216144EA6ACFAD4B5755959BE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMTZfOTQg%2FMDAxNzI5MDQxMjYzMDk2.gQWvcuKiJbeZGaeHHH4b02chHH-ZtXeJrqTAFKpESGUg.sR7HXMDCmfDZs4tC7QEbcpQh_-aD-jpchKqGblACnzsg.JPEG%2F2_(5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMTZfMTc5%2FMDAxNzI5MDQxMjYzMDk1.x7JwpRh_A5jInZHG3O21Z8NBffp9uedDGH8bVrqKHvEg.J2Nxgz3IvlQuay7VGixl5AbcLziJjxG3jU1VSXZwh1Ug.JPEG%2F2_(4", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 250, - "name": "시계토끼", - "category_id": "일식집", - "score": 3.8, - "review": "101", - "address": "경기 성남시 분당구 느티로 27 하나프라자 208호", - "operating_hour": "월~토 11:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 20:00", - "phone_number": 3180226333.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 251, - "name": "술마실고양", - "category_id": "일식집", - "score": 5.0, - "review": "3", - "address": "경기 성남시 분당구 서현로210번길 16 유성트윈프라자 1차 302호", - "operating_hour": "매일 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": 50255510585.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7EAF0A5FAED94D8792FD1B2C13113E0B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDFE484AC31A2436797BDBD03BFDE7B78, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9BED3F48209840C8A1EA0258B753660A", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 252, - "name": "호키네유부 판교점", - "category_id": "일식집", - "score": 2.6, - "review": "6", - "address": "경기 성남시 수정구 창업로 18 C1동 1층 116호", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 317570320.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE1A993ED7FBD4571B99B1524541D000F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1371ba8f97511c4152f0be9d8171f5e0b26c7d6f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FdplAo7%2Fbtry4SfXMYJ%2FyhLICQs9ijK3ipx5IXJms1%2Fimg.png", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 253, - "name": "사보텐 AK분당점", - "category_id": "일식집", - "score": 2.0, - "review": "12", - "address": "경기 성남시 분당구 황새울로360번길 42 7층", - "operating_hour": "매일 10:30 ~ 19:55", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 19:55", - "phone_number": 3180232777.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe1dafb878d7113c5f0cdbe8b7b9477bc6d4f47f3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe1dafb878d7113c5f0cdbe8b7b9477bc6d4f47f3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F91E6B29539014B8DBB505D7FF84F46F7", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 254, - "name": "와라쿠샤샤", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로360번길 42 AK플라자 분당점 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4A80FAE8494749BFB695D1A36B40D379, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F756C368AB58540349D177622A81F052C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F432b182bf69de797312fd78c95b0730d8673eccb%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 255, - "name": "고향카츠 판교테크노밸리점", - "category_id": "일식집", - "score": 2.9, - "review": "5", - "address": "경기 성남시 수정구 창업로 18 파미어스몰 C1동 1층 114,115호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA6B2B759A368463FA188F93CB1F31AB9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAyMThfODIg%2FMDAxNjc2NzAyNjE2NDQ5.243OwVtFNesHiDZw6gKFpsq2oUmAlqQ1xWcDcVtQ4hcg.diS5r_jBprFnsCja625cp2gXo9PMeLZp-eb1qA6r78wg.JPEG.chzhkiss%2FIMG_1981.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA0MDZfMjYw%2FMDAxNjgwNzQ2OTY5NTUx.8TlJG5l36MQ-TYUma7YL-HR0BF8ODO-qrSlcmpAKxO0g.I4aaX7dIHsdURVePZxq5bzPhMmi_EEey-y_IBZ2vklMg.JPEG.chzhkiss%2FSE-C48FA06D-7CD8-445A-A136-51B5AEE597B5.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 256, - "name": "무다이 분당점", - "category_id": "일식집", - "score": 4.5, - "review": "15", - "address": "경기 성남시 분당구 내정로165번길 38 금호상가 지하1층 58,60호", - "operating_hour": "월~토 11:00 ~ 19:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 19:30", - "phone_number": 7077207235.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2F8D1CF43EFA4572AF7994B670286220, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA5D4F297FA15433480C84153156F5EEC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0B9D48D352EB452DBA0529F96B566F61", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 257, - "name": "백소정 정자역점", - "category_id": "일식집", - "score": 3.8, - "review": "15", - "address": "경기 성남시 분당구 정자일로 234 태남프라자 101~102호", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F52962221C5A14C5E8D3EB5A93F31ACE1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe0a29ecafc9a2855b9181d0c883681a18588ffb8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F69158ab5bbb8f8ca74a903e5e02aee1ffd6af801%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 258, - "name": "히노아지 판교파미어스몰점", - "category_id": "일식집", - "score": null, - "review": "8", - "address": "경기 성남시 수정구 창업로 17 판교아이스퀘어 B동 201-2호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317194161.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8264493162CB40BA9CBFAD5E7BD63A9C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MTFfMTE1%2FMDAxNzI2MDUwMDE0NTk4.2nY6cbt_hpyr7mNQgSCznOCJERDG4tNOoMd7yGxBRO0g.Tb2_yLgNBJfHrLyeWEwclvTCy6GPjk90akkHvtEi_Xgg.JPEG%2FSE-92e8c54d-2348-43d4-b417-e572c59dcf94.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDZfMjE3%2FMDAxNzI1NjI2NzI2ODEz.6TE2Zh04_hLesJz0-zgZ-IyWTVd8YjqlR8KTcvBWiC4g.H9KW0vfElfXL_dKDW9eyqJjoQcmCmTdFVy_67SYC-uMg.JPEG%2FKakaoTalk_20240205_150511990_12.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 259, - "name": "이자카야엔", - "category_id": "일식집", - "score": 4.0, - "review": "0", - "address": "경기 성남시 분당구 정자일로 220 1층 119호", - "operating_hour": "매일 18:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "18:00 ~ 02:00", - "phone_number": 317151520.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA0763084E01B4C88B58C1C463723B34D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjJfMjI2%2FMDAxNzMyMjU3ODYzNjA5.2HGV4rP9ew-JKMfrLCZpOIapcaUhkpOcyATGiBfFBg8g.M-eWHuYwejzFxL4iD_BZDfc0kQHfOhZBQY5WsXwvX6Qg.JPEG%2FIMG_6414.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTJfMjg0%2FMDAxNzMzOTkwNjc3Njky.ZsgutUYHFT6m2Q76QiriwqI1BFu0joQwpq5lV6rAeZQg.T1vPAgjNhMYrZcSGxW9qxPoCNO_Wh0sEpN0_B0LhA6og.JPEG%2FSE-2a952323-4798-43d1-8a85-73076050a4e0.jpg%3Ftype%3Dw466", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 260, - "name": "스시아지 AK플라자 분당점", - "category_id": "일식집", - "score": 1.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로360번길 42 7층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180232700.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 261, - "name": "하루엔소쿠 성남고등지구점", - "category_id": "일식집", - "score": 4.3, - "review": "5", - "address": "경기 성남시 수정구 청계산로 686 반도아이비밸리 1층 104호", - "operating_hour": "월~토 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:00", - "phone_number": 317511110.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEAF05632F6FD48B79EBF1C448368A8F1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc0b66316a88758e3201fe270a06215c2029a43ee%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa5d45fdebfdc2f81f151c13449647a0d4e243aee%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 262, - "name": "돈까스공방&파스타", - "category_id": "일식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 내정로173번길 11", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F296D42307B43481EBE0B908337722281", - "convenience": "주차", - "caution": "배달가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 263, - "name": "미카동", - "category_id": "일식집", - "score": 5.0, - "review": "5", - "address": "경기 성남시 분당구 황새울로 337 1층 107호", - "operating_hour": "월~토 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6CC4D7A0282F4D299E0D2C4DBCF4A799, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMjZfMTMx%2FMDAxNjk4MzAzMjkxMTU1.9rnCGFARBFlq1WB2a54Qd9McowO8khf74DBdTuc2vpUg.kW1pKQrtlJr-1cCMrLkq06AtRrmeLu7oOyFOzN5E5Zwg.JPEG.kcho0341%2FSE-ef73ae85-7167-11ee-a94b-013def7ff0ea.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMjZfMzAg%2FMDAxNjk4MzAzMjg5Mzcz.ZK3aLicge1sKy0t4w0OIG0QpuZgVGv6n9PDBCJDcAeEg.ONQgGP4aKqc9QFW3ZuOCFtawAYYA55b7lovvlstKb_Eg.JPEG.kcho0341%2FSE-ef758346-7167-11ee-a94b-af13dee1fee2.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 264, - "name": "길동우동 고등점", - "category_id": "일식집", - "score": 3.2, - "review": "5", - "address": "경기 성남시 수정구 청계산로 689 지엠프라자 1층 108호", - "operating_hour": "월~토 10:30 ~ 20:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:30 ~ 20:30", - "phone_number": 317573424.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F980B7FCEDE7D4DF0A1C2505E4ADB2006, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffa314550e2544ad54b4a52191a817d7972c53b86%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0c167b14fd13628a52c5fac04bd5a59fdaa1af40%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 265, - "name": "왕돈까스", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 내정로165번길 38 양지마을아파트 602동상가 2층 217호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317123339.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F031D9953222640C39C40E716BEB3FC9B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F528997C7F56348438E68398AEA6DC825, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5A2B99E2E11649F18DEA51D625C051E8", - "convenience": "주차\n휠체어사용", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 266, - "name": "돼지돼지 수제왕돈가스", - "category_id": "일식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 내정로165번길 35", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317134234.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 267, - "name": "깡우동 분당수내역점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 수내로46번길 11 대덕글로리 107호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 268, - "name": "조나단돈까스", - "category_id": "일식집", - "score": 4.0, - "review": "125", - "address": "경기 성남시 분당구 내정로173번길 11 주상복합상가 603동 B03호", - "operating_hour": "화~일 11:00 ~ 21:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEB97E1FCFB564319BA57568D51CD776A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F40518605D82C47E28F80D77EC4377465, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4586CB63172C4CF393D3949DDB685A3F", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 269, - "name": "카레공방 수내점", - "category_id": "일식집", - "score": 4.0, - "review": "17", - "address": "경기 성남시 분당구 내정로165번길 38 602동 지하1층 29호", - "operating_hour": "월~토 11:30 ~ 19:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 19:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9953AEC5CB2B4856BBF6784126F03441, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3D2BF3FC1798411BA1AEB0174237C8C7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F67353D476D024446970123A20A19B261", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 270, - "name": "하즈벤 AK플라자 분당점", - "category_id": "일식집", - "score": 2.7, - "review": "3", - "address": "경기 성남시 분당구 황새울로360번길 42 지하1층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F261FE116B7AF4FB1827F590A29248BE1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa724be662a5727c4b493be46f12689a52a3686a3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEyMTNfMTAg%2FMDAxNzAyNDI2OTcwNjkz.33yoEBRk3fSPID7ISWUOtpvlxae8tKo_owhB5YMTER8g.UNfwHos4rXQc5Cfh3l5ebfDSF8anIjkWaTgDEPkhyXwg.JPEG.najung0303%2FIMG_2076.JPG%3Ftype%3Dw773", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 271, - "name": "나고야", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 수정구 대왕판교로 846", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317219903.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 272, - "name": "유브유부 분당점", - "category_id": "일식집", - "score": 1.0, - "review": "1", - "address": "경기 성남시 분당구 황새울로200번길 45 롯데백화점 분당점 지하1충", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 317382002.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FFD69082019E64BC4A441613EFE03E749, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDB5331F897774A83B659ED895C31D5A6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FSNd2P%2FbtsEyapJXmb%2FzS01FOIMhlTVnRO4SVKI9K%2Fimg.jpg", - "convenience": "주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 273, - "name": "거제도참치", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교대장로7길 15-15 103호", - "operating_hour": "매일 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 24:00", - "phone_number": 317112919.0, - "image_urls": "이미지 정보 없음", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 274, - "name": "하루엔소쿠 이매점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 양현로 220 상가B동 102호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 275, - "name": "하루엔소쿠 판교점", - "category_id": "일식집", - "score": 1.0, - "review": "7", - "address": "경기 성남시 수정구 창업로 42", - "operating_hour": "월~금 10:30 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F873DDF23D7184D2F91215780A315BFF8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F88ECB7AB52764CF6893552F07A27AC10, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MjNfOTIg%2FMDAxNzE2NDU0ODYwOTg5.LdVr1RHmKgIchFtn2mGjzYPxqS6eXcfNALsQ05vbY3Ig.CNzOvKhUh1YF_JNRVXHoDmbDYJkHT93MPQmJJ4f1Wwcg.JPEG%2FIMG_0076.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 276, - "name": "다쯔미 AK분당점", - "category_id": "일식집", - "score": 3.7, - "review": "0", - "address": "경기 성남시 분당구 황새울로360번길 42 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317812660.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5642c52fc78fc4fcfd47c8fc5f04eaf2d4ee3156%3Foriginal, //img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5642c52fc78fc4fcfd47c8fc5f04eaf2d4ee3156%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 277, - "name": "하루엔소쿠 분당이매점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 양현로 220 상가B동 102호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7082113266.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 278, - "name": "참치마연어야", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 내정로173번길 5 궁전쇼핑타운 106호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317143737.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 279, - "name": "용우동 하이패스센터점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 궁내동 257-2", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2324223F595DF77427", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 280, - "name": "미야코", - "category_id": "일식집", - "score": 3.0, - "review": "2", - "address": "경기 성남시 분당구 백현로101번길 16 대덕프라자 1층 111호", - "operating_hour": "월~금 14:30 ~ 16:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 16:30", - "phone_number": 1088464948.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMDRfMjM0%2FMDAxNzMwNjgzNTU0MDk5.ySMe4jNf62aUfnIhdtai1DO4QOkGxrF-vDuU2P2MKjIg.ZngZFbyCpv9UVG89TdHWSMEOn-sAyJU7lDacmKtCgCIg.JPEG%2Foutput_3257136500.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMDRfNzIg%2FMDAxNzMwNjgzNTczODMz.96CJ0_i5gOD1gn2nS_DKC8qZYUM_n6YsHsqUZ5ScYBgg.Ywlt1jOhptiwxwtx_WoJZeAhTxSIKwlzfXj8iXWnlc0g.JPEG%2FIMG_6583.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMDRfMjA3%2FMDAxNzMwNjgzNTg0OTk5.4hp4FmZ0TfWPWbuvL6o7oTLGjugkPRDp_dNqph4t9n4g.901p1TB85wfB15EwXeRQhamCCsPf7H1c4RNNogfuANEg.JPEG%2Foutput_644408330.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 281, - "name": "이학복집", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 성남대로772번길 8-1", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 282, - "name": "허수아비돈까스 분당점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 분당로53번길 10 동호프라자2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 283, - "name": "사조참치 정자점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 느티로 27", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 284, - "name": "백두제면소 수내점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 내정로173번길 11 양지마을 603동 지하1층 B03호", - "operating_hour": "화~일 11:00 ~ 20:30", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 20:30", - "phone_number": 50714427654.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2B85DF52E0524F6D90487197756B70CE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCA42BBCF99BB4B659DA262E31FC41CA0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F0EA3DF98416E4B9FB70179474B59A7F5", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 285, - "name": "놈즈", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로360번길 12 대명프라자320호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "정보 없음", - "convenience": "정보 없음", - "caution": "정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 286, - "name": "모미모미 롯데백화점분당점", - "category_id": "일식집", - "score": 1.0, - "review": "2", - "address": "경기 성남시 분당구 황새울로200번길 45 지하 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317382002.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDE96665DF3574997A6F92E3440D94846, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAzMjZfMjE1%2FMDAxNzExNDU0ODc0NTYz.mf4jS03a905OLTFKT5uc-BqnCSaTan7cbhJAsgse2ZYg.R4fee5W6aXYRqkW5UqY-7C-d1nVNIrlmnvxWcR74jzIg.JPEG%2FSE-63daa862-a96e-429d-88d1-b2badd1f268c.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAzMjZfMyAg%2FMDAxNzExNDU0ODcxODYx.UERjvuFhLv4TjlI6jY7wI8sL1MYH8DqjyFgP6L6jVLUg.h5-qk4hxf4uAzk5IdeIJzXtIs6tO-3C6pCbgil-dRUYg.JPEG%2FSE-dfbe085d-31bf-4757-817f-8478a2c888c9.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 287, - "name": "분당카레온 수내점", - "category_id": "일식집", - "score": 0.0, - "review": "2", - "address": "경기 성남시 분당구 황새울로 216 휴맥스빌리지 지하1층 B101호", - "operating_hour": "월~금 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F62FDEE4E61F84E0A95C65063BE35D9DB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F59984CDA21FD4FBE906A2567FAB49C05, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDA3A34AF96424F69A484C3E2DCCB3CAF", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 288, - "name": "초밥사랑", - "category_id": "일식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 수정구 설개로 10", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F0E075F77FCEA4E46A10D4935AE36F187, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F3A307908A602492A88A0225C9FD64C58, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2d4324afe438a8deee450400e819858546b8885a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 289, - "name": "아라도참치", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 느티로 16 젤존타워I 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F24062C3D5649B6E928, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F271DA9495649B6F740, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2611C3455649B6EE2F", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 290, - "name": "정세이카츠 돈카츠", - "category_id": "일식집", - "score": 5.0, - "review": "2", - "address": "경기 성남시 분당구 수내로 39", - "operating_hour": "월~금 14:30 ~ 18:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 18:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FE7633F4F43B543219CF958B93EF529CF", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 291, - "name": "돈미", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 분당로53번길 15", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA3C4145AC47D4783B40B29BC283CEAF0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faff80982acb3de8ec94e2ec377e6b0c3267cfb90%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb21f9203540805c843b60f22573254cdf2bcfa91%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 292, - "name": "야마모리야 배우김강현점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 정자일로 248 파크뷰 상가 2층 224호", - "operating_hour": "월~금 12:50 ~ 19:30", - "expanded_days": "월,화,수,목,금", - "time_range": "12:50 ~ 19:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF698A5322F284EC69F0DC0E2CD1D18A8", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 293, - "name": "연어로운 분당시범단지점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 중앙공원로31번길 42", - "operating_hour": "매일 11:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 20:00", - "phone_number": 50372625997.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE92965AA3A8844AD86F41B9191718799, //img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F82CF625CC38641F080F4598F6ABD4200", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 294, - "name": "일생청춘", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 정자일로 220", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317152722.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 295, - "name": "지존타코야끼", - "category_id": "일식집", - "score": 4.1, - "review": "2", - "address": "경기 성남시 분당구 판교로 478", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F39a510bf793f13a4a3f855abaabd63f2cededc96%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff4a155b4e9fc9483bee768d1a4fe903cc31e559e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F367b8c85d6d46f168f9dfbcaa0dbc4e944a13e34%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 296, - "name": "모리야", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 느티로 27", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 297, - "name": "이까", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 정자일로 192 지파크프라자 1층 108호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5324C2804CB347088C9AC3964457E099, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F833de30057b9041612fc9ec7a74bc9b1a1c607d5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff68bd831e7863c2ba6f69672e4f95c4891afc528%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 298, - "name": "호시참치", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로214번길 8", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 299, - "name": "고등스시", - "category_id": "일식집", - "score": 2.5, - "review": "0", - "address": "경기 성남시 수정구 청계산로4길 59", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6ab6d62f345582f5fdbf72e870546c792373c0bc%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 300, - "name": "심플프로젝트컴퍼니", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 수정구 창업로 17", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 301, - "name": "롤집", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 분당로53번길 11", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F72B37DD0FD73451AA6618C85A2D7F6A7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7ad0ceab307e316a0a5d61f5c78a034b72002513%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F03b9226e325b724282353042b770b34c5d7e7317%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 302, - "name": "복참치", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 성남대로772번길 5", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 303, - "name": "강민수산", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 백현로150번길 7", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317128829.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 304, - "name": "한스에프디", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로335번길 5 106호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 305, - "name": "스끼야끼AM11", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로312번길 20", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 306, - "name": "에이온파트너스", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 정자일로 192", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7077865050.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 307, - "name": "배들집", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로258번길 43", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7042032345.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 308, - "name": "키노시타", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 백현로101번길 13", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBECD3EE1731B473F8E5A0A9E9D9122A2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5cb42ae56700f6aec3f32e324c5842480b6c015e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5c912ccfacbe9b0996db84c152154626f474f8cc%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 309, - "name": "스시가이", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 내정로173번길 11", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 310, - "name": "두툼바삭가츠 분당시범단지점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 중앙공원로31번길 42", - "operating_hour": "매일 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 20:00", - "phone_number": 50372625995.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD286280887DB4C2997E4D8D984E164DF, //img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4E7C76EBBECF448088F5C9BEAAA3FE66", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 311, - "name": "스시보이", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서현로 184", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 312, - "name": "미유", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로214번길 8", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317152569.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF95676551EB14356BCCAA510CAAABAC5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F75EA99751DCD41EEA6AE8ACB6BF9A054, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FED132327E77945E198EEEC0DBD693136", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 313, - "name": "푸름파크키친 분당휴맥스점", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로 216", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 2, - "restaurant_id": 314, - "name": "에스에스벤처스", - "category_id": "일식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 백현로101번길 16", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - } -] \ No newline at end of file diff --git a/storage/input_json/restaurants_table3.json b/storage/input_json/restaurants_table3.json deleted file mode 100644 index 5484fde..0000000 --- a/storage/input_json/restaurants_table3.json +++ /dev/null @@ -1,1430 +0,0 @@ -[ - { - "db_category_id": 3, - "restaurant_id": 1, - "name": "수하담", - "category_id": "브런치카페", - "score": 3.5, - "review": 108, - "address": "경기 성남시 분당구 판교로 190-8 1-2층", - "operating_hour": "매일 09:00 ~ 19:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 19:00", - "phone_number": 3180166170.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F667BD073CE2547F59F319171D546646D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F202781F1A8284544A58FBBDAB0EF65CF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F507B9BA8534B41C288FE2ACFB020336B", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 2, - "name": "오픈커피 판교본점", - "category_id": "브런치카페", - "score": 3.8, - "review": 170, - "address": "경기 성남시 분당구 판교역로14번길 15 성음아트센터 1-2층 105~107,201호", - "operating_hour": "월~토 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FD6ACDA0CA6594D00B9A0072701DED49D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F93aba31f12fa49550083aba4087e853f38a6f92b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdcf51dce5ded9fc2bd194e0f250af5c3bc2eb0f6%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 3, - "name": "리스카페", - "category_id": "브런치카페", - "score": 4.5, - "review": 776, - "address": "경기 성남시 분당구 판교역로2번길 29 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 1066546300.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEE621F519C864230820EB1931F2CD86C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F70d421a49c40da41961ff5ec6be8f2520377cc4c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd8e9987a466a0e1f5b363f94142792e25f2cff62%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 4, - "name": "아임홈 분당백현동본점", - "category_id": "브런치카페", - "score": 3.6, - "review": 27, - "address": "경기 성남시 분당구 판교역로10번길 3-1 1층", - "operating_hour": "수요일", - "expanded_days": "수요일", - "time_range": null, - "phone_number": 7044180415.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F75E1B0A419BC4F55977024C01167C42D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Febe9c7d256e5bf49d7a01f1ae59b4c5b8915a19b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe845c98c4d031fba17fbf60715f7933302df0354%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 5, - "name": "무궁화파이브", - "category_id": "브런치카페", - "score": 4.1, - "review": 795, - "address": "경기 성남시 분당구 동판교로52번길 9-9 1층", - "operating_hour": "매일 09:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 17:00", - "phone_number": 317053367.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCDE0BA1DE622438AA3227206CCACFB63, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE5EE0802AE294673B0B13173E2AC722C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F34ED828393834C8FB625B0DE54F86FB3", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 6, - "name": "잼앤브레드", - "category_id": "브런치카페", - "score": 4.5, - "review": 110, - "address": "경기 성남시 분당구 판교공원로1길 14 1층", - "operating_hour": "화~토 08:00 ~ 15:00", - "expanded_days": "화,수,목,금,토", - "time_range": "08:00 ~ 15:00", - "phone_number": 317076113.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FC2291576303E452F8CAFC7E11E1AA870, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd8c2a8bc2a8f23d6d8bed25df31a01468cf95d4a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Feaf753faa4dfa296ec6ae8196fdd1b51644e5729%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 7, - "name": "아르틴", - "category_id": "브런치카페", - "score": 3.4, - "review": 167, - "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 107호", - "operating_hour": "화~일 10:00 ~ 22:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 1089962243.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBEA4E593384648CDA1EB6DDED06B083C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9DD03FE814C8460489AE512FEFF6DCE6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F723FC5848BBB473586BBD24F1CD7A3EE", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 8, - "name": "카페마마스 판교점", - "category_id": "브런치카페", - "score": null, - "review": 147, - "address": "경기 성남시 분당구 분당내곡로 117 그레이츠 판교 1층", - "operating_hour": "월~금 08:00 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 21:30", - "phone_number": 316227545.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F763537BF424D4EF1872147B9DE9A7397, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDVfMjEx%2FMDAxNzMzMzY3NDU4NDcx.xo4J5DviRFGRP17noqJ9L_TNkgKmVytQfRpbk7AhlZMg.Wrd9iy7R2re4UIGVvSQSK_Y4aZ_ISDYRGCfABmiY7L0g.JPEG%2FSE-41ed6335-4832-41d7-acdf-bd9c1e8274f8.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMTRfNjEg%2FMDAxNzMxNTk2MzE3MDgz.dUIycvQpQ0LsiZWPq6nhXbcVCQxl1QyT6TXBmo8nC2Ug.VEyrUYRrt-8nfD0agmufk9HXFc37uU3GVm1XE3r4yrsg.JPEG%2FIMG_1688.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 9, - "name": "카페 악토버", - "category_id": "브런치카페", - "score": 4.6, - "review": 139, - "address": "경기 성남시 분당구 동판교로52번길 9 1층", - "operating_hour": "월,화,수,금,토,일 11:00 ~ 17:00", - "expanded_days": "월,화,수,금,토,일", - "time_range": "11:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F985C525A95CA41E1AE5E8A46548C41B5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F82944005324423ba0df5c61de6b6881d8de53d2f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F90a84ad95b346e00dff900c8f2734231cfcc38a4%3Foriginal", - "convenience": "동물출입\n주차", - "caution": "예약불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 10, - "name": "비앙또아", - "category_id": "브런치카페", - "score": 3.4, - "review": 287, - "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 127호", - "operating_hour": "매일 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:00", - "phone_number": 317071088.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6ED984367D5E455BA6C896E701EC563B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F877B3471DF7843D6AA8F38B4B3C2BA9E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9cdb08ae5de5fdc31473f64c88f8a7f257bcee87%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 11, - "name": "에리아", - "category_id": "브런치카페", - "score": 4.3, - "review": 38, - "address": "경기 성남시 분당구 판교역로18번길 12 지하1층", - "operating_hour": "매일 11:00 ~ 22:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:30", - "phone_number": 317089927.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F091586370E8B4F5F827C84B74B63D3DD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F85414cd4fb3611ac46b823ff65e24424c994f7f6%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc50336f1d1f9fd8ec50f0e4ad82c88ce15c979c9%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 12, - "name": "아미코", - "category_id": "브런치카페", - "score": 3.4, - "review": 233, - "address": "경기 성남시 분당구 운중로138번길 28-3 1층", - "operating_hour": "화~일 10:00 ~ 22:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 317047999.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 13, - "name": "메리가든 판교", - "category_id": "브런치카페", - "score": null, - "review": 235, - "address": "경기 성남시 분당구 판교역로 10 1층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317815090.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6708FFDAEAE947109A7E5C4F0ADE9DEA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2DE49C0D340D4D3188BC0B9484973FF8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8855C4B5DB07401EB05C41E4AE007C51", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 14, - "name": "카페소시올로지", - "category_id": "브런치카페", - "score": 4.6, - "review": 101, - "address": "경기 성남시 분당구 판교역로 145 라스트리트 1층", - "operating_hour": "월~금 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 22:00", - "phone_number": 317083737.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7489730138F74E7BB1230C499F555FF7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F24D513279C6C44FAAADDC5A01642B38C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F68F070BB2404495EAF7C0DCE0CC04477", - "convenience": "편의시설 정보 없음", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 15, - "name": "쿠잉", - "category_id": "브런치카페", - "score": 3.9, - "review": 21, - "address": "경기 성남시 분당구 판교역로10번길 12-7 1층", - "operating_hour": "매일 10:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 23:00", - "phone_number": 317067750.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6fc741691040ae81f275e0069efb3b4fb8c38d91%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdc9595be12208b4c32f30d7f24119c43c87b26dc%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faf25e04ce010676c817e06980e5aecb5ea101e66%3Foriginal", - "convenience": "동물출입\n놀이방\n흡연실", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 16, - "name": "아방베이커리 판교카카오점", - "category_id": "브런치카페", - "score": 3.8, - "review": 207, - "address": "경기 성남시 분당구 판교역로 166 카카오판교아지트 1층 3호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 316017220.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1613ADBC1EA542EAA5BFA7E305572A66, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2590A9CC39BD437B8E19F26759769E42, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1c6ed78f3237f8fbbbd248c7187d7a37f7b04891%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 17, - "name": "에잇이얼스", - "category_id": "브런치카페", - "score": 4.7, - "review": 152, - "address": "경기 성남시 분당구 판교역로2번길 12 1층", - "operating_hour": "화~일 09:00 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "09:00 ~ 17:00", - "phone_number": 317818254.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F878DD71207B2445596EEAAE3C075CEE3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF7CE23774E8E4444A7018050EBFC6B3E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6F9EB52FBF8F463D8A0C531C3FB24100", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 18, - "name": "프론트 판교", - "category_id": "브런치카페", - "score": null, - "review": 115, - "address": "경기 성남시 분당구 운중로138번길 24-1 1층 101호", - "operating_hour": "매일 08:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "08:00 ~ 17:00", - "phone_number": 1079354758.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2879DAE6BAD34796A477A219F5772664, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC1F5DD80A72C4CC49BE0162CB0EA4D8C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F3053BBCE4D0B4ACEB4882DC2EF59A428", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 19, - "name": "플랩잭팬트리 본점", - "category_id": "브런치카페", - "score": null, - "review": 8, - "address": "경기 성남시 분당구 서판교로44번길 17-11 1층", - "operating_hour": "월,수,목,금 10:00 ~ 21:00", - "expanded_days": "월,수,목,금", - "time_range": "10:00 ~ 21:00", - "phone_number": 3180160168.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB17C90EB0DAA4DAD94ED6366ECE25E26, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFE10F37BD02145D4A6B299BFA9732BED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F27B74B1C27744836AE3A90AA27CF45D1", - "convenience": "편의시설 정보 없음", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 20, - "name": "올덴그레이", - "category_id": "브런치카페", - "score": null, - "review": 132, - "address": "경기 성남시 분당구 동판교로52번길 17-5 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 7043889689.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC6C48B4885D24A7D99267AA972326542, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7cfbaac6ae3aed263dfe4221cb5bb79a57fec014%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faaf26c4ade46524c94b41bd76f0bdfb93a158be9%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 21, - "name": "미더스", - "category_id": "브런치카페", - "score": 4.4, - "review": 301, - "address": "경기 성남시 분당구 동판교로52번길 9-6 1층", - "operating_hour": "월~금 08:00 ~ 19:00", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 19:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FAA5D7FB8E62F429EB376B02E18FAF57C", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 22, - "name": "소담시루", - "category_id": "브런치카페", - "score": 4.0, - "review": 1, - "address": "경기 성남시 분당구 판교공원로1길 10 1층", - "operating_hour": "월,수,목,금,토,일 08:00 ~ 17:00", - "expanded_days": "월,수,목,금,토,일", - "time_range": "08:00 ~ 17:00", - "phone_number": 317077373.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBFA15DCE1FCA4847B98412817FDD4DAF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe25eadeeaddb3accf281ac768cf875b299f296b0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fda1a6d35c42cce944075def7a00fad0bff5d6ec4%3Foriginal", - "convenience": "WIFI\n동물출입", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 23, - "name": "위스크 판교점", - "category_id": "브런치카페", - "score": 4.7, - "review": 28, - "address": "경기 성남시 분당구 판교공원로3길 36 102호", - "operating_hour": "수요일", - "expanded_days": "수요일", - "time_range": null, - "phone_number": 50371500404.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2E39D7FECF4F4622AD34638B876AF626, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdad768b793e5223624bb1f6d1c29ecd6b5bb82de%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F512a780995e98881cbee079d197f33d23c9c7e1c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 24, - "name": "스윗", - "category_id": "브런치카페", - "score": 3.7, - "review": 58, - "address": "경기 성남시 분당구 운중로146번길 11 지하1층,1층", - "operating_hour": "화~금 09:00 ~ 17:00", - "expanded_days": "화,수,목,금", - "time_range": "09:00 ~ 17:00", - "phone_number": 317079949.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F319E01168CF740E4A7AD6D38E19139D2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F683e7a818da56e7ef0c3567d73a922d8723f580d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F795aedf42afdb1a244ee0b97f6a7f46a66f55ba9%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 25, - "name": "멀멀 판교", - "category_id": "브런치카페", - "score": 5.0, - "review": 28, - "address": "경기 성남시 분당구 판교역로2번길 6 태훈빌딩 1층", - "operating_hour": "매일 10:00 ~ 18:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 18:00", - "phone_number": 7088220313.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD1A5F7092CAE4028980BD2ED4836FAEC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7254F420CE5E4D3FB2802A9809DC5085, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F19EF36301D4F4CDF82CE8E38D6B2A4D4", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 26, - "name": "무튼", - "category_id": "브런치카페", - "score": 3.2, - "review": 205, - "address": "경기 성남시 분당구 동판교로52번길 13-10 1층", - "operating_hour": "월~금 10:30 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMjRfMTU3%2FMDAxNzA4NzQ2MzYwMzk0.M6PieZAfTeM4KDV90DxpqZ_fCFDQwbUIwtq4DBZnx3Mg.FOkubF7OCk5FsKY349RuSG1-cyyftakRcvkhbxE5HA0g.JPEG%2FSE-7e22f8ad-b398-45f4-a2e2-4e10dbf4f039.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMjRfMTUz%2FMDAxNzA4NzQ2MTcyMTAz.ZdBaUNwJUSITaMK6GU6T_IwBX5eZHD6BhxMIx0VhVYQg.TKehtIT9puhKvDshb2Y9BL8QWmU6YlJYsgMOdhAj8Dsg.JPEG%2FSE-da1f3dcb-223d-4ab5-9748-b33efe52e30a.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMjRfNyAg%2FMDAxNzA4NzQ1MjU1MTU1.mwKs_7zpGDYuzOsu_AMKkWDHKpHqa_zGuN5i9eW-nC8g.aC30Pz7WZusWVIqVdMP9bUb-2pDJvAIAw5N61MYRBbgg.JPEG%2F%25EB%25AC%25B4%25ED%258A%25BC_%25EB%25AA%2585%25ED%2595%25A8.jpg%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 27, - "name": "아프레", - "category_id": "브런치카페", - "score": null, - "review": 73, - "address": "경기 성남시 분당구 판교로25번길 18-4 1층", - "operating_hour": "수요일", - "expanded_days": "수요일", - "time_range": null, - "phone_number": 50371504636.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 28, - "name": "카페두레브", - "category_id": "브런치카페", - "score": 4.2, - "review": 8, - "address": "경기 성남시 분당구 판교로255번길 9-22 판교우림 WCITY 1층 141호", - "operating_hour": "월~금 07:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "07:00 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_136203471, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F35735c0535a5ecda374703cc19ec68becd87a002%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe37c4c8e9777a38f75dd8ad004cfdb6c6617e20a%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 29, - "name": "클로이샌드위치", - "category_id": "브런치카페", - "score": 4.9, - "review": 32, - "address": "경기 성남시 분당구 판교공원로3길 4 1층 102호", - "operating_hour": "월,화,수,목,토,일 09:00 ~ 17:30", - "expanded_days": "월,화,수,목,토,일", - "time_range": "09:00 ~ 17:30", - "phone_number": 50713901549.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC730FD816F0143D3AA51EB74F5C80233, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F861741731217b13152c10c66d2b4e8628c3262c0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F122326caa1b9caec0ea51779d4cf7990a1bc1dca%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 30, - "name": "브리즈 카페", - "category_id": "브런치카페", - "score": 0.0, - "review": 18, - "address": "경기 성남시 분당구 운중로138번길 31", - "operating_hour": "화~일 09:00 ~ 18:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "09:00 ~ 18:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE91A5566D3F84FC3A1F990B60AF3A87B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MjVfMTc3%2FMDAxNzE2NjE5ODU3ODU1.V4dJ1dWOI4095ljA6P4L4-98_NRyh6R01446I17KNjog.rdgoltulrgLACQVRr_RhXN1VNWRCNVT-eD2t7_gfbykg.JPEG%2FSE-4367ADE5-D105-4F45-83C7-EEC6AF89CE3E.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MjJfMjQy%2FMDAxNzE2MzU2NjA5OTgw.kBpMie1P9xCP4hzTH8BHkQn5yTGX7gS10TxgOCBqqREg.YvunQUhs4kiNnX9EMsmy9q7umFNMvS3jxc8ybWW7DRMg.JPEG%2FIMG_0774.JPG%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 31, - "name": "원즈오운 판교", - "category_id": "브런치카페", - "score": 5.0, - "review": 94, - "address": "경기 성남시 분당구 동판교로52번길 9 1층", - "operating_hour": "월~토 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:30 ~ 21:00", - "phone_number": 1048593190.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE95B56165CC54CC8ADAF574AF1E7DA11, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCC4266AD361043D6BCA21ABF293EC4A9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBE74B142DEF34A809A838E37B539CABD", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 32, - "name": "일로이 키친", - "category_id": "브런치카페", - "score": 3.2, - "review": 73, - "address": "경기 성남시 분당구 판교공원로3길 10 1층", - "operating_hour": "화~수 09:00 ~ 18:00", - "expanded_days": "화,수", - "time_range": "09:00 ~ 18:00", - "phone_number": 317041124.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8EFA317C122E4AD7A2B918E6906747F0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F92f521dc3991fe06cf7c0c2a3bab7c9c1afdd700%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDhfMTMy%2FMDAxNzMzNjY4NzgxODU1.MPd1km9jizaeXFUEJCAtT1j1K0aVMjqLz1DA7oic0iog.XMx-StW-WLKbb586Xv3OPSoVo09SacUBpjcPfz0I_3cg.JPEG%2F900%25EF%25BC%25BF20241205%25EF%25BC%25BF122249.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 33, - "name": "사라베스 현대백화점판교점", - "category_id": "브런치카페", - "score": 2.6, - "review": 17, - "address": "경기 성남시 분당구 판교역로146번길 20 2층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701234.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F37F90F4FB2164DEF8D53EE602A667062, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Feb4aca872c0b8c295d4bc923644979e543b8de87%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2b6c3c05b6ce7f5cc6b474c624f2622bcd169fc4%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 34, - "name": "히글리", - "category_id": "브런치카페", - "score": 4.9, - "review": 79, - "address": "경기 성남시 분당구 판교로227번길 6 브릿지타워 지하1층 B101호", - "operating_hour": "월~금 08:30 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "08:30 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F94BD200568AA4F2291582E49A6D50E18, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa658227ac3260a5435e9cdf74ed4182627a994be%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7b316abae3849827aad71d7623e7941fe1f99fbe%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 35, - "name": "팜플래닛 판교점", - "category_id": "브런치카페", - "score": 5.0, - "review": 16, - "address": "경기 성남시 분당구 분당내곡로 131 테크원 3층 302호", - "operating_hour": "월~금 08:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 20:00", - "phone_number": 316017546.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F81EFFA80E8A94581873E66BD21A4E420, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7F152D5611C34D9AA6D054AA02AAA104, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F502169C1C77049D4866825A2D590F7A8", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 36, - "name": "모닝페이지", - "category_id": "브런치카페", - "score": 5.0, - "review": 10, - "address": "경기 성남시 분당구 판교공원로1길 12 1층 102호", - "operating_hour": "월~금 09:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "09:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F08043182734C4C2FBBC3785BCAECD938, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF43E73645A7243328A1882EB1299CDEE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FE81BAD96D9F046AD8FCFFC3F0F55AA96", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 37, - "name": "엘핀", - "category_id": "브런치카페", - "score": 5.0, - "review": 8, - "address": "경기 성남시 분당구 판교로319번길 14 성남판교경기행복주택 근린생활시설 1층 8호", - "operating_hour": "월~금 08:00 ~ 22:30", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 22:30", - "phone_number": 50371510285.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 38, - "name": "데니쉬미드", - "category_id": "브런치카페", - "score": 0.0, - "review": 1, - "address": "경기 성남시 분당구 판교공원로1길 22-1", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317069892.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MDdfMjI0%2FMDAxNzEyNDQwNzUyMzky.P2VKn-wlj0fHsWQReYC99vsKKcEKcY2id1InniOkq7Ug.YoGPKt1iv39m7KtQFaveY-rXcnhsMq9I2lSBbk11_tUg.JPEG%2F434723782_920245046467760_7304286780939484971_n.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MDdfMjk3%2FMDAxNzEyNDQwNzUyMzUw.0FyAytPKox5h4IlDkJBYEgEuFvKRtnkzX-mVNr8tHz0g.VtHD4S7HY0l-VIfhIEergYAz4dhbKzU1avBeJLLuzsIg.JPEG%2F434718699_1519467098785340_583854519382436073_n.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MDdfMTk1%2FMDAxNzEyNDQwNzUyMzky.2SNCTP0qTwQtI840eDgZ3ux_fExh7jso2iz5Ygs3SrEg.CiwD5SilaKmWA5_cey__3n1gBX1EwEtJx9wQNf9wbDIg.JPEG%2F434925761_431220776022360_8623508914427640404_n.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 39, - "name": "카페두레브", - "category_id": "브런치카페", - "score": 3.2, - "review": 56, - "address": "경기 성남시 분당구 판교백현로 57 1,2층", - "operating_hour": "월~토 08:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "08:00 ~ 22:00", - "phone_number": 317051711.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_136203471, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F35735c0535a5ecda374703cc19ec68becd87a002%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe37c4c8e9777a38f75dd8ad004cfdb6c6617e20a%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 40, - "name": "몽델리부티크", - "category_id": "브런치카페", - "score": 3.6, - "review": 222, - "address": "경기 성남시 분당구 백현로 26 더블트리 바이힐튼호텔 판교 지하1층 2호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB5C33A1657384D3CA63BCF0D87D22B7B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2CBB025D55D149AFB9FB4A8D3652E50F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F09becc7235ae6a0f2f94a4fb3e1cb6c6303e6314%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 41, - "name": "호텔더일마", - "category_id": "브런치카페", - "score": 3.4, - "review": 723, - "address": "경기 성남시 수정구 사송로77번길 35 1층", - "operating_hour": "2025년 2월 3일 ~ 2025년 3월 31일 휴무", - "expanded_days": "2025년 2월 3일 ~ 2025년 3월 31일 휴무", - "time_range": null, - "phone_number": 1021905867.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F1F0CC18971514CF9849CFBFF8CB4AE7F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F200B4D889B5A400480769D1B90E33E92, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC23DAE954D6E4982AECF8439E08D2533", - "convenience": "WIFI\n동물출입\n주차\n흡연실", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 42, - "name": "푸른언덕", - "category_id": "브런치카페", - "score": 3.3, - "review": 19, - "address": "경기 성남시 수정구 사송로80번길 23 1,2층", - "operating_hour": "월~토 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7A0831E190B840899B2B5119365EFFCE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMDZfMjc3%2FMDAxNjk2NjAyNzYzODQw.L71nS4Ejz8PDKrBGu82YPhTV02ih47qfdLeEcOgljDkg.TOtKi7yDDisFV0S0-on6jZ8efbPmWS573jSBhQGTt9og.JPEG.cofls0277%2FIMG_0180.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMDZfMjA1%2FMDAxNjk2NjAyNzYzNTYz.sQkItxb_sb7pNWgp3p4ngd8O0zZMs_fTBL3FHl5AmU0g.Ywd_mNFNz-xut9ZFIu0eOVmDBWmr_qsyd-AUlmDR3usg.JPEG.cofls0277%2FIMG_0179.JPG%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 43, - "name": "파네트리김영모", - "category_id": "브런치카페", - "score": 3.6, - "review": 648, - "address": "경기 성남시 수정구 설개로14번길 23", - "operating_hour": "매일 09:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 22:00", - "phone_number": 317411110.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F85648A26E2624FCAB14BA07A825E7332, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5beb45057589db1e41851caae93e5c7ded32482b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F187540f7db5ca779abb1d62e6ab7568d465b9d4a%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 44, - "name": "올가정원", - "category_id": "브런치카페", - "score": 4.0, - "review": 19, - "address": "경기 성남시 수정구 사송로 76", - "operating_hour": "매일 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F35661c187aa4270a54f9f27df9e5ae635bc71b83b9500ad69151545a1aa03f01, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fad04b7764c47fa7158f0f0008a59c684246f57f4%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc55eadf937d00d0c482eca802fe2187adb0727fd%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 45, - "name": "토브나인", - "category_id": "브런치카페", - "score": 4.1, - "review": 95, - "address": "경기 성남시 수정구 사송로 56 1,2층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 7088709990.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC530ADC96FA34CDAAA3F0602A32BAFC8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6b957d5481a07fc1175973b3020487c835a116a1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe9e0a4d5cde9e02da977f104330e2b3e1325b2b2%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 46, - "name": "버터핑거팬케익스 정자동점", - "category_id": "브런치카페", - "score": 3.5, - "review": 104, - "address": "경기 성남시 분당구 정자일로 239 아이파크 1단지 101동 상가 105호", - "operating_hour": "월~금 09:00 ~ 18:00", - "expanded_days": "월,화,수,목,금", - "time_range": "09:00 ~ 18:00", - "phone_number": 317859994.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBC97779AB8B9460CA2C9D3C40DC52E57, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F96a36f03d72835b49c03e0e427f499128fc2026c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fee5d9b8d3cfcbda6a12cae97e2e7bb7b172360cd%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 47, - "name": "카페드로잉", - "category_id": "브런치카페", - "score": 2.8, - "review": 393, - "address": "경기 성남시 분당구 정자일로 220 동양파라곤 1층", - "operating_hour": "매일 09:30 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:30 ~ 23:30", - "phone_number": 317184308.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3F655D01FC71413A95821540D1C148FF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0a4dd89d3ad5c838b798992b5eb07ac06b6f39cd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F403b493abc05afb7085667eb2003807d56b21e5d%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 48, - "name": "리스카페 정자", - "category_id": "브런치카페", - "score": 4.3, - "review": 952, - "address": "경기 성남시 분당구 정자일로 210 1층 120호", - "operating_hour": "매일 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAEF01E3C369249D4ACAAFB023B2E8120, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F84CFFC26E7D149E59740E3B6ADCD39C3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F68AA5F61AA9D4D36B98A8D1C79476D0E", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 49, - "name": "37.5 분당수내점", - "category_id": "브런치카페", - "score": 1.4, - "review": 60, - "address": "경기 성남시 분당구 수내로 39 지웰푸르지오 상가 2층", - "operating_hour": "매일 15:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:30 ~ 17:00", - "phone_number": 317113705.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F95469962417C4424A4055710E45CBFF1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa45c3cf54820aa1363a6e8717414e161c54d9029%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcde3ed576d5771bde06291d8e9e2520f616bdec9%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 50, - "name": "젠젠 분당점", - "category_id": "브런치카페", - "score": 4.0, - "review": 771, - "address": "경기 성남시 분당구 분당로53번길 15 산호트윈스 3층 308, 309호", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317015207.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F73D5CE23932843D1A6226E0A8A306B57, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F87D4B402C02A40489564C7A04990407A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FECC44FB507F64FA89DE611D1526B30A0", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 51, - "name": "브런치빈 분당서현점", - "category_id": "브런치카페", - "score": 2.7, - "review": 136, - "address": "경기 성남시 분당구 분당로53번길 16 정일빌딩 4층 402호", - "operating_hour": "매일 09:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 21:00", - "phone_number": 317787420.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F40F6CB476362459E9471FCAC2B715AAB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1f607c52622a78b47a9aa3bc6f1f8ac1b09f5e47%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa9b570db734d5d684f300d351f7a1e8586b94a78%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 52, - "name": "로우테라스", - "category_id": "브런치카페", - "score": 4.1, - "review": 276, - "address": "경기 성남시 수정구 청계산로5길 8 1층", - "operating_hour": "화~금 15:00 ~ 17:00", - "expanded_days": "화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 7086913028.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF81C2496B63B4C9BAB967630C5A77538, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F18779E1C772F4F8493C6F146C210C80C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF18F5688C99F40778B317A6D441E7B0D", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 53, - "name": "대한민국명장김영모 다이닝테이블", - "category_id": "브런치카페", - "score": 4.2, - "review": 218, - "address": "경기 성남시 수정구 설개로14번길 25", - "operating_hour": "매일 09:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 21:00", - "phone_number": 317221120.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE1D7BE8B62A348F2ADA2D1D90A29CE73, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2b9b1fa04ae289000819fe8acc066511106b1658%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5765465d5dc4bdaa9e800ba5bae1e7c9e516f566%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 54, - "name": "뮤징", - "category_id": "브런치카페", - "score": 0.0, - "review": 13, - "address": "경기 성남시 분당구 대왕판교로 334 3층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFCE0C62E611B48B7B52CE6BE60289580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MThfMjk0%2FMDAxNzE1OTk4ODgzOTE1.fBl14NrpVJxJiUQam-upAQsIdnvSU-NspS2BEFddO7Qg.Bu00YtD6C8Qf2IRoVq9G7PBS18Ef29nak7a-n37ai5Ug.JPEG%2FIMG_2779.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fdthumb-phinf.pstatic.net%2F%3Fsrc%3D%2522https%253A%252F%252Fblogthumb.pstatic.net%252FMjAyMzEwMTRfOTIg%252FMDAxNjk3MjUzODM1NTg2.P0qzgsenyn72x60Hjuvra8Iy6qYxotOLhoH70OEToEkg.mprOLbgF8_M9UVaYtQjCdNYJ6C0VXc_ZfGyJ4uuUEoIg.JPEG.eun06370%252F20231002%2525A3%2525DF142126.jpg%253Ftype%253Dw2%2522%26type%3Dff500_300", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 55, - "name": "유캔두잇 분당수내점", - "category_id": "브런치카페", - "score": 3.8, - "review": 34, - "address": "경기 성남시 분당구 수내로 39 1층 123호", - "operating_hour": "월~금 08:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 22:00", - "phone_number": 316255620.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F15E0A9A46456466DB97FCEF65B3B77BF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2a3f2999c3b69f2266ab0fceef8891a947316323%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa24beaea42d1688cca9e507b0203406539a32dac%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 56, - "name": "카페엠", - "category_id": "브런치카페", - "score": 3.8, - "review": 59, - "address": "경기 성남시 분당구 정자일로213번길 18 성원상떼뷰리젠시 201동 1층 105호", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 57, - "name": "콩킨누스", - "category_id": "브런치카페", - "score": 5.0, - "review": 172, - "address": "경기 성남시 수정구 청계산로 752 101~104, 116호", - "operating_hour": "월~금 14:30 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:30", - "phone_number": 317520009.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9BE94DDCF75E41FD861CAAF12FB3D1E7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF8C3CFF95F9E490DA6100D0147A340CD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB1420F8BD21344A99FE5586ACE3A8552", - "convenience": "WIFI\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 58, - "name": "소공원 롯데백화점 분당점", - "category_id": "브런치카페", - "score": 5.0, - "review": 0, - "address": "경기 성남시 분당구 황새울로200번길 45 3층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317382366.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 59, - "name": "카페온더데스크", - "category_id": "브런치카페", - "score": 3.5, - "review": 123, - "address": "경기 성남시 분당구 서현로237번길 3 1층", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 317093355.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8CDD3F0E4C5C44318C93CDFE3C6825FF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F12C60246C6394002B96CA8BBF3D8814E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8B18170F219C49BE9B18970BD4A5CC87", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 60, - "name": "델리카운터213", - "category_id": "브런치카페", - "score": 4.6, - "review": 71, - "address": "경기 성남시 분당구 정자일로213번길 10 성원상떼뷰리젠시 101동 1층 108호", - "operating_hour": "화~토 09:30 ~ 22:00", - "expanded_days": "화,수,목,금,토", - "time_range": "09:30 ~ 22:00", - "phone_number": 317080708.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F33763A4EC72B4A7389C8EB15BBBF9E2E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faf61574c2510efb8a06b9ad816c832b5add724d4%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc787223f59b3e70f065f626cf71bd185d47321e4%3Foriginal", - "convenience": "주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 61, - "name": "데이원 분당서현점", - "category_id": "브런치카페", - "score": null, - "review": 75, - "address": "경기 성남시 분당구 황새울로359번길 11 미래에셋플레이스 1층 102호", - "operating_hour": "월~금 07:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "07:00 ~ 21:00", - "phone_number": 317011124.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7E866EDCD5004F218D766C4435472200, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF7D8C69A1418479FB930CB388D11E407, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F800C29DE7F1E4683A2FE721CC70E9A7B", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 62, - "name": "카페랄로 판교점", - "category_id": "브런치카페", - "score": null, - "review": 451, - "address": "경기 성남시 분당구 하오개로 246", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 317095711.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F277C4D45544637BF3A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F25575E415454A15C35, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2265C9415454A17223", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 63, - "name": "그랜마스 정자직영점", - "category_id": "브런치카페", - "score": 3.7, - "review": 76, - "address": "경기 성남시 분당구 정자일로 197 1층 116, 117호", - "operating_hour": "월~금 09:00 ~ 19:30", - "expanded_days": "월,화,수,목,금", - "time_range": "09:00 ~ 19:30", - "phone_number": 317125535.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFF8AE9BD2ACB4A7E9BE21943E1F0D395, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FACC70B89E42F4E13BA7DC70904C819BA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4ED34904A3E14C6CBC6B344B738E15A2", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 64, - "name": "아볼롱떼", - "category_id": "브런치카페", - "score": 5.0, - "review": 18, - "address": "경기 성남시 분당구 탄천로 27", - "operating_hour": "수,일요일", - "expanded_days": "수,일요일", - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5591636508fb50d2a9a08c5567a06c7976db4e68152412b49373521425824997, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F69b82f8eecf873ffcffad4e04b9d935d4ee3722408f3aeb85b781246b16b110a, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6acb1d1b8bb73e20c0821196dbe82073950a1074863805afd75dc4787c92bba1", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 65, - "name": "카랑코에", - "category_id": "브런치카페", - "score": 3.9, - "review": 79, - "address": "경기 성남시 분당구 쇳골로 70-1 아셈메디칼빌딩2 1층", - "operating_hour": "매일 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:00", - "phone_number": 317117924.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3D1D13BABA654ADA9A45F57E86A6D301, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd2013faf53b1ae214dc611cf33145bf3d4fcc355%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7dc2dd7442e82fd9b5ae67126f649375348463da%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 66, - "name": "살롱드사송", - "category_id": "브런치카페", - "score": 3.0, - "review": 36, - "address": "경기 성남시 수정구 탄천로307번길 10 1,2층", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 317562225.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F917A65B18E9F48B5BD177FE6D404A791, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2F7A2162023A4291B0B2326E7ADA9F4D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9222a418b8fe3983519e04b1923bd3b78d5dd76a%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 67, - "name": "러셀브런치", - "category_id": "브런치카페", - "score": 4.0, - "review": 98, - "address": "경기 성남시 분당구 서현로237번길 24-7 1층", - "operating_hour": "월,수,목,금,토,일 09:00 ~ 20:00", - "expanded_days": "월,수,목,금,토,일", - "time_range": "09:00 ~ 20:00", - "phone_number": 1099778472.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE0DF36AC180E40008B5AC322690F03E9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0a6d76a2db8b19f1b7e8b0ea9aba2b9c4cb9d390%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe60be77dd04e53071855379d2197c23b918ed45a%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 68, - "name": "식구", - "category_id": "브런치카페", - "score": 3.7, - "review": 58, - "address": "경기 성남시 분당구 쇳골로 50 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317137288.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 69, - "name": "카페보꾸", - "category_id": "브런치카페", - "score": 4.3, - "review": 140, - "address": "경기 성남시 분당구 서현로237번길 5 1층", - "operating_hour": "화~일 12:00 ~ 20:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "12:00 ~ 20:00", - "phone_number": 1084424959.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD5A983C65867424AAD973838BE0DA302, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2F3142FAFC0B4592B6F54BD31CB862FF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F1AF2D92FB237479EAF9DBA0A6F6CDC25", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 70, - "name": "벙크오프", - "category_id": "브런치카페", - "score": null, - "review": 192, - "address": "경기 성남시 수정구 고등로1길 12 1층", - "operating_hour": "화~일 12:00 ~ 24:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "12:00 ~ 24:00", - "phone_number": 50714900803.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCF2DC669C19B4CDDA430B36650923CC1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F98C989555F8C4E52BD4CE92B9230E4D5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEwMDJfMjQw%2FMDAxNjY0NjcxMDc5NzE1.Q2pn3Kwyvpt8lH7kbZjvCSdz7nJp4Qe0lO9xSCQl4Ygg.oLswfEEUz0gYHim-jsFvtiEuFHch1NiMsnyyDsF_wAMg.JPEG.bodybani1%2F%25EB%25B6%2584%25EB%258B%25B9%25EC%259E%2584%25EC%2582%25B0%25EB%25B6%2580%25EC%259A%25B4%25EB%258F%2599_%25EB%25B6%2584%25EB%258B%25B9%25EC%2582%25B0%25ED%259B%2584%25EC%259A%25B4%25EB%258F%2599_%25EB%25B2%2599%25ED%2581%25AC%25EC%2598%25A4%25ED%2594%25844.jpg%3Ftype%3Dw773", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 71, - "name": "이디야커피 궁내크리스탈DI점", - "category_id": "브런치카페", - "score": 4.5, - "review": 58, - "address": "경기 성남시 분당구 대왕판교로 221 동일빌딩 1층", - "operating_hour": "월~토 07:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "07:00 ~ 22:00", - "phone_number": 3180239660.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F3526CE64F50A48CE85F95D8396FF46C5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F229A290F7A44473DBEB99BFC38B87946, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9AE6A41DC61F4DBD80C668D4EB0C7847", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 72, - "name": "멜랑", - "category_id": "브런치카페", - "score": 4.3, - "review": 90, - "address": "경기 성남시 분당구 야탑로111번길 5-3 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317787109.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC2850CCA8CBB49E2A91C4AB2ACDEFEA6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe61c09a846b5006b143a449fb704e644cc67bb00%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa3575233fdc922d1164560c7f4cd35d7d21c3ed0%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 73, - "name": "카페콩", - "category_id": "브런치카페", - "score": 4.8, - "review": 0, - "address": "경기 성남시 분당구 내정로174번길 6", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317140602.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F68BEF7960E0040569CCB12EAC88CDCE7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAyMjBfOTMg%2FMDAxNjc2ODcxNjIwOTIx.4lSLXeDOfAUE-BA9FiQGFW278DSJyyMIUPxijFd8Z10g.nN_TUXp5U_lPStXAghefUA5qvuPjU2rW7rqhx39sZYEg.JPEG.95kg%2F20230218_172859.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMjdfNDYg%2FMDAxNzMwMDEyNjc5NTkz.DvAhGIhm6L0QQonTfxybQf-dBgLPbEa_7W4FT9aEl8sg.M_itZiyYFBocCu2F4KLwAbXmB1JiwTvQSS19H-o8hGYg.JPEG%2FIMG_9866.jpg%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 74, - "name": "코그노센티", - "category_id": "브런치카페", - "score": null, - "review": 145, - "address": "경기 성남시 수정구 고등로1길 20 1층", - "operating_hour": "수요일", - "expanded_days": "수요일", - "time_range": null, - "phone_number": 1022227161.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE5630A979C174583A4CC4341E742A4EE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA0MjNfMjI0%2FMDAxNjgyMjQ1ODEzOTc4.GAJ6oSc_FaVhSWi-SosZtJlYxRpVhkfWyc_53aH5vNAg.tMIeGVuwPh6m-sMNY5mg9nRzkGUQsVP1PewFPlL9FXIg.JPEG.cah97%2FIMG_4070.jpg%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MjBfNzYg%2FMDAxNzI2ODMxNDM3NjE3.0NIkFBLoPZTIdN1ZT30YkTnIAajo1IkgxVGagu94Hagg.zz4hiMtYLg8GEdzBMA2wXy0ZLHQoQZ60If9tZ4_j5Dog.JPEG%2FSE-67c42203-5d63-45c8-9a7f-8a07c5b3bf29.jpg%3Ftype%3Dw773", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 75, - "name": "빈앤빈즈", - "category_id": "브런치카페", - "score": 2.3, - "review": 15, - "address": "경기 성남시 분당구 새마을로7번길 5 1층", - "operating_hour": "월~토 16:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0CE2BE38D7D145ABA79ECAA5EBAF9320, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4EEF184DB7454E489775C812DD70382E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDA3A685CC1AE4228A12DAF22BD7D63B1", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 76, - "name": "마이페이보릿네이버", - "category_id": "브런치카페", - "score": 3.2, - "review": 210, - "address": "경기 성남시 분당구 판교대장로4길 22 1층 102호", - "operating_hour": "월~목 09:00 ~ 17:00", - "expanded_days": "월,화,수,목", - "time_range": "09:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB307D41AE99845E3B586C6808E1BB5D3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fea394d17e665411ce422ba99ec7be01d6d131d1f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3bd8258de45ed3c840fdafdf5aca36c82820cf97%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "배달불가", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 77, - "name": "콜빈스", - "category_id": "브런치카페", - "score": 4.7, - "review": 7, - "address": "경기 성남시 분당구 판교대장로4길 12-3 1층", - "operating_hour": "월~금 09:00 ~ 18:00", - "expanded_days": "월,화,수,목,금", - "time_range": "09:00 ~ 18:00", - "phone_number": 317122513.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F45e56d03eb2ba5cd0d5948ef1a09c099dad74f28%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F427e0b818501ea8c7d7c6d06397912f4592b15d6%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc3731e1dd11f6c1410f101d6e3f7e981a665226e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 78, - "name": "델리슈샤", - "category_id": "브런치카페", - "score": 3.4, - "review": 103, - "address": "경기 성남시 분당구 정자일로 136 정자역엠코헤리츠 3단지 1층 C109호", - "operating_hour": "매일 09:30 ~ 18:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:30 ~ 18:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FBB1760A5D2DA45D0B45D509728F86DA3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC610D2A73F2E4F0DA0D06C6F2202C9D4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0B3AA273FA8847F6B30129DC9033D31B", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 79, - "name": "카페마더후드", - "category_id": "브런치카페", - "score": 0.0, - "review": 1, - "address": "경기 성남시 분당구 운중로166번길 6 1층 101호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 1031465770.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD31E38CA30F14A5D88C1C3003451751A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F128C299EB4E54B5FB0B1585C92E64B03, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAB62748103594A34B902D91E86B118D5", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 80, - "name": "카페브런치", - "category_id": "브런치카페", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 방아로 29 2층", - "operating_hour": "월~금 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE6BD917582C64BAC84B51582C2EB841F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F33c74a77279d12f2f61a3404cc61f8db12126e6b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5b8597bc53354dc32225bbe311595dbc0c05c4f6%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 81, - "name": "샐러드나인", - "category_id": "브런치카페", - "score": 5.0, - "review": 1, - "address": "경기 성남시 분당구 판교공원로2길 32 1층", - "operating_hour": "월,화,수,목,토,일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317081358.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F874A8ABDE6E643AE9CC56DF064A900E0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F60235C953AC347A2B49B416AEEB40F2E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F007B7A038EE74D8D801FE9DE72F37639", - "convenience": "WIFI", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 82, - "name": "콜드앤브런치", - "category_id": "브런치카페", - "score": 0.0, - "review": 0, - "address": "경기 성남시 수정구 대왕판교로 815 판교창조경제밸리 기업지원허브 1층 110호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 83, - "name": "갤러리카페다미안", - "category_id": "브런치카페", - "score": 3.7, - "review": 4, - "address": "경기 성남시 분당구 쇳골로 64 2층", - "operating_hour": "화,수,목,토 10:00 ~ 17:00", - "expanded_days": "화,수,목,토", - "time_range": "10:00 ~ 17:00", - "phone_number": 317180188.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA2BE3F7F1B67484997F76CA566927E54, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F20FB1E48BE9448B8B3EE61053E9DF296, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC167ECED5FE144E29786E62A4677D4BF", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 3, - "restaurant_id": 84, - "name": "프랑제리 NC야탑점", - "category_id": "브런치카페", - "score": 4.1, - "review": 115, - "address": "경기 성남시 분당구 야탑로81번길 11 8층", - "operating_hour": "매일 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:00", - "phone_number": 316079902.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6948C9AE23994B11BDCC86BB3759D958, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBBFEE90C57874A19AE696F7FE2725F6C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF70C464B734F4655B3A2C5B149C693B3", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - } -] \ No newline at end of file diff --git a/storage/input_json/restaurants_table4.json b/storage/input_json/restaurants_table4.json deleted file mode 100644 index 9448dee..0000000 --- a/storage/input_json/restaurants_table4.json +++ /dev/null @@ -1,3385 +0,0 @@ -[ - { - "db_category_id": 4, - "restaurant_id": 1, - "name": "뚜에이오", - "category_id": "파스타", - "score": 4.2, - "review": "873", - "address": "경기 성남시 분당구 판교공원로3길 24-2", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 3180161865.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB82840AE9F744073B9D6094C29710FC6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe24915e23baf44f44b8b11275f41ebbbf30acbb2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F150dff4ef35678581f6c0082d4d944e845a19652%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 2, - "name": "파파라구", - "category_id": "파스타", - "score": 3.7, - "review": "521", - "address": "경기 성남시 분당구 판교역로10번길 22-3 1층 101,102호", - "operating_hour": "월,수,목,금 15:00 ~ 17:00", - "expanded_days": "월,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317095624.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F8973E9C7A0CE41B08710975BA50ABCF1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_476580354, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBC425AD040DC4600B6C64D731889D516", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 3, - "name": "라비떼", - "category_id": "파스타", - "score": 3.9, - "review": "274", - "address": "경기 성남시 분당구 판교공원로3길 16 1층", - "operating_hour": "월,수,목,금,토,일 15:00 ~ 17:30", - "expanded_days": "월,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1def0ea4858280591039c8bb29fce9d0f315529a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F446554de6c23735d5e0387be33b370aa7c18adaf%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd745934381b680d25efff2133a3ef256e21ee7dc%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 4, - "name": "빈티지1988", - "category_id": "파스타", - "score": 3.1, - "review": "442", - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 101호", - "operating_hour": "월~금 14:30 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:30", - "phone_number": 50713871993.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F126FF7464FFA64F81D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2021A2434FFA653F2C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F0EF2F3FE94A34CB38838C2F1EAD50271", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 5, - "name": "세렌", - "category_id": "파스타", - "score": 3.8, - "review": "300", - "address": "경기 성남시 분당구 운중로188번길 11 1층", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 317090775.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 6, - "name": "푸치니", - "category_id": "파스타", - "score": 4.2, - "review": "52", - "address": "경기 성남시 분당구 판교로25번길 6-3 1층", - "operating_hour": "화~토 15:00 ~ 17:30", - "expanded_days": "화,수,목,금,토", - "time_range": "15:00 ~ 17:30", - "phone_number": 317013398.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 7, - "name": "오스테리아 워모잡", - "category_id": "파스타", - "score": 3.4, - "review": "250", - "address": "경기 성남시 분당구 판교공원로2길 40-1 1층", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 1030059541.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1876655045, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FB7DA27DC93A54FCFB5D8279AF222FED1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4514A6591B97421DA0E1C0826AAC89EB", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 8, - "name": "라그릴리아 판교점", - "category_id": "파스타", - "score": 4.2, - "review": "112", - "address": "경기 성남시 분당구 판교역로 166 카카오 판교 아지트 1층 17호", - "operating_hour": "매일 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 317070999.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1F79BCF05170474896655B1794C0CEC9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe8ff1fbe71bfe749a2aacc85cb99bb90a03ff10f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdc1f7c8802c81ba74e7fe99125b3215a391914df%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 9, - "name": "라스토리아1001", - "category_id": "파스타", - "score": null, - "review": "266", - "address": "경기 성남시 분당구 판교공원로3길 24 1층", - "operating_hour": "수~금 15:00 ~ 17:00", - "expanded_days": "수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 50255516969.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F39CE7677E1224AB29BF7CABEBCC30EDB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTRfNjEg%2FMDAxNzM0MTc1ODQ3Mzgz.gqAcdiiv1-4iRAdJPhUHXoDvLd2aR0MV4Mp-nCw7Of8g.uIpuMzCYiSmapuZHx8c3B0vXJ2a-i5tMDH6h9BT4_Pkg.JPEG%2FKakaoTalk_20241214_202300299_15.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTRfMjgz%2FMDAxNzM0MTc2MDE4NTI5.QoCGDS1BbdKIUfOhRHfRBT-dcVHLbMMRp4xjhmOm_4sg.kQe82WRIj3nKVNumCT8SETXGcdZotw96cdMwt12p5Fog.JPEG%2FIMG_7751.JPG%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 10, - "name": "이탈리 판교점", - "category_id": "파스타", - "score": 3.2, - "review": "231", - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 지하1층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701061.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F69575383D004495694C62007A51D4955, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F227f30d1c47269b0079b4a62155d537ef7b1fa77%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5572427af547f6e729f170634f4ff19c70dde076%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 11, - "name": "베네쿠치", - "category_id": "파스타", - "score": 4.1, - "review": "48", - "address": "경기 성남시 분당구 운중로146번길 19 1층", - "operating_hour": "화~금 11:30 ~ 21:30", - "expanded_days": "화,수,목,금", - "time_range": "11:30 ~ 21:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4EEFD72E8366454194DE7AE54DDCCDEC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc4a1bd15b2fe732ff21e56c5dbba2478bd3a5175%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd2b9e2eada92ef8e1ef05d79982ada7455ab143a%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 12, - "name": "피제리아 비니스", - "category_id": "파스타", - "score": 4.5, - "review": "598", - "address": "경기 성남시 분당구 판교공원로1길 70 1층", - "operating_hour": "수~일 15:30 ~ 17:30", - "expanded_days": "수,목,금,토,일", - "time_range": "15:30 ~ 17:30", - "phone_number": 317010345.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4947E278FE9F42A48071CA5B2AA09D1A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4F24E17D4342433191F323D574708619, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4D222479C31A49AAA589F6A274A502CB", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 13, - "name": "더플레이스 판교점", - "category_id": "파스타", - "score": 4.4, - "review": "169", - "address": "경기 성남시 분당구 동판교로177번길 25 1층", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 317010421.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F786AA23600B3441790908105A95F1406, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDF3E48C0E17543EEAA756F9929C282B2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F05EFD500C2B442228BE3C3B833DF5ADA", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 14, - "name": "메즈클라", - "category_id": "파스타", - "score": 3.9, - "review": "0", - "address": "경기 성남시 분당구 운중로146번길 35-1", - "operating_hour": "화~일 15:00 ~ 17:30", - "expanded_days": "화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 50713607544.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F1B86086D5B2B43AB88D371C1B0272AFB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FE587B85A321742268EC0B7C2C69D700D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa1edac375f7daf70bc24e2039390af1f77462f65%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 15, - "name": "에이치541", - "category_id": "파스타", - "score": 3.5, - "review": "10", - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 9층", - "operating_hour": "매일 10:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:30", - "phone_number": 3151702541.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F746BA92B638C4474BBC3794EF8C477CE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0f4c9bb7b2f812da8438f55086fbb2d5d37ab459%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F05964b549291f601ac99b6759dc92828b49b3a8a%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 16, - "name": "체르또", - "category_id": "파스타", - "score": 4.6, - "review": "23", - "address": "경기 성남시 분당구 동판교로52번길 13-10 1층 102호", - "operating_hour": "화~금 14:30 ~ 17:00", - "expanded_days": "화,수,목,금", - "time_range": "14:30 ~ 17:00", - "phone_number": 50255501744.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 17, - "name": "에이치이에이", - "category_id": "파스타", - "score": 5.0, - "review": "467", - "address": "경기 성남시 분당구 판교공원로1길 67 지하1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317810122.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 18, - "name": "더이탈리안클럽 판교테크원점", - "category_id": "파스타", - "score": 3.6, - "review": "207", - "address": "경기 성남시 분당구 분당내곡로 131 1층 5-2호", - "operating_hour": "월~금 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4043FB44BB5E4E3D80938662F6213BF8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6d6187b7f53e3deeb01626cfc0dd7e9d07877650%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3269e3b72c8760d0edec5036c1aed3d08f285396%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 19, - "name": "챠오바라이트", - "category_id": "파스타", - "score": 3.0, - "review": "10", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 125호", - "operating_hour": "월~금 11:30 ~ 10:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 10:00", - "phone_number": 316284545.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1F92BD49C422488C9A002FB820DF3015, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9fbfd7190102004ccfbf66cd1a280eb6fd7c35ac%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F89a64dd1620fddf443ac14edc4de9f2d42957ead%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 20, - "name": "비스트로바이콘", - "category_id": "파스타", - "score": 4.3, - "review": "18", - "address": "경기 성남시 분당구 대왕판교로645번길 36 1층", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 316068511.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F72763F140BDE498D9F722FDC2784B312, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjhfNTUg%2FMDAxNzMyNzg3NDgyMDkw.5gh8FCut0ESujYQTAQD1f9aoGCIxJRFFOg_WUDvQbEsg.O_siazouFjXkpbWcrQbdwf2EsNRQ--58btjVal-TytAg.JPEG%2FIMG_9807.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjhfMTk3%2FMDAxNzMyNzg3NDgyMTMw.4sGphTUk6dPzF4yhUe86MkIWVl-8o75NSv-T-XLRjgEg.HilFQ3G7aQ5bRL9UwAMF-SI2K7qA84ity6apAV5mrUIg.JPEG%2FIMG_9806.JPG%3Ftype%3Dw966", - "convenience": "WIFI\n주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 21, - "name": "까사파스토", - "category_id": "파스타", - "score": 4.9, - "review": "36", - "address": "경기 성남시 분당구 판교역로10번길 14-5 1층 102호", - "operating_hour": "화~토 15:00 ~ 17:00", - "expanded_days": "화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 317269155.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F28496E3046B94D6FA8752A8A5F55B711, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F93EE961CF25845BFA16730815711FFA1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5A48AAC82E2549269FD141594CC1EDB7", - "convenience": "WIFI\n동물출입\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 22, - "name": "비스트로허디거디", - "category_id": "파스타", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 산운로32번길 14", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180173214.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 23, - "name": "판교의하루일과", - "category_id": "파스타", - "score": 3.5, - "review": "84", - "address": "경기 성남시 분당구 분당내곡로 131 2층 11호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 316017559.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F13BAD30E2C204E13A2FD5664CD01DA9E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA3393900C4A54CDDB55B89064101DBD4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F8521FF560A6147E194060691F2B9BCF4", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 24, - "name": "구세뻬", - "category_id": "파스타", - "score": 3.6, - "review": "4", - "address": "경기 성남시 분당구 판교로33번길 21 1층", - "operating_hour": "월~토 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7C8C223902534A3E985F4E2B6C5CD4B3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F16a6c2a13c63a726a9d6be2a2e0d49d759a677df%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F30ea745c59a93fca35d1c83d56fea4fed9213cac%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 25, - "name": "스너그", - "category_id": "파스타", - "score": 3.7, - "review": "28", - "address": "경기 성남시 분당구 운중로113번길 12-2 1층 101호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 1072572055.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 26, - "name": "더 키친 일뽀르노 현대백화점 판교점", - "category_id": "파스타", - "score": 3.8, - "review": "87", - "address": "경기 성남시 분당구 판교역로146번길 20 5층", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": 3151701592.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F343745CAEBD64500812E8E1182298A6D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC38BD0D9873B476A956843CA743B4593, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F765C1F0BF8224CF6A6BD9967271F70F6", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 27, - "name": "라빌란치아 이탈리안음식전문점", - "category_id": "파스타", - "score": 4.8, - "review": "2", - "address": "경기 성남시 분당구 판교공원로2길 49 1층", - "operating_hour": "월~토 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB8B7ED61E1EE4BDD81AAB4A4BA48C07A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F21070f93054d75e0d067e297ef03ad4abf0f4328%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc7125d22497f49187e4f7833b47c67700929a254%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 28, - "name": "105파스타 서판교점", - "category_id": "파스타", - "score": 4.2, - "review": "3", - "address": "경기 성남시 분당구 판교공원로5길 3 1층 102호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317070105.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FFBFDE3E4606F4A44A32975398DB89F78, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F801522F204634C6F976A24498E46B3DC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMDRfMjMz%2FMDAxNzA0MzU3Mjk1MjY0.dxKQGxaoxyjb8q4y3ejbVkkvGgnVoMgNZ-cxUX_VRbwg.Caxf6oGOiWLt-W1zGqRDIECnLs955vEJchnoGxOjONUg.JPEG.nks9548%2FKakaoTalk_20240101_171514066_07.jpg%3Ftype%3Dw966", - "convenience": "WIFI", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 29, - "name": "빔스", - "category_id": "파스타", - "score": 4.5, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 39 12층 1201호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 30, - "name": "파토리아1964", - "category_id": "파스타", - "score": 2.9, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 9층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151701938.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqqFYpNhUL_xXCLRfXbVKCztAYcy4HM60_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffbf2fd47984d2cb19d9a9fd3cd82cca442a38708%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqqFYpNhUL_xXCLRfXbVKCztAYcy4HM60_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 31, - "name": "오말리 판교점", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 47", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316251232.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 32, - "name": "라 피아디나", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 33, - "name": "라디오베이", - "category_id": "파스타", - "score": 3.3, - "review": "247", - "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋타워 2층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 3180610773.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDE570D016BC24DAA856B68B58CE6A04B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7693107f317b0d7c6a2caf05acf80ba313dc6533%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9e8461aaf171b7672504214c12d184521bfcf51a%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 34, - "name": "울프스덴", - "category_id": "파스타", - "score": 3.4, - "review": "355", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 215호", - "operating_hour": "월~금 14:30 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:30", - "phone_number": 50714011887.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDEA10F22BD374B62A4598B3D1DEB8FB6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F13E6493621AB41C891EA61EB34C35067, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2F519E565EE34802ACA0F86F5BE49396", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 35, - "name": "판교매일식당 판교본점", - "category_id": "파스타", - "score": 3.5, - "review": "81", - "address": "경기 성남시 분당구 판교역로192번길 14-2 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBAC97A276A3340FD9246B7AC6A8B7860, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4c7b3641a6660d71941c5fb24a1247b61719760e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F97d830f498f5f106efb8bb7f40eeaf19812168fe%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 36, - "name": "닥터로빈 시그니처 판교점", - "category_id": "파스타", - "score": 3.3, - "review": "1,249", - "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 108호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317813105.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC487C3B0B6A94279BA04C828D9258845, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD1CFE9835C2C4963B47264B4BBE7F419, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F94068CCE39A046DE911FF645EE9823B3", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 37, - "name": "어글리스토브 판교라스트리트점", - "category_id": "파스타", - "score": 3.2, - "review": "342", - "address": "경기 성남시 분당구 판교역로 145 2동 2층 219호", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317068459.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9D86BBB6CA2C48D086300B8354BD0211, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8FF235B5889A4E52903FD82604049D3B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDA3479ED1DF84A888041A2C1AA91CC82", - "convenience": "WIFI\n주차\n휠체어사용\n흡연실", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 38, - "name": "리스카페", - "category_id": "파스타", - "score": 4.5, - "review": "776", - "address": "경기 성남시 분당구 판교역로2번길 29 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 1066546300.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEE621F519C864230820EB1931F2CD86C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F70d421a49c40da41961ff5ec6be8f2520377cc4c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd8e9987a466a0e1f5b363f94142792e25f2cff62%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 39, - "name": "리얼스페인 판교점", - "category_id": "파스타", - "score": 3.2, - "review": "135", - "address": "경기 성남시 분당구 판교역로10번길 12-5 1층", - "operating_hour": "월~금 15:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:30 ~ 17:00", - "phone_number": 3180173614.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA7FFEE37CF5441318EC4B131ACB41B01, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd5e4b40dc44dfee74149fcf1c16a42f97efa608a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3a42e1c574c2f037b7ece2fabafb63f012f9b023b92198d949210db67b7d21e8", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 40, - "name": "샤슬릭", - "category_id": "파스타", - "score": 3.8, - "review": "152", - "address": "경기 성남시 분당구 판교공원로2길 45 1층", - "operating_hour": "화~일 15:00 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 3180166262.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F13486E454F1F518D1F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F1360B9364F1F517B20, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F154FCD494F1F517024", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 41, - "name": "무궁화파이브", - "category_id": "파스타", - "score": 4.1, - "review": "795", - "address": "경기 성남시 분당구 동판교로52번길 9-9 1층", - "operating_hour": "매일 09:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 17:00", - "phone_number": 317053367.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCDE0BA1DE622438AA3227206CCACFB63, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE5EE0802AE294673B0B13173E2AC722C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F34ED828393834C8FB625B0DE54F86FB3", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 42, - "name": "레스토랑마고", - "category_id": "파스타", - "score": 4.2, - "review": "161", - "address": "경기 성남시 분당구 정자일로 230 동양파라곤 105동 지하 103호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 1045260589.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F707FB104E3E740049149D5890574DC53, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDCB45A60450E49EE893CA7FA345B9588, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9E2DB72075EC4402B53A1EFE68A25B09", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 43, - "name": "더라운지", - "category_id": "파스타", - "score": 3.3, - "review": "1", - "address": "경기 성남시 분당구 서판교로 162 랜드리스타워 1층", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 3180168059.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAE0E68765A964D528416F32A087476AF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faed9eb40f3915106b8d154f01eddf2aa990b9000%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqjeEZ2E0P_qyLsCtUBC6KJsSl6j8ZGY1_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 44, - "name": "아웃백스테이크하우스 판교점", - "category_id": "파스타", - "score": 1.2, - "review": "303", - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 지하1층", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 316017401.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF050EB5F1B6C44B9B70960237CFBEE1C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff592cc9b8e9f5a6c5530dd4b1a64c1a56e912a9e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F01225be911eefea1522b574b106a8e7970a5acae%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 45, - "name": "비비", - "category_id": "파스타", - "score": 3.7, - "review": "19", - "address": "경기 성남시 분당구 산운로160번길 12 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 316096789.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MzFfMjMw%2FMDAxNzI1MDc0NTAwODA0.z5bSB64InTQEZSaKDUOZqLhJU5gi93OP_rzvgFuLFngg.9RF9dkPS2hCR665gYHzbuK-loIgVLkaMYErr5dsUcBcg.PNG%2Froom_10.png%3Ftype%3Dw386, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MzFfMTY0%2FMDAxNzI1MDc0NTAwODEx.2gTMFiq77MVrK_i6ncmDAvOUQsEyAY29GEibR3pCr78g.9ZwZEjNcwNzu7SF3apDzTCDGcaBbv4fgOgC8QbQm4ckg.PNG%2Froom_9.png%3Ftype%3Dw386, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MzFfMjUx%2FMDAxNzI1MDc0NTAwODA0.QIG0ZQYh-dlC_xGkhdEEUd7751wRTZlSYHUbThGAH2Qg.noZZpAfGhyLFj1g92m4Xrsp8jk3HAxmsQhgopTpSf90g.PNG%2Froom_8.png%3Ftype%3Dw386", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 46, - "name": "매드포갈릭 판교라스트리트점", - "category_id": "파스타", - "score": 3.7, - "review": "101", - "address": "경기 성남시 분당구 대왕판교로606번길 10 1동 2층 219호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317038920.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F106F608BE42B47F3A17A001F378DACE7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDCD81A3F23F84C7FA9F3C0209C535777, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Fbooking%2Freview%2F55F54E85349A4C57BC9ECBFF73D51F2F", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 47, - "name": "구우트", - "category_id": "파스타", - "score": 4.6, - "review": "135", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 지하1층 B109,110호", - "operating_hour": "월~토 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:00 ~ 17:00", - "phone_number": 50713970922.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6A9F6ECC24C7452294CE40371EF339E2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4B462B6BDC544376871579B67173AF79, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F849176E7AEFE48A890C1CAF648B7EF49", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 48, - "name": "아르틴", - "category_id": "파스타", - "score": 3.4, - "review": "167", - "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 107호", - "operating_hour": "화~일 10:00 ~ 22:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 1089962243.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBEA4E593384648CDA1EB6DDED06B083C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9DD03FE814C8460489AE512FEFF6DCE6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F723FC5848BBB473586BBD24F1CD7A3EE", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 49, - "name": "탭퍼블릭 판교점", - "category_id": "파스타", - "score": 3.4, - "review": "181", - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 1층", - "operating_hour": "월~토 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 24:00", - "phone_number": 316017549.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4BFB80DBD61249709CA5931531E3E8D0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8c737a1b17994446fb198f4f1d27980ab064e38d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F791eedd82fe2ed23f218d23b8cf44ec29f6e98ce%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 50, - "name": "오리지널팬케이크하우스 판교점", - "category_id": "파스타", - "score": 3.8, - "review": "747", - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 1층 5-1호", - "operating_hour": "월~금 09:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "09:00 ~ 21:00", - "phone_number": 316017451.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF7F255F4669544D3BA112BB5F19E2521, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F10bd04f74dc2f5d984726d7913c53333c2cab008%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe90e9153c8f10c029ae837b260f28a46b4ae577e%3Foriginal", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 51, - "name": "해미옥 판교점", - "category_id": "파스타", - "score": 4.8, - "review": "414", - "address": "경기 성남시 분당구 대왕판교로606번길 41 지하1층 B01호", - "operating_hour": "월~토 14:50 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:50 ~ 17:00", - "phone_number": 317090728.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBECA78EFF0FA4447A6C380EAB2887DE4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5ce3c46f4d2d975afe708d043cc172467f12952f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0aef53e09c2c4b18b79e1215fbabad5f4625d3b8%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 52, - "name": "목탄장 판교점", - "category_id": "파스타", - "score": 3.7, - "review": "111", - "address": "경기 성남시 분당구 분당내곡로 155 KCC웰츠타워 1층 102호", - "operating_hour": "매일 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 23:00", - "phone_number": 7075434339.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F158461496E504F6A921173136BBACDB7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd4aeeac553a0b15d5a74d4ade40e27be32d739c5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F88236084363ee1759f1b48080411574c70a695c7%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 53, - "name": "메이빌 분당점", - "category_id": "파스타", - "score": 4.0, - "review": "84", - "address": "경기 성남시 분당구 서현로210번길 16 유성트윈프라자 2층", - "operating_hour": "매일 11:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:30", - "phone_number": 317054267.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F120EEA3B4F4D3B4B3A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F1810A33B4F4D3B4C30, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F170A723B4F4D3B4B35", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 54, - "name": "헤비스테이크 판교테크노밸리점", - "category_id": "파스타", - "score": 3.6, - "review": "37", - "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어에스동 1층 107호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317893909.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1271508418, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FE3C69B5249F6469597B9E3AF1111C36C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F8D47AC04DB6A4C72A4832C830FE9B82E", - "convenience": "주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 55, - "name": "정희 판교아브뉴프랑점", - "category_id": "파스타", - "score": 3.0, - "review": "849", - "address": "경기 성남시 분당구 동판교로177번길 25 1층 150호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 7041517778.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE4DC7E71C5FA4267B132139A1619F7DA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEDB69B3402F841228B0E4D22C2F602BD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA35ED250AA2D41AC8FF0D1333648FCA8", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 56, - "name": "제로투나인", - "category_id": "파스타", - "score": 4.1, - "review": "41", - "address": "경기 성남시 분당구 운중로146번길 19-3", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 317026625.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2372A9335745330A12, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe5bd473ca276d02d8b9e91330f68de0795f2ed6d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1427e65fea61e3c0e16bcdbe262e716eb69343a1%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 57, - "name": "올드스탠드", - "category_id": "파스타", - "score": 3.9, - "review": "44", - "address": "경기 성남시 분당구 판교역로10번길 27 1층", - "operating_hour": "화~금 16:00 ~ 23:00", - "expanded_days": "화,수,목,금", - "time_range": "16:00 ~ 23:00", - "phone_number": 317039707.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD562BC7203304269B1C100B98A870806, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1cb19cf60a54880b9ce60452709c27a4414b39d5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9ae9d273aac39232bb238b5fc90f841e3962a204%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 58, - "name": "카페 악토버", - "category_id": "파스타", - "score": 4.6, - "review": "139", - "address": "경기 성남시 분당구 동판교로52번길 9 1층", - "operating_hour": "월,화,수,금,토,일 11:00 ~ 17:00", - "expanded_days": "월,화,수,금,토,일", - "time_range": "11:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F985C525A95CA41E1AE5E8A46548C41B5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F82944005324423ba0df5c61de6b6881d8de53d2f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F90a84ad95b346e00dff900c8f2734231cfcc38a4%3Foriginal", - "convenience": "동물출입\n주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 59, - "name": "피자헛 분당백현점", - "category_id": "파스타", - "score": 3.5, - "review": "6", - "address": "경기 성남시 분당구 동판교로52번길 11", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 3180178770.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F60AF89A6C9014C57A0EDEBD50A2BFC2D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEA32A80873334264A4B2AB5154168BD7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC910E46B48984683BA4E158D8E2149D3", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 60, - "name": "비앙또아", - "category_id": "파스타", - "score": 3.4, - "review": "287", - "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 127호", - "operating_hour": "매일 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:00", - "phone_number": 317071088.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6ED984367D5E455BA6C896E701EC563B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F877B3471DF7843D6AA8F38B4B3C2BA9E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9cdb08ae5de5fdc31473f64c88f8a7f257bcee87%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 61, - "name": "토브나인", - "category_id": "파스타", - "score": 4.1, - "review": "95", - "address": "경기 성남시 수정구 사송로 56 1,2층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 7088709990.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC530ADC96FA34CDAAA3F0602A32BAFC8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6b957d5481a07fc1175973b3020487c835a116a1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe9e0a4d5cde9e02da977f104330e2b3e1325b2b2%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 62, - "name": "데이빗앤룰스 판교점", - "category_id": "파스타", - "score": null, - "review": "94", - "address": "경기 성남시 분당구 판교로319번길 13 지하1층 B101~B103호", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 316028915.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F19D314CB2A8D4E58B2819638B22D333B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F99708BF9E6CE42C19244BA66A919C2A2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F662E1AA129DE45FF9A7CC74DC7C82E52", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 63, - "name": "엠오엠", - "category_id": "파스타", - "score": 3.6, - "review": "746", - "address": "경기 성남시 분당구 판교역로 145 알파리움타워 2동 1층 126~128호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 64, - "name": "풍류 더 블랙", - "category_id": "파스타", - "score": null, - "review": "30", - "address": "경기 성남시 분당구 대왕판교로606번길 39 럭스타워 지하1층", - "operating_hour": "월~금 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 24:00", - "phone_number": 1040307311.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F25EBE932F75E464686DE33718C7B3D70, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F11C2D894BD3C48DEA757CAB7F179A4ED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8707A04069C047C98E7FF09A9F656073", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 65, - "name": "메종드도쿄", - "category_id": "파스타", - "score": 4.1, - "review": "25", - "address": "경기 성남시 분당구 판교로25번길 16 1층", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 317051030.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2689842FB0D94D6A878026454EA2FA3C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F188e402f3eeeb0d14af0f86d35c338fb0b63fc19%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4bf3840da9449f9b53c3b03e1b7dacf5e1942f53%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 66, - "name": "메리가든 판교", - "category_id": "파스타", - "score": null, - "review": "235", - "address": "경기 성남시 분당구 판교역로 10 1층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317815090.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6708FFDAEAE947109A7E5C4F0ADE9DEA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2DE49C0D340D4D3188BC0B9484973FF8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8855C4B5DB07401EB05C41E4AE007C51", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 67, - "name": "오늘와인한잔 판교역점", - "category_id": "파스타", - "score": 2.9, - "review": "9", - "address": "경기 성남시 분당구 대왕판교로606번길 45 판교역푸르지오시티오피스텔 1층 103,104호", - "operating_hour": "매일 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9782875C838E4A908E2930BA15D14C63, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F18dfa74e842b2d1f821333317d795eeb07c6b6b8480274dba292d51b54573367, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdbda9a9ab71c1dda5597fdf932439b4158daa69a%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 68, - "name": "카페소시올로지", - "category_id": "파스타", - "score": 4.6, - "review": "101", - "address": "경기 성남시 분당구 판교역로 145 라스트리트 1층", - "operating_hour": "월~금 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 22:00", - "phone_number": 317083737.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7489730138F74E7BB1230C499F555FF7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F24D513279C6C44FAAADDC5A01642B38C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F68F070BB2404495EAF7C0DCE0CC04477", - "convenience": "편의시설 정보 없음", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 69, - "name": "피제리아살레르노 서판교점", - "category_id": "파스타", - "score": 4.4, - "review": "243", - "address": "경기 성남시 분당구 판교공원로3길 35", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC4CD22F8404C4B43996C9B71199DAD9C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff29f885b6db1f81cf19e4cf6c0195be4deb6f7eb%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0d44655fe17652aa6bd0a93e2c509bad4b971fef%3Foriginal", - "convenience": "WIFI", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 70, - "name": "저스트 기네스", - "category_id": "파스타", - "score": 4.7, - "review": "41", - "address": "경기 성남시 분당구 대왕판교로606번길 45 판교푸르지오시티 119호", - "operating_hour": "월~토 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 01:00", - "phone_number": 317068259.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F21755148586A657F01, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F25118B50586A658027, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F226BF648586A657F0A", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 71, - "name": "야키토리잔잔 판교점", - "category_id": "파스타", - "score": 4.4, - "review": "44", - "address": "경기 성남시 분당구 분당내곡로 151 1층 107~109호", - "operating_hour": "월~목 17:00 ~ 01:00", - "expanded_days": "월,화,수,목", - "time_range": "17:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F962C186B9EE644D89893570CBAD4DB74, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7b9af08e7e67dcebbeb4bfda686e914d9f23bd2c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffc92373613062fb445f6cfc8a1f5a707f66da15e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 72, - "name": "어슬청담 판교아브뉴프랑점", - "category_id": "파스타", - "score": 3.9, - "review": "108", - "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 2층 221호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317786997.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9634AEFB98F14EBCA8DE43081B01051C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC83079B8FABA4F388D47259A1E3E73D1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F93256EE8487B4EBFA5B2F6E4938E21C2", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 73, - "name": "함바그집", - "category_id": "파스타", - "score": 4.2, - "review": "45", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 132호", - "operating_hour": "월~토 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:30 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9AB481CCF0B5404CBEE593618EA9742C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faeec3417b39f0bf93b9edeb1e5cf9ff6adfe0ce9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F84b64ea350d1203d1a3b91d8cd79e76385992fbd%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 74, - "name": "돈파스타", - "category_id": "파스타", - "score": 3.9, - "review": "64", - "address": "경기 성남시 분당구 황새울로342번길 11 금호리빙스텔 2층 201호", - "operating_hour": "화~금 11:30 ~ 15:00", - "expanded_days": "화,수,목,금", - "time_range": "11:30 ~ 15:00", - "phone_number": 317012155.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0C17366F3CB34212A31E75DB6DC3875D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F078f137727ebe39574f221905dfb77509cd4f752%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F63cb3ab0d0cad5f6acadb112727d6ed08fac508d%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 75, - "name": "올덴그레이", - "category_id": "파스타", - "score": null, - "review": "132", - "address": "경기 성남시 분당구 동판교로52번길 17-5 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 7043889689.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC6C48B4885D24A7D99267AA972326542, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7cfbaac6ae3aed263dfe4221cb5bb79a57fec014%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faaf26c4ade46524c94b41bd76f0bdfb93a158be9%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 76, - "name": "핑거크로스", - "category_id": "파스타", - "score": 4.1, - "review": "395", - "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층 114호", - "operating_hour": "매일 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:00", - "phone_number": 317019588.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F69FE3BCF25C943F9BC67D84D93AC3150, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0349ebfe5cb2dc30d807036689caf102e853ec37%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F78ee314d7163a118dd417d8aff48dc3770bac697%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 77, - "name": "롤링파스타 서현역점", - "category_id": "파스타", - "score": 4.4, - "review": "184", - "address": "경기 성남시 분당구 분당로53번길 14 서현프라자 2층", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317073547.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7694B636D7424703AE6A46E67A81853F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1462799448, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1629882925", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 78, - "name": "무튼", - "category_id": "파스타", - "score": 3.2, - "review": "205", - "address": "경기 성남시 분당구 동판교로52번길 13-10 1층", - "operating_hour": "월~금 10:30 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMjRfMTU3%2FMDAxNzA4NzQ2MzYwMzk0.M6PieZAfTeM4KDV90DxpqZ_fCFDQwbUIwtq4DBZnx3Mg.FOkubF7OCk5FsKY349RuSG1-cyyftakRcvkhbxE5HA0g.JPEG%2FSE-7e22f8ad-b398-45f4-a2e2-4e10dbf4f039.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMjRfMTUz%2FMDAxNzA4NzQ2MTcyMTAz.ZdBaUNwJUSITaMK6GU6T_IwBX5eZHD6BhxMIx0VhVYQg.TKehtIT9puhKvDshb2Y9BL8QWmU6YlJYsgMOdhAj8Dsg.JPEG%2FSE-da1f3dcb-223d-4ab5-9748-b33efe52e30a.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMjRfNyAg%2FMDAxNzA4NzQ1MjU1MTU1.mwKs_7zpGDYuzOsu_AMKkWDHKpHqa_zGuN5i9eW-nC8g.aC30Pz7WZusWVIqVdMP9bUb-2pDJvAIAw5N61MYRBbgg.JPEG%2F%25EB%25AC%25B4%25ED%258A%25BC_%25EB%25AA%2585%25ED%2595%25A8.jpg%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 79, - "name": "노모어피자 판교점", - "category_id": "파스타", - "score": 4.7, - "review": "20", - "address": "경기 성남시 분당구 대왕판교로606번길 58 1층 109호", - "operating_hour": "매일 10:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7741C9C3A9F847D39F0770CD692752AB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6D88A9A78B914F3792E0F16E76A861F3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4935FAD8E8A945E0AD0921717B651634", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 80, - "name": "칠리로29 판교점", - "category_id": "파스타", - "score": 4.7, - "review": "91", - "address": "경기 성남시 분당구 판교공원로1길 69 1층 101호", - "operating_hour": "수요일", - "expanded_days": "수요일", - "time_range": null, - "phone_number": 317786463.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4A0E0A7659E54A7B912DA678D4063F96, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1F1545A43F44440FB80CFE63663B3A8B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9B93B865925F4555A50E8B596C04A28A", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 81, - "name": "브루클린", - "category_id": "파스타", - "score": 3.8, - "review": "8", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 1층 106호, 107호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 316286399.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F762496CF40F44ED0B08C43987B85DDDC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7a492657033873c82bf173c597a62abb7a5f13bd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffb0d4db4be16047852576a74f508fe6f556c33e2%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 82, - "name": "멀멀 판교", - "category_id": "파스타", - "score": 5.0, - "review": "28", - "address": "경기 성남시 분당구 판교역로2번길 6 태훈빌딩 1층", - "operating_hour": "매일 10:00 ~ 18:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 18:00", - "phone_number": 7088220313.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD1A5F7092CAE4028980BD2ED4836FAEC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7254F420CE5E4D3FB2802A9809DC5085, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F19EF36301D4F4CDF82CE8E38D6B2A4D4", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 83, - "name": "잭슨피자 판교점", - "category_id": "파스타", - "score": 4.2, - "review": "34", - "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층 149호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317060717.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F55769FF427B245A0BDDE9A9146417559, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd71e4e771568dd764a4813272b4b369cc7f71213%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9e11ec74cd1342eedd80c0b333c58872b03c8de8%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 84, - "name": "오션문", - "category_id": "파스타", - "score": 4.1, - "review": "65", - "address": "경기 성남시 분당구 운중로146번길 15-4 1층", - "operating_hour": "매일 10:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FE1804D5832964782AA255BB01185A89B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F43B8981577B84DDDAB78CE3F14AB733D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F374a3757d46b8b122c454f7a59dc4596bbebbb26%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 85, - "name": "스윗", - "category_id": "파스타", - "score": 3.7, - "review": "58", - "address": "경기 성남시 분당구 운중로146번길 11 지하1층,1층", - "operating_hour": "화~금 09:00 ~ 17:00", - "expanded_days": "화,수,목,금", - "time_range": "09:00 ~ 17:00", - "phone_number": 317079949.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F319E01168CF740E4A7AD6D38E19139D2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F683e7a818da56e7ef0c3567d73a922d8723f580d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F795aedf42afdb1a244ee0b97f6a7f46a66f55ba9%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 86, - "name": "샐러디 서판교점", - "category_id": "파스타", - "score": 4.9, - "review": "15", - "address": "경기 성남시 분당구 운중로 129 마크시티옐로우 1층 110호", - "operating_hour": "월~금 09:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "09:00 ~ 21:00", - "phone_number": 316071709.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F49cec268625a1960a4f24288589eedf4f66af60f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F87439958d01ea023fd81f585466743884c310539%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6117ffabd3809c165fc62f7628b46d1a66c01c69%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 87, - "name": "굽네치킨 서판교점", - "category_id": "파스타", - "score": 3.5, - "review": "1", - "address": "경기 성남시 분당구 운중로178번길 1 1층 107호", - "operating_hour": "수~수 11:30 ~ 23:00", - "expanded_days": "수", - "time_range": "11:30 ~ 23:00", - "phone_number": 317099294.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB120D75B04A54B40A970422E1E80BFE9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F68a7e0e342b1427f9ffae0dbd170b1af9643ab92%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1A7FFB84E611458FB43C4D5EEDEE24CA", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 88, - "name": "픽유어온샐러드", - "category_id": "파스타", - "score": 4.3, - "review": "19", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 1층 120호", - "operating_hour": "월~목 08:40 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "08:40 ~ 20:00", - "phone_number": 316984555.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F22126941569763CF35, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqc40NLUsS_ZgrpcUIblJHpvmWqiw0Sik_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F021cdd8bd6b9b62fa4d4b0bb4f2f8d7e6b203fe3%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 89, - "name": "피자헛 판교중앙점", - "category_id": "파스타", - "score": 2.3, - "review": "4", - "address": "경기 성남시 분당구 운중로 237", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 317240503.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCEE439C842CE4E2FAFF177AAECA6518D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb82609dd39dd30ccc24f13c82a6e2b7f6b88aed0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F90A5F74462E847DB95AE662EB27B5F28", - "convenience": "주차", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 90, - "name": "스튜디오지구", - "category_id": "파스타", - "score": 4.6, - "review": "18", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 116호", - "operating_hour": "월~금 14:00 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:30", - "phone_number": 316281000.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7A33FAA73C8F49258AEA7902F9C4D2C1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAFE5ACF63E004DA5A9FC37CBCAC04131, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8FD400D4A7334EF589474D051E2D418C", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 91, - "name": "비스트로42", - "category_id": "파스타", - "score": 4.0, - "review": "44", - "address": "경기 성남시 분당구 판교역로192번길 12 2층 202호", - "operating_hour": "월~토 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 24:00", - "phone_number": 3180610711.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCB2901F4ED3D42FC9D1C23C9298CB9F1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2E694C4D00C94F9E9084BF415A632A7E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6F75B5B8268048E5923F892700D4CA40", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 92, - "name": "더테라스LA", - "category_id": "파스타", - "score": 3.5, - "review": "111", - "address": "경기 성남시 분당구 판교역로 138 1층", - "operating_hour": "화~일 17:00 ~ 24:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "17:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD4D2837A7A1142718EBD07819C86282D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5d9e7436b5ba7d6b7e3b564edf85172e867d835a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F43c54209d948c5bd54396490cd760c4e73ce660c%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 93, - "name": "퀴즈노스 랩 판교테크노밸리점", - "category_id": "파스타", - "score": 3.1, - "review": "43", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 111,112호", - "operating_hour": "월~금 08:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 21:00", - "phone_number": 317242724.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7EA5FDCAB7FE45BD862C886ECDB2874F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F33fa8b6d9d9e85b3be5e1c73421ab79f11f533ec7b603ad4174422978949caa6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb99bdcf51d6d8ec41b2a6fcc37f973fbeb01451b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 94, - "name": "연어로만 운중동점", - "category_id": "파스타", - "score": 4.1, - "review": "9", - "address": "경기 성남시 분당구 운중로 128 1층", - "operating_hour": "월~토 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE1FCBC0E910D4504A7004D5B3D97AC9E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffabb7a81b7c8047a84aaf0befccdbf142522800f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd89b7f42f466a46160c69e209abc184532c3b0bf%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 95, - "name": "루카즈", - "category_id": "파스타", - "score": 3.4, - "review": "52", - "address": "경기 성남시 분당구 판교역로 6-5 1층", - "operating_hour": "수~일 15:30 ~ 17:30", - "expanded_days": "수,목,금,토,일", - "time_range": "15:30 ~ 17:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCEA8E5895D77443494B49D3BA4456283, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd585a009cbc6c3769ee22887ff4606138d12b5e4%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3cb08e8f49e2aac57852de5ec3834e379eb882fb%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 96, - "name": "오시", - "category_id": "파스타", - "score": 5.0, - "review": "779", - "address": "경기 성남시 분당구 동판교로52번길 21-2", - "operating_hour": "화~일 15:00 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 97, - "name": "아프레", - "category_id": "파스타", - "score": null, - "review": "73", - "address": "경기 성남시 분당구 판교로25번길 18-4 1층", - "operating_hour": "수요일", - "expanded_days": "수요일", - "time_range": null, - "phone_number": 50371504636.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 98, - "name": "콘노이", - "category_id": "파스타", - "score": 4.0, - "review": "20", - "address": "경기 성남시 분당구 운중로138번길 24-1 1층", - "operating_hour": "매일 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 24:00", - "phone_number": 50713260064.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7401528A82004731AD892BB94880C212, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F475e8473308788178d822ed7e3bdc2948d199699%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F54ac32166b8d9af4bf0cf58475eeaddfdcc63d98%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 99, - "name": "다크앤라이트", - "category_id": "파스타", - "score": 4.5, - "review": "162", - "address": "경기 성남시 수정구 달래내로 252 2층", - "operating_hour": "수~일 15:00 ~ 17:30", - "expanded_days": "수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 317088730.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA05E4443344543A6BCB64C943479D6DC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F59A905DAE0534BCC8F1A3F305C1E3AA5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6BC839C57AF44F5D908B8FFFAF661E37", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 100, - "name": "굽네치킨 동판교점", - "category_id": "파스타", - "score": 2.4, - "review": "3", - "address": "경기 성남시 분당구 동판교로 155 봇들마을7단지아파트 상가동 1층 105호", - "operating_hour": "매일 09:00 ~ 01:40", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 01:40", - "phone_number": 317019293.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7C091EB230454C8C9B10A27DE4B8791C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F40A31BDD6ACC4E8DBA65DECE50402190, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF0863F5789D147129ADBE8BAD20ED450", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 101, - "name": "사라베스 현대백화점판교점", - "category_id": "파스타", - "score": 2.6, - "review": "17", - "address": "경기 성남시 분당구 판교역로146번길 20 2층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701234.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F37F90F4FB2164DEF8D53EE602A667062, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Feb4aca872c0b8c295d4bc923644979e543b8de87%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2b6c3c05b6ce7f5cc6b474c624f2622bcd169fc4%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 102, - "name": "투고샐러드 판교유스페이스점", - "category_id": "파스타", - "score": 5.0, - "review": "16", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 2층 230호", - "operating_hour": "월~금 08:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 20:00", - "phone_number": 317242588.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F28DE063882D7447FADD594E51DC43EFE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F751CF7D14D25450585FDB939339CB527, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDJfODcg%2FMDAxNzMzMTQ4NjQ0MzI5.MYQAK6o435SimSjPpAi2_g_JLnA3hg3UdWZQQNjjeD4g.lMajwmKhzckhI1N6PVL47ZlDhzJnk2ctDkiMiom_GLYg.JPEG%2FIMG_1161.JPG%3Ftype%3Dw466", - "convenience": "WIFI\n주차\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 103, - "name": "원즈오운 판교", - "category_id": "파스타", - "score": 5.0, - "review": "94", - "address": "경기 성남시 분당구 동판교로52번길 9 1층", - "operating_hour": "월~토 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:30 ~ 21:00", - "phone_number": 1048593190.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE95B56165CC54CC8ADAF574AF1E7DA11, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCC4266AD361043D6BCA21ABF293EC4A9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBE74B142DEF34A809A838E37B539CABD", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 104, - "name": "일로이 키친", - "category_id": "파스타", - "score": 3.2, - "review": "73", - "address": "경기 성남시 분당구 판교공원로3길 10 1층", - "operating_hour": "화~수 09:00 ~ 18:00", - "expanded_days": "화,수", - "time_range": "09:00 ~ 18:00", - "phone_number": 317041124.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8EFA317C122E4AD7A2B918E6906747F0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F92f521dc3991fe06cf7c0c2a3bab7c9c1afdd700%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDhfMTMy%2FMDAxNzMzNjY4NzgxODU1.MPd1km9jizaeXFUEJCAtT1j1K0aVMjqLz1DA7oic0iog.XMx-StW-WLKbb586Xv3OPSoVo09SacUBpjcPfz0I_3cg.JPEG%2F900%25EF%25BC%25BF20241205%25EF%25BC%25BF122249.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 105, - "name": "이치노야", - "category_id": "파스타", - "score": 5.0, - "review": "13", - "address": "경기 성남시 분당구 판교역로241번길 22", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6E8A79A002F644E9B81E94AA21F81C0F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F60cd30a1843a24de3245b770c9a1f7d5dabc301d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc73c2d89c8c19b38fe931c7d370380f7f0627f2b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 106, - "name": "미도인 판교테크원", - "category_id": "파스타", - "score": 3.3, - "review": "1,334", - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 지하1층 31호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 316017407.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F53D6902A6B464629B25ABF78F90945F7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F409DC33A9DD74B41A1E5E61CC562ED94, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB0920B03D39749739755313E58955E7F", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 107, - "name": "피자스쿨", - "category_id": "파스타", - "score": 5.0, - "review": "6", - "address": "경기 성남시 분당구 운중로 128 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317090303.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F98489431b05ba5a4d1c5e4f3e4a38165400d19e2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2e7f2ee94ed7a531eac967fce70eaad00933883b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F256DA43A536AE27D1B", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 108, - "name": "피자스쿨 판교백현마을점", - "category_id": "파스타", - "score": 5.0, - "review": "3", - "address": "경기 성남시 분당구 동판교로 58 나이스프라자 1층", - "operating_hour": "매일 11:00 ~ 21:40", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:40", - "phone_number": 317041566.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F211C75228B1A42D4A07333E6186442BA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F256DA43A536AE27D1B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MDlfMzAw%2FMDAxNzEyNjE4NzUwNjE3.Cfy06vN3c_nGLPqApw4v3DGPysLf6jUQ969yCAc7QOsg.VmrK85FTJbbm_669-9lhfiJYU3HByHfo_P0O3ckv07Qg.JPEG%2FSE-8F570296-380A-48B1-B23F-29E98A99BDDC.jpg%3Ftype%3Dw966", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 109, - "name": "몽델리부티크", - "category_id": "파스타", - "score": 3.6, - "review": "222", - "address": "경기 성남시 분당구 백현로 26 더블트리 바이힐튼호텔 판교 지하1층 2호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB5C33A1657384D3CA63BCF0D87D22B7B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2CBB025D55D149AFB9FB4A8D3652E50F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F09becc7235ae6a0f2f94a4fb3e1cb6c6303e6314%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 110, - "name": "비눔", - "category_id": "파스타", - "score": 5.0, - "review": "143", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 B106호", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": 50714356693.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4632DF873CFB48419A38790C9D8A2E1A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F3EE1E4786B194A9CAF89DD28E09089ED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA3B82EA27D4244A18B480F5AD98DD7E1", - "convenience": "주차", - "caution": "예약가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 111, - "name": "정직유부 판교점", - "category_id": "파스타", - "score": 5.0, - "review": "1", - "address": "경기 성남시 분당구 대왕판교로606번길 31 1층 123호", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": 317057911.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1F4D39704CF548F884E0C5DEBBAD8B69, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDEDB8E3F62D64295910DCA9098DF168D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDVfMjE2%2FMDAxNzI1NTE5NzM4ODg0.xsDo1_6yw-XMpj-pWA6crgw828cM0_pK0ENfjOvGdQAg.lf59TJ3NZf1Am6Ikv_dxMxuc4AaGTZS7L8zf_XmhoZMg.JPEG%2FIMG_6949.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 112, - "name": "샐러디 판교테크노밸리점", - "category_id": "파스타", - "score": 2.2, - "review": "20", - "address": "경기 성남시 분당구 대왕판교로 670 1층 114호", - "operating_hour": "월~금 08:00 ~ 20:30", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 20:30", - "phone_number": 317398687.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_880987878, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1831935810, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_872111631", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 113, - "name": "아르고", - "category_id": "파스타", - "score": 4.8, - "review": "15", - "address": "경기 성남시 분당구 판교역로 145 알파리움 2동 117호", - "operating_hour": "월~금 17:00 ~ 23:30", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 23:30", - "phone_number": 317011114.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 114, - "name": "호화식탁 서판교", - "category_id": "파스타", - "score": 4.0, - "review": "13", - "address": "경기 성남시 분당구 판교로25번길 18-6 1층", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc66d741bf0edc3c04140bbfa84d3c5f2acc6218a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdccd4507cf5c2be18672c79b13a4ff5c0ac93b72%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd9eda418bf6db94e7a4ff4569df5d29150686c97%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 115, - "name": "식스밀 판교H스퀘어점", - "category_id": "파스타", - "score": 3.6, - "review": "7", - "address": "경기 성남시 분당구 판교역로 235 N동 1층 104호", - "operating_hour": "매일 11:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 20:00", - "phone_number": 3116616667.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F51A5E588503D4FA3A6801A055632157D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F290437d1bd920b1d9ae9709b87b627fe36b784d1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8404532f54751d9c828aa3bb5990ad6877fdcd30%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 116, - "name": "올레샐러드", - "category_id": "파스타", - "score": 5.0, - "review": "16", - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 316281475.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F349A0B3E739749A89D90822229091A51, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1e1b7e63f9040982731804876b2bc5be6b400301%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F99866fe176b8c811dc495d8735fe839e911d12f1%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 117, - "name": "삐에뜨라", - "category_id": "파스타", - "score": 3.4, - "review": "133", - "address": "경기 성남시 분당구 판교역로2번길 5 101호", - "operating_hour": "화~일 15:00 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317813080.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2D6D8FA052ED443CB166862EA22E83B9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa327738770032bbe15213792268f6aff253e715b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3a7880f04fb9ab316c49c480b2acfcafc495acfc%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 118, - "name": "호화식탁", - "category_id": "파스타", - "score": 5.0, - "review": "11", - "address": "경기 성남시 분당구 판교공원로3길 4 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2602cea14140cf881463cfd4ebf69ecf3806229b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0EAEFDAE97C140FF9FC71F8616555E3D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2602cea14140cf881463cfd4ebf69ecf3806229b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 119, - "name": "반올림피자 판교점", - "category_id": "파스타", - "score": 5.0, - "review": "2", - "address": "경기 성남시 분당구 판교공원로1길 3 1층 101호", - "operating_hour": "매일 12:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 23:00", - "phone_number": 317047773.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7D2FF143E5D54CA7B46C70CF720ED236, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6E6527583E834F25993AF7D2B1FD147A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9BA0F871538C42D4B9741C83D20C5EB4", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 120, - "name": "샐러디 판교역점", - "category_id": "파스타", - "score": 0.0, - "review": "3", - "address": "경기 성남시 분당구 대왕판교로606번길 58 1-20, 29호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB3CA3A87772642B49D899E620996342A, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA5F5010F83464531A999C7C616BB7007, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3EECBCDF693443559154F2799FB7EC39", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 121, - "name": "미츠스테이크 서현", - "category_id": "파스타", - "score": 4.4, - "review": "121", - "address": "경기 성남시 분당구 분당로53번길 11 서원플라자 5층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317086617.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAAD9752C70724FB9BCD98A7995700414, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA51E4BC0BA494DE7BA9DBF99D5666CD2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA161C981174A4C3CAF8553144FB5264A", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 122, - "name": "프레퍼스다이어트푸드 판교점", - "category_id": "파스타", - "score": 1.9, - "review": "27", - "address": "경기 성남시 분당구 판교역로 231", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 50720838506.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F08234A92CD9C4C9196D37809D5AADF78, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7194476a9b4c847df5dc9b2e5fc08a56c0a25e62%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0AFC071053404B758856F6502D18B4FC", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 123, - "name": "라그릴리아 롯데백화점분당점", - "category_id": "파스타", - "score": 3.9, - "review": "30", - "address": "경기 성남시 분당구 황새울로200번길 45 1층", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": 317382051.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1A1CBD23E0E945DBB9F22F3648649864, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F57ba29ec70b76e49ab465fe4f62f8425cab0e0b6%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8fd20522840747b53a405b9fdf82929fe6c2a321%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 124, - "name": "낙원테산도 현대백화점 판교점", - "category_id": "파스타", - "score": null, - "review": "254", - "address": "경기 성남시 분당구 판교역로146번길 20 5층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 3151701527.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC46CA051CB63411AB97AF19DC2BCC43F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F5A61C798F4D341AE960C80C7AEC7C806, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDhfMTM3%2FMDAxNzMzNTk5NjkxMTI4.nKpshcXyxSQwCi5LyPyJq-T41VIjOvfVCuQkMdDNifog.km--hs90-xT3a7akL11rSYgXeY0hOyV4_mOGCpt_Fw8g.JPEG%2FIMG_2406.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 125, - "name": "차차식당", - "category_id": "파스타", - "score": 4.2, - "review": "23", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 B-119-1호", - "operating_hour": "월~목 14:00 ~ 17:00", - "expanded_days": "월,화,수,목", - "time_range": "14:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F84E8DB76ADB946B294E4A30B163DC1BE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F285b89796826d62ec8bebe59c2f29d10fa2492dc%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa346f0d4ccad5a1f463e549cc026f6c508ab9a47%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 126, - "name": "카사준", - "category_id": "파스타", - "score": 0.0, - "review": "30", - "address": "경기 성남시 분당구 판교공원로2길 46-1 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD8EC57AFD9D841D683E3D8F13E54CEF8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FoqdDB%2FbtsLBWFAKAD%2FCaflv0mB6qPkl46EuifvkK%2Fimg.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbwalYe%2FbtsLD1erjSO%2FCPCch7IrpqrqzvHckWjckK%2Fimg.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 127, - "name": "스파게티스토리", - "category_id": "파스타", - "score": 3.3, - "review": "10", - "address": "경기 성남시 분당구 서현로210번길 16 1층", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 7088352302.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F329C8554E952426B97330878E2CFF2F3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4d2fc3ed17c28538fb61e81b3a5970f65c3e9f60%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fee0f6d34d48d84a2abe52599463a329098ca5412%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 128, - "name": "루체까사", - "category_id": "파스타", - "score": 5.0, - "review": "3", - "address": "경기 성남시 분당구 판교역로18번길 2", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F34C791CC0F7E43A593D5B13ADA8C5345, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F62a298255a8497b8370b1aa7f2617ff3bd8befd8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9fac156141c5a174b0372df3f73d162d72543f67%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 129, - "name": "남자피자 판교백현점", - "category_id": "파스타", - "score": 2.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로 122", - "operating_hour": "월~토 10:50 ~ 22:50", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:50 ~ 22:50", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FFD10AC4AF06C4858A23372A4AD1B9504, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcSsLkeTl_g7gWI2o38lP6eDU0GNz7ok_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcSqzXD6w_jfTgzrHtF2P8JGNnNkh0xk_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 130, - "name": "파스타테이블", - "category_id": "파스타", - "score": 4.8, - "review": "21", - "address": "경기 성남시 분당구 분당로53번길 21 산호프라자 2층 207호", - "operating_hour": "화~일 15:00 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 50255502093.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFF5A3BCF88454BA491A6562584AF2988, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7D37AC07299C478DB46F280696B24A0C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F90B973F6B57443A585C6160FD5487159", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 131, - "name": "105파스타", - "category_id": "파스타", - "score": 4.3, - "review": "10", - "address": "경기 성남시 분당구 양현로 126 1층", - "operating_hour": "화~일 11:30 ~ 20:40", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:30 ~ 20:40", - "phone_number": 317079105.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F243D025A84764835A961E8F1BD291183, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0974201244ea684946f601ffdaf3e0b96e64bf66%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDdfMTg0%2FMDAxNzMzNTgwMTcyNjE0.ojhuH8DhlLweLayhairQ8vmhZjFk3tw1RGP3SJ_WrAog.-PRfA2DKiOuFZVR6C6hFETqcLt_97ed9_NCQitzqrDgg.JPEG%2Foutput_2368262266.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 132, - "name": "미태리 분당아름마을점", - "category_id": "파스타", - "score": 5.0, - "review": "24", - "address": "경기 성남시 분당구 판교로 441 남서울프라자 1층 110호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317037333.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FEBFFDEC4863341F18DC628BFD68DD565, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F504013D3E17847538590A5AA457EF646, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5DE7EB41FC234DB39D1C363F9416F3EA", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 133, - "name": "파스타마마 수내점", - "category_id": "파스타", - "score": 3.4, - "review": "7", - "address": "경기 성남시 분당구 백현로101번길 16 1층", - "operating_hour": "월~금 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 20:00", - "phone_number": 317123700.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7E36924152CC4397A4A6D5CF9D6880A8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F105a688f39154ea560a88035da471ba962bcfc3f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA5MjNfMjE3%2FMDAxNjYzOTI4MzM0NDcz.9yAV477cvZNwPVdNuKgIRNgd3gVoC_DqA0WwNu05094g.xntd2LpZjUfsU6J7gQ5gbIgWyImEeAEWTrbJ5s3CUgkg.JPEG.alohalice%2FIMG_1334.JPG%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 134, - "name": "구전동화 판교점", - "category_id": "파스타", - "score": 2.0, - "review": "3", - "address": "경기 성남시 분당구 동판교로177번길 25 지하1층 비101호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F18E2081FFFC745F1A0145CBE9E610C3F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD214C5CAA99D4E588B5E2493D70B4744, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FCD2FD8F3C4BA4EA2840DC1475EB5C0E3", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 135, - "name": "남자피자 판교점", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서판교로 160", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F22068C3B57B5447729", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 136, - "name": "몬테쿠치나", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 안양판교로828번길 20", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180160987.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 137, - "name": "올데이파스타", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 지하1층 B107호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F20AD0CD16AC6405A8D9EAA7845E737C7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1A2F14D9108B4290B000056BBCC4DF90, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F024728B80BF4468B9AB2DA720D9850C5", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 138, - "name": "어퍼그레이 AK플라자 분당점", - "category_id": "파스타", - "score": 4.5, - "review": "22", - "address": "경기 성남시 분당구 황새울로360번길 42 7층", - "operating_hour": "매일 11:00 ~ 20:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 20:30", - "phone_number": 3180232700.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA55751036A4D4B428F668A35587D8D0B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa4bd832940cca1630829b00d56ee4edc94918d5d59c72cd552ad1050b530ff0f, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MjRfMjEg%2FMDAxNzIxODAxMjM0NTk0.CfZ_eUiS9IkJBuEjjPrYJOkqkGSZijGXBpW2LIUhFhcg.CPbeKhTldtNZ1b5k3YWuO2Xeu2asAWBbSt6i1rdpLDwg.JPEG%2FSE-29b2c6cc-b3c5-4172-a3b7-c4b4996b78c7.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 139, - "name": "파스타어때", - "category_id": "파스타", - "score": 0.0, - "review": "5", - "address": "경기 성남시 분당구 백현로101번길 16 대덕프라자 지하1층 B102호", - "operating_hour": "매일 00:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "00:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8BE7D5BE5D7F448F877F898436F9B8F8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD61D1C914DE747029CE31BB1039F2EC4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC3A77CB94AD04DEEA86ECB6A7BB37EF2", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 140, - "name": "미태리파스타 분당아름마을점", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로 441 남서울프라자 1층 110호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 141, - "name": "마리에뜨다이닝", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로360번길 42", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 142, - "name": "파스타제면소", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 백현로101번길 16", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7077754004.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 143, - "name": "그릴러", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로 315 대현빌딩 2층 205호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 144, - "name": "지오쿠치나", - "category_id": "파스타", - "score": null, - "review": "189", - "address": "경기 성남시 분당구 황새울로200번길 34 코포모빌딩 1층 101,102호", - "operating_hour": "월~토 11:30 ~ 21:50", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 21:50", - "phone_number": 317119488.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9D77F5DEEBD04845887DB99EBD810FF3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcfe85c84ed338d366bdf1c6c1d6bd632ea428d85%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa3c4cb9e877750d3dfc8ae0db8cc22024ead8a78%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 145, - "name": "비스트로도마", - "category_id": "파스타", - "score": 4.1, - "review": "201", - "address": "경기 성남시 분당구 하오개로 383 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317026009.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAC58C904CF3E4910B053235C84B1E158, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEB541FDF2DEE4CA4A5D2005B6B73BB9E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F996D877AA24341F3B5113A68EF6C9703", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 146, - "name": "도쿄스테이크 서현역점", - "category_id": "파스타", - "score": 3.3, - "review": "2,392", - "address": "경기 성남시 분당구 분당로53번길 19 피아자코코빌딩 2층 202호", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 317052828.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F1FA51E1F77B7442FA4C805A468F3F253, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F38663D8C9AC442B88D2EE0A6A0CCE040, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAF7D9D1F2C5E48A5B0AC459EB51ADD42", - "convenience": "WIFI\n주차", - "caution": "배달가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 147, - "name": "서울미트볼&파스타", - "category_id": "파스타", - "score": 4.7, - "review": "45", - "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 1층 107호", - "operating_hour": "월~토 15:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:30 ~ 17:00", - "phone_number": 317150526.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F175629FA752C430087A756990A070817, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F71C8EB9C7F7646BBA988A9DD7206A22D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdb1237ff0030527295823292e67c4f9c97f92079%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 148, - "name": "카페두레브", - "category_id": "파스타", - "score": 3.2, - "review": "56", - "address": "경기 성남시 분당구 판교백현로 57 1,2층", - "operating_hour": "월~토 08:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "08:00 ~ 22:00", - "phone_number": 317051711.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_136203471, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F35735c0535a5ecda374703cc19ec68becd87a002%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe37c4c8e9777a38f75dd8ad004cfdb6c6617e20a%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 149, - "name": "푸른언덕", - "category_id": "파스타", - "score": 3.3, - "review": "19", - "address": "경기 성남시 수정구 사송로80번길 23 1,2층", - "operating_hour": "월~토 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7A0831E190B840899B2B5119365EFFCE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMDZfMjc3%2FMDAxNjk2NjAyNzYzODQw.L71nS4Ejz8PDKrBGu82YPhTV02ih47qfdLeEcOgljDkg.TOtKi7yDDisFV0S0-on6jZ8efbPmWS573jSBhQGTt9og.JPEG.cofls0277%2FIMG_0180.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMDZfMjA1%2FMDAxNjk2NjAyNzYzNTYz.sQkItxb_sb7pNWgp3p4ngd8O0zZMs_fTBL3FHl5AmU0g.Ywd_mNFNz-xut9ZFIu0eOVmDBWmr_qsyd-AUlmDR3usg.JPEG.cofls0277%2FIMG_0179.JPG%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 150, - "name": "매드포갈릭 분당서현점", - "category_id": "파스타", - "score": 3.9, - "review": "95", - "address": "경기 성남시 분당구 분당로53번길 22 블루홀플라자 지하1층", - "operating_hour": "매일 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 317058120.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB2E3594CEFF54B11B9A7E0D95B71B2E2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1a0a23a7161409f51a5c6007f4b4dfee60278805%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4cb9caa3921f8e5760c842ca001bc76a6e46e515%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 151, - "name": "105파스타 서현점", - "category_id": "파스타", - "score": 4.0, - "review": "4", - "address": "경기 성남시 분당구 황새울로312번길 20 분당태성빌딩 2층 203호", - "operating_hour": "화~금 11:00 ~ 22:00", - "expanded_days": "화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 317070105.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA9BDCC6ADA6E4FDA8F8FE53DDF810EAE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd0b3404a736a24c05b1a10f5a31c6ccf47963d22%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4ace678d188f009605be26180857ca825eb6bbb1%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 152, - "name": "아웃백스테이크하우스 분당AK점", - "category_id": "파스타", - "score": 3.2, - "review": "274", - "address": "경기 성남시 분당구 황새울로360번길 42 AK플라자 5층", - "operating_hour": "매일 10:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:30", - "phone_number": 3180232800.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F72FABB7098824E8F89ADCFADEEE81027, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa8177da3417aa8c0464299f209b097a8bc24192b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F08775e6fe3c832e3af1db36869133fd6910d986b%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 153, - "name": "더블트리 바이 힐튼 서울 판교 닉스", - "category_id": "파스타", - "score": 4.2, - "review": "219", - "address": "경기 성남시 분당구 백현로 26 21층", - "operating_hour": "매일 11:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7C21494F70814C7D880453241F17C4A8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff525f628543dfe94d9f2f2129b726c18b3c53497%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4423b99045ad465425a6e8e0484a0a3ef567472e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 154, - "name": "달빛한잔 본점", - "category_id": "파스타", - "score": 4.5, - "review": "54", - "address": "경기 성남시 분당구 황새울로360번길 12 대명프라자 3층 320호", - "operating_hour": "매일 17:30 ~ 04:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:30 ~ 04:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDEBFEADF61B240F58820224B37378723, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F764DC765A7934AEC920009B7B8A571C5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F17FC629F3AB44D538C0D2F0837961E6B", - "convenience": "WIFI\n동물출입\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 155, - "name": "쉐프쿠치나", - "category_id": "파스타", - "score": 5.0, - "review": "7", - "address": "경기 성남시 분당구 하오개로349번길 4", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqfwHES31u_LjaVkkY0hKva7DEQVzU3Dk_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F756c2a0add96a38b254903bb216ac7f87da9eee8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F319a75f00e7c58f0987f44aa5f90c1612698a593%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 156, - "name": "훈스파이 본점", - "category_id": "파스타", - "score": 4.0, - "review": "17", - "address": "경기 성남시 분당구 궁내로 22 1층", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 317148249.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCCB69CDAB0C34A3C8D8567A56D5AE44A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2B908E175D9C461F8440279C94B1E708, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4A2AB970189D4A62A015FA5E07A61138", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 157, - "name": "소베뉴", - "category_id": "파스타", - "score": 3.8, - "review": "76", - "address": "경기 성남시 분당구 판교백현로 61 1-2층", - "operating_hour": "수~일 10:00 ~ 19:00", - "expanded_days": "수,목,금,토,일", - "time_range": "10:00 ~ 19:00", - "phone_number": 317073770.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F019F223E2C334CDAB4DAF84AF20D09E2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8845FFBEA22F41AD8CBEF4A7AED2BDBD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF1A9952DB8C54D0697BBB50654A15C91", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 158, - "name": "더몰트하우스 서핑시티 판교점", - "category_id": "파스타", - "score": 3.7, - "review": "122", - "address": "경기 성남시 수정구 창업로 18 파미어스몰 1층", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 317555818.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F37162052C0754569938318EF9E95F90B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F96EC580AD38D441697CB19EA324ADA17, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F130E5B6D99004EA9B767D591111C0256", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 159, - "name": "샐러디 분당서현점", - "category_id": "파스타", - "score": 2.2, - "review": "31", - "address": "경기 성남시 분당구 황새울로359번길 11 1층", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317041147.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDD34BFBEBC5740EB980870CD8E4A892E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1f113971bc327d271ec690fe829c2417b557c7a7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F356f3fafe1e4e768082a938c2e75f69b1e7a1473%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 160, - "name": "틈 서현", - "category_id": "파스타", - "score": 4.7, - "review": "232", - "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 106호", - "operating_hour": "월~목 17:00 ~ 02:00", - "expanded_days": "월,화,수,목", - "time_range": "17:00 ~ 02:00", - "phone_number": 50371504886.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA94FB178F7704B81A3019FDBCDEB9568, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F0C02E5BB85F54611A9050B1D60D2E272, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEAE75B0976A840F39E7155E9D700DE5E", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 161, - "name": "미도인 서현", - "category_id": "파스타", - "score": null, - "review": "1,163", - "address": "경기 성남시 분당구 분당로53번길 10 2층 202호", - "operating_hour": "매일 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 317031990.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6753A4FE415149F381220542B21DF569, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F734A939860A844C09B0BB5E40DCBD2B3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F73582D49B9ED47FE9688DFE08B26D49E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 162, - "name": "모티이", - "category_id": "파스타", - "score": 4.7, - "review": "381", - "address": "경기 성남시 분당구 황새울로311번길 28", - "operating_hour": "매일 11:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 01:00", - "phone_number": 317079297.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F195697362F7F4E2F90652648AF4383B8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDhfNTEg%2FMDAxNzMzNTkxNzQ4NDQ2.CKFdblc8Qny9RBzCl8uZa9L2qLMcnHPBlcQGd8PQg0Ig.rywEpk6tXuPZaSeUWIrYkIosfCj8l99s-JYkSyiZMDsg.JPEG%2FIMG_6513.JPG%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDhfMjc5%2FMDAxNzMzNTkxNzQ3NDc0.pNXxDCdKyQDrVOB1Gxk2wWGxdMko4an_4KhI7QNasYsg.mHCR7c-fs0ksTTBsYyk-qoqpgwl11SkinyT0AuQg2mYg.JPEG%2FIMG_6477.JPG%3Ftype%3Dw773", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 163, - "name": "브런치빈 분당서현점", - "category_id": "파스타", - "score": 2.7, - "review": "136", - "address": "경기 성남시 분당구 분당로53번길 16 정일빌딩 4층 402호", - "operating_hour": "매일 09:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 21:00", - "phone_number": 317787420.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F40F6CB476362459E9471FCAC2B715AAB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1f607c52622a78b47a9aa3bc6f1f8ac1b09f5e47%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa9b570db734d5d684f300d351f7a1e8586b94a78%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 164, - "name": "서가앤쿡 판교파이어스몰점", - "category_id": "파스타", - "score": 2.9, - "review": "0", - "address": "경기 성남시 수정구 창업로 17 아이스퀘어 A동 106호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317210401.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F81c135219fda656f1a6d6395be8c43ae664e8ed8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F81c135219fda656f1a6d6395be8c43ae664e8ed8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F37ca1fb50f35102a1a5a9ccb9d4133c760b8982d%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 165, - "name": "긴자료코 수내점", - "category_id": "파스타", - "score": 4.0, - "review": "39", - "address": "경기 성남시 분당구 황새울로258번길 10-9 1층 102호", - "operating_hour": "월~토 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:00", - "phone_number": 317115045.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5c1f4bf71c96e2379a620b0e4b41acd0a2909b4c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F95e8993012c326513839051dd8697a4c7a288fd1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5c1f4bf71c96e2379a620b0e4b41acd0a2909b4c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 166, - "name": "언버튼", - "category_id": "파스타", - "score": 5.0, - "review": "33", - "address": "경기 성남시 수정구 창업로 43 글로벌비즈센터 A동 1층 107호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 7082304448.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 167, - "name": "샐러디 판교제2테크노밸리점", - "category_id": "파스타", - "score": 4.5, - "review": "22", - "address": "경기 성남시 수정구 창업로 57 103호", - "operating_hour": "월~금 07:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "07:00 ~ 20:00", - "phone_number": 317055733.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F04B44AE82E1043EB971E9A4E79E069EB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F337c8a3633d3970f99c30575093c4f4eece8b96e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdea3d118597d5e2c060c7c51cf0fc844dcf5a176%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 168, - "name": "번쩍피자 수내점", - "category_id": "파스타", - "score": 3.7, - "review": "0", - "address": "경기 성남시 분당구 수내로46번길 20 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317192595.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff2a3f8003ceafcc958b31fc937cde77f29e7369e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 169, - "name": "파스타예요 분당점", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로319번길 6", - "operating_hour": "매일 10:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC93255F618314A63870BAD70277A59E1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1D8BA8254BD046918EF1BE6BC2E8F733, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCA26A9D4C5EB4BED9815AA8CD94F7EA6", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 170, - "name": "굽네치킨 야탑1,2동점", - "category_id": "파스타", - "score": 3.0, - "review": "1", - "address": "경기 성남시 분당구 판교로 443 중앙빌딩 106-1,107-1호", - "operating_hour": "매일 11:30 ~ 01:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 01:30", - "phone_number": 317085777.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB9AD8C50C3DC4C36BA3E56072541E15D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7A5A7DD95C4E47B88EC4AB7E71D04BED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFCA859C087774DCCAC98335B0662381C", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 171, - "name": "고동경양 분당수내점", - "category_id": "파스타", - "score": 3.2, - "review": "118", - "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 1층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC71407A524BC4E20B799EBD16D79C415, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FAA20B874F1EC41D08B8FA6BE536E38CF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F46aa4c39cd0f8d11a49487e39a329facb14b0cf1%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 172, - "name": "스탭밀", - "category_id": "파스타", - "score": 4.9, - "review": "31", - "address": "경기 성남시 수정구 창업로 43 1층 B-105,106호", - "operating_hour": "월~금 11:30 ~ 14:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 14:00", - "phone_number": 50713138613.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9CF7E35FF4C44101B1FA37CF86C080BA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4E25AD2CE2704BD3BC9E33CAE903BB33, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFBD8E243258C4E42B3CFC3C351470C58", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 173, - "name": "피자스쿨 분당정자1점", - "category_id": "파스타", - "score": 4.1, - "review": "1", - "address": "경기 성남시 분당구 성남대로 389 폴라리스2 105호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317117766.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2f89c23d87ed5c2e024978bbd58a6bd46dc64c40%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff051c0fc2ce6d18927bc6e4bf759a38ff842571c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F481409ed65093839ccbdb207f553d5ba252b9e5a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 174, - "name": "조셉스테이크 더블트리바이힐튼점", - "category_id": "파스타", - "score": 5.0, - "review": "40", - "address": "경기 성남시 분당구 백현로 26", - "operating_hour": "매일 15:00 ~ 18:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 18:00", - "phone_number": 3180397397.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7d7aded327c5e7f279588b91733578d631a2f0dd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F306b43cc638617c4766bc0ecbe9bc696a97f3a19%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F894b4a2c781308694e8d2f64813a98cc7b286737%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 175, - "name": "에뿔라이(epulae)", - "category_id": "파스타", - "score": 5.0, - "review": "1", - "address": "경기 성남시 분당구 황새울로335번길 5", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB17D30F1CEA34CBFB74775B0DD6A9FA7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F72aef38a2b0ae8bcbb74b1cffdb9df42b4e366da%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6e8118269cc687551b8f9f7b32cbdd4a19b6ff66%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 176, - "name": "샐러디 수내점", - "category_id": "파스타", - "score": 3.9, - "review": "29", - "address": "경기 성남시 분당구 황새울로200번길 9-7 1층", - "operating_hour": "월~금 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 21:00", - "phone_number": 317128831.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fea2145cd8b5d245f09e5584b76c8adcd94e0dfbe0cada19bb1826ed5902a2cab, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7D64CEB4A79B438A98BFE43B086A7767, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB0004506B9024798890F5DAD14CC78E7", - "convenience": "편의시설 정보 없음", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 177, - "name": "정직유부 수내점", - "category_id": "파스타", - "score": 4.5, - "review": "3", - "address": "경기 성남시 분당구 내정로165번길 50 1층 103호", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": 317177911.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3DD3090C7A4947B1A9EA3913FE1494EA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F46f16dcdde072c1b1a196b796fdd9d69fb1a422e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MjBfMTM4%2FMDAxNzI2ODEyMjY4NTU0.QjMPORYCQqMNEfsDGMg04JXPk_eJmkZXrQuvBAtrGZIg.jCd9FETbfbZH2LGkin9pFRlK-UQyDnXAkdMrwu17-o8g.JPEG%2F20240918%25EF%25BC%25BF170826.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 178, - "name": "피자먹다 서현점", - "category_id": "파스타", - "score": 3.8, - "review": "20", - "address": "경기 성남시 분당구 황새울로342번길 9 1층", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 317080913.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F344EDDF970D54C0390CBEA49086DF15D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fadcb0a02d370ae9a988b9e51b306c9645ff0674b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2A408380AF124D208B6F3A20ACF33F6F", - "convenience": "WIFI", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 179, - "name": "토끼정", - "category_id": "파스타", - "score": 2.5, - "review": "0", - "address": "경기 성남시 수정구 창업로 17", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA88703CF8140423D91BA9DF687D1D10A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9888684C12164A96B9548917880D9C46, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4ABD0E30825B40CC99D0503A316707CF", - "convenience": "주차", - "caution": "예약불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 180, - "name": "피자스쿨 분당아름점", - "category_id": "파스타", - "score": 5.0, - "review": "2", - "address": "경기 성남시 분당구 판교로 437 숭문상가 103호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317087088.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB79A44A3EA934F269961F8E7AF802C7F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F256DA43A536AE27D1B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAzMTRfMTk3%2FMDAxNzEwNDI2NjA5NDUy.Eir3_8EHibDastK4Ciy7ARuCgJ-22u9llvdmGSFIVkwg.Y7HZIcX6zBM--LxmjPX51Cwo-SLYMz21dk0ISR_p7d0g.JPEG%2F20240314_184515.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 181, - "name": "델리커리 판교점", - "category_id": "파스타", - "score": 4.0, - "review": "40", - "address": "경기 성남시 수정구 창업로 18 파미어스몰 P1동 2층 210-1호", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F596434C4FCDF47A1B3FBB8BA4C51EF8D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdee694f9330db6c7c704ca82b7fca573b2f6122b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5945ef9f237321b26f3481cb115d13efe048a9e8%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 182, - "name": "빽보이피자 분당서현점", - "category_id": "파스타", - "score": 2.8, - "review": "2", - "address": "경기 성남시 분당구 서현로 184 105호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 16684595.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2C777E2C6A994D92B4FDF9683DD0C33B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFCA6D4FCA263425AAD74B4BA10159B25, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F122c7891a3d4c4b9e2f6b4668339f531c9bc54f7%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 183, - "name": "찬찬", - "category_id": "파스타", - "score": 4.7, - "review": "6", - "address": "경기 성남시 분당구 황새울로258번길 43", - "operating_hour": "매일 18:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "18:00 ~ 02:00", - "phone_number": 232811300.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_605526458, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_847627376, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_158176473", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 184, - "name": "이백장돈가스 분당아름마을점", - "category_id": "파스타", - "score": 4.4, - "review": "4", - "address": "경기 성남시 분당구 판교로 437 숭문상가 1층 101호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317070290.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F053A98B046E24A76A5322B9152AF2188, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F22A5D80A0F1346F1ACDB91E5430EAE3A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2F33C80E373A45C18C5D8C1EE2B0E75F", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 185, - "name": "한스델리 서현1호점", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 분당로53번길 12", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317012772.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE06F22E2B4F94BEA9F52DAA6FD37EAC0", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 186, - "name": "먼키 분당휴맥스점", - "category_id": "파스타", - "score": 5.0, - "review": "5", - "address": "경기 성남시 분당구 황새울로 216 휴맥스빌리지 지하1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 50714717118.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F97DBCFE490E84689A00EB24945BDBFE6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F82D971C1F3A9466FBDC83CAF5F8519C9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F91A4698904B64FDE9F3F255B57460501", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 187, - "name": "고향카츠 판교테크노밸리점", - "category_id": "파스타", - "score": 2.9, - "review": "5", - "address": "경기 성남시 수정구 창업로 18 파미어스몰 C1동 1층 114,115호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA6B2B759A368463FA188F93CB1F31AB9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAyMThfODIg%2FMDAxNjc2NzAyNjE2NDQ5.243OwVtFNesHiDZw6gKFpsq2oUmAlqQ1xWcDcVtQ4hcg.diS5r_jBprFnsCja625cp2gXo9PMeLZp-eb1qA6r78wg.JPEG.chzhkiss%2FIMG_1981.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA0MDZfMjYw%2FMDAxNjgwNzQ2OTY5NTUx.8TlJG5l36MQ-TYUma7YL-HR0BF8ODO-qrSlcmpAKxO0g.I4aaX7dIHsdURVePZxq5bzPhMmi_EEey-y_IBZ2vklMg.JPEG.chzhkiss%2FSE-C48FA06D-7CD8-445A-A136-51B5AEE597B5.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 188, - "name": "샐러디 판교도시첨단점", - "category_id": "파스타", - "score": 5.0, - "review": "0", - "address": "경기 성남시 수정구 금토로80번길 51 판교위너스에비뉴 1층 105호", - "operating_hour": "월~금 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 20:00", - "phone_number": 317098090.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F10FD44BF04EF4B748F76ED6FF61208A3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6116544CA5B24C9F91F3E0A0B375C952, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB77CF0BB4AA045AF9DF9252F3BF54857", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 189, - "name": "핑크덤벨헬스푸드", - "category_id": "파스타", - "score": 4.0, - "review": "8", - "address": "경기 성남시 분당구 황새울로342번길 19 1층", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6423CC6EFBFB40D1854568469F3D00B6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6CF960BED3114428A08B7E23D2778C35, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F25DE85BA695A4C439D2CCDE48B665B43", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 190, - "name": "돼지게티 분당야탑점", - "category_id": "파스타", - "score": 3.0, - "review": "1", - "address": "경기 성남시 분당구 판교로 433 206호", - "operating_hour": "매일 11:20 ~ 01:20", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:20 ~ 01:20", - "phone_number": 317818660.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2F39D887BAC74F238311C560D9E58FE6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F12D8F3332DA64856AED8A6485C629CF5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2BDDDF8FB1584F9B95EA5FA1D5F3A221", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 191, - "name": "피치타임 수내역점", - "category_id": "파스타", - "score": 0.0, - "review": "47", - "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 1층 104호", - "operating_hour": "매일 12:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 24:00", - "phone_number": 317199232.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F708A53CB11FD474F836A0E9C915DF123, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA5MDhfMTM2%2FMDAxNjYyNjQ3OTEzMzY0.qdCiE5OVE1eNpkmgCZGiK6rsZ6wlbc2V31skbzenfW4g.YXtBJm0I4aQS3HwwZvFDNZCkCyIJOV-gL36AgLCdn50g.JPEG.vintageemoeum%2FIMG_7859.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA5MDhfNyAg%2FMDAxNjYyNjQ3OTEzMDAy.2DO1lTZg_AwPZOiK0RJXoI_jp6EFzgbouvQ1oz_uB_0g.k0Xpltv0Ya71ELKF-KZg9XIM50E2fSCoYm6lIOCUnjUg.JPEG.vintageemoeum%2FIMG_7857.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 192, - "name": "오마드", - "category_id": "파스타", - "score": 0.0, - "review": "7", - "address": "경기 성남시 분당구 황새울로312번길 20", - "operating_hour": "월~토 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:30 ~ 21:00", - "phone_number": 25188520.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF174F888D3564633984EB95EA038822C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzExMTNfMTAx%2FMDAxNjk5ODUwMjYwMDUy.OT4Hnk7Xk0KhCHpPU6DuD6P2gbrG1MRI86lV7prndrkg.tIOmiEUWWjBL1r3LCYH1Cr2ndhmWz9K188KA0Caz6yQg.JPEG.gywjd2303%2F20231109_185050.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzExMTNfMjI0%2FMDAxNjk5ODQ5NjUwNDEx.GIzAWzXc3CGlJ5uA-S6aQ6GP51HpDOlq0Ku5qTtun54g.hkr7xhHTKYJTAtcsm2mrCiwCNl5U5xo3vGwAQzyq110g.JPEG.gywjd2303%2F20231109_202413.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 193, - "name": "바순", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서현로 170 풍림아이원플러스 2층", - "operating_hour": "월~금 08:00 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 21:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FCC8596BDEFA540F9A8C8CBB0D7E4DD51, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDC6EB7A89D3E4939B52C291F0E11D1DD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6DA5F1E8DD3C4EEEB5B2C90ECEC1741F", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 194, - "name": "샐러딧 판교파미어스점", - "category_id": "파스타", - "score": 5.0, - "review": "24", - "address": "경기 성남시 수정구 창업로 17 판교아이스퀘어 B동 103-1호", - "operating_hour": "월~금 07:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "07:00 ~ 20:00", - "phone_number": 317217924.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCF286600B37B45429085417A33016594, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F38C847FD46E444488CC6C91C905F1846, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F3BBF90B283774D118465434A0C562DC5", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 195, - "name": "파파밸리피자 롯데백화점분당점", - "category_id": "파스타", - "score": 0.0, - "review": "1", - "address": "경기 성남시 분당구 황새울로200번길 45 지하 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317382088.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA90F60D57D3B4F5190E0851C34183E8D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMjFfMTk5%2FMDAxNzI5NDk4OTA5NDQx.QVdVhgtbxtMD3ZLh3TcFjDa9reO8m0rANRgBPow64ZEg.gGYDLg1-S9ignv_BbO6ZUlsMNHmGWKRbE8X-A_KBJL0g.JPEG%2F20221009%25EF%25BC%25BF121017.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMjFfNzMg%2FMDAxNzI5NDk4OTA3OTc3.PAR9PrtWaqzin-PKY3TQDEugksesdt7Y6H_w5_EDHsAg.rBE_KaHYHxzCfEBA_rJ-gHKi3M7Xy9u9jXbA77DBzNYg.JPEG%2F20221009%25EF%25BC%25BF121015.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 196, - "name": "에덴의이슬", - "category_id": "파스타", - "score": 5.0, - "review": "1", - "address": "경기 성남시 분당구 판교로 436 홍우프라자 1층 12호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3D2009A0F6754B3DBA0AAA9136860F29, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Feb770e4e46e3860aae5b19a68d24657451aad382%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2475648a32f93880e479260926b53e195dfa663e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 197, - "name": "맘스피자 이매역점", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 양현로 126 미림프라자 2층 203~204호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 317076663.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 198, - "name": "꽃물 서현점", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서현로210번길 14 유성트윈프라자 지하1호,2호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F18600E4D5004D8671A", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 4, - "restaurant_id": 199, - "name": "웰돈", - "category_id": "파스타", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서현로 192", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFD67525BB51942BEAABF82820A11EF13, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1497fc4d0cfc660934ab4fd6889883e972a59f75%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffc94422a84669b4b887c1fb3f907f21a4952e62f%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - } -] \ No newline at end of file diff --git a/storage/input_json/restaurants_table5.json b/storage/input_json/restaurants_table5.json deleted file mode 100644 index 3a10c1c..0000000 --- a/storage/input_json/restaurants_table5.json +++ /dev/null @@ -1,1073 +0,0 @@ -[ - { - "db_category_id": 5, - "restaurant_id": 1, - "name": "뚜에이오", - "category_id": "이탈리안", - "score": 4.2, - "review": 873, - "address": "경기 성남시 분당구 판교공원로3길 24-2", - "operating_hour": "매일 11:00 ~ 21:20", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:20", - "phone_number": 3180161865.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB82840AE9F744073B9D6094C29710FC6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe24915e23baf44f44b8b11275f41ebbbf30acbb2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F150dff4ef35678581f6c0082d4d944e845a19652%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 2, - "name": "파파라구", - "category_id": "이탈리안", - "score": 3.7, - "review": 521, - "address": "경기 성남시 분당구 판교역로10번길 22-3 1층 101,102호", - "operating_hour": "월,수,목,금,토,일 11:30 ~ 21:00", - "expanded_days": "월,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 317095624.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F8973E9C7A0CE41B08710975BA50ABCF1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_476580354, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBC425AD040DC4600B6C64D731889D516", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 3, - "name": "라비떼", - "category_id": "이탈리안", - "score": 3.9, - "review": 274, - "address": "경기 성남시 분당구 판교공원로3길 16 1층", - "operating_hour": "월,수,목,금,토,일 15:00 ~ 17:30", - "expanded_days": "월,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1def0ea4858280591039c8bb29fce9d0f315529a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F446554de6c23735d5e0387be33b370aa7c18adaf%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd745934381b680d25efff2133a3ef256e21ee7dc%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 4, - "name": "빈티지1988", - "category_id": "이탈리안", - "score": 3.1, - "review": 442, - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 101호", - "operating_hour": "월~금 14:30 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:30", - "phone_number": 50713871993.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F126FF7464FFA64F81D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2021A2434FFA653F2C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F0EF2F3FE94A34CB38838C2F1EAD50271", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 5, - "name": "세렌", - "category_id": "이탈리안", - "score": 3.8, - "review": 300, - "address": "경기 성남시 분당구 운중로188번길 11 1층", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 317090775.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 6, - "name": "푸치니", - "category_id": "이탈리안", - "score": 4.2, - "review": 52, - "address": "경기 성남시 분당구 판교로25번길 6-3 1층", - "operating_hour": "화~토 15:00 ~ 17:30", - "expanded_days": "화,수,목,금,토", - "time_range": "15:00 ~ 17:30", - "phone_number": 317013398.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 7, - "name": "오스테리아 워모잡", - "category_id": "이탈리안", - "score": 3.4, - "review": 250, - "address": "경기 성남시 분당구 판교공원로2길 40-1 1층", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 1030059541.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1876655045, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FB7DA27DC93A54FCFB5D8279AF222FED1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4514A6591B97421DA0E1C0826AAC89EB", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 8, - "name": "라그릴리아 판교점", - "category_id": "이탈리안", - "score": 4.2, - "review": 112, - "address": "경기 성남시 분당구 판교역로 166 카카오 판교 아지트 1층 17호", - "operating_hour": "매일 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 317070999.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1F79BCF05170474896655B1794C0CEC9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe8ff1fbe71bfe749a2aacc85cb99bb90a03ff10f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdc1f7c8802c81ba74e7fe99125b3215a391914df%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 9, - "name": "라스토리아1001", - "category_id": "이탈리안", - "score": null, - "review": 266, - "address": "경기 성남시 분당구 판교공원로3길 24 1층", - "operating_hour": "수~일 11:00 ~ 21:00", - "expanded_days": "수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 50255516969.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F39CE7677E1224AB29BF7CABEBCC30EDB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTRfNjEg%2FMDAxNzM0MTc1ODQ3Mzgz.gqAcdiiv1-4iRAdJPhUHXoDvLd2aR0MV4Mp-nCw7Of8g.uIpuMzCYiSmapuZHx8c3B0vXJ2a-i5tMDH6h9BT4_Pkg.JPEG%2FKakaoTalk_20241214_202300299_15.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTRfMjgz%2FMDAxNzM0MTc2MDE4NTI5.QoCGDS1BbdKIUfOhRHfRBT-dcVHLbMMRp4xjhmOm_4sg.kQe82WRIj3nKVNumCT8SETXGcdZotw96cdMwt12p5Fog.JPEG%2FIMG_7751.JPG%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 10, - "name": "이탈리 판교점", - "category_id": "이탈리안", - "score": 3.2, - "review": 231, - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 지하1층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701061.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F69575383D004495694C62007A51D4955, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F227f30d1c47269b0079b4a62155d537ef7b1fa77%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5572427af547f6e729f170634f4ff19c70dde076%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 11, - "name": "베네쿠치", - "category_id": "이탈리안", - "score": 4.1, - "review": 48, - "address": "경기 성남시 분당구 운중로146번길 19 1층", - "operating_hour": "화~금 11:30 ~ 21:30", - "expanded_days": "화,수,목,금", - "time_range": "11:30 ~ 21:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4EEFD72E8366454194DE7AE54DDCCDEC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc4a1bd15b2fe732ff21e56c5dbba2478bd3a5175%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd2b9e2eada92ef8e1ef05d79982ada7455ab143a%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 12, - "name": "피제리아 비니스", - "category_id": "이탈리안", - "score": 4.5, - "review": 598, - "address": "경기 성남시 분당구 판교공원로1길 70 1층", - "operating_hour": "수~일 15:30 ~ 17:30", - "expanded_days": "수,목,금,토,일", - "time_range": "15:30 ~ 17:30", - "phone_number": 317010345.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4947E278FE9F42A48071CA5B2AA09D1A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4F24E17D4342433191F323D574708619, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4D222479C31A49AAA589F6A274A502CB", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 13, - "name": "더플레이스 판교점", - "category_id": "이탈리안", - "score": 4.4, - "review": 169, - "address": "경기 성남시 분당구 동판교로177번길 25 1층", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 317010421.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F786AA23600B3441790908105A95F1406, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDF3E48C0E17543EEAA756F9929C282B2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F05EFD500C2B442228BE3C3B833DF5ADA", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 14, - "name": "메즈클라", - "category_id": "이탈리안", - "score": 3.9, - "review": 0, - "address": "경기 성남시 분당구 운중로146번길 35-1", - "operating_hour": "화~일 15:00 ~ 17:30", - "expanded_days": "화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 50713607544.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F1B86086D5B2B43AB88D371C1B0272AFB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FE587B85A321742268EC0B7C2C69D700D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa1edac375f7daf70bc24e2039390af1f77462f65%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 15, - "name": "에이치541", - "category_id": "이탈리안", - "score": 3.5, - "review": 10, - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 9층", - "operating_hour": "매일 10:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:30", - "phone_number": 3151702541.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F746BA92B638C4474BBC3794EF8C477CE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0f4c9bb7b2f812da8438f55086fbb2d5d37ab459%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F05964b549291f601ac99b6759dc92828b49b3a8a%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 16, - "name": "체르또", - "category_id": "이탈리안", - "score": 4.6, - "review": 23, - "address": "경기 성남시 분당구 동판교로52번길 13-10 1층 102호", - "operating_hour": "화~토 11:00 ~ 21:30", - "expanded_days": "화,수,목,금,토", - "time_range": "11:00 ~ 21:30", - "phone_number": 50255501744.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 17, - "name": "에이치이에이", - "category_id": "이탈리안", - "score": 5.0, - "review": 467, - "address": "경기 성남시 분당구 판교공원로1길 67 지하1층", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 317810122.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 18, - "name": "더이탈리안클럽 판교테크원점", - "category_id": "이탈리안", - "score": 3.6, - "review": 207, - "address": "경기 성남시 분당구 분당내곡로 131 1층 5-2호", - "operating_hour": "월~금 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4043FB44BB5E4E3D80938662F6213BF8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6d6187b7f53e3deeb01626cfc0dd7e9d07877650%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3269e3b72c8760d0edec5036c1aed3d08f285396%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 19, - "name": "비스트로바이콘", - "category_id": "이탈리안", - "score": 4.3, - "review": 18, - "address": "경기 성남시 분당구 대왕판교로645번길 36 1층", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 316068511.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F72763F140BDE498D9F722FDC2784B312, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjhfNTUg%2FMDAxNzMyNzg3NDgyMDkw.5gh8FCut0ESujYQTAQD1f9aoGCIxJRFFOg_WUDvQbEsg.O_siazouFjXkpbWcrQbdwf2EsNRQ--58btjVal-TytAg.JPEG%2FIMG_9807.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjhfMTk3%2FMDAxNzMyNzg3NDgyMTMw.4sGphTUk6dPzF4yhUe86MkIWVl-8o75NSv-T-XLRjgEg.HilFQ3G7aQ5bRL9UwAMF-SI2K7qA84ity6apAV5mrUIg.JPEG%2FIMG_9806.JPG%3Ftype%3Dw966", - "convenience": "WIFI\n주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 20, - "name": "까사파스토", - "category_id": "이탈리안", - "score": 4.9, - "review": 36, - "address": "경기 성남시 분당구 판교역로10번길 14-5 1층 102호", - "operating_hour": "화~토 10:30 ~ 21:00", - "expanded_days": "화,수,목,금,토", - "time_range": "10:30 ~ 21:00", - "phone_number": 317269155.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F28496E3046B94D6FA8752A8A5F55B711, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F93EE961CF25845BFA16730815711FFA1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5A48AAC82E2549269FD141594CC1EDB7", - "convenience": "WIFI\n동물출입\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 21, - "name": "판교의하루일과", - "category_id": "이탈리안", - "score": 3.5, - "review": 84, - "address": "경기 성남시 분당구 분당내곡로 131 2층 11호", - "operating_hour": "매일 11:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 24:00", - "phone_number": 316017559.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F13BAD30E2C204E13A2FD5664CD01DA9E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA3393900C4A54CDDB55B89064101DBD4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F8521FF560A6147E194060691F2B9BCF4", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 22, - "name": "구세뻬", - "category_id": "이탈리안", - "score": 3.6, - "review": 4, - "address": "경기 성남시 분당구 판교로33번길 21 1층", - "operating_hour": "월~토 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7C8C223902534A3E985F4E2B6C5CD4B3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F16a6c2a13c63a726a9d6be2a2e0d49d759a677df%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F30ea745c59a93fca35d1c83d56fea4fed9213cac%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 23, - "name": "챠오바라이트", - "category_id": "이탈리안", - "score": 3.0, - "review": 10, - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 125호", - "operating_hour": "월~금 11:30 ~ 10:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 10:00", - "phone_number": 316284545.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1F92BD49C422488C9A002FB820DF3015, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9fbfd7190102004ccfbf66cd1a280eb6fd7c35ac%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F89a64dd1620fddf443ac14edc4de9f2d42957ead%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 24, - "name": "스너그", - "category_id": "이탈리안", - "score": 3.7, - "review": 28, - "address": "경기 성남시 분당구 운중로113번길 12-2 1층 101호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 1072572055.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 25, - "name": "더 키친 일뽀르노 현대백화점 판교점", - "category_id": "이탈리안", - "score": 3.8, - "review": 87, - "address": "경기 성남시 분당구 판교역로146번길 20 5층", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": 3151701592.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F343745CAEBD64500812E8E1182298A6D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC38BD0D9873B476A956843CA743B4593, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F765C1F0BF8224CF6A6BD9967271F70F6", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 26, - "name": "라빌란치아 이탈리안음식전문점", - "category_id": "이탈리안", - "score": 4.8, - "review": 2, - "address": "경기 성남시 분당구 판교공원로2길 49 1층", - "operating_hour": "월~토 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB8B7ED61E1EE4BDD81AAB4A4BA48C07A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F21070f93054d75e0d067e297ef03ad4abf0f4328%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc7125d22497f49187e4f7833b47c67700929a254%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 27, - "name": "비스트로허디거디", - "category_id": "이탈리안", - "score": 5.0, - "review": 0, - "address": "경기 성남시 분당구 산운로32번길 14", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180173214.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 28, - "name": "빔스", - "category_id": "이탈리안", - "score": 4.5, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로606번길 39 12층 1201호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 29, - "name": "105파스타 서판교점", - "category_id": "이탈리안", - "score": 4.2, - "review": 3, - "address": "경기 성남시 분당구 판교공원로5길 3 1층 102호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317070105.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FFBFDE3E4606F4A44A32975398DB89F78, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F801522F204634C6F976A24498E46B3DC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMDRfMjMz%2FMDAxNzA0MzU3Mjk1MjY0.dxKQGxaoxyjb8q4y3ejbVkkvGgnVoMgNZ-cxUX_VRbwg.Caxf6oGOiWLt-W1zGqRDIECnLs955vEJchnoGxOjONUg.JPEG.nks9548%2FKakaoTalk_20240101_171514066_07.jpg%3Ftype%3Dw966", - "convenience": "WIFI", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 30, - "name": "파토리아1964", - "category_id": "이탈리안", - "score": 2.9, - "review": 0, - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 9층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151701938.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqqFYpNhUL_xXCLRfXbVKCztAYcy4HM60_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffbf2fd47984d2cb19d9a9fd3cd82cca442a38708%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqqFYpNhUL_xXCLRfXbVKCztAYcy4HM60_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 31, - "name": "오말리 판교점", - "category_id": "이탈리안", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로606번길 47", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316251232.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 32, - "name": "라 피아디나", - "category_id": "이탈리안", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로146번길 20", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 33, - "name": "레스토랑마고", - "category_id": "이탈리안", - "score": 4.2, - "review": 161, - "address": "경기 성남시 분당구 정자일로 230 동양파라곤 105동 지하 103호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 1045260589.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F707FB104E3E740049149D5890574DC53, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDCB45A60450E49EE893CA7FA345B9588, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9E2DB72075EC4402B53A1EFE68A25B09", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 34, - "name": "메이빌 분당점", - "category_id": "이탈리안", - "score": 4.0, - "review": 84, - "address": "경기 성남시 분당구 서현로210번길 16 유성트윈프라자 2층", - "operating_hour": "매일 11:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:30", - "phone_number": 317054267.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F120EEA3B4F4D3B4B3A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F1810A33B4F4D3B4C30, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F170A723B4F4D3B4B35", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 35, - "name": "토브나인", - "category_id": "이탈리안", - "score": 4.1, - "review": 95, - "address": "경기 성남시 수정구 사송로 56 1,2층", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": 7088709990.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC530ADC96FA34CDAAA3F0602A32BAFC8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6b957d5481a07fc1175973b3020487c835a116a1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe9e0a4d5cde9e02da977f104330e2b3e1325b2b2%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 36, - "name": "쏘렐라파스타 본점", - "category_id": "이탈리안", - "score": 3.8, - "review": 33, - "address": "경기 성남시 분당구 정자일로 177 인텔리지빌딩 상가 3층 306호", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 317825882.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F47106427CDA24658B3432CDAFCD72BDD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4956B7F2620241A8ADD7D739268B4DAD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7247EB9FB505446297426DACCFABAD41", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 37, - "name": "돈파스타", - "category_id": "이탈리안", - "score": 3.9, - "review": 64, - "address": "경기 성남시 분당구 황새울로342번길 11 금호리빙스텔 2층 201호", - "operating_hour": "화~금 11:30 ~ 15:00", - "expanded_days": "화,수,목,금", - "time_range": "11:30 ~ 15:00", - "phone_number": 317012155.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0C17366F3CB34212A31E75DB6DC3875D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F078f137727ebe39574f221905dfb77509cd4f752%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F63cb3ab0d0cad5f6acadb112727d6ed08fac508d%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 38, - "name": "꼰떼넨떼", - "category_id": "이탈리안", - "score": 3.4, - "review": 211, - "address": "경기 성남시 분당구 정자일로 210 2단지 101호", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 317182777.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9CCEE664F0A1463AB8FC045A232CED25, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F65dc0783a58dca762d246ed1728b865fba348e48%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe5652ed78cb77707af4f8834387372c4827c0e98%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 39, - "name": "롤링파스타 서현역점", - "category_id": "이탈리안", - "score": 4.4, - "review": 184, - "address": "경기 성남시 분당구 분당로53번길 14 서현프라자 2층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317073547.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7694B636D7424703AE6A46E67A81853F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1462799448, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1629882925", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 40, - "name": "투파인드피터 서현점", - "category_id": "이탈리안", - "score": 4.7, - "review": 621, - "address": "경기 성남시 분당구 황새울로360번길 26 4층 401호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317786263.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F67AE650F1619491A878D29D12C4746FA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fea7cfa97b02bbfb993c9469c328cde623dbf9265%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F06b0cfb6bb7ec3b85a162ba00c4b3145ce43182f%3Foriginal", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 41, - "name": "다크앤라이트", - "category_id": "이탈리안", - "score": 4.5, - "review": 162, - "address": "경기 성남시 수정구 달래내로 252 2층", - "operating_hour": "수~일 15:00 ~ 17:30", - "expanded_days": "수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 317088730.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA05E4443344543A6BCB64C943479D6DC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F59A905DAE0534BCC8F1A3F305C1E3AA5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6BC839C57AF44F5D908B8FFFAF661E37", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 42, - "name": "닐리파스타앤피자 정자역점", - "category_id": "이탈리안", - "score": 3.5, - "review": 27, - "address": "경기 성남시 분당구 정자일로 210 정자동양파라곤 1층 108호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317121944.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1E24C77122BA4FF7BB636EDC361FD990, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3ee1e95789139d160982de24e69979e9b93c0e79%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F35f63488ab73411bf387e3b2c4454a3b14c866f7%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 43, - "name": "몽델리부티크", - "category_id": "이탈리안", - "score": 3.6, - "review": 222, - "address": "경기 성남시 분당구 백현로 26 더블트리 바이힐튼호텔 판교 지하1층 2호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB5C33A1657384D3CA63BCF0D87D22B7B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2CBB025D55D149AFB9FB4A8D3652E50F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F09becc7235ae6a0f2f94a4fb3e1cb6c6303e6314%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 44, - "name": "미츠스테이크 서현", - "category_id": "이탈리안", - "score": 4.4, - "review": 121, - "address": "경기 성남시 분당구 분당로53번길 11 서원플라자 5층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317086617.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAAD9752C70724FB9BCD98A7995700414, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA51E4BC0BA494DE7BA9DBF99D5666CD2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA161C981174A4C3CAF8553144FB5264A", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 45, - "name": "라그릴리아 롯데백화점분당점", - "category_id": "이탈리안", - "score": 3.9, - "review": 30, - "address": "경기 성남시 분당구 황새울로200번길 45 1층", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": 317382051.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1A1CBD23E0E945DBB9F22F3648649864, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F57ba29ec70b76e49ab465fe4f62f8425cab0e0b6%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8fd20522840747b53a405b9fdf82929fe6c2a321%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 46, - "name": "스파게티스토리", - "category_id": "이탈리안", - "score": 3.3, - "review": 10, - "address": "경기 성남시 분당구 서현로210번길 16 1층", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 7088352302.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F329C8554E952426B97330878E2CFF2F3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4d2fc3ed17c28538fb61e81b3a5970f65c3e9f60%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fee0f6d34d48d84a2abe52599463a329098ca5412%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 47, - "name": "롤링파스타 분당정자점", - "category_id": "이탈리안", - "score": 3.8, - "review": 1, - "address": "경기 성남시 분당구 황새울로108번길 5 1층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317173547.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F8AB16F3C73F34BE485455E82D55D3476, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F31256ba087c5d0eb3935851e5c105a05552f2f9b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F90A4AD6619C24596838D193DF4D7D860", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 48, - "name": "파스타테이블", - "category_id": "이탈리안", - "score": 4.8, - "review": 21, - "address": "경기 성남시 분당구 분당로53번길 21 산호프라자 2층 207호", - "operating_hour": "화~일 11:00 ~ 21:30", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 50255502093.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFF5A3BCF88454BA491A6562584AF2988, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7D37AC07299C478DB46F280696B24A0C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F90B973F6B57443A585C6160FD5487159", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 49, - "name": "105파스타", - "category_id": "이탈리안", - "score": 4.3, - "review": 10, - "address": "경기 성남시 분당구 양현로 126 1층", - "operating_hour": "화~일 11:30 ~ 20:40", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:30 ~ 20:40", - "phone_number": 317079105.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F243D025A84764835A961E8F1BD291183, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0974201244ea684946f601ffdaf3e0b96e64bf66%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDdfMTg0%2FMDAxNzMzNTgwMTcyNjE0.ojhuH8DhlLweLayhairQ8vmhZjFk3tw1RGP3SJ_WrAog.-PRfA2DKiOuFZVR6C6hFETqcLt_97ed9_NCQitzqrDgg.JPEG%2Foutput_2368262266.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 50, - "name": "미태리 분당아름마을점", - "category_id": "이탈리안", - "score": 5.0, - "review": 24, - "address": "경기 성남시 분당구 판교로 441 남서울프라자 1층 110호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317037333.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FEBFFDEC4863341F18DC628BFD68DD565, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F504013D3E17847538590A5AA457EF646, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5DE7EB41FC234DB39D1C363F9416F3EA", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 51, - "name": "파스타마마 수내점", - "category_id": "이탈리안", - "score": 3.4, - "review": 7, - "address": "경기 성남시 분당구 백현로101번길 16 1층", - "operating_hour": "월~금 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 20:00", - "phone_number": 317123700.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7E36924152CC4397A4A6D5CF9D6880A8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F105a688f39154ea560a88035da471ba962bcfc3f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA5MjNfMjE3%2FMDAxNjYzOTI4MzM0NDcz.9yAV477cvZNwPVdNuKgIRNgd3gVoC_DqA0WwNu05094g.xntd2LpZjUfsU6J7gQ5gbIgWyImEeAEWTrbJ5s3CUgkg.JPEG.alohalice%2FIMG_1334.JPG%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 52, - "name": "라까사데파스타", - "category_id": "이탈리안", - "score": 4.7, - "review": 0, - "address": "경기 성남시 분당구 중앙공원로31번길 42", - "operating_hour": "화~토 11:30 ~ 21:00", - "expanded_days": "화,수,목,금,토", - "time_range": "11:30 ~ 21:00", - "phone_number": 1087418588.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5113D66CF2F243FEA8727FF2A48A080E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6FA21DA95DF34822B6D312D9601D47F8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F056FCE2F8C09438CA45BB392B60D82CE", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 53, - "name": "요녀석파스타 분당점", - "category_id": "이탈리안", - "score": 4.7, - "review": 0, - "address": "경기 성남시 분당구 느티로87번길 17 1층", - "operating_hour": "수,토 09:30 ~ 02:00", - "expanded_days": "수,토", - "time_range": "09:30 ~ 02:00", - "phone_number": 317126667.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0f1c2c1064575b6fc86abab9aeafa77d8300de6e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC783F148A7D84798840FA6957F2693E6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9D798A7752E3422A9C8C7F79AAA06DAD", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 54, - "name": "몬테쿠치나", - "category_id": "이탈리안", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 안양판교로828번길 20", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180160987.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 55, - "name": "올데이파스타", - "category_id": "이탈리안", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 지하1층 B107호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F20AD0CD16AC6405A8D9EAA7845E737C7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1A2F14D9108B4290B000056BBCC4DF90, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F024728B80BF4468B9AB2DA720D9850C5", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 56, - "name": "파스타어때", - "category_id": "이탈리안", - "score": 0.0, - "review": 5, - "address": "경기 성남시 분당구 백현로101번길 16 대덕프라자 지하1층 B102호", - "operating_hour": "매일 00:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "00:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8BE7D5BE5D7F448F877F898436F9B8F8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD61D1C914DE747029CE31BB1039F2EC4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC3A77CB94AD04DEEA86ECB6A7BB37EF2", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 57, - "name": "다리오42", - "category_id": "이탈리안", - "score": 0.0, - "review": 4, - "address": "경기 성남시 분당구 느티로51번길 8-3", - "operating_hour": "화~일 11:00 ~ 23:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9BB4C0DFE677443987D5EFBCD627E32B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzExMjRfMjUg%2FMDAxNzAwNzUzNjQzMjAy.NisVmH_yw5lgskYdtVI36POqwvukDu8BhC8hyl16o7Eg.9tuySf6DTtor-AQFGBJdEn7OTxNSybWwrMy9jcK4ygQg.JPEG.icekbs%2F1700753641814.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzExMjRfMjE2%2FMDAxNzAwNzUzNTkxNTQ1.BTKzPk3YptrWfdDSDUrEBWlmOOKWlcbtFQ7u3ty4kNcg.UcUfgCXJG1AJfBvLXNRFmK0wfVXQ61KuJCB-RwnvxGog.JPEG.icekbs%2F1700753589920.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 58, - "name": "어퍼그레이 AK플라자 분당점", - "category_id": "이탈리안", - "score": 4.5, - "review": 22, - "address": "경기 성남시 분당구 황새울로360번길 42 7층", - "operating_hour": "매일 11:00 ~ 20:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 20:30", - "phone_number": 3180232700.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA55751036A4D4B428F668A35587D8D0B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa4bd832940cca1630829b00d56ee4edc94918d5d59c72cd552ad1050b530ff0f, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MjRfMjEg%2FMDAxNzIxODAxMjM0NTk0.CfZ_eUiS9IkJBuEjjPrYJOkqkGSZijGXBpW2LIUhFhcg.CPbeKhTldtNZ1b5k3YWuO2Xeu2asAWBbSt6i1rdpLDwg.JPEG%2FSE-29b2c6cc-b3c5-4172-a3b7-c4b4996b78c7.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 59, - "name": "미태리파스타 분당아름마을점", - "category_id": "이탈리안", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교로 441 남서울프라자 1층 110호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 60, - "name": "마리에뜨다이닝", - "category_id": "이탈리안", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 황새울로360번길 42", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 61, - "name": "괴짜쉐프파스타", - "category_id": "이탈리안", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 내정로119번길 18 1층", - "operating_hour": "매일 10:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF0D7FE62222541CDACE8A73A3A636F7A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2705D9558D3F4E71A13A2823736B777A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4957AEA293084DFE82483E90EBAE9AE8", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 62, - "name": "파스타제면소", - "category_id": "이탈리안", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 백현로101번길 16", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7077754004.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 5, - "restaurant_id": 63, - "name": "그릴러", - "category_id": "이탈리안", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 황새울로 315 대현빌딩 2층 205호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - } -] \ No newline at end of file diff --git a/storage/input_json/restaurants_table6.json b/storage/input_json/restaurants_table6.json deleted file mode 100644 index cb2933b..0000000 --- a/storage/input_json/restaurants_table6.json +++ /dev/null @@ -1,1311 +0,0 @@ -[ - { - "db_category_id": 6, - "restaurant_id": 1, - "name": "사쿠라테이엔 판교직영점", - "category_id": "이자카야", - "score": 2.6, - "review": 1, - "address": "경기 성남시 분당구 대왕판교로606번길 45 1층 105호", - "operating_hour": "매일 17:30 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:30 ~ 02:00", - "phone_number": 317043005.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4A68D7834A01442AA4CDEAC699870DEB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F956a167ef90b79050467abd3bb879bd3717ec944%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fea502831f12284c48df5b5e81183fe7439de2209%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 2, - "name": "청담이상 판교점", - "category_id": "이자카야", - "score": 3.2, - "review": 22, - "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋센터 2층 203호", - "operating_hour": "월~토 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 01:00", - "phone_number": 3180610708.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2540484C536B861E04, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F24708050536B862034, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc4a297766af01e63903917a5d5b60e5a51229de1%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 3, - "name": "유다 판교점", - "category_id": "이자카야", - "score": 3.0, - "review": 16, - "address": "경기 성남시 분당구 산운로160번길 20-4 1층", - "operating_hour": "화~일 17:00 ~ 03:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "17:00 ~ 03:00", - "phone_number": 3180161370.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB4B515EBAB5D40CF8FE50071FFFBCD65, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA37C01A4517840C39FB7A294AE023916, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1c73e44c61737712709ef7e0ca7ad8b7b68d0e30%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 4, - "name": "단", - "category_id": "이자카야", - "score": 4.2, - "review": 35, - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 160호", - "operating_hour": "월~금 11:30 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 24:00", - "phone_number": 316281431.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 5, - "name": "야키토리잔잔 판교점", - "category_id": "이자카야", - "score": 4.4, - "review": 44, - "address": "경기 성남시 분당구 분당내곡로 151 1층 107~109호", - "operating_hour": "월~목 17:00 ~ 01:00", - "expanded_days": "월,화,수,목", - "time_range": "17:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F962C186B9EE644D89893570CBAD4DB74, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7b9af08e7e67dcebbeb4bfda686e914d9f23bd2c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffc92373613062fb445f6cfc8a1f5a707f66da15e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 6, - "name": "청담이상 서판교점", - "category_id": "이자카야", - "score": 3.7, - "review": 7, - "address": "경기 성남시 분당구 판교로25번길 22 1층", - "operating_hour": "월~토 17:00 ~ 03:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 03:00", - "phone_number": 3180178878.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2377DB3E576786B10A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA4MDdfMTcy%2FMDAxNjU5ODQ0MDE0NTg5.tL_WLtS6ts-58bpPwrPb3y6hivzCPLgfxJYAqhyp78kg.fdv5oyK_3Rqpz6V31ofQlnbWVxhjWWRBK6IFAYJbikAg.JPEG.dshining85%2F20220806%25EF%25BC%25BF224701.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA4MDdfMjgx%2FMDAxNjU5ODQ0MDE0NTk4.MDVQomi43MCHt6vMk9wOmA4AOD11tze-neHmDkOI1Rgg.iibKh8AsDngheIJuWwxQNFDfb-rj-fOrQY-zqEiwcNgg.JPEG.dshining85%2F20220806%25EF%25BC%25BF213040.jpg%3Ftype%3Dw966", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 7, - "name": "사쿠라테이엔 판교본점", - "category_id": "이자카야", - "score": 3.6, - "review": 439, - "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 1층 109호", - "operating_hour": "매일 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD57F0BAB85814EA781DDE83E7B432A60, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffe9ae154940a62c30559d5b8209f999ca3936cc9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1A269D9D3CEC4F238D4B6EAFAB2766AC", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 8, - "name": "야키토리 화련", - "category_id": "이자카야", - "score": 4.7, - "review": 83, - "address": "경기 성남시 분당구 판교역로192번길 22 판교효성해링턴타워 1층 106호", - "operating_hour": "월~토 18:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "18:00 ~ 24:00", - "phone_number": 1086103302.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9C16656924EA48089FDEFE4A3339E2CA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F64af2efbae067a7c52866993e5b7415c2c1ef6c2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fbfbd1400c520b8f6073b63afa1167916585022d8%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 9, - "name": "시치", - "category_id": "이자카야", - "score": null, - "review": 142, - "address": "경기 성남시 분당구 대왕판교로606번길 31 호반메트로큐브 1층 129,130호", - "operating_hour": "월~금 11:30 ~ 23:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 23:30", - "phone_number": 3180169901.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1252728A0E2145D8BF5903ED57BD5026, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F75BA233AE8754B988A1155857C1E451C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FED3997F4887F439389B895DDC311294C", - "convenience": "WIFI\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 10, - "name": "일류", - "category_id": "이자카야", - "score": 1.1, - "review": 564, - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 2층 210호", - "operating_hour": "월~금 10:00 ~ 02:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 02:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 11, - "name": "모로미쿠시 판교점", - "category_id": "이자카야", - "score": 3.3, - "review": 27, - "address": "경기 성남시 분당구 판교역로192번길 14-2 1층", - "operating_hour": "매일 16:00 ~ 01:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 01:30", - "phone_number": 3180169835.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F22705A50574E62162D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F989e6147c1f2079aea81c450160fb8f06b838ba6%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F55e12ef7db4431ffe463b7007e6fe6fcb4de61f7%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 12, - "name": "마츠카게", - "category_id": "이자카야", - "score": 5.0, - "review": 21, - "address": "경기 성남시 분당구 판교역로 136 힐스테이트판교역 블루존 1층 1001호", - "operating_hour": "월~토 17:30 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:30 ~ 01:00", - "phone_number": 50255505124.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2fcf264638adfe08288154ba53dc8c9dada6cc9d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa79cbf6ef7e6467479173345c4f5883b9d8bb576%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F239769c788a2f640b89aa3f541901c4d53256b6a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 13, - "name": "미술", - "category_id": "이자카야", - "score": 5.0, - "review": 58, - "address": "경기 성남시 분당구 판교역로192번길 22 효성해링턴타워 3층 313호", - "operating_hour": "월~금 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 24:00", - "phone_number": 1039820423.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F536AA1C0B29A4456A74F649D4FDFFF0B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1908888947, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1920416530", - "convenience": "동물출입\n휠체어사용", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 14, - "name": "생마차 판교역점", - "category_id": "이자카야", - "score": 1.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로192번길 22 판교효성해링턴타워 112~114호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317088885.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 15, - "name": "마루니", - "category_id": "이자카야", - "score": 1.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 1층 109호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 16, - "name": "토리키치 판교점", - "category_id": "이자카야", - "score": 5.0, - "review": 2, - "address": "경기 성남시 분당구 대왕판교로 660 2층 213호", - "operating_hour": "매일 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 01:00", - "phone_number": 7077732130.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 17, - "name": "이꾸 판교점", - "category_id": "이자카야", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317893633.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 18, - "name": "쿠시노아 서판교점", - "category_id": "이자카야", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교공원로2길 62 101호", - "operating_hour": "월~토 17:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:30 ~ 24:00", - "phone_number": 7040708899.0, - "image_urls": "이미지 정보 없음", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 19, - "name": "이자까야모리", - "category_id": "이자카야", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로606번길 58 월드마크 1층 113호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 20, - "name": "이자카야단", - "category_id": "이자카야", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316281431.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 21, - "name": "이토리 판교점", - "category_id": "이자카야", - "score": 3.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로192번길 22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 22, - "name": "보쿠노하나시", - "category_id": "이자카야", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 23, - "name": "스미노카리 서현점", - "category_id": "이자카야", - "score": 4.0, - "review": 112, - "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 1층 102호", - "operating_hour": "월,화,수,목,일 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,일", - "time_range": "17:00 ~ 01:00", - "phone_number": 317081151.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F89FE5065F5844BE5A11D8D8BD86D72F4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9ed13183b8851a9c21af8365cce8cc7a69796a40%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff2be35b6f8fbc4bf0a14e9ff0f897e33b4b2b7e0%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 24, - "name": "리빙오사카", - "category_id": "이자카야", - "score": 3.9, - "review": 112, - "address": "경기 성남시 분당구 황새울로 315 102호", - "operating_hour": "월~토 16:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 01:00", - "phone_number": 1049810839.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F06F31259562B4381829CC24E70839069, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff8d8e94da23971c8e70b799c9d1b265f8d4650c2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff65248a94d4fa2decd1605a9d1cc07c1531b4c8f%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 25, - "name": "삼경", - "category_id": "이자카야", - "score": 2.5, - "review": 20, - "address": "경기 성남시 분당구 황새울로258번길 10-7 103호", - "operating_hour": "월,화,수,목,금,일 14:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,일", - "time_range": "14:00 ~ 17:30", - "phone_number": 317185971.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FF131A7BD99374F00BBEC3AD8C6486497, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F02683267A0C3498C9DD47A192CF52030, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7DDD2A6AC9FB45B6A4EE49B78C4B05EE", - "convenience": "WIFI\n주차\n휠체어사용\n흡연실", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 26, - "name": "모모코 정자점", - "category_id": "이자카야", - "score": 3.3, - "review": 98, - "address": "경기 성남시 분당구 정자일로 197", - "operating_hour": "매일 16:00 ~ 03:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 03:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB5DA3D07CC944799A5220C27876ED077, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff7e1fc2cf6fe5039a09a8a41e4ad9d0cf19a7c15%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3ad84881cb3fa0da9d9d4959bc58e3f3eec278f6%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 27, - "name": "모로미쿠시 서현점", - "category_id": "이자카야", - "score": 3.4, - "review": 21, - "address": "경기 성남시 분당구 황새울로 337 웰빙프라자 1층", - "operating_hour": "월~금 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 02:00", - "phone_number": 3180169834.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2332BA50574E659403, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F995d0d14eff1853cecedb780a8dcdead5e356465%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4d1696370ce9b0146e2b794bca64800d8b1ce2ba%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 28, - "name": "잔잔 서현역점", - "category_id": "이자카야", - "score": 3.8, - "review": 609, - "address": "경기 성남시 분당구 황새울로335번길 8 덕산빌딩 1층", - "operating_hour": "월,화,수,목,일 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,일", - "time_range": "17:00 ~ 01:00", - "phone_number": 317030877.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE09FECFA69D64796A75CCFBED483AE5D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff035362c52cb9585388cbc97a6b7096c0e3f7952%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa888df7bde20108852e6868932ca5cc911beb1b6%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 29, - "name": "웅성웅성 서현점", - "category_id": "이자카야", - "score": 4.7, - "review": 63, - "address": "경기 성남시 분당구 황새울로335번길 5 1층", - "operating_hour": "매일 16:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 02:00", - "phone_number": 316961211.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F44BEA8D9BA6C4F7188A3A5B81356515D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F537CD63957094DE39B26657ED3627BD7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6D4D89E3A824425EA38A1EDBB2529ADB", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 30, - "name": "청담이상 서현점", - "category_id": "이자카야", - "score": 2.5, - "review": 20, - "address": "경기 성남시 분당구 황새울로 337 웰빙프라자 2층 204호", - "operating_hour": "매일 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1FE1907970354557929B3CE72A185D01, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6b87c46d37b48f00562d559ae5fe0b8272fc7524%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqe8ieR5xp_ZRgwdVhKwcpIILZp9Dnru0_img.jpg", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 31, - "name": "미미", - "category_id": "이자카야", - "score": 4.7, - "review": 124, - "address": "경기 성남시 분당구 서현로 192", - "operating_hour": "매일 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 24:00", - "phone_number": 317099834.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 32, - "name": "웅성웅성 서현본점", - "category_id": "이자카야", - "score": 4.7, - "review": 689, - "address": "경기 성남시 분당구 황새울로311번길 28 롯데서현주차빌딩 1층 108호", - "operating_hour": "매일 16:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 02:00", - "phone_number": 317017888.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F28F89AB94DBD499883372B20F38CC8DF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB29CB4B985924727B930C624E7979C6B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4ECAF2836E1A4FEB8A70C1BA79DC9508", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 33, - "name": "도리토리 분당수내점", - "category_id": "이자카야", - "score": 5.0, - "review": 373, - "address": "경기 성남시 분당구 황새울로258번길 10-9 영성라벤더 106호", - "operating_hour": "월~금 16:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 01:00", - "phone_number": 1058289353.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6F269F67C41C44598D0014C26498E7F9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F445274022F204BDB8762DB48DE1D6DC5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA2CD503991FF42A9AB90ACBF330E107C", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 34, - "name": "곤야", - "category_id": "이자카야", - "score": 4.5, - "review": 85, - "address": "경기 성남시 분당구 황새울로 315 대현빌딩 1층 101호", - "operating_hour": "매일 16:30 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:30 ~ 01:00", - "phone_number": 317045079.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F29A65D62B92C4E4198795D1F4B587E9B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD385B7F24D6D4461BC780BF469892CF9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F11b9d46777a38be498e30ad5175853bb89e13486%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 35, - "name": "모로미 수내점", - "category_id": "이자카야", - "score": 4.1, - "review": 33, - "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 205, 206호", - "operating_hour": "월~토 17:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:30 ~ 24:00", - "phone_number": 317110209.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_475703444, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1360e7f57361b3f9f79d131571403fa7407355aa%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb8ac17c15b1151cc7bcf968382b109d2f3680ea5%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 36, - "name": "해루 바다의하루", - "category_id": "이자카야", - "score": 4.3, - "review": 14, - "address": "경기 성남시 분당구 황새울로258번길 10-7 102호", - "operating_hour": "매일 10:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 24:00", - "phone_number": 317153114.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F98DB5DFA0B5C4952A8F08FD21DA63849, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFF8583AF4B49432D84461B3C50F6E753, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA3312FF471164B1285C138B9880201ED", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 37, - "name": "남오토코 정자점", - "category_id": "이자카야", - "score": 3.5, - "review": 9, - "address": "경기 성남시 분당구 느티로 16 젤존타워1 1층 119, 120호", - "operating_hour": "월~목 17:00 ~ 23:30", - "expanded_days": "월,화,수,목", - "time_range": "17:00 ~ 23:30", - "phone_number": 317110771.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB5FF5040351D456187A07B5A71C9B553, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F31412a9db1a9d759f45781aebd61375235e787bb%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1a63a7fd0b87f23fb5504939b6a15cc0e2c50477%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 38, - "name": "꼬치선생101 분당서현점", - "category_id": "이자카야", - "score": 1.6, - "review": 18, - "address": "경기 성남시 분당구 황새울로360번길 28 3층 301호", - "operating_hour": "매일 17:00 ~ 05:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 05:00", - "phone_number": 317087733.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F3EBD94CBF3AF48CA8E30DBD742DD82F1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FD0AC3582510340E9998FAA102CE3B401, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F7D2C57ACECC24273A1C1560B1AC7B41E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 39, - "name": "생마차 분당서현점", - "category_id": "이자카야", - "score": 2.8, - "review": 18, - "address": "경기 성남시 분당구 서현로210번길 2 성지하이츠텔 1층 104호", - "operating_hour": "월~토 15:00 ~ 05:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 05:00", - "phone_number": 317057889.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE13F533E02E54AC7A6AAC0177245039E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjdfODgg%2FMDAxNzMyNzExMTUxMzkx.RPyMLcOMoPrz_e8ATi9Cj9X744dB7XFWTcPcy_4v4Awg.tNbuebXbMhoByCt2YWWW_AT7qKvnKS6cC6A-e9zAJZkg.JPEG%2FSE-28FC74EE-2C0E-4B10-BA99-9F3CC63D72C8.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMDJfMjIy%2FMDAxNzMwNTM2MjkyNjcz.6LGJGpYbp-wyGe1oCpLI-miVX562wxC_UDP8jEQ8u54g.Fy2v-g3v2LviItV6uISMoainfYLNLa4eV88spAekU2Eg.JPEG%2FIMG_8758.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 40, - "name": "사라", - "category_id": "이자카야", - "score": 3.7, - "review": 1, - "address": "경기 성남시 분당구 정자일로213번길 5 아이파크분당 301동 103,104호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317158999.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 41, - "name": "슌", - "category_id": "이자카야", - "score": 3.7, - "review": 148, - "address": "경기 성남시 분당구 장미로 42 야탑리더스 124,125호", - "operating_hour": "월~토 16:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 02:00", - "phone_number": 317095795.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 42, - "name": "야키토리 잔잔 정자역점", - "category_id": "이자카야", - "score": 3.5, - "review": 0, - "address": "경기 성남시 분당구 정자일로 192 지파크프라자 101호", - "operating_hour": "매일 17:30 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:30 ~ 02:00", - "phone_number": 50713300877.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F06278F7454C5485DA6301BA6B0A12310, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F43E22519C1C8457098B6C562A12BB215, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC273FB812ECA4BA0A97E079D5DC59425", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 43, - "name": "센다이", - "category_id": "이자카야", - "score": 3.8, - "review": 23, - "address": "경기 성남시 분당구 정자일로 192 지파크프라자 102호", - "operating_hour": "월~토 17:30 ~ 02:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:30 ~ 02:00", - "phone_number": 317151470.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF57DBC65D82743B68BCDACFECA781659, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2dcbf9e1c5567cc52156dba37ff5b5a19e2d7872%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd79e8c60b7837c3531ff87bd98225bacb8a144d4%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 44, - "name": "우규 서현연어와육회점", - "category_id": "이자카야", - "score": 4.0, - "review": 839, - "address": "경기 성남시 분당구 중앙공원로39번길 49 서현 지엔느 110호", - "operating_hour": "매일 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": 317819997.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD8D2B0714089480B9840660E81959DE5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F45a66a02da689e1d8bc04b152f4b310863e7445d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F26e1b8c600b1541a3be57341defcec437b954af1%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 45, - "name": "정연", - "category_id": "이자카야", - "score": 3.4, - "review": 54, - "address": "경기 성남시 분당구 황새울로108번길 18 1층", - "operating_hour": "월~토 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 01:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 46, - "name": "유다", - "category_id": "이자카야", - "score": 4.0, - "review": 14, - "address": "경기 성남시 분당구 느티로 16", - "operating_hour": "화~일 17:00 ~ 02:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": 317128989.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 47, - "name": "시즈카 분당점", - "category_id": "이자카야", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 황새울로 315 대현빌딩 205호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 48, - "name": "야구장옆선술집", - "category_id": "이자카야", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 황새울로335번길 10 멜로즈프라자 5층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317030030.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 49, - "name": "마하수리이자카야", - "category_id": "이자카야", - "score": 5.0, - "review": 15, - "address": "경기 성남시 분당구 느티로 16 1층 117호", - "operating_hour": "월~토 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1D7A9D1070B24D97A6999FC34484D94E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF07F8EAA4C5846B7A37D2C6ACBE7C5B2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F25853d42f55e70eaa13e7bdfb9638ea769eeebc5%3Foriginal", - "convenience": "WIFI\n주차\n휠체어사용", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 50, - "name": "노군꼬치 분당서현점", - "category_id": "이자카야", - "score": 4.7, - "review": 4, - "address": "경기 성남시 분당구 중앙공원로39번길 49 지엔느오피스텔 1층 125호", - "operating_hour": "매일 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 24:00", - "phone_number": 50713642869.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1a72f060a9f9b42b51799f98ff5e76c9b7c69515%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdd2677c334bfa4123ce01656a08bd07ad7042ade%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F95a0a99f7212f77ef07479a78429bc7ae4db63e7%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 51, - "name": "하루인", - "category_id": "이자카야", - "score": 4.7, - "review": 157, - "address": "경기 성남시 분당구 성남대로331번길 9-9 2층 203호", - "operating_hour": "월~토 15:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 24:00", - "phone_number": 317112224.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MDRfNjMg%2FMDAxNzIyNzQzMTk5OTk3.ckk4PMXI-HLqBvWd4dZzXJhgKa6jUnrYXZl2w5OoaJwg.40XDRLxk70w3M_3W_4otuIsXNDxA-TAq7ssoC6EKbS0g.JPEG%2FKakaoTalk_20240804_124508256_02.jpg%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MDRfMjA2%2FMDAxNzIyNzQzMjAwMDEz.WlFAweIr3Rl2t6WBW3AaqZ9rGhtftU4OXL36V3xUj3gg.7F_AKvGjrdYBGPyPWIUvtTqS-9eGXSQ7IHOQx1Uo1_Ug.JPEG%2FKakaoTalk_20240804_124508256_01.jpg%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MDdfMTcz%2FMDAxNzIzMDA4MTA1NDcw.SeVsn-7qkHstitSLrCZEXgMcZhtztpUEjygPwx9MCjEg.L_Y0hjFe9FHkl1ZOJLqUynFz4e-z9nTzvmwqi6OWhb8g.JPEG%2FKakaoTalk_20240807_142111626.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 52, - "name": "오이시", - "category_id": "이자카야", - "score": 3.0, - "review": 0, - "address": "경기 성남시 분당구 황새울로360번길 24 4층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 53, - "name": "무한사케무사 서현점", - "category_id": "이자카야", - "score": 3.0, - "review": 0, - "address": "경기 성남시 분당구 황새울로360번길 26 4층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 54, - "name": "스미노카리 정자점", - "category_id": "이자카야", - "score": 4.7, - "review": 451, - "address": "경기 성남시 분당구 정자일로 162 109호", - "operating_hour": "매일 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4AABCA88056F43A29A5339C79075DA15, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0f2f4af4b4f3cf527a097ac3678ed5b177329686%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1232f5196a692102d6ccc4515a6d16270c31ba30%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 55, - "name": "벚꽃나무", - "category_id": "이자카야", - "score": 1.0, - "review": 4, - "address": "경기 성남시 분당구 성남대로331번길 13 1층 113호", - "operating_hour": "매일 18:00 ~ 05:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "18:00 ~ 05:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F3492FFFF000D42CA9CF695A93EE83D06, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc5975abd42ebc880f9d2105fb8a80ed5667246ae%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MjlfODYg%2FMDAxNzE2OTg4NDc5NjI3.MQvRjCePg3i8JXeNWWoBil1TM9BKEJmGDMIVR1RuAoIg.rfccm3yHihmcLoVobOQhw9z0u4lueHOx53P-jXyl8hUg.JPEG%2FIMG%25EF%25BC%25BF20240529%25EF%25BC%25BF164940%25EF%25BC%25BF856.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 56, - "name": "츠키", - "category_id": "이자카야", - "score": 4.2, - "review": 384, - "address": "경기 성남시 분당구 정자일로156번길 6 111호", - "operating_hour": "월~토 11:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 24:00", - "phone_number": 317788484.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1F702BAE6B064A72B7EF0FFAEB1255F9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MzBfNTAg%2FMDAxNzI0OTk0MTU1MjE3.AyxMRxOnQZT3Hsk6QB_x8E0IWifqllZj29C3UXmwRKYg.D3I1pMi7i019qN3SlAawDTrpbOtzIjyQHQMiREAWeGUg.JPEG%2F20240830%25EF%25BC%25BF132459.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MzFfMjMz%2FMDAxNzI1MTE1NDU4NzUz.C4_pBrBCIKXjMFj5frZjyX3wduat0nV8ZVfskT-q44gg.Nsa8SEdnb6iOQFE4w2EYRh_Q7tuAWt0UG2wGKr-5VHMg.JPEG%2Foutput_3277800357.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 57, - "name": "아미이자까야", - "category_id": "이자카야", - "score": 5.0, - "review": 0, - "address": "경기 성남시 분당구 느티로 16 젤존타워 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317113532.0, - "image_urls": "이미지 정보 없음", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 58, - "name": "이자까야라꾸", - "category_id": "이자카야", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 정자일로 192", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 59, - "name": "미츠토리 정자점", - "category_id": "이자카야", - "score": 4.6, - "review": 208, - "address": "경기 성남시 분당구 성남대로331번길 13 105호", - "operating_hour": "월~금 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6908CD452C474B40AE71F35EC9FB0C4E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4cca81d2a7f15b0008fe1af0863bd5dc554efcd1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa13b64fc84b7278dd2a2240caeef1b7c8e886689%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 60, - "name": "무한사케무사 정자점", - "category_id": "이자카야", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 느티로 16", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317119196.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 61, - "name": "로바타풍산", - "category_id": "이자카야", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 정자일로 197 1층 109호", - "operating_hour": "월~토 17:30 ~ 01:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:30 ~ 01:30", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 62, - "name": "예술", - "category_id": "이자카야", - "score": null, - "review": 97, - "address": "경기 성남시 수정구 청계산로1길 21 1층", - "operating_hour": "월~금 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 24:00", - "phone_number": 50713268878.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F2ADA9654C8684DDEB22C45D1653915A8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F43AA83BCDA1D467EB3FD0C84696B2F47, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F369E6FEBC5844B5A97E46AED5D591A5E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 63, - "name": "아쿠아마", - "category_id": "이자카야", - "score": 4.9, - "review": 36, - "address": "경기 성남시 분당구 성남대로331번길 3-13 대명제스트빌딩 1층 107호", - "operating_hour": "화~토 17:00 ~ 02:00", - "expanded_days": "화,수,목,금,토", - "time_range": "17:00 ~ 02:00", - "phone_number": 1095487065.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5E6990F7973A4FDA8FF7EF57230AD2E5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FBA406100ED7D4E67919C9B6EE96B2BE2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6E04751807E441F8922D13E7785FD28D", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 64, - "name": "청담이상 정자점", - "category_id": "이자카야", - "score": 3.3, - "review": 35, - "address": "경기 성남시 분당구 정자일로 146", - "operating_hour": "월~토 16:30 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:30 ~ 01:00", - "phone_number": 317254884.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA21D2B9861A84B709866801ED860FEC7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa2021614eb8475925ca10d5eae9991d2426df1df%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMjFfNDMg%2FMDAxNzI5NTE2NzMxODc1.RjQV9yUihp_dRsRZr6keETpghcxkaxriFx-LQNeQ6Fog.tRlQZ8K6YSVh5KObkTfQAi6-fVG1HluNuvzkaOs2Lm8g.JPEG%2FIMG_7391.jpg%3Ftype%3Dw966", - "convenience": "WIFI\n주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 65, - "name": "백야다이닝라운지", - "category_id": "이자카야", - "score": 3.7, - "review": 64, - "address": "경기 성남시 분당구 성남대로331번길 11-15 봉우빌딩 2층", - "operating_hour": "매일 15:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 01:00", - "phone_number": 317174421.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F35911D90442E4F928C569C09C398647E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcf51ef40fbee1a591f80845b4d1ecfbb69dff837%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7ad487a1c75bfe79bb102aa707ba4c852cb7a2e8%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 66, - "name": "쇼군 선술집", - "category_id": "이자카야", - "score": 0.0, - "review": 1, - "address": "경기 성남시 분당구 야탑로69번길 18 동아프라자 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAyMDJfMjUx%2FMDAxNjc1Mjk5NTkxNzA4.u90UORlvMIpL1-_5SEupck1675-m3u--_cQa3dM4Ck0g.mxhgYLcmxQwVrVmbEmZeO2SF3icH90XYawScI9faxS4g.JPEG.tetramio%2FIMG_0904.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAyMDJfMjE4%2FMDAxNjc1Mjk5NTkxNzIw.q2lV5MtWXCSsSuOJPuU20F2on4o5_QnW2ZDPRdOOKrQg.ZMMFb1rYzE0U6Vq5ubl56fngVbeetJgFw82cmxQkDOQg.JPEG.tetramio%2FIMG_0927.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAyMDJfMjc0%2FMDAxNjc1Mjk5NTkxODE0.ArCfiAogr4dMku7qkagK6V063m0dQ3sGpxjjcvnjSPsg.9s5IWSP39LnU7T5Uf6Gk06PTvaCWBenz2hSpvIeXBekg.JPEG.tetramio%2FIMG_0920.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 67, - "name": "오사카킴&요리포차", - "category_id": "이자카야", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 야탑로69번길 18", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 68, - "name": "회심의일격 야탑점", - "category_id": "이자카야", - "score": 4.0, - "review": 18, - "address": "경기 성남시 분당구 야탑로105번길 12-2 1층", - "operating_hour": "매일 17:00 ~ 01:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 01:30", - "phone_number": 317076399.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F8AD458BA5FD44B5B9276C3A3B0E27EF1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA9011BF38583460791034E80E53A8C61, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F79B4A1E498644201828AE8C350357584", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 69, - "name": "꼬뎅마루 야탑점", - "category_id": "이자카야", - "score": 3.3, - "review": 7, - "address": "경기 성남시 분당구 야탑로105번길 22-7 1층", - "operating_hour": "월~토 17:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:30 ~ 21:30", - "phone_number": 317055792.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7A649895C3774F76AE9B9CE31CC6700F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F355fbd5f46452a2c7f791a7bd595106daa77a492%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F14b25f95fd5bcb236902eb864f76774ef252e3bd1c2411798871043d62532630", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 70, - "name": "섬맛의공방 야탑점", - "category_id": "이자카야", - "score": 2.3, - "review": 19, - "address": "경기 성남시 분당구 성남대로926번길 10 탑빌딩 1층", - "operating_hour": "월~금 11:30 ~ 02:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 02:30", - "phone_number": 317080919.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3CE050EC6BEF4256B17BB5CDBF122368, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc0b93a467abf511aba0137512ab6d484e325ee5e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc75aca3b46678a6ad19b9f1cada2991867c5d02e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 71, - "name": "갈라파꼬치", - "category_id": "이자카야", - "score": 4.8, - "review": 9, - "address": "경기 성남시 분당구 정자일로 140 정자역 엠코헤리츠 2단지 B동 1층 125호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9914AD319D2B4532AFA4CAD2C381A6FB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMjVfMjkg%2FMDAxNjk4MjA3NDAwMzQ0.SbgoHNQ7CI1bS43__Prx7aFqDHkb__EYsGaOT-EwZhMg.6wgTtumolaFPoVoGhKpqVrTkdoSJV3s4v3D7sJ-wnhcg.JPEG.jasmin7141%2Foutput_1998055047.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMjRfMjc0%2FMDAxNjk4MTA2NjU4Nzk4.DTV_tFpKRBfM7niKw2e_58yPv0qW9Ys80KuPOreASN0g.-3nZfwPPvj8NnmletxODYuVG7WUjTau6FWxTqznOkigg.JPEG.now170624%2FIMG_8288.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 72, - "name": "토리키치 분당야탑점", - "category_id": "이자카야", - "score": 3.5, - "review": 14, - "address": "경기 성남시 분당구 야탑로111번길 12-9 1층", - "operating_hour": "매일 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 01:00", - "phone_number": 317075277.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdbef0743325f4030812e5c8731fa1623d1ec1540%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fee2e24acd85dbe0aa358a113b3033dd7cf3f8d0f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9a8884a65bb0a11e3f2540b64cbcb3e59a22d5c6%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 73, - "name": "마쯔리", - "category_id": "이자카야", - "score": 3.0, - "review": 0, - "address": "경기 성남시 분당구 야탑로111번길 22 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317534686.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA31493AAB19D433E95D0C265BACA8F0B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBB6609BF21AE43A2855EB3BD50187B94, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMTdfMjYx%2FMDAxNzMxODQwMjkxODMx.YXWddmIBsaFdjCOw_CwtNUoJFNg3jMdr_EN1ATpUdTog.dMLpKojwidc1UANBOMfSh33HjKIh_fk0HhwIHAqX1aYg.JPEG%2FIMG_6626.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 74, - "name": "이자카야엔", - "category_id": "이자카야", - "score": 4.0, - "review": 0, - "address": "경기 성남시 분당구 정자일로 220 1층 119호", - "operating_hour": "매일 18:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "18:00 ~ 02:00", - "phone_number": 317151520.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA0763084E01B4C88B58C1C463723B34D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjJfMjI2%2FMDAxNzMyMjU3ODYzNjA5.2HGV4rP9ew-JKMfrLCZpOIapcaUhkpOcyATGiBfFBg8g.M-eWHuYwejzFxL4iD_BZDfc0kQHfOhZBQY5WsXwvX6Qg.JPEG%2FIMG_6414.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTJfMjg0%2FMDAxNzMzOTkwNjc3Njky.ZsgutUYHFT6m2Q76QiriwqI1BFu0joQwpq5lV6rAeZQg.T1vPAgjNhMYrZcSGxW9qxPoCNO_Wh0sEpN0_B0LhA6og.JPEG%2FSE-2a952323-4798-43d1-8a85-73076050a4e0.jpg%3Ftype%3Dw466", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 75, - "name": "일편뎅심 판교직영점", - "category_id": "이자카야", - "score": 4.6, - "review": 217, - "address": "경기 성남시 분당구 판교역로192번길 14-1 판교예미지 1층 106호", - "operating_hour": "월~토 18:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "18:00 ~ 02:00", - "phone_number": 317080508.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1DC5C9FCAE064F87BA48E19E86B3C417, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F33da7a9a67be2894d86aed70bbb8a0cefc67e7b493ddd1a498b0a1d38bbee86f, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F85d083dffb36957915e284848bf2831e64bffcff%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 76, - "name": "츠키야", - "category_id": "이자카야", - "score": 5.0, - "review": 45, - "address": "경기 성남시 분당구 분당내곡로 151 삼도타워 1층 111호", - "operating_hour": "월~금 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 24:00", - "phone_number": 317080827.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F96BA7B303E33458E96C736897565A087, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F35BBB414FE184AACA815D22931E8ED54, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F293F5518F0614F9BA7BBB05BE819B437", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 6, - "restaurant_id": 77, - "name": "야키토리 타쿠야", - "category_id": "이자카야", - "score": 5.0, - "review": 11, - "address": "경기 성남시 분당구 성남대로 295 A동 120호", - "operating_hour": "월~금 18:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "18:00 ~ 24:00", - "phone_number": 317177793.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F42A2C1288D12454ABBB29F9C6FED8B98, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD0771DBC64214F40B0CDF91AC16AD6BA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCAFB645844A341CAA7D9C75F6971330B", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - } -] \ No newline at end of file diff --git a/storage/input_json/restaurants_table7.json b/storage/input_json/restaurants_table7.json deleted file mode 100644 index 11e2f20..0000000 --- a/storage/input_json/restaurants_table7.json +++ /dev/null @@ -1,8502 +0,0 @@ -[ - { - "db_category_id": 7, - "restaurant_id": 1, - "name": "능라도 본점", - "category_id": "한식집", - "score": 3.0, - "review": "350", - "address": "경기 성남시 분당구 산운로32번길 12 1-3층", - "operating_hour": "매일 11:00 ~ 20:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 20:30", - "phone_number": 317813989.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2065034F4EC4B8F636, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F10C4E48CB053413C9CFC86F63306AB04, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD5E5108F1E204A2995770E10534D2B90", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 2, - "name": "우설화 판교점", - "category_id": "한식집", - "score": 3.7, - "review": "159", - "address": "경기 성남시 분당구 판교로 185 신화푸드빌리지 3층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317029407.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F383E105945974473A42C0027ACE08D1B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FA338503BE29E45A3AA71D8AA0BA9F9B2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F69086422965D4C6E8551D813AA38EA22", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 3, - "name": "방아깐", - "category_id": "한식집", - "score": 3.9, - "review": "342", - "address": "경기 성남시 분당구 판교공원로1길 55", - "operating_hour": "월~토 15:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 24:00", - "phone_number": 3180179107.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtquHsfI7XL_6lakiQNgpUXvGWEPjaUCY1_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MDNfODcg%2FMDAxNzEyMTAxMzg5OTUx.blQwq8rk0eGZXdPRTIbwimD34d7j-huX1YEsfIPE5Ykg.pqm0kLeoowrkdWtn10qOjie9kYtGukBosO3mPmvg2xEg.JPEG%2Foutput_361469948.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA0MDNfNjYg%2FMDAxNjQ4OTU2MjY5MDQ5.dV4LWXF-8lXmEI-tGMHMty4MZnRp-tXejgES5qHD9a4g.jbLAm57Dcwf8uf97HSlot3qOU5Ainj7dNapB6mLVrU4g.JPEG.kimyr_91%2FIMG_9071.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 4, - "name": "크래버 대게나라 판교점", - "category_id": "한식집", - "score": 4.1, - "review": "156", - "address": "경기 성남시 분당구 판교역로 178 서건빌딩 13층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 3180165593.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FAB1E566039494E3AB8E8C45F383F93BA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F1AD111274F8D4DD0884B413CE3A76737, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FA2EBF578F771415EBCC79F1332BAF00B", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 5, - "name": "서울멸치쌈밥", - "category_id": "한식집", - "score": 4.1, - "review": "77", - "address": "경기 성남시 분당구 판교역로10번길 10-3 1층", - "operating_hour": "화~일 11:00 ~ 20:30", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 20:30", - "phone_number": 3180173999.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F93391CB83F094D16AD0BB60FDDD8A967, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBFD0BB5C53064AD39C15DF1FD43F48A4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBB53E446E6E7423CAB16F4BD19A0411E", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 6, - "name": "람바다", - "category_id": "한식집", - "score": 3.4, - "review": "88", - "address": "경기 성남시 분당구 판교역로 184", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 317013094.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD41EB48DC7574EFA8A2E416E6820D858, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F00886f8ce9fac83fabf08280aa0ad70616242628%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F052c6f3dd91bbcea1fbeefbd2b2ab42c77760657%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 7, - "name": "해우리 판교점", - "category_id": "한식집", - "score": 3.2, - "review": "45", - "address": "경기 성남시 분당구 판교역로 145 알파리움타워 지하1층", - "operating_hour": "월~금 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:00", - "phone_number": 317014997.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F54ED855AFE4A4D40B7F6E41CC14846D5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA949365137444997BB4895DF076376C2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F996241e3c23bbf0bb53e17285df19226c0604133%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 8, - "name": "신도세기 판교역점", - "category_id": "한식집", - "score": 3.9, - "review": "143", - "address": "경기 성남시 분당구 판교역로 152 알파돔타워 2층 207호", - "operating_hour": "월~토 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:30 ~ 17:00", - "phone_number": 316227188.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC593658B84A742B6B73AE8200846EF5A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD7FB33C8795646F281F1F65624C61ED7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F57572BE51B22413F80EFAE8FB2FDAB14", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 9, - "name": "양우정 판교점", - "category_id": "한식집", - "score": 4.6, - "review": "35", - "address": "경기 성남시 분당구 대왕판교로606번길 10 상가동 라스트리트 1동 1층 112~114호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317069252.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4B9AEE306E1849999B2990E0C3A280C2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F943016428C4B4DC1A01BE6F93583E4DA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F976B9189025042F3B7BC43B68C563D16", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 10, - "name": "천지연 판교점", - "category_id": "한식집", - "score": 3.0, - "review": "52", - "address": "경기 성남시 분당구 판교로 185 신화푸드빌리지 1층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317029506.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F24256B4331F54E33A75621084D4A091E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F48d733ae8b8c69432af8f36e15d5de273863a531%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F76c3c1bc50e05f82c2bbc77d0a8b26f82709e541%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 11, - "name": "진1926 판교점", - "category_id": "한식집", - "score": 4.1, - "review": "25", - "address": "경기 성남시 분당구 판교역로192번길 22 효성 해링턴 타워 1층 101호", - "operating_hour": "월~토 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 23:00", - "phone_number": 317070292.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF168C40DE36641EB858429EC14D1AF11, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe837ba37b7f18fbad5cc27b8086eac3929ae8667%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F013e161ed5ddc9305b2ffa35c55730a0f1433727%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 12, - "name": "숙성도 판교점", - "category_id": "한식집", - "score": 3.7, - "review": "398", - "address": "경기 성남시 분당구 판교역로 136 힐스테이트판교역판매시설 1층 1042~1047호", - "operating_hour": "매일 11:30 ~ 22:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:30", - "phone_number": 3180239233.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4D0AAA62617C44A6865D5DA6112E38EC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFAA883636E294518A07AC8DBE70C07A3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2E4DD2E948B841118ECD01AE68223B92", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 13, - "name": "방유당 그레이츠판교점", - "category_id": "한식집", - "score": null, - "review": "170", - "address": "경기 성남시 분당구 분당내곡로 117 그레이츠 판교 지하 1층 108호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317060690.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD5AB9D7DE00245A3BD9742F369A5ED35, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F12B73F84DC794E5A96CDDCE9D4641FAC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2DC5466C508D4285A069F8487E474437", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 14, - "name": "경복궁 판교점", - "category_id": "한식집", - "score": 2.7, - "review": "96", - "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 2층 2-11~16,41호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 3180168038.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA7E8B87E302B4A78A7ABAA2418053B89, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2B5903FBF19E48CFA4AECFD991A08A08, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F44A71FB355F44FA3BA66DEF97BD5BD43", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 15, - "name": "사위식당 판교점", - "category_id": "한식집", - "score": 3.4, - "review": "999", - "address": "경기 성남시 분당구 판교역로 152 알파돔타워 2층 4호", - "operating_hour": "월~금 14:30 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:30", - "phone_number": 316227180.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F014B01E7AD6C4C9587237200F30C1A18, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F63EF94FBC39F41EBA9BEC82C3384DDC7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB28758690F7848AE8C0FA6E2A3322A0D", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 16, - "name": "참다운정육식당 판교본점", - "category_id": "한식집", - "score": 4.2, - "review": "1,079", - "address": "경기 성남시 분당구 판교로 182-7 지하1층 B01호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 3180168880.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5A92F88910704F96BCE92787D0896316, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F51EE23356DC84B21821748BF46BA856B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F26CB1BCE2EDB47A8BFBFFA3388A6A560", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 17, - "name": "화포식당 판교점", - "category_id": "한식집", - "score": 4.1, - "review": "423", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 240호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317242929.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA28F37DB411142CE9846E5FE1FD34B69, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F489A4D49880442C1A2FA99300EDC6D30, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC92383607391477C9246D83D4870CE0F", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 18, - "name": "얼룩도야지", - "category_id": "한식집", - "score": null, - "review": "183", - "address": "경기 성남시 분당구 대왕판교로606번길 45 2층 205호", - "operating_hour": "매일 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 23:00", - "phone_number": 3180172840.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7F688135CFEF4C3DBB38A2C1729E890C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDVfMjYg%2FMDAxNzI1NTMzNTA2Mzgx.IMC-TVG7Aqtaj_NNhiFy9rfRUGtI9sUpGT8krgE8F7Yg.JveEqDljmv9-28imNKeV0cLf_BkHODhDXVXggMYPfeIg.JPEG%2FKakaoTalk_20240902_185343632.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDRfOSAg%2FMDAxNzMzMzE4NDkxOTIy.0sT4R8dBdQ3OT_sokohh9u3VrYxCcbtsdzdcYVwjcckg.gUo47QeohZcXjiv0PJ6z3FEL6ML0cdFtZN_3gRwcCxAg.JPEG%2F900%25EF%25BC%25BF20241014%25EF%25BC%25BF192927.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 19, - "name": "샘밭막국수 판교점", - "category_id": "한식집", - "score": 3.6, - "review": "77", - "address": "경기 성남시 분당구 서판교로44번길 13 1층", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 3180171712.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F14B7671D439E475CAE31294513DCC11F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6E11866BCC1E496DAD284BDA6F731774, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F910C6B70F10645FE84DF261E42FEC2F1", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 20, - "name": "봉피양 판교점", - "category_id": "한식집", - "score": 3.4, - "review": "51", - "address": "경기 성남시 분당구 판교역로 235 H스퀘어 N동 1층 121,122호", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317377478.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F36A833348A1E42DA86D6B9E251A8ADE6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe7c0e830ade991a6ea52c642cf11bd588ce231d5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6019531c8f706e0d3d68652ad1501f672eeb7089%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 21, - "name": "푸에르코 판교점", - "category_id": "한식집", - "score": 2.9, - "review": "125", - "address": "경기 성남시 분당구 분당내곡로 117 그레이츠 판교 2층", - "operating_hour": "매일 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 17:00", - "phone_number": 316227501.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FCFB276B4AB574EF3B6A51BC0CFC2992E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0EF20F04A47E46E9B95D1D4FE2FAFE76, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F82780DDCE6D14BA79CC23E9A2E1460F3", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 22, - "name": "자산어보 판교직영점", - "category_id": "한식집", - "score": 3.0, - "review": "13", - "address": "경기 성남시 분당구 대왕판교로606번길 10 라스트리트1동 2층 201호", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 317069880.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F86D236CD7D374E4A9B7C06B437BAFE19, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff216b880d25743d8f5d0499855209ee08d40884e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F39e59003a100aa08047061eb589463c4f202fff0%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 23, - "name": "황제갈비 판교점", - "category_id": "한식집", - "score": 4.2, - "review": "26", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2A동 1층 104, 105호", - "operating_hour": "월~금 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 22:00", - "phone_number": 317398688.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F53F59B5366C84139B5F96D985340CA0D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F986a8b733c0b55caf4e2ceb52a12c31dff9dd97e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqhbGEGyY1_FbA3IgYaHb0RanIkaNXtk0_img.jpg", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 24, - "name": "풍천숯재벌장어", - "category_id": "한식집", - "score": 3.9, - "review": "195", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스몰1빌딩 A동 103호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 50371501614.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F878BF1CF72704BCFBA0115BA2130891C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F401C1F9E9C4A4F2F93D4DDD6E8845E73, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4CE9B032222842F3A3678DFE5AC6223D", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 25, - "name": "이야기둘", - "category_id": "한식집", - "score": 3.8, - "review": "127", - "address": "경기 성남시 분당구 판교로319번길 13 디테라스오피스텔 1층 113호", - "operating_hour": "매일 12:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 22:00", - "phone_number": 316078092.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6A8AE6D1782E4F55A5B5451CE3847E34, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF2B6A3ED92CE460BB2F905EA4E28CAAB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB00280FD8D2746A9B07C5F4AF3303390", - "convenience": "WIFI\n주차\n놀이방\n흡연실", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 26, - "name": "선한레시피 판교점", - "category_id": "한식집", - "score": 4.2, - "review": "51", - "address": "경기 성남시 분당구 서판교로44번길 17-3 1층", - "operating_hour": "화~일 15:00 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317053315.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBBF36D9C19524281AAEF43B4C63AAA6C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcRcA7hUp_6wy1FgOjKTDzbILZ0E30jk_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2839899f96d8a30c96fa71cf485d61bc7bfae6ed%3Foriginal", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 27, - "name": "차고145", - "category_id": "한식집", - "score": 3.8, - "review": "141", - "address": "경기 성남시 분당구 판교역로 145 라스트리트 알파리움2동 1층 108~110호", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": 317811450.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MjhfMjgw%2FMDAxNzI0ODI5MzQyNTgz.g45WjGt_RZZ7FLCZhNlN8EtaGEGQWuM60Q6AAIog4N8g.BjNwKryE85wv8nPHAtVjUa_Se1BHpltjKexUCVvBA1kg.JPEG%2FSE-32331d8f-49b0-44db-823c-7f354c67295b.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F61688C2472114061A9367457649CC7C7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F73320C9234154096A21A974A00848EC8", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 28, - "name": "송도갈비 판교브릿지타워점", - "category_id": "한식집", - "score": 3.9, - "review": "46", - "address": "경기 성남시 분당구 판교로227번길 6 브릿지타워", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317020911.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2e06f0255f01b57d836ada31828838445fb3c59f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc461a5f9c7473442ddaac4a1dcc419516e9e5a44%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff3c7467844309c311e4742afe294e230f5b1d8bf%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 29, - "name": "광화문국밥 판교점", - "category_id": "한식집", - "score": 4.0, - "review": "80", - "address": "경기 성남시 분당구 판교역로 152 알파돔타워 2층 206호", - "operating_hour": "월~토 14:20 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:20 ~ 17:00", - "phone_number": 316227170.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMjVfMiAg%2FMDAxNzA4ODU2ODg4Mzc4.HeQovUxkDxIlvJJR5Z2aO8bh7Jm2qRAnNwXAr6rAqRog.U7ctkUm9N6WD7GfPxO9prVuiefPlKg0OhC0VUzaEEQMg.JPEG%2F20240224%25EF%25BC%25BF140416.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FFA1C2DAB03D74F1783957FBA1C2B789A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb134ceb454f76297117d5944abefb698d11c3548%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 30, - "name": "평가옥 판교점", - "category_id": "한식집", - "score": 3.2, - "review": "31", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스몰1 A동 102호", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317242566.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F224F84495704627516, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F254F453D570316E730, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2154A53A5703171E29", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 31, - "name": "돈블랑 판교점", - "category_id": "한식집", - "score": 3.8, - "review": "66", - "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움1단지아파트 알파리움타워 1동 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317037722.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MjJfMjg2%2FMDAxNzI0Mjg1NzY4NDg5.xwNNssip7q8vxjMtvObBGpdUORSFO9DgFDg_4KSNpIwg.4UJnvebGpblWxGUZp3VmbYhVVYItE0TIgo5og06EGHwg.JPEG%2FIMG_2569.JPG%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3E107A3A4FE1496896D1A0CD48D3BB45, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe45b6cc8a702a174f6c6d9af15dfb0ec163d4083%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 32, - "name": "머내돌삼겹살", - "category_id": "한식집", - "score": 4.6, - "review": "27", - "address": "경기 성남시 분당구 동판교로52번길 17-14 1층", - "operating_hour": "월,수,목,금,토,일 10:00 ~ 22:00", - "expanded_days": "월,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 3180176550.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F0E5A318194D440E3B860D1490A8E9BA9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F975d1b7eb3efc740e57c7e5701b8bee40b7de987%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc9e97164df7f2aca42692da5a95f8a50469736f6%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 33, - "name": "찹쌀순대 만드는집", - "category_id": "한식집", - "score": 4.1, - "review": "56", - "address": "경기 성남시 분당구 운중로138번길 18 1층", - "operating_hour": "화~토 14:00 ~ 17:30", - "expanded_days": "화,수,목,금,토", - "time_range": "14:00 ~ 17:30", - "phone_number": 317077872.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5C61A9B2398544B9ABF70720D63F572B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3F4D93D1F56B4700923BE6DEB543F098, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5312ff58198cfa317fafc6b9fe1cba444f5ead27f7788218566328fc9949be74", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 34, - "name": "통통곱창", - "category_id": "한식집", - "score": 4.3, - "review": "67", - "address": "경기 성남시 분당구 대왕판교로606번길 45 1층 102호", - "operating_hour": "월~토 10:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 24:00", - "phone_number": 3180176660.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9638DB25EF41496B8BA430EF53F965FB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMjVfMjM5%2FMDAxNzA4ODY1ODYyODc5.GIgQ5XKOuoO0Z7w5Mjfyl1LFNok5XaS58W7N149zP2sg.LWsPf4klm_-xjX94g5gVp4dGzhqbQ8dygEnEj6WSueog.JPEG%2Foutput_1099630603.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fstorep-phinf.pstatic.net%2Fogq_5ebebeedf0c9a%2Foriginal_23.png%3Ftype%3Dp100_100", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 35, - "name": "돼지맨숀", - "category_id": "한식집", - "score": 3.7, - "review": "78", - "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 144,145호", - "operating_hour": "월~금 17:00 ~ 22:30", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 22:30", - "phone_number": 317064775.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEA9BBDB1C62D48A4ACDE2E9FB7036A87, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtql6lviDjU_IFk2vu3vD3pMd1kb9rSpWK_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqtlEpO3Ye_wtmJbEQkknvTWqqbsufLkk_img.jpg", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 36, - "name": "토속음식뜰사랑 본점", - "category_id": "한식집", - "score": 3.9, - "review": "135", - "address": "경기 성남시 분당구 운중로138번길 24-5 1층", - "operating_hour": "매일 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 20:00", - "phone_number": 3180174060.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F33B73FEA0C4D432D8045BE57A4CA2F55, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8D8641EF8B9B4DD49626E7594E80217D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F49003D4CA0ED4DA99C0B9AAA387955C6", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 37, - "name": "쉐누하누", - "category_id": "한식집", - "score": 4.2, - "review": "95", - "address": "경기 성남시 분당구 판교역로 145 알파리움타워 2동 라스트리트 2층 201~203호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317035530.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalad_thumb%2Ft%2F13c6a99dfdff6a668068b5877f07c93f632a255f, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0b0c495c409257933d0acd21d3e7a6ce39ee44af%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fedc2eb8a3ee92ce1830e4fbfc9d816654ee59604%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 38, - "name": "양재정육식당", - "category_id": "한식집", - "score": 3.6, - "review": "33", - "address": "경기 성남시 분당구 분당내곡로 151 삼도타워 1층 102호", - "operating_hour": "월~토 11:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 24:00", - "phone_number": 317085705.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAAB66A1813E4450AAD1BDFDD5C7DE8ED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE3466C958CFA4401A56CEECB1B33ED5A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBAD67C2D6CF94862B2CCA4674494E998", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 39, - "name": "장비빔국수와 굴국밥보쌈", - "category_id": "한식집", - "score": 4.3, - "review": "83", - "address": "경기 성남시 분당구 판교공원로2길 60 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 3180163158.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F95DDF29720634522B285AB86590F3A77, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F44822fab215db7ba72624ee8eead63003720cad5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc109c46e2464f31b7ba189fab2cfdc38002fba45%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 40, - "name": "우테이블", - "category_id": "한식집", - "score": 4.1, - "review": "97", - "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층 105호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317034775.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF3C391D460474049B23C0B78C48FA9DB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F93F13A09B7B0450B952DE21A149A2AF9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F14A8190CBCDD4ADD8D042A646BC618B6", - "convenience": "편의시설 정보 없음", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 41, - "name": "토속상황삼계탕", - "category_id": "한식집", - "score": 4.0, - "review": "28", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 225호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 316286619.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F593C6AE5FF00424BBF912505C2CEFE89, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MjFfMTEz%2FMDAxNzI0MjE3MjU0ODg4.X1LVWXmGreFVfdcx0t-qjr8h4BDg6-1EzKbTurokcxog.PwWLfecJD55HFMfJymPCwWzifWdQEcRWC7iXos4H4o8g.JPEG%2FIMG_8646.jpg%3Ftype%3Dw275, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MjFfMjQ3%2FMDAxNzI0MjE3MjU0ODk0.gAM5UT4RdZwFFX1tTHXuMAoV6PLGqo4XBJqwJ-xVJfkg.PygydDw9UCdncnlrAE56XfmZTtu5ELgpv5J6CA55g5Ig.JPEG%2FIMG_8645.jpg%3Ftype%3Dw275", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 42, - "name": "봉우리 현대백화점 판교점", - "category_id": "한식집", - "score": 2.9, - "review": "171", - "address": "경기 성남시 분당구 판교역로146번길 20 9층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 3151701936.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F25E5EB05E9D84382A468C3D3A78CFC40, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F477e147813da41b6891c556e49008025426d4cac%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1328d5148fe3ef2a5808ec31ec96065e89af3aec%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 43, - "name": "이태리부대찌개 판교점", - "category_id": "한식집", - "score": 3.9, - "review": "46", - "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 지하1층 117호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 316960310.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB979A79FE8554259A449922B048C8770, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqfIV4HQZw_sEdd9xOpB0QaomiIld4NbK_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqhaW1QVmO_SqdWYoPCoW9euTKILSNXD0_img.jpg", - "convenience": "주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 44, - "name": "양바위 본점", - "category_id": "한식집", - "score": null, - "review": "84", - "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 아브뉴프랑 1층 110,111호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317069288.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1577493960, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_348914610, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_107879858", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 45, - "name": "홍대칼국수와족발 판교역점", - "category_id": "한식집", - "score": 3.3, - "review": "14", - "address": "경기 성남시 분당구 대왕판교로606번길 45 1층", - "operating_hour": "월~금 13:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "13:30 ~ 17:00", - "phone_number": 317081779.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F717BEDBAE87845848C8C44F0D3141B59, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8f95ca4c9dda08995eefe11d4a1f49839002011d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc4a2dec366ad5ac303793d5a832894e4b18c57fe%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 46, - "name": "고반식당 판교아브뉴프랑점", - "category_id": "한식집", - "score": null, - "review": "380", - "address": "경기 성남시 분당구 동판교로177번길 25 2층 205~207호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317075861.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC38FB03A3A804667BF7FC7C2BEB27B7C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F24813571CC1B482DAF63C97B10004213, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjdfMjYg%2FMDAxNzMyNjg1NTk2MTYx.WeQvX-X9T-99KPjWNBhB62pe-5RT-8y3zyPy0E6Fq8Yg.k_ywYbDF28BgUcaWgy5iSU75dEhInlGeaI_gCrWp_S0g.JPEG%2FKakaoTalk_20241127_132025186_11.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 47, - "name": "송추가마골 인어반 판교점", - "category_id": "한식집", - "score": 2.6, - "review": "44", - "address": "경기 성남시 분당구 판교역로 145 알파리움2단지 라스트리트 2동 2층", - "operating_hour": "매일 11:15 ~ 21:45", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:15 ~ 21:45", - "phone_number": 317058503.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FFA8D789AD3FD4958B99627DF2A021D00, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2432147F21F34BC9B5E6B07E2D2E3FDC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9FCE3175C79F41A3B217A6989F971BAB", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 48, - "name": "마루심 판교점", - "category_id": "한식집", - "score": 4.4, - "review": "136", - "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 2층 236, 237호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317817998.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F67CC5B05F57742E59EEA69A1E099DC1E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA263574796D743ECAB4AAC2D9E5176BE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F91BB747FB2FD4FBC865461F142B3375A", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 49, - "name": "달빛어시장 판교점", - "category_id": "한식집", - "score": 3.5, - "review": "114", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 210호", - "operating_hour": "월~금 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 01:00", - "phone_number": 316284567.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3EC47631C8CB4D80968C5AD5936B3B56, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5c5f73118b932126a2ac65b94cd13f62447a977a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffdb73b788267c942e4768e151c17157814934e86%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 50, - "name": "판교장어타운", - "category_id": "한식집", - "score": 3.9, - "review": "70", - "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 3층 301~304호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317019282.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA0192DDDCFF4414B825A52566A14F942, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6CA749185FFE4A029594797E0FCE0DC3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFA7082BB20414E47A6FCBA8F279BFD52", - "convenience": "WIFI\n주차\n휠체어사용", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 51, - "name": "일편닭심", - "category_id": "한식집", - "score": 4.2, - "review": "75", - "address": "경기 성남시 분당구 판교역로192번길 22 효성해링턴타워 110호", - "operating_hour": "매일 17:00 ~ 01:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 01:30", - "phone_number": 316021847.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD9F4FFCAAF5B40B8B4DC27B6B1BC52B8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F612A0C4E1BC746A28B7CE8C3CC18507A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF4606E1D28394EAE84C86FF9D0C606A8", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 52, - "name": "담솥 판교아브뉴프랑점", - "category_id": "한식집", - "score": 4.3, - "review": "1,008", - "address": "경기 성남시 분당구 동판교로177번길 25 호반써밋플레이스 1층 103호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 50713429553.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F880238A8EDED483E9B1064ED089DC01B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC526DA27FF5A4EA49B79A8B5BB6128DC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FCD87C1B2C15D4108AAD5F3D47EC44941", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약불가, 배달가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 53, - "name": "금돈가", - "category_id": "한식집", - "score": 3.3, - "review": "68", - "address": "경기 성남시 분당구 판교공원로1길 71 1층", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 317096599.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCA0F42202A2E4C8B82D1F39E896D8CD0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0AB278131DB04841AD92D068817E9948, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7aba58c19230b28112ccd07e68956253ada7a3e2%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 54, - "name": "우몽 판교본점", - "category_id": "한식집", - "score": 4.4, - "review": "734", - "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋타워 2층 204호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 3180610712.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F876FF9A7FA7A47AE8BCAF28496FA854E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F79607C5DA1E946BC9B49F2E0539DCFEE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F802E03AE111E47719DB7928DF200BF7D", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 55, - "name": "우대포판교", - "category_id": "한식집", - "score": 4.6, - "review": "778", - "address": "경기 성남시 분당구 운중로 141", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7A8C54FFC12B408C944C455CA3890425, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa9d56d9ed121125a256312b38e6727693a5ed080%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa93bfb987f181e955606eba27453b464a01daec5%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 56, - "name": "판교인생곱창", - "category_id": "한식집", - "score": 3.5, - "review": "91", - "address": "경기 성남시 분당구 판교역로192번길 16 판교타워", - "operating_hour": "화~금 15:00 ~ 22:50", - "expanded_days": "화,수,목,금", - "time_range": "15:00 ~ 22:50", - "phone_number": 317050731.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3A901B47F02940E1955AB52F4CA1C041, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc66e50e980992253cacdd0fd90cff945df393ade%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd1a5a90805a8bc9ce9569db5f018d376dc10bf39%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 57, - "name": "양드림식당", - "category_id": "한식집", - "score": 5.0, - "review": "4", - "address": "경기 성남시 분당구 서판교로44번길 7", - "operating_hour": "월~토 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 23:00", - "phone_number": 317051588.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF8538211204D45A4BA1666A02675D42D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F380f251fd5a362d3ae7749b8ea104d21e1f7869d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMDlfNzcg%2FMDAxNzMxMTEyNzUyMDI1.EWqe_QNKAG2C3ho6LhpjIxFde4asRs5WAg-euXAR02wg.w0Ppmwm3XyE6nvtdDsLtQJDkNwAnpS6PydbeXEUCZ6Qg.JPEG%2FIMG_0349.jpg%3Ftype%3Dw466", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 58, - "name": "창고43 판교점", - "category_id": "한식집", - "score": 3.3, - "review": "76", - "address": "경기 성남시 분당구 분당내곡로 131 2층", - "operating_hour": "월~금 14:00 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:30", - "phone_number": 316017543.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F745793B93F494207B2AC3F3CA3FD5AFA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3fc8e1b72ebaa8df58335aecfe8445430bd440a1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8ee3d19ee83f158c4e21ce307b11d432adef40b7%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 59, - "name": "산골면옥", - "category_id": "한식집", - "score": 3.0, - "review": "24", - "address": "경기 성남시 분당구 판교공원로2길 2 1층", - "operating_hour": "매일 09:30 ~ 20:50", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:30 ~ 20:50", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3643DC984E6844DF9D58998B70D9126C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fce260c57281b5fc3f883ccb06fc182de89f9eb3d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjdfOTYg%2FMDAxNzMyNjkxNDQ5NjE3.ylwFJoHSsB7aBWSlGfJ98jFdhnNQ0vNNdb2t9bcn-Cog.obuTu5pGAilwUkX6Kk4tvFgwzxL-jWryknBbXIQfrJIg.JPEG%2FIMG_5097.JPG%3Ftype%3Dw773", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 60, - "name": "해미옥 판교점", - "category_id": "한식집", - "score": 4.8, - "review": "414", - "address": "경기 성남시 분당구 대왕판교로606번길 41 지하1층 B01호", - "operating_hour": "월~토 14:50 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:50 ~ 17:00", - "phone_number": 317090728.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBECA78EFF0FA4447A6C380EAB2887DE4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5ce3c46f4d2d975afe708d043cc172467f12952f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0aef53e09c2c4b18b79e1215fbabad5f4625d3b8%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 61, - "name": "판교돈", - "category_id": "한식집", - "score": null, - "review": "286", - "address": "경기 성남시 분당구 판교역로192번길 14-2 골드타워 1층 119호", - "operating_hour": "매일 16:00 ~ 00:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 00:30", - "phone_number": 317019294.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F261AD09C120F4CF991748FB23B644357, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F1D96B5FDA6D941C3B52F7D007BF10CB8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F257A634C4DE840319D828F986BCBD887", - "convenience": "WIFI\n주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 62, - "name": "백청우칼국수 서판교점", - "category_id": "한식집", - "score": 4.3, - "review": "32", - "address": "경기 성남시 분당구 산운로160번길 16-7", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180168815.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF52171B2A63842509D4BF794367BA49F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fada2fe7ab102c3ef13ce8e87fc0170eec5e1926f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdb4242fdba8542942d1c0c26332e61c2fbc360bc%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 63, - "name": "옥된장 판교점", - "category_id": "한식집", - "score": 4.1, - "review": "3,628", - "address": "경기 성남시 분당구 판교역로 184 JS타워 1층 102-2호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317075392.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0FBE67104860496A8539B40375B6945A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4fc79c8c6d1cb17bc38d36260fa6e3d9ce9d5b7e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fde882d622b214e2a555ddce3715ff1bc69cbdec8%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 64, - "name": "우영관 그레이츠판교", - "category_id": "한식집", - "score": 3.8, - "review": "81", - "address": "경기 성남시 분당구 분당내곡로 117 크래프톤타워 2층", - "operating_hour": "월,화,수,목,금,일 14:30 ~ 17:30", - "expanded_days": "월,화,수,목,금,일", - "time_range": "14:30 ~ 17:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFAA6913FCA1F4962B4DCBF13C2AA8060, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdfc91177ef0841cb78261fe970f40e930936c38d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F97703517aa887d809a2748ef62394100fddda563%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 65, - "name": "우몽블랙 판교점", - "category_id": "한식집", - "score": 4.6, - "review": "533", - "address": "경기 성남시 분당구 판교역로 145 알파리움타워 2동 1층 111~112호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317020218.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F0C6A64A8635B44309DC1170C84797CF2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFFC3495C6DA6471F906814D93711D2AD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA30D2734A88E4D7BA9FB647C6CD84D9C", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 66, - "name": "운중본가 장수촌", - "category_id": "한식집", - "score": 3.5, - "review": "111", - "address": "경기 성남시 분당구 산운로32번길 14 1층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317059973.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0D680B81B9B745DFB28E421FF3BDDFBD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa0b74cc33d61fbd486161a8cac4e6a671dd92ec5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffa75ce00e07b5d63573fc16deeaad57aa570f536%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 67, - "name": "솔솥 판교점", - "category_id": "한식집", - "score": 4.2, - "review": "478", - "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움1단지아파트 알파리움타워 1동 1층 116호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317010266.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE8FC9486EF9C4325AB9160C5EBB171D6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa5ee03e35d0a783ee20f89211584a4c5d40e5f2a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd70258d9b3f642ee89434cc8a366c3c5b9db4712%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 68, - "name": "진짜돼지 판교본점", - "category_id": "한식집", - "score": 3.6, - "review": "44", - "address": "경기 성남시 분당구 분당내곡로 159 판교역KCC웰츠타워 A동 1층 120호", - "operating_hour": "월~금 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:00", - "phone_number": 3180179547.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F744F3B3B91C7491E90619C14A319E938, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8326701e249bbb4fb170b9ef93a23300c46ac305%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff1b035a9935ba8dc7713fcfa59ddd88ea811b243%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 69, - "name": "제주가", - "category_id": "한식집", - "score": 4.0, - "review": "8", - "address": "경기 성남시 분당구 동판교로52번길 5 1층", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 3180169292.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6ED0B5B8C1BE4B179C1F9303770F96C8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F285d0f3484bcd2fad24d6b2f433e702a89c2a561%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEC971007AB474ACB97437F87653B992E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 70, - "name": "일도씨닭갈비 판교점", - "category_id": "한식집", - "score": null, - "review": "123", - "address": "경기 성남시 분당구 분당내곡로 117 그레이츠판교 지하1층", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 316227509.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F912D8ECA65E244B5AE68017629244454, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1AD7F3B2D0E24A50A05230A7DF4F22D4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F735F750D53314120813F1C68FF2C4D7B", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 71, - "name": "암돼지와꽃등심", - "category_id": "한식집", - "score": 3.6, - "review": "187", - "address": "경기 성남시 분당구 운중로166번길 4-14 1층", - "operating_hour": "월~토 16:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 17:00", - "phone_number": 3180163566.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCAE8CB61727F49B3A3D3857080309FBA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4448c9e9013bde1e4ba83792c5ff014330fad45a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffe1e9e8186dda2703d8a5aa44de06b46d4a52c6e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 72, - "name": "성일면옥 본점", - "category_id": "한식집", - "score": 4.0, - "review": "71", - "address": "경기 성남시 분당구 동판교로52번길 10 1층", - "operating_hour": "화~일 15:00 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317031231.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6675489D0F254EFCAECBB7523CF7BEB0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb58806ef98a5061d80dd7a6992c184e7c96bdff6%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff820fa8a3a7e9d857dfeb13e50722d17f98b4245%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 73, - "name": "락빈칼국수", - "category_id": "한식집", - "score": 3.9, - "review": "25", - "address": "경기 성남시 분당구 판교공원로2길 68 1층 101호", - "operating_hour": "화~일 15:00 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 3180161822.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F03881235B0344E93B1AD1511800E48CC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F8EA9C09FB169473BAB5742DB73878740, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5C9AD03689CE4E208B7ED8CB3C4D0C6C", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 74, - "name": "이가네양갈비 판교직영점", - "category_id": "한식집", - "score": 4.4, - "review": "2,119", - "address": "경기 성남시 분당구 판교역로 145 알파리움2단지 타워2동 1층 113~115호", - "operating_hour": "월~토 11:00 ~ 10:45", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 10:45", - "phone_number": 317019998.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7B4A47A61125421CB88A1A11672740FE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fff786939b92deddde63f00b76801f554b050ccaf%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F61a00749fe7632802e16a777a9adeef871fdc3fa%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 75, - "name": "목포명가 판교점", - "category_id": "한식집", - "score": 4.2, - "review": "1,676", - "address": "경기 성남시 분당구 분당내곡로 159 웰츠타워 A동 1층 113~114호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317076233.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA2C74D48B417485F9F583C5B923170B5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4f37c541a593ab900a49a2a40c6107beac06c88b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7a89177785cf9fd6c92a22b6d7b445c3ea68f122%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 76, - "name": "대진항막회", - "category_id": "한식집", - "score": 3.8, - "review": "37", - "address": "경기 성남시 분당구 동판교로 91", - "operating_hour": "화~일 16:00 ~ 23:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "16:00 ~ 23:00", - "phone_number": 3180168205.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FE9ECB062377C43658A79C632BE8325AB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FDE91687743174CD7BD62C10A466C8928, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe7b4fd9eeb4b682d16e97259beffbff4d3d252c5%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 77, - "name": "유엔가든", - "category_id": "한식집", - "score": 3.9, - "review": "101", - "address": "경기 성남시 분당구 동판교로177번길 25 1층 129~131호", - "operating_hour": "월~금 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:00", - "phone_number": 317089929.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF710415F5DDC4456A7B07BFC33DBC7AB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F787B1205CFF84E2BA71668B031306140, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F44e4d3474545f07e2fc2a9e7e1cad82369babc1d%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 78, - "name": "초심한우", - "category_id": "한식집", - "score": 4.5, - "review": "25", - "address": "경기 성남시 분당구 운중로146번길 15-6 1층", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6E0CFB5729B9421895A355F428521CB8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA7CA5DEAC9D94C5F97E46CD57F6E0563, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD90DD6A9C7894D8F97BB30C8E6DC2C6A", - "convenience": "WIFI\n주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 79, - "name": "램가 본점", - "category_id": "한식집", - "score": 4.5, - "review": "225", - "address": "경기 성남시 분당구 판교공원로1길 63 지하1층", - "operating_hour": "월~금 17:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 22:00", - "phone_number": 317035043.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F29D6290059744494A110B0BC42121C4D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FADA7F8EED8564E63AD4BF374D69022F6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD9EEB8A8BACD4C26ADB2A6ED4E2C186C", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 80, - "name": "자연횟집 판교", - "category_id": "한식집", - "score": 4.6, - "review": "17", - "address": "경기 성남시 분당구 판교역로 235 H스퀘어 N동 123호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 317377900.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCEE84DCBD25448A5A65D4BEA5D9DB1AB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F42A1205CB3334619B98A6E8BB2E649B6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F68F3EF4F23034837B52664C30FE93A6D", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 81, - "name": "항아리보쌈 서판교점", - "category_id": "한식집", - "score": 4.3, - "review": "18", - "address": "경기 성남시 분당구 운중로125번길 14-16", - "operating_hour": "매일 15:30 ~ 16:40", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:30 ~ 16:40", - "phone_number": 3180173377.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F197983CDEE8645C6839A8EE615927272, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3301e9e241e6dbb0fce6b88df6bd7172eeab92b5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fbd57e472539c618985cd9f4b3ae6e31e1f93916e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 82, - "name": "연인의정원 판교", - "category_id": "한식집", - "score": 3.7, - "review": "61", - "address": "경기 성남시 분당구 서판교로44번길 3-10 1층", - "operating_hour": "매일 10:00 ~ 19:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 19:00", - "phone_number": 317576667.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F686D3720F8D54214A0387401BFCB7860, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMTFfNTgg%2FMDAxNzI4NTc4MTYwOTk3.eUHLCjry9hoNT347YDcbVyQk5ZUs9xMHVEES7HGx5x0g.7i03BxZMdZ0jpHrKy6rzA5OkDMXK5K8om4cjjOXrl-8g.JPEG%2FIMG_6310.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMTFfMTgy%2FMDAxNzI4NTc4MDY3Nzg5.43Z3fEZaHUaxDKwxxA_AjjX2F5jafNLPhgSBYMKWyYgg.S4cYRpUEDIjsbiAqpc-hG_Zy97XcKhDSFH7795cRpz4g.JPEG%2FIMG_6309.JPG%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 83, - "name": "현복집 판교점", - "category_id": "한식집", - "score": 3.7, - "review": "10", - "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움타워 1동 2층 215,216호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 317041001.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F201967DC5DD646BDAFB3B0C553850013, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faca802244bde0aad4c8a38e401c05a23a7e990ca%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8df05ea4b3327f75ec0decc884e332b10d8b495a%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 84, - "name": "양평해장국", - "category_id": "한식집", - "score": 2.9, - "review": "9", - "address": "경기 성남시 분당구 판교로255번길 9-22 우림WCITY 2층 206호", - "operating_hour": "월~금 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F20E5C9D69EE6465D8BC6AC23226C0E33, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F75eb7d2e1f6e5be987da4b4b6c2503e3a7ac353f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4a0a34284dfd061b86625c7659611f79a31f6cbf%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 85, - "name": "찜하우스", - "category_id": "한식집", - "score": 2.7, - "review": "26", - "address": "경기 성남시 분당구 판교역로 180 알파타워 1층 104,107,108,109호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 317021128.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB105670DD4754BEE9EAA2CB97ADD06C2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6805425AC1514D53BD432DF55EB87285, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F684258f4d4c738a62d5fdff148fd4837476aee7a%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 86, - "name": "감성쪽갈비", - "category_id": "한식집", - "score": 4.1, - "review": "136", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 211호", - "operating_hour": "월~토 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 24:00", - "phone_number": 317242885.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3C7E4D70F0644566A3E8E9A35EFE6773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F988c178c04af4668f4c5576f581491193b4dccbd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F06f38e8217e21812c0ee17e5c00ead579afa618c%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 87, - "name": "판교집 본점", - "category_id": "한식집", - "score": 3.8, - "review": "116", - "address": "경기 성남시 분당구 판교역로 178 서건타워 1층 106호", - "operating_hour": "월~토 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDACA006E3FA24B2CB45009FD09B2A9CC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6E8C0D8AFD2A4363BA9851F85F6F09C7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FAB21303EC21F4013BAC0DC3C996E70AF", - "convenience": "주차", - "caution": "예약가능, 배달가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 88, - "name": "비와별닭갈비 판교아브뉴프랑점", - "category_id": "한식집", - "score": 2.6, - "review": "50", - "address": "경기 성남시 분당구 동판교로177번길 25 2층 208호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 3180167999.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF0DC39077B154FAE99623CE7C79B5D05, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F13E25F69499E48BA84852A659DB843D0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F06d0d365a5c4baaf50d18f041cd045a75f3e24f6%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 89, - "name": "됐소 판교점", - "category_id": "한식집", - "score": 3.3, - "review": "141", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 지하1층 B101호", - "operating_hour": "월~금 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:00", - "phone_number": 316286092.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F07FE2FE38F354A308215BBDA098B9A26, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDlfNDEg%2FMDAxNzMzNjcyNzYxMjU3.lY53jWDhQ7CsFJ5yRTCA2yOHHc6xddSYZqDwC5wcqnAg.2QYtm_pKD2LOSRIVctge2Ie9LuXYTQpJ3hwlqV8eUoYg.JPEG%2FKakaoTalk_20241205_010453349_04.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDZfMzkg%2FMDAxNzMzNDYyNjg1NTkw.boiE46hbgkEsozHCuWa9lam4qDenJ-RDjQsSYim9LyYg.DR_rSBxHfs8tT56FPqGydgWnMekOWQgBBcqr_PPEDAMg.JPEG%2FIMG_6966.jpg%3Ftype%3Dw773", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 90, - "name": "단지국수", - "category_id": "한식집", - "score": 4.3, - "review": "34", - "address": "경기 성남시 분당구 판교공원로5길 5", - "operating_hour": "화~일 16:00 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "16:00 ~ 17:00", - "phone_number": 3180178383.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAACF8ACA8C4144EFB5E3A4741A4C5777, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa8f38bcb641c31383dddcec21918bb703b77a9e5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0f74eff1d851984cbcb3e23e49b5793f46ac03ae%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 91, - "name": "순우가", - "category_id": "한식집", - "score": 4.0, - "review": "117", - "address": "경기 성남시 분당구 대왕판교로645번길 36 NS 별관 지하1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 316068516.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd5cdadbfea2d1b9bbc679fb3449dfaad46410107%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd5cdadbfea2d1b9bbc679fb3449dfaad46410107%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb99b475a3b0547da965fd0a9e8147619abbb29aa%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 92, - "name": "뻘낙지한마당 판교점", - "category_id": "한식집", - "score": 3.9, - "review": "16", - "address": "경기 성남시 분당구 판교역로 235 H스퀘어N동 1층 125호", - "operating_hour": "매일 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 24:00", - "phone_number": 316967666.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD368E50AE6BF4B369784F6796CB58967, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F79051dfae55b20ed243cfd541d0680b831820dfc%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fec20616e01d25c103f909caab1bb7d0a7378d341%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 93, - "name": "양산도 판교점", - "category_id": "한식집", - "score": 3.9, - "review": "854", - "address": "경기 성남시 분당구 대왕판교로606번길 58 월드마크상가 1층 115호", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 317051092.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6F4D9B4504C24988BD6AB9F49ADDAAC8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb03a8b61eb764888a3ff49214ecca11f09b0b80d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F50d9f6463bcd00879464de97b37cb3c968815f6a%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 94, - "name": "조재벌식당", - "category_id": "한식집", - "score": 4.1, - "review": "41", - "address": "경기 성남시 분당구 판교로319번길 13 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 316096271.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F472A024DA0054294ADD21F86001FB804, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F35119807fd4651ee45095ce8b3bea28df807ac74%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqe3QigI3f_W1bl0vGw2GbPMZk8v4hVwK_img.jpg", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 95, - "name": "찌마기 판교역점", - "category_id": "한식집", - "score": 3.8, - "review": "34", - "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움1단지 1층 139호", - "operating_hour": "월~금 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 23:00", - "phone_number": 317025455.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC3D3C8A9DC6E4840A9B4FB2DA38C4400, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff7d7b16b075a508fa994bdeadc51ce29a258c5e1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa4286171f94e12926f3a17958c40419f90c95373%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 96, - "name": "해도락", - "category_id": "한식집", - "score": 3.4, - "review": "31", - "address": "경기 성남시 분당구 판교역로 235 H스퀘어 N동 1층 130~132호", - "operating_hour": "매일 14:30 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 17:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCCC1166A9A0640B8949ED6D74F32DD0C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F694D7974822E4CD99E0BB442DDDE9C7C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2CD3307C156B41369EE749C8B457FA34", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 97, - "name": "한와담 판교점", - "category_id": "한식집", - "score": 3.6, - "review": "918", - "address": "경기 성남시 분당구 판교역로 152 알파돔타워 1층 1-2~3호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 316227182.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F44AC62245E1048A6B5AFF315A935608C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F827B9A8BA63C4E879FC23A733FC44AA1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB33BC70703E24D799B9F1E4954BF412B", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 98, - "name": "두툼해 서판교점", - "category_id": "한식집", - "score": 2.7, - "review": "20", - "address": "경기 성남시 분당구 판교공원로2길 54-1 1층", - "operating_hour": "화~일 16:00 ~ 23:30", - "expanded_days": "화,수,목,금,토,일", - "time_range": "16:00 ~ 23:30", - "phone_number": 3180172217.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F395294E94F844D82931FEF1D40E4293D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F13932aef032f76c6c466c98388a01e6452ce0643%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F90f026ee9d60e564902c80c569ed14d458377dab%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 99, - "name": "판교수갈비", - "category_id": "한식집", - "score": 3.1, - "review": "8", - "address": "경기 성남시 분당구 판교역로10번길 23 1층 101호", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 3180168792.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_766614764, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd251ef03990742f1ed80282d2b19ae0ecdcf0f2c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0db01d6479a3444e72332ad10ce0dde4f6b61139%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 100, - "name": "담솥 서판교점", - "category_id": "한식집", - "score": null, - "review": "428", - "address": "경기 성남시 분당구 운중로 121 1층 105, 106호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 50714745532.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F505B2E5E29464DA19618D0A977A3A5FD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9BF40D89AFB74C3CAE4626DB7596E917, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F718FCD7229DE405E8254831BD4051CB8", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 101, - "name": "춘업순댓국 본점", - "category_id": "한식집", - "score": 4.3, - "review": "48", - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 지하1층 B113호", - "operating_hour": "월~금 08:00 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 21:30", - "phone_number": 317893660.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F81588c476eada3476580be4425fa06cee4fa6ab7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCBFC8ECFF3D24E5686F2C94979FD3FED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1fef4ff39fabc21ced7d714567a4fe400a8a8345%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 102, - "name": "모토이시 판교점", - "category_id": "한식집", - "score": 4.1, - "review": "312", - "address": "경기 성남시 분당구 분당내곡로 159", - "operating_hour": "매일 16:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2C70D58DFCE04FEABA6C2C1263AE12B8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fff946afc73d9a96b92be944f6c409fdab7d72d43996c6b1c4f6ff05740a7acc8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fbcda5052832dabd6dfa1f10ddfd512aa0a295eb1%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 103, - "name": "문어상회", - "category_id": "한식집", - "score": 3.7, - "review": "22", - "address": "경기 성남시 분당구 대왕판교로606번길 31", - "operating_hour": "월~금 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F71151A5DBD354782B39ACA9A10D28F60, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDF836C408F6C41D5A18F724021EFC8A4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa1ecb8f2ea7bc0f4dcd4dbfe9794b79e0a13839c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 104, - "name": "수 감자탕", - "category_id": "한식집", - "score": 4.1, - "review": "15", - "address": "경기 성남시 분당구 동판교로52번길 8-1", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317811003.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7E6E0799D8D04926A1E59BED9B57F550, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F265cce4c46fc3475cb8877e38faa0793d2424447%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F86b2918d0799da45f8058f51fca62aeb53aa6c75%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 105, - "name": "제주은희네해장국 성남판교점", - "category_id": "한식집", - "score": 4.2, - "review": "72", - "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어 에스동 지하1층 122호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 316967474.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAEEBB2542A1B40009CD5C88E9FDD7C21, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5aa9352615bd5a2d2f765c9b3ee51dcc8002dd65%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F77f71b5bdf513d4e64bf8932ec99bff8a117b2b9%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 106, - "name": "흑화돗 판교본점", - "category_id": "한식집", - "score": 3.9, - "review": "123", - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 1층", - "operating_hour": "월~금 17:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 22:00", - "phone_number": 316017455.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB4DACC6AB3A04318BEC2A96BF92F0726, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe14b859d2b6b6a15e75108308384a558c23b28a3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F073fc4f55560b4890420b5850416915b75f97e7b%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 107, - "name": "섬맛의공방 제주이야기 판교점", - "category_id": "한식집", - "score": 3.1, - "review": "34", - "address": "경기 성남시 분당구 대왕판교로606번길 10 타워1동 1층 132~ 138호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 7044000919.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7A241D74BE3C4DAF8E7AA5DE95378570, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F701ad7fe841d75aaada139c46cd0dd6857e6eba1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcf123546561354951478a67c9271639f074f306d%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 108, - "name": "라무진 판교점", - "category_id": "한식집", - "score": 4.4, - "review": "23", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 2층 236호", - "operating_hour": "매일 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA1BBA27B926D48B4AE7631440AFC3A3C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F235a68f9e21aca8b3008dbc94c78c2473f899d26%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F943b3c3ac17de4704cb229fc43b8bc105eb8fd21%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 109, - "name": "명륜진사갈비성 성남서판교점", - "category_id": "한식집", - "score": 1.7, - "review": "28", - "address": "경기 성남시 분당구 운중로178번길 1 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317089288.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF8AFFAF1B9264C5B94228A5BECA8585B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MTZfMTgx%2FMDAxNzI2NDQ3NzI3ODkx.1Xajf8F4ah0EkabFsXsMKNU6piVJPHa6JkoGQVZnyoUg.Tr1mr6gcOAFRdTd2YrNU7BYqdd_VR-RGraQmh63Bzb4g.JPEG%2FIMG_4970.JPG%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MjhfNzQg%2FMDAxNzI0ODQ5OTQ2ODE2.8opTxQ8a2Fm8elba4uCbYCfqLstD6JvipwnxZmAcuBgg.wVCcimTMYkhIAh4bxj7ITOwoQtHZsa95ayt3mypcRp4g.JPEG%2FIMG_4834.jpg%3Ftype%3Dw580", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 110, - "name": "즐삼생고기", - "category_id": "한식집", - "score": 3.5, - "review": "6", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 지하1층 119-4호", - "operating_hour": "월~금 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3BC953D01188484E9E9061C489EBA164, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdd48f54ce66d10b555e36bb035773abab76aa1ec%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MTJfMjgg%2FMDAxNzIwNzgxNzkyMjAz.KEXMUV8ERZXu-JZF2o5gZGN0q0aeqw7ED1C3UnPLyUgg.9nrliMvZHpEZ1ymbmNKS0Zk9LrIoT6UreE5pJMXRDicg.JPEG%2FIMG_9417.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 111, - "name": "한마음정육식당 판교테크노벨리점", - "category_id": "한식집", - "score": 4.1, - "review": "78", - "address": "경기 성남시 분당구 대왕판교로 660 A동", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317011000.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFC95650CD0B54DE5AABA9EECFED6D992, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTdfMjc3%2FMDAxNzM0MzY5ODM5OTIx.qx_ogzKcnqW_gDAfrgzqv7B8xlXI40MUXH1c22fILdYg.whataEMUyMICpGnqaL0x58b13pc6E211G95tgfomg1sg.PNG%2F4.png%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMTFfMTQ1%2FMDAxNzI4NjIwMjI3MjI2.q1QnDHylHFJIp_dhFmQCoRe7yyCqc2UYOjV1uyi5q0og.8NOzIw8ZtvUcAivGKymdvGEjZCitxLX8JmqAccZNKe0g.JPEG%2FIMG_4223.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 112, - "name": "일로집 판교직영점", - "category_id": "한식집", - "score": 3.5, - "review": "46", - "address": "경기 성남시 분당구 판교역로192번길 14-1 판교예미지 1층 105호", - "operating_hour": "월~금 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 24:00", - "phone_number": 317051215.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD9E2FF20A07544F296EDBDBE870C4F41, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA2CF6F7D1089465A987FD0B79CAC0135, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFD359F5A2BB948E29CF80674DBFB184E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 113, - "name": "허니피그", - "category_id": "한식집", - "score": 4.4, - "review": "42", - "address": "경기 성남시 분당구 동판교로52번길 3-8 1층", - "operating_hour": "매일 16:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 22:00", - "phone_number": 3180167373.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF31A84DBBE4B43618605C907E119E5D4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffee57c6aff33e26053a00d376febd7d103bdfa4f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3d12cf72d56745b0cc0e70b85d4455b82cc40bf1%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 114, - "name": "뚝배기동태탕", - "category_id": "한식집", - "score": 3.4, - "review": "16", - "address": "경기 성남시 분당구 서판교로44번길 3 1층", - "operating_hour": "매일 15:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:30 ~ 17:00", - "phone_number": 317051577.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF78A63E18DBE490A9C4FE2017C68F6CB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FADD8627A5DF645CE82B16AC4AA401F63, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC3C30017D02E468FAA9EEF9F28EF3652", - "convenience": "주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 115, - "name": "양육점 판교점", - "category_id": "한식집", - "score": 4.2, - "review": "543", - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 2층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317061624.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDF51CE7416914DD2B52BB40C04805BE1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCE72790E483D45BE81C19C2C36BD3D70, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7FB0BCEE4AC846A3A9C7FBB4BEC9423C", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 116, - "name": "원조닭한마리칼국수전문", - "category_id": "한식집", - "score": null, - "review": "53", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하 1층 108호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 317090176.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDB4FD7DA516B4603A6BCBE55B84437D0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC0640AE469904255A1A1879F6474020C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8C5911D8122D47958B6E7F8EEC907597", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 117, - "name": "팔각도 판교유스페이스점", - "category_id": "한식집", - "score": 4.6, - "review": "180", - "address": "경기 성남시 분당구 대왕판교로 660 A동 2층 238호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 317242552.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB7E47599BE4D45DE9AD682205C1DE3F4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC4A22C7D09AF486882601FCE4DA45E2D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F14AA7BA210F4419D96F0F5C89DD860D6", - "convenience": "주차\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 118, - "name": "춘천명물닭갈비", - "category_id": "한식집", - "score": null, - "review": "81", - "address": "경기 성남시 분당구 운중로138번길 18-5 1층", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 1026448481.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3FC7180EFDC948B0A08F6CCAEA8B845F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEyMDRfMjE0%2FMDAxNzAxNjc1ODQ3MzA4.1pK_dWtZLyEY1yCPxlEjYo3yFwHQtZA4vGOfbhkRvmMg.RR7tc4739JCVQ3oAg8aLYg_k4DEDgjayPf6OR_dXeDQg.JPEG.vordooo%2FSE-c8ffc97f-8274-47cd-8615-aa94c6753b4e.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MTVfMzYg%2FMDAxNzIxMDAwODI5MjQ2.SCYasb6vLOG4Q206lbPKaMGiR4L7LOeUk1xoOsbBV7Ig.enDJ4BpT7U7fzHn1gy4r7gho-dx-hwWPf0G4M0UZPqUg.PNG%2FPhoto_1.png%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 119, - "name": "소호정 판교아브뉴프랑점", - "category_id": "한식집", - "score": 2.8, - "review": "29", - "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317031360.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F346D6B3A7E5C4DBC89BB3CC44857AF5D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F439C1D093E984125898E80099668A915, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F38449abdd2af26361b8919b03710c5463cf77406%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 120, - "name": "더부자꼬리", - "category_id": "한식집", - "score": 4.1, - "review": "16", - "address": "경기 성남시 분당구 판교역로2번길 3 1층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 316096525.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F304EF1D08FCB48E5846F5984EB71E433, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F25ba5d59c8924f1d19261de6b1f4fb68d5b8f1f6%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8da9c82289e19bfef75b5983dd8d7df6f5af8541%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 121, - "name": "원조장충왕족발 삼평점", - "category_id": "한식집", - "score": 3.3, - "review": "14", - "address": "경기 성남시 분당구 대왕판교로644번길 65 휴먼시아아파트 상가 1층 101호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317023324.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDF5E8572167A4CBA900428ED77ABB176, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2f013b13569a0fadf7e00bf13d86f8be25865077%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqnF8IfLiu_0OldxpICM68q62iNJG7qe0_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 122, - "name": "자연산회통영붕장어", - "category_id": "한식집", - "score": 3.0, - "review": "3", - "address": "경기 성남시 분당구 판교공원로2길 38-1 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180163340.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F35F13BC02D0146C3A22B42B364C48603, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqdJ0zoc7Q_jjguBonTzviUmeFySxgGFk_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqdDx57aZC_CKWgsTDVKlmTrMkptHbHLk_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 123, - "name": "판교집 서판교직영점", - "category_id": "한식집", - "score": 3.8, - "review": "103", - "address": "경기 성남시 분당구 판교공원로2길 58 1층 101호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 50714226650.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F26450A9006ED4F17B98F74B2848D2F29, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE12E98CBD65D482FA475C558BE4CAC98, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F81F6131CC8A54BAD97F2F0A8F004237D", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 124, - "name": "운중골낙지마당", - "category_id": "한식집", - "score": 3.5, - "review": "14", - "address": "경기 성남시 분당구 운중로138번길 18-3 1층", - "operating_hour": "월,화,수,목,금,일 10:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,일", - "time_range": "10:00 ~ 23:00", - "phone_number": 317035505.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6F0612FDC3F24016AF6E2B97013287DF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fecb57c2f5b80b2987cf294f204c2ab396d44d7c3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F617c5754d49b11161fcc62dd35eaccb9f1bc6b2c%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 125, - "name": "고화갈비살", - "category_id": "한식집", - "score": 3.5, - "review": "214", - "address": "경기 성남시 분당구 판교역로192번길 16 1층 111,112,116,117호", - "operating_hour": "월~금 16:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9721E431996A499FB33BED01D004D644, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe9e7ee3423f3662108b9e506940fd1e7de8482b8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjhfMTU4%2FMDAxNzMyNzI0ODAyNTI4.VIV8xLNOdg86EYJHejHzmWzN7xZUup4ieWO2jjE_01Yg.IdoK9ra4maG72r9WHq_qFvs4YGG23hA5nkfslIYv7ycg.JPEG%2FSE-069955c4-17bd-46dc-a6e2-5baa369e939d.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 126, - "name": "진복호 분당점", - "category_id": "한식집", - "score": 4.1, - "review": "8", - "address": "경기 성남시 분당구 동판교로 52", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317093382.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F307CE1C175634B11A8B5737F0B8899C1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fca30972b2aee5880525e71b50c201cf12d0b06cd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA2MjJfMjU2%2FMDAxNjU1ODkxMTM5ODE4.nfshk5T_JJ6Igx-E3SumRu960NZANNimvTyW3OilJbsg.GtDkQ5akWS2uJxKsWsaKDfAr92IB3GRY0-OBrT1o9QEg.JPEG.skdud0064%2FIMG_6803.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 127, - "name": "상기육개장", - "category_id": "한식집", - "score": 4.9, - "review": "27", - "address": "경기 성남시 분당구 판교역로2번길 34 1층 102호", - "operating_hour": "월,화,수,목,금,일 11:00 ~ 20:30", - "expanded_days": "월,화,수,목,금,일", - "time_range": "11:00 ~ 20:30", - "phone_number": 50713762912.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F73108D4A47C34D82BA2AD71E39ED106F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBB6ACFA54BE14B419947F9B80369898F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F8FB77DB3FFE641E6A741EA7690A8045C", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 128, - "name": "키친정지", - "category_id": "한식집", - "score": 4.4, - "review": "8", - "address": "경기 성남시 분당구 산운로160번길 22 1층 102호", - "operating_hour": "매일 07:00 ~ 14:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "07:00 ~ 14:30", - "phone_number": 317035577.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB7249B8DEFF1480A9C15877064CF5249, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F69345703142e13f2d19224959287716584d09009%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F665d41fe709abb4877d4cbada195579328a39f50%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 129, - "name": "판교삼대곱창", - "category_id": "한식집", - "score": 3.6, - "review": "140", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 1 A동 202호", - "operating_hour": "월~금 11:20 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:20 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFEC671F149594E158855C26126C6B0A2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa8a70187c71f65c2de63b8a1af9de043331c64af%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fea88688b143d0e911556ebf4babad176204dfe15%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 130, - "name": "콩뿌리", - "category_id": "한식집", - "score": 4.5, - "review": "6", - "address": "경기 성남시 분당구 운중로 132 1층", - "operating_hour": "월~금 06:00 ~ 15:00", - "expanded_days": "월,화,수,목,금", - "time_range": "06:00 ~ 15:00", - "phone_number": 3180166699.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC908906E11B949DEA9F747EBC255B065, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe443a8cd0fce15b55177a073fef390be8867246a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F03607b48eac3f9b6846defdab84ebce09c2047f5%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 131, - "name": "고대생막창", - "category_id": "한식집", - "score": 3.4, - "review": "25", - "address": "경기 성남시 분당구 판교역로241번길 22 1층", - "operating_hour": "월~금 16:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 22:00", - "phone_number": 3180161992.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F253F354252652DAE2D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqeQjyNz0H_qzXvWafe6H5fLf791MXwO0_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqeTbAbb5F_dvH5IpKlebawaB1WxLhKX0_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 132, - "name": "문어집", - "category_id": "한식집", - "score": 4.1, - "review": "25", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 122호", - "operating_hour": "월~금 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fad149b4c0a3947864e8186a9cdf318e4d2960eb7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2ae52551fdc72649408b661013289dcaa3133b2c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F930f4e5bfedba793285b9fee47a116e9985b2e53%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 133, - "name": "산꼼장어닭발쭈꾸미 판교점", - "category_id": "한식집", - "score": null, - "review": "29", - "address": "경기 성남시 분당구 판교역로192번길 22 판교효성해링턴타워 1층 108-109호", - "operating_hour": "매일 16:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 02:00", - "phone_number": 317029294.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE506108D5DB7493AA9F36C91A251B363, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7AC9ECB6F09148F6BE6C1B13082ECAAF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F117F671E94C643EBAF3E75B2783C2BA1", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 134, - "name": "원조부안집 판교직영점", - "category_id": "한식집", - "score": 3.6, - "review": "1,419", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 214호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 50713936469.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F29E0BB6768CC4EB68D56B9C679EABC07, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1fa6dc0650003e07dc79dde81d521f4556138184%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb3acdc0c86d4711b9f112f9810f0c35da604620e%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 135, - "name": "동해회포차", - "category_id": "한식집", - "score": null, - "review": "11", - "address": "경기 성남시 분당구 대왕판교로606번길 31 호반메트로큐브 1층 125,126호", - "operating_hour": "월~금 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 24:00", - "phone_number": 3180163995.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 136, - "name": "나진국밥 판교점", - "category_id": "한식집", - "score": 3.0, - "review": "29", - "address": "경기 성남시 분당구 대왕판교로 660 B동 2층 237호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 313281002.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F637ED8BD2722443FA9FCB63D6F2BABA4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD2DD8CFF8330490490EE1B40732A594D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMDdfMTcx%2FMDAxNzMwOTM3NzcyMzM0.Uubu4ExXIjCi855W4jBYRLGIAPSLd1Am3P2G5mrbazog.2UeQ4X3DWXpnWelI3tg_-chUstYTPD8Nqgck9BVuaU8g.JPEG%2F20241106_205237.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 137, - "name": "하이포크", - "category_id": "한식집", - "score": 2.4, - "review": "14", - "address": "경기 성남시 분당구 대왕판교로645번길 36 NS홈쇼핑 별관 지하1층", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 316068515.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 138, - "name": "려원쭈꾸미볶음", - "category_id": "한식집", - "score": 3.8, - "review": "24", - "address": "경기 성남시 분당구 판교로255번길 9-22", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 316288277.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F71CC2C02F0F344799181F835DBFCDDC0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2cae91d9233070bcc3d64eb40aaec9a8cd26326c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MjRfMTc2%2FMDAxNzEzODg0NDA0NjY4.N4YrXVu-DB150hydVUf67bdDtBvGKXk-L2yeb31dBZUg._QtvKse-Nqjt744T341qTKV-vynlisnnPSVz9AN4KMAg.JPEG%2FSE-5369f37e-d949-498e-8a81-ce20e4716c70.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 139, - "name": "문막집", - "category_id": "한식집", - "score": 4.4, - "review": "42", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 1층 128호", - "operating_hour": "월~토 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:00 ~ 17:00", - "phone_number": 7082338624.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F257F2F51461748B182C2B00AFE9B8442, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdcfed5e202044523dbfc7f30907485760f39bb3c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa1c7b4e4c0dc7ca0fda613a6c14599257c37a4c9%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 140, - "name": "남해바다장어", - "category_id": "한식집", - "score": 5.0, - "review": "3", - "address": "경기 성남시 분당구 운중로125번길 4-5 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317073777.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F212D8A3657A3052F0B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2205EC3657A3052528, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2269DF4157A3052B12", - "convenience": "주차\n흡연실", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 141, - "name": "오뚜기식당 판교점", - "category_id": "한식집", - "score": 4.1, - "review": "46", - "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 108호", - "operating_hour": "월~금 12:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "12:00 ~ 23:00", - "phone_number": 317095882.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4017D06EFC5F48C2BF92E04F6D8E26D7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7fc03df0045000bc26ba349e0a25d2860c68fa1a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3167df04975f886327d074cf3939cc8a01a92704%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 142, - "name": "마중손칼국수", - "category_id": "한식집", - "score": 4.1, - "review": "52", - "address": "경기 성남시 분당구 판교공원로1길 8 1층", - "operating_hour": "월~토 11:00 ~ 15:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 15:00", - "phone_number": 316056100.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3117498741274505902FCF2A357058EB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcc0fbf4189148783b49295da648f832a9077bf6d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7a005fdc8476992fbfd5551018941b2990ce58f1%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 143, - "name": "무안회관 판교점", - "category_id": "한식집", - "score": 3.5, - "review": "42", - "address": "경기 성남시 분당구 판교역로192번길 12", - "operating_hour": "매일 11:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB52FF5976E29466683ABC0839515A4B5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F031c32131838e76d9cd9faf60be5b65a98df7878%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1110ed65f7f500efd6b0e050d94dd051b44167a9%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 144, - "name": "석기시대", - "category_id": "한식집", - "score": 3.4, - "review": "2", - "address": "경기 성남시 분당구 운중로113번길 4-8", - "operating_hour": "매일 11:00 ~ 22:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:30", - "phone_number": 3180167172.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 145, - "name": "본가광양불고기", - "category_id": "한식집", - "score": 3.8, - "review": "117", - "address": "경기 성남시 분당구 판교로255번길 9-22 우림 W-CITY 2층 227호", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 316288066.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7C598D39316441AFACCAA9CA64AD6A82, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb64f7a4f6b983756db0c538b4406922b7b0a885242e4d7d66355184e85e49db9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9ea37932e53b7967ef5e054993c647008c9c7de5be1b388d071c15b40107edd7", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 146, - "name": "전주현대옥 판교점", - "category_id": "한식집", - "score": 3.4, - "review": "14", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 B동 1층", - "operating_hour": "월~금 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:00", - "phone_number": 317398330.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCA3D4D1A5193402FB1F976649729FF38, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqcxrk3wIr_MlGyNpKKIb6kZ3A7ahZdwk_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5A2066EB6A56492A95C90BB19082E02F", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 147, - "name": "밥볶다 동판교점", - "category_id": "한식집", - "score": 4.3, - "review": "33", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스A동 지하1층 B115~B115-1호", - "operating_hour": "월~금 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 21:00", - "phone_number": 316960317.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0BFC3A7D8078410D80050FA2437FB83D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6266DAD7FE7D4E80A62947195C8537DF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5c34a2a3feb96e1416728f0e871dc49ac531b210%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 148, - "name": "미쁜선순대", - "category_id": "한식집", - "score": 3.9, - "review": "25", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 1층 125호", - "operating_hour": "월~금 09:30 ~ 20:30", - "expanded_days": "월,화,수,목,금", - "time_range": "09:30 ~ 20:30", - "phone_number": 316983969.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4594445CB0394B9BA3C480CCDB8F4440, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MjBfNzUg%2FMDAxNzE2MjEzNzg3Njcw.XSMY8uJ-ms-pvI0gEL3t06Wt_lpA6u_ajhQ1V1d21nYg.6Hn3PLlNWKkpurBoOzKiRkg4ct58aTkP9Bh-NNnfg-Mg.JPEG%2FIMG_9790.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MDVfMTc1%2FMDAxNzE0OTE1MDAyMjAz.tdEMDdEz36ZZakW0FNTlOAyD6pEBx6DQbeWKZKjqJ4Ag.-AnEEnA59HFAxXPlVe1ua5YfMEUKuJ3rzflIXT0RmNgg.JPEG%2FIMG_0789.jpg%3Ftype%3Dw966", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 149, - "name": "해가옥", - "category_id": "한식집", - "score": 4.3, - "review": "21", - "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 1-78,1-79호", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 7088665020.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5A028FDF01FF49C2843C4DB115E2AE9E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa9c0dfe2c1dd8a85266fecb9d8fec0ed2985145b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0152bac37560c1b675b7c98a56cb0aba8f61e713%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 150, - "name": "마케집 판교점", - "category_id": "한식집", - "score": 4.1, - "review": "48", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하 1층 B110~B111호", - "operating_hour": "월~토 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FACF61CF1F55049359466FC3033ED872D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF6C7429FB42F4E3AA3230D05CA62D7B8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9118fbe19a36fc02c665cb4476067c74f971770a%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 151, - "name": "하림닭요리", - "category_id": "한식집", - "score": 2.5, - "review": "8", - "address": "경기 성남시 분당구 대왕판교로645번길 36 NS홈쇼핑 별관 지하1층", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 316068514.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB478CF5B52644BD29D488CAA49D4B7B7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbfX3Hc%2Fbtr2TCcEoF4%2FnO4wRbEM3XOV14SKXmaZ9k%2Fimg.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbTffe7%2FbtsqJSpJ2ZT%2FvLrm7EdR8myo1afooTL8s1%2Fimg.png", - "convenience": "WIFI\n주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 152, - "name": "압구정제주집 판교점", - "category_id": "한식집", - "score": 2.4, - "review": "70", - "address": "경기 성남시 분당구 판교역로 138 1층", - "operating_hour": "월~금 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:00", - "phone_number": 3180395533.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDD68A92883604B3DBB9EA361DBC25173, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7deee97919971d2850d0e77dcfd6d95c593a2daa%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F130a602ad5d4a02c346e458476fe77dcfc47db14%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 153, - "name": "파머스마켓팥집", - "category_id": "한식집", - "score": 4.7, - "review": "33", - "address": "경기 성남시 분당구 판교로25번길 18-3 1층 102호", - "operating_hour": "매일 11:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 20:00", - "phone_number": 317078890.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7A48A278F7E6496A8E22128396D8C9DB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FCD9554ABBF3B4CE99B864107C0DD08B1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F74F3689575F04148B12FD3BDFDE39EB8", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 154, - "name": "원조감자탕일미집 판교점", - "category_id": "한식집", - "score": 2.9, - "review": "46", - "address": "경기 성남시 분당구 판교역로 235 H스퀘어 N동 1층 127호", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 317377410.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4675DBB52C9C47929FE104BEB2B319E6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4b38662b303e50e22160b72fe387fa0a2ddeb32f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fca350ca01276bd227a9a8ddccec70db42fbfbb73%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 155, - "name": "행복가", - "category_id": "한식집", - "score": 4.0, - "review": "6", - "address": "경기 성남시 분당구 운중로146번길 19-4 1층", - "operating_hour": "매일 11:30 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F171C81374FC46F6727, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F15203B374FC46F6721, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F202CA4374FC46F680B", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 156, - "name": "종로계림닭도리탕원조 판교점", - "category_id": "한식집", - "score": 4.1, - "review": "53", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 2층 205호", - "operating_hour": "월~금 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:00", - "phone_number": 317242933.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F31C64F31488345D297E9A9259045FF9D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3802DDF5C4BE419BA40AF664092B775D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB3CF05D920AA4F298B8E856760278B3C", - "convenience": "주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 157, - "name": "소호정 판교테크노밸리점", - "category_id": "한식집", - "score": 2.6, - "review": "10", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2관 지하1층 B117호", - "operating_hour": "월~금 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:30", - "phone_number": 316286678.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1A4A1D098B58461EB585842921F0B1F6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F16c3f4366bb05efb26ef81f80468ccb69fe479de%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe0aec781f5a88acd11335e0144377ff287aa62b4%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 158, - "name": "운중동멸치국수", - "category_id": "한식집", - "score": 4.8, - "review": "7", - "address": "경기 성남시 분당구 운중로125번길 5 1층", - "operating_hour": "월~토 15:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:30 ~ 17:00", - "phone_number": 317076911.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDF500532D71A4AAE87FD5BEC744B112E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1158D5084D2942C598778721E5F13221, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC0AC1822D18A4790825923D9AD949FCF", - "convenience": "WIFI\n주차", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 159, - "name": "전설의골뱅이", - "category_id": "한식집", - "score": 4.3, - "review": "20", - "address": "경기 성남시 분당구 대왕판교로 660 1층 117호", - "operating_hour": "월~금 16:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 01:00", - "phone_number": 317012683.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDC9A075BC2154848A0CC291F9E977DA5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7CE06E2696E04876940063F77B90CF84, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtquIPvvExy_iBGtfMMUfHEQA3U814ydfk_img.jpg", - "convenience": "WIFI\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 160, - "name": "담소소사골순대육개장 판교점", - "category_id": "한식집", - "score": 2.6, - "review": "10", - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층", - "operating_hour": "매일 10:40 ~ 22:10", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:40 ~ 22:10", - "phone_number": 317893821.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F653DE1FA3F4C4C54BDEBFF9BCB5148D6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcL68uqDC_fiaJiilEk3bzvNokvZzkK0_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcGJ0cGvq_9potj5Ap5tHanWuL45d9XK_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 161, - "name": "장수본가해장국 판교점", - "category_id": "한식집", - "score": 3.1, - "review": "6", - "address": "경기 성남시 분당구 대왕판교로606번길 31 호반메트로큐브 1층 120~122호", - "operating_hour": "월~토 09:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "09:00 ~ 22:00", - "phone_number": 317079788.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F19F9AB7E204342D197A5E69811A8DCDD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F072cd731c10b896cdde5b0dd3630352b1bc6555a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjhfMzQg%2FMDAxNzMyNzc1MjE0MjI3.-oUCSPgryUylr2Feksg_BfMyVa3ZNeTUkxqCYMi5FWsg.IUPmhsehtdFhlgXo6cVWZj4gAanlp9qOLA9G-PIFZ-og.JPEG%2F20240625_124145.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 162, - "name": "바름", - "category_id": "한식집", - "score": 4.5, - "review": "8", - "address": "경기 성남시 분당구 서판교로58번길 4-6 1층 102,103호", - "operating_hour": "월~토 09:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "09:00 ~ 21:00", - "phone_number": 317222121.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 163, - "name": "얼씨92숯불갈비", - "category_id": "한식집", - "score": 3.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로192번길 16", - "operating_hour": "매일 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 24:00", - "phone_number": 3180178044.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 164, - "name": "새마을식당 판교점", - "category_id": "한식집", - "score": 2.4, - "review": "16", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스몰2 2층", - "operating_hour": "월~토 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 24:00", - "phone_number": 316286694.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4E8ADC165605470CADE8C3A629925024, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqsydY8QFv_KhNKDUvlVUXqLpx4wc2NPk_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2314C34F5538B0BC08", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 165, - "name": "미방 판교점", - "category_id": "한식집", - "score": 4.3, - "review": "9", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 B동 128호", - "operating_hour": "월~토 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 23:00", - "phone_number": 317398358.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FBC68198849264DEAAEFBC60B70A7460B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_471094998, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FBC2E6A59CEF242DEBC422DE94CC22FFE", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 166, - "name": "서가네의정부부대찌개", - "category_id": "한식집", - "score": 4.5, - "review": "14", - "address": "경기 성남시 분당구 운중로 142 메디칼빌딩 1층 107호", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 317065656.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA9A81B30CEC84CB1A173B3837F2AB20F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAF62F7335A5B49669C9D9175F9B84BA2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6F1FDA9B06F04E5EB5B9C04E3E3FFACE", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 167, - "name": "우상화로구이 서판교점", - "category_id": "한식집", - "score": 4.7, - "review": "198", - "address": "경기 성남시 분당구 판교공원로1길 57", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F195FFD0371084C708D9F7AC0A4EB4222, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1E3514C1562D45668185B7F2A91F9BF9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6353e9c783f2ae5b8e210dc60f3aca701b28ecb4%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 168, - "name": "고향옥 얼큰순대국 삼평점", - "category_id": "한식집", - "score": 3.8, - "review": "88", - "address": "경기 성남시 분당구 판교역로 235", - "operating_hour": "월~금 08:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 22:00", - "phone_number": 317377988.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F28864E2928B64BF5BC43AC605927A941, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7b7cf1e027bce551df969dfb042f4e96a0a89a66%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8A73BED53C6F43BA884C0A7A4436F583", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 169, - "name": "본설렁탕 판교테크노밸리점", - "category_id": "한식집", - "score": 4.1, - "review": "9", - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 131호", - "operating_hour": "월~금 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 21:00", - "phone_number": 316967588.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF1463C3FBD454910B6C0E4A10FDEBE27, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3AEAE354D5EF42B7909C1B4989AF74D3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0C9FE7AA3E414E119F3ADE2D533CB987", - "convenience": "편의시설 정보 없음", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 170, - "name": "삼미칼국수", - "category_id": "한식집", - "score": 4.3, - "review": "27", - "address": "경기 성남시 분당구 판교역로 240 삼환하이팩스 A동 지하1층 118호", - "operating_hour": "월~금 11:00 ~ 14:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 14:30", - "phone_number": 316983258.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6B174196738349F687868C2521D56D4D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2FF0FBA4F2A04A30B3544FAFAF075063, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F19A38A2B38E8477FB212AA36A1EF8820", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 171, - "name": "후루룩손칼국수", - "category_id": "한식집", - "score": 3.1, - "review": "23", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 B103호", - "operating_hour": "월~금 10:00 ~ 20:30", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 20:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC15D8AECE02B446F92F01B4AF00452CD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1fbeb8d2f8ab7deed67079c2166a5e6e5576e9c2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb13125eb120ea6fa09d8688050237fcc13ef9fd6%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 172, - "name": "가장맛있는족발 판교테크노밸리점", - "category_id": "한식집", - "score": 2.9, - "review": "8", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 1층", - "operating_hour": "매일 10:00 ~ 01:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 01:30", - "phone_number": 316281008.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5924CD00FBB848DC8FA1A1EA54C9F694, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F382c28bf8e791984c37267cfb79e7ecd7a37aca3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F088bdc09990dcb32a33ea2ea6cffff1b18e7aebe%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 173, - "name": "마포갈비집 판교점", - "category_id": "한식집", - "score": 2.3, - "review": "110", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 2층 239호", - "operating_hour": "월~금 17:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 22:00", - "phone_number": 316281055.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F70927623C5A540D1962DAA32DEE5F139, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F37793DA134FF49BB93F1179925FF58E4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9F7B4C318BA346DAA95A2D2FF199C42F", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 174, - "name": "제주꾸숑", - "category_id": "한식집", - "score": 3.9, - "review": "21", - "address": "경기 성남시 분당구 판교공원로2길 19 1층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 1089003800.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB8C86D54951A4B7CAC0BF52643CFF72E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF60ACEB39AFD4A23961F57310BE448D2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F839A3EC60DCD4E9D99E0944895E3F6FA", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 175, - "name": "두둑26", - "category_id": "한식집", - "score": 3.5, - "review": "6", - "address": "경기 성남시 분당구 판교공원로2길 56 1층", - "operating_hour": "화~일 11:00 ~ 22:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317072656.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F04D165761CDA44D8BD9A0C9AF09169DB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9396367A7EF440DF800760CBAD2E84AB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjZfMTUx%2FMDAxNzMyNjE5NDQ2ODIz.-ir46oTfM5Dmx63VxfmjCx1Em8zKeC-jE5YIXLGKaJIg.IwiRqLgET0FBRoET7UqZOVlVXHXY2cV0NdvwJfxuyKkg.JPEG%2FIMG_5570.jpg%3Ftype%3Dw966", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 176, - "name": "판교한방삼계탕", - "category_id": "한식집", - "score": 3.7, - "review": "29", - "address": "경기 성남시 분당구 판교역로 152 알파돔타워 지하1층 7~8호", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc34bd9b16ac851247b49fe38c632d39dc4753898%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2ac811e43884c8eb92009f5dc190fd5a33e76b5b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc34bd9b16ac851247b49fe38c632d39dc4753898%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 177, - "name": "대감집", - "category_id": "한식집", - "score": 3.5, - "review": "113", - "address": "경기 성남시 분당구 판교역로 136 1090호", - "operating_hour": "매일 15:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:30 ~ 17:00", - "phone_number": 316983372.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 178, - "name": "마왕족발 판교점", - "category_id": "한식집", - "score": 2.6, - "review": "191", - "address": "경기 성남시 분당구 대왕판교로606번길 45", - "operating_hour": "매일 11:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:30", - "phone_number": 317085892.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F365BF499C2D543B2881D7613E923696F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F21b10fc8f67f16a4624bc9b6ed9f3ce6dd987397%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F26d045e87b38950f6614eb7c269fdd2d0129d6f2%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 179, - "name": "판교도마집 판교본점", - "category_id": "한식집", - "score": 3.0, - "review": "20", - "address": "경기 성남시 분당구 판교역로192번길 14-1 1층", - "operating_hour": "월~금 18:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "18:00 ~ 24:00", - "phone_number": 317031242.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe4926c3b1544342a598634c8a93d69425cd93af9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F07d39eb839d92c0b2f3d8eaa139024f57ab16525%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9ba92f8f63935a7d82bf572db93805e01bd5f63d%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 180, - "name": "정숙성 판교점", - "category_id": "한식집", - "score": 3.3, - "review": "39", - "address": "경기 성남시 분당구 판교역로192번길 22 판교 효성 해링턴타워 1층 102~103호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 50714742105.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD3B5214BAA5447249889436EBFC3A97B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6A5C47C55468450087AA98EE1BD6ADFF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3DF4E4BC88F243398884A83DA0CD0BCE", - "convenience": "WIFI\n주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 181, - "name": "북청집", - "category_id": "한식집", - "score": 4.7, - "review": "19", - "address": "경기 성남시 분당구 판교역로 230", - "operating_hour": "월~금 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 24:00", - "phone_number": 316982892.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F99D2D487A16545AE90C1371731AF3F64, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcTCfooIQ_gGU4KwqkADCBHtuQZfm3v1_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcTyYoz4L_XJ96bk8riCsB28sWC6ELp1_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 182, - "name": "청계산갈비", - "category_id": "한식집", - "score": 4.1, - "review": "13", - "address": "경기 성남시 분당구 판교공원로5길 34", - "operating_hour": "월,수,목,금 13:00 ~ 22:00", - "expanded_days": "월,수,목,금", - "time_range": "13:00 ~ 22:00", - "phone_number": 317011211.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0125DEFD70C74FDEBEC360F86A1678B2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fff31ba070b4aefed3cc6cf18e7d9d09f6c564940%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fea384d434f350826ef9f6480bbccafa9295e87a2%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 183, - "name": "오징어날다 본점", - "category_id": "한식집", - "score": 3.8, - "review": "4", - "address": "경기 성남시 분당구 판교공원로2길 55 1층", - "operating_hour": "월~토 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 24:00", - "phone_number": 3180160773.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4AA1FE9D345240B29E84F8DFB971BD90, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqg8ATSNZv_aXdEvgUGNAkrhLzlDT5kHK_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMTRfNjEg%2FMDAxNzMxNTgzOTMzNTIy.pfqaSI_8ING7Su7WIAuG2euyQFTfqFn9EZc5nuq--l0g.PhAPBgvVrI1Rwq_ASqSuf4BlCmO9CfB-5tWIIczZUs8g.JPEG%2F3472590698369442376_20241114202938232.jpg%3Ftype%3Dw773", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 184, - "name": "최가네장터", - "category_id": "한식집", - "score": 4.5, - "review": "5", - "address": "경기 성남시 분당구 서판교로44번길 9 1층 102호", - "operating_hour": "화~토 11:30 ~ 18:30", - "expanded_days": "화,수,목,금,토", - "time_range": "11:30 ~ 18:30", - "phone_number": 317081900.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqgP7iCH5z_XBC1YK8aLVW4jW5MBCYJk0_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqfzQvCl5C_kRWysC6og6fF6XuhoufRdk_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqe6Br4qEW_8Z1LRM3EotMkvksh69JPKK_img.jpg", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 185, - "name": "오투닭갈비&부대찌개 판교테크노벨리점", - "category_id": "한식집", - "score": 4.6, - "review": "33", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 223호", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317398689.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBBF3EE241B56412F899286F8105F0AF2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faa15a428e0a5c06e82c74b8ec9cf7b90722afc76%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8682be163335bff3a7e6a7fb472b8b1d9cfbb27f%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 186, - "name": "행복한집", - "category_id": "한식집", - "score": 3.7, - "review": "8", - "address": "경기 성남시 분당구 대왕판교로 670", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDA7822ED6D4B426EABF7119EB3348B1E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fed38a7c25bfbffb674b08c09318fe40ff24b761d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff3dba1d4c0ecb75b7f651d36d0e2e080c7955cb1%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 187, - "name": "이백소면 판교본점", - "category_id": "한식집", - "score": 2.6, - "review": "16", - "address": "경기 성남시 분당구 대왕판교로606번길 31 호반메트로큐브오피스텔 1층", - "operating_hour": "매일 07:00 ~ 20:45", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "07:00 ~ 20:45", - "phone_number": 3180167689.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB906399BBB7943B9993608909A539B3C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F834FC3BD872940B3BDC552283090C0B1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F987880547f62b93a8a56727bdba12423ad35770c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 188, - "name": "조마루감자탕 판교점", - "category_id": "한식집", - "score": 2.7, - "review": "22", - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 129,130호", - "operating_hour": "월~금 10:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 23:00", - "phone_number": 316967500.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCBD7F63F81C044D4B182E88803359C39, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F528f1b1de36957aefc710c48cdc6ef7e10fca71b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6ca4c74ecece40c64fb04bd98e68cdbbbab27b5a%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 189, - "name": "한스족발", - "category_id": "한식집", - "score": 3.3, - "review": "8", - "address": "경기 성남시 분당구 운중로125번길 5 1층", - "operating_hour": "월,수,목,금,토,일 11:00 ~ 21:30", - "expanded_days": "월,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317021007.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2724873A544DC0B135, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F216DDC39544DC0B934, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F210693F291A243C191C565D7BDAEA49D", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 190, - "name": "우뜰 판교본점", - "category_id": "한식집", - "score": 4.7, - "review": "13", - "address": "경기 성남시 분당구 대왕판교로606번길 10 라스트리트 1동 1층 105호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317059252.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5CB624553BFE48A69A7830FED3872792, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9B29499791884FE48DE64CA194ADA3C5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAACBD346EE2F4CD89843956D3AF85D86", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 191, - "name": "고반식당 서판교점", - "category_id": "한식집", - "score": 5.0, - "review": "28", - "address": "경기 성남시 분당구 판교공원로5길 7 1층", - "operating_hour": "매일 16:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 23:00", - "phone_number": 316020721.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F737C62C3ED8B4FC2A689E553D9260245, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F051d6d48d12b5e5d7d9563cb32d036f6386611d7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F61bb8920d99fde0393df487118dca864f29c7b9a%3Foriginal", - "convenience": "WIFI\n주차\n휠체어사용", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 192, - "name": "육마니 운중점", - "category_id": "한식집", - "score": 4.1, - "review": "17", - "address": "경기 성남시 분당구 운중로146번길 11-4", - "operating_hour": "매일 10:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:30", - "phone_number": 317025888.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F2ECE04F8063B4B1EBC1549B975F349A8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F928475B8F372458DBA02DBF0B381DDAE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F07312A8BD9BA4161A7DDD0562D5BFF30", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 193, - "name": "근돼국밥 판교점", - "category_id": "한식집", - "score": 3.1, - "review": "40", - "address": "경기 성남시 분당구 판교공원로3길 9 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317071182.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5BA16C56895145E29B69A1731AF8611F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0EA51CEF55D64FD787F86085C806D7EF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAF966DDFDDE84BAAA961087CFA8D4161", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 194, - "name": "오봉집 판교유스페이스점", - "category_id": "한식집", - "score": 3.6, - "review": "30", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 213호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 316286676.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F67CF7846CBD7493FA50838C1F224AEF1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0681afc79022d89f33e4801b56e0b8ff86d2bdb9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F62e5756cf3d3d18520b073a720cc026baeda1ca6%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 195, - "name": "팔딱수산", - "category_id": "한식집", - "score": 1.0, - "review": "10", - "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움1단지 1층 115호", - "operating_hour": "월~토 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 24:00", - "phone_number": 316061020.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4BB41D1D61654F9382BAF87D54100472, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTFfMjkz%2FMDAxNzMzOTA4NzkwOTQ1.2BL9ZjSF0JLn0oRkKABEGD19g9BodBUtddZJe6XV1NQg.mQeDO8ziFTj0NABDembSpQK7u86vK2et3ufCJesVUIYg.JPEG%2FIMG_4260.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTFfMTQg%2FMDAxNzMzOTA4NzkwMjYx.72NpXsvEMc5kwuiP7oNlfOHjGbE1_PcUm_epMebz94cg.QyKvMxHTvv3Wl8liljWj-rkiqDgrkuQU1uHfVoZGtrgg.JPEG%2FIMG_4256.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 196, - "name": "도담", - "category_id": "한식집", - "score": 3.3, - "review": "10", - "address": "경기 성남시 분당구 판교로319번길 13 디테라스 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9F75CAB5631C4FB38041A4B14DF4E9E3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEE6029DC26174F988090F1058ABB4EB2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F551B778CD677489488F49422279B96FF", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 197, - "name": "삼군김치찌개", - "category_id": "한식집", - "score": 4.0, - "review": "2", - "address": "경기 성남시 분당구 판교역로 230 지하1층 B-117호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4A35DA1C3224499D9C4EE52EF55077A3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC69C965E3CD5430A9A91F8FA2250728B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMTVfMjUg%2FMDAxNzMxNjczNDYxNzg0.Q4_1rhm5Kb3GjKQn5AsnwGIkNlqm-GZxwkTQHpQJ-bgg.LGMH-ErxH3lqIrHylPp40VgzedeeMnPqJLATnO2LBBgg.JPEG%2FIMG_1756.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 198, - "name": "논산집", - "category_id": "한식집", - "score": 0.0, - "review": "3", - "address": "경기 성남시 분당구 판교로319번길 14 성남판교경기행복주택 근린생활시설동 1층 1호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF3AE390979874474A0118D92C5094794, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMjlfMjk4%2FMDAxNzA2NDk0MzQwNDE5.TULrtikwSiftg0tAS51VcquYI_btHH-hBRsSPZGsihgg.3jtUJrGk2rmwJYPBZVguO4AnT_HUa3yCauGgPDVyhAcg.JPEG.dhrudwn9%2F20231223%25EF%25BC%25BF192516.jpg%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMjlfNzcg%2FMDAxNzA2NDk0MzM5Mzky.zVb63y0Vtld1y_uloRs9Si51WQawhlt_6mwP2-GHThYg.YAtvNBFC9xyEJd7pE_HbHD58y2QD_2PfwYOwFBWP-z8g.JPEG.dhrudwn9%2F20231223%25EF%25BC%25BF180853.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 199, - "name": "우화", - "category_id": "한식집", - "score": 3.5, - "review": "136", - "address": "경기 성남시 분당구 동판교로177번길 25 2층 212, 213호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317074775.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F44F729021D2243F19C8AE6CC0F2EB6FF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MTdfMTc1%2FMDAxNjkyMjQ0NjUyMjc4.csULXrBSKeX2jbbzbO6g1TVRsoE4awl7UvA7wq9pRtcg.uM5mOnYxJ3YAGh_E47nOmTw4RWPAN4yhuBI01PTFhf8g.JPEG.sweetsalchow%2F1692244543209.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MTdfMjA0%2FMDAxNjkyMjQ0NjQ1NzYy.vPm8P5Klh65yoNExeVjfKDN_j97KuvUXW-K35g1gxmsg.nvVJdoFsS_Z8IGL7sKybq4yojIkXjdZV_lRf6xJjqm4g.JPEG.sweetsalchow%2F1692244507732.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 200, - "name": "일품양평해장국 분당백현점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로52번길 12 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317079957.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 201, - "name": "삼산회관 판교유스페이스점", - "category_id": "한식집", - "score": 2.8, - "review": "96", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 지하1층 B108호", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 1026382909.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF2F901323AE543618D3B6ADBA26E4EFA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Feb932b58761d2a132772494e3aae3c142a4a4070%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb846b4888714ead57cd7ad6a8b1b53c99ec38d69%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 202, - "name": "본죽 동판교점", - "category_id": "한식집", - "score": 2.8, - "review": "0", - "address": "경기 성남시 분당구 판교로 374 스타식스코아2 104호", - "operating_hour": "매일 09:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:30 ~ 21:30", - "phone_number": 3180166288.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd4a6507a63a73006cf0bebe9ac66a48db353465e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1FDA4AC4EA404653B45B1D9EA926607B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBD112EA431254EC392D7A1F61BEBB0EE", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 203, - "name": "재크와콩나물", - "category_id": "한식집", - "score": 3.9, - "review": "15", - "address": "경기 성남시 분당구 판교역로 231", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA3MjlfMTg5%2FMDAxNjkwNjIzNzkyMTUx.1DU-g8kbrTDrrDjZfuoJEBbDdYdvmd8Q-wCLQ9CMN10g.xr36Ssjq9WAF7ywRvOV4kPTismJQaIk_PAcmHSFKQ04g.JPEG.seaside098%2Foutput_2758742665.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF977DB4DCED745B6866F0E4895CCC8D1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd3560b98287d6e355b70bf649f316edd4a872d42%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 204, - "name": "남원에덴식당 판교", - "category_id": "한식집", - "score": 2.5, - "review": "14", - "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 2층 233-1호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317813119.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8E90A4BE7C934C7FAD7708FC061377A7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcce17816757ccba69548175aaf24b5f65129ce80%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDRfMjg5%2FMDAxNzMzMzE1MzI1NTg3.ywdBn1X7MJx4IDqELJw-4NxwOyNCFoLDxs1kQcBUiZYg.po7sQASuwrwVC7TB7ttuIuiSerDHZNiRqDe070tva1cg.JPEG%2FIMG_2274.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 205, - "name": "통통낙지마을", - "category_id": "한식집", - "score": 4.0, - "review": "13", - "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 2층 209호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FFAEF469431E549EF8126F7F75F54E5F2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMDZfMTYg%2FMDAxNzI4MTk5ODM5NDk1.v-xV_MxaeXZTcrNV2NxfPuvBj3BJzVI-6eturrGA-Nwg.1ed04_-MvFTaWTeBR3A9K_1T8eKfc_T8c7vjzfL0r2Ig.PNG%2FSE-e546c2d9-14bc-4050-a8ed-a574cd4634c2.png%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDRfMjYz%2FMDAxNzI1NDEwMzI3Mjc0.obYYLtQ4QyUX59Tb8zwxJIxiDEvImGKpXwVrjokn3Y4g.pzTAPfuGvLO_Ro7Lo3ed64yFZn6-Jd229ZfHrJAhoXog.JPEG%2FIMG_5739.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 206, - "name": "강창구찹쌀진순대 판교테크원점", - "category_id": "한식집", - "score": 2.0, - "review": "50", - "address": "경기 성남시 분당구 분당내곡로 131 지하1층", - "operating_hour": "월~토 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:30 ~ 17:00", - "phone_number": 316017420.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEyMzBfMTUx%2FMDAxNzAzOTQ3OTUxNDM1.CWUFwAx_4913HVJH-DllAUiWUIa8C56OsqOjQMQ8qvsg.n0e1JDbcUJzUn4mAgxDJoR1L2CQckhx2YZKr0idX7tYg.JPEG.linmin1415%2FSE-881789a8-af5b-4b92-9bf2-3d8cc2f76017.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F305BECC5F0854E9098B91F4B8035CF9B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc22d5f21e5b968b99df05ed0c2ced6942c7d4b4d%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 207, - "name": "강릉엄지네꼬막집 판교점", - "category_id": "한식집", - "score": 4.4, - "review": "13", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1, A동 204호", - "operating_hour": "매일 14:50 ~ 16:50", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:50 ~ 16:50", - "phone_number": 317242666.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1f2e2b6bdb3163dc9a82a4cc46c5ccbf4f54ea79%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F25104075cf515993c4aee7884e096e2e46bc02bf%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1f2e2b6bdb3163dc9a82a4cc46c5ccbf4f54ea79%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 208, - "name": "미소 한우소고기국밥", - "category_id": "한식집", - "score": 4.1, - "review": "4", - "address": "경기 성남시 분당구 판교로255번길 9-22 2층 212~213호", - "operating_hour": "월~금 10:00 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 21:30", - "phone_number": 316288833.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7A45B64911D84572939931596311D66C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0DF94C4F6EB24EF5B19CE99282B7476A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MDlfMjc5%2FMDAxNzE1MjEzOTAwMTUx.yb3Spp9_C2BR43U1MLdD6UcsVa8jyeMmK4GMucuTu_og.dHVbJwZlwQdVEVxYRZYMqnEL8_EOwH6kOy1-ciHXJdkg.JPEG%2F20240508%25EF%25BC%25BF114502.jpg%3Ftype%3Dw773", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 209, - "name": "만석상회", - "category_id": "한식집", - "score": 3.3, - "review": "9", - "address": "경기 성남시 분당구 분당내곡로 117 크래프톤타워 지하1층", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F85941F8503F0477FACFA9A3E41CA2485, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4dbd54acc65f364425bcdf6cd55df96a9ef2f9e1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMTZfNzgg%2FMDAxNzA4MDg3NzA4Mzcx.7ZBansqCgfzOadwou4qK-AUYgr3B36NOjaFuDKdrWK8g.LwddWneCHtypztYPvUhSdoqnPM8j1zONaIplSORXw3sg.JPEG.skystar29%2FSE-525b1e7a-ccc9-11ee-b3d1-83ad971af5a7.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 210, - "name": "꾸면돼지", - "category_id": "한식집", - "score": 4.8, - "review": "28", - "address": "경기 성남시 분당구 동판교로 91 백현마을4단지 상가동 1층1110호", - "operating_hour": "매일 16:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 23:00", - "phone_number": 317031026.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F85BEB507BD8B4EF1B242E4A855585570, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F97962b5554228eed3fcf4656ab0c1ab2b5163731%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqlUYWJHCA_c0umHUGRsPZxq8MGvYc3mk_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 211, - "name": "고기원칙 판교점", - "category_id": "한식집", - "score": 3.7, - "review": "20", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 1층 140호", - "operating_hour": "월~금 16:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 23:00", - "phone_number": 317242811.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC089A53D28974DB5B0EC739157FA4022, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA0MThfMjEw%2FMDAxNjUwMjg5ODE5NTA3.dDDeZNRcYsGjgDs9R1d3NOeGJPpERX_pIJLKDW-pPz4g.XThOogdaVSTv3Y6SCJEQCBGMYiYQIkSXFfV33BgOe4Ug.JPEG.heezzang5746%2F20.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA5MjJfMTQg%2FMDAxNjk1MzM2MTEzOTg4.KP6UANkyTkkbaIV5fKeEjs1DjDl7njo-69BmPRlrBr4g.x222lDdeQg9ypLmCNi0z_gBspFFweZ6yOrCgxbcY1Jgg.JPEG.tjk5894%2F20230921%25EF%25BC%25BF175813.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 212, - "name": "담소소사골순대육개장 판교2호점", - "category_id": "한식집", - "score": 3.4, - "review": "8", - "address": "경기 성남시 분당구 판교로255번길 9-22 우림더블유시티 1층 124호", - "operating_hour": "월~금 06:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "06:00 ~ 22:00", - "phone_number": 316288821.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC3F1DAD729E54446BEA24EFF4F49AF4F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCA112EAD20B74019A3B02C934A9EFFFA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MjNfMjk1%2FMDAxNzIxNzM1MzA3MzY1._7z6RZ_nsnIc9UyMhcJNSiZttewWY26I5TMdIfGQ-fMg.EHvaA0ukvqrw-qXy59w60ui6x_vXnP1EXX6kAV6IuEAg.JPEG%2FKakaoTalk_20240722_134125042.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 213, - "name": "이든활어스시", - "category_id": "한식집", - "score": null, - "review": "5", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 220호", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": 317398663.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2BEFCB427B624F3F99EA8CD31A1EB448, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F55759BA5BE7249E0AD86909A81A3597C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9ECB6285573D4CD6AD789710E9E4DB69", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 214, - "name": "한촌설렁탕 판교테크노밸리점", - "category_id": "한식집", - "score": 0.0, - "review": "41", - "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어 S동 B129,130호", - "operating_hour": "매일 08:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "08:00 ~ 22:00", - "phone_number": 317893690.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7BD6CF6A0E8A441EB44391EA3768C1C0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7DA4FA23AA404D2FBCC4901C4E70F493, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1BE8D11F22534F768ABA472262837FD7", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 215, - "name": "종가감자탕 명태조림", - "category_id": "한식집", - "score": 4.3, - "review": "5", - "address": "경기 성남시 분당구 운중로138번길 28-6 1층", - "operating_hour": "매일 10:30 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 23:00", - "phone_number": 317028289.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F733A01D91E944FC9A6253E966203223E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F404C549424754BF69325D2B93F8BC474, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA7DC77BA8CFE461BB03BEB667002E1DE", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 216, - "name": "부대집", - "category_id": "한식집", - "score": 4.1, - "review": "17", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 224호", - "operating_hour": "매일 14:30 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 17:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2DB85A36677944728D839E26FF227859", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 217, - "name": "군산오징어 판교테크노밸리점", - "category_id": "한식집", - "score": 3.3, - "review": "20", - "address": "경기 성남시 분당구 대왕판교로 660 판교테크노벨리 유스페이스 A동 320호", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": 316281979.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F242C913A55B0A58C28, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2329E53655B0A5A827, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2638A74555B0A5A31B", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 218, - "name": "듬박이찌개 판교점", - "category_id": "한식집", - "score": 3.5, - "review": "28", - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 128호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 316967575.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB768DA23093B4E09938ECA399E1DA8E2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4b17424a1b56081d76f6d91d95d0ec5028e0c870%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F432DA62156F642188A13A05FF43E4532", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 219, - "name": "지안이네집", - "category_id": "한식집", - "score": 4.8, - "review": "0", - "address": "경기 성남시 분당구 판교공원로2길 66", - "operating_hour": "월~토 16:00 ~ 22:50", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 22:50", - "phone_number": 3180172170.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7db4537164b37aa22bb4f67a70efc662122c142f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F40289253e50d2224df87dcd04d620cbb40f85a59%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fbc2a5d1126005b4a25495c47eeb781310583e005%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 220, - "name": "토평한우소곱창 판교점", - "category_id": "한식집", - "score": 3.7, - "review": "11", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 A동 1층 121호", - "operating_hour": "월~금 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F76FB8C521B0149C4B2D038A8DEA5B7A1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3dcc8ce07a5d01710a1a39e3945a1b92aa191ab3%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fccb6eab8f65a614a8aa737b7506c0662a77cc577%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 221, - "name": "봉추찜닭 판교테크노밸리점", - "category_id": "한식집", - "score": 3.2, - "review": "12", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2관 219호", - "operating_hour": "월~금 11:00 ~ 20:40", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 20:40", - "phone_number": 316286981.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAE3464027C5F4D70ACEB852A5A429FC1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqdgNH3loP_C1qCf73kAMKhZNOdqHzfW1_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F09222C439E4C485BBF68682026D1198B", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 222, - "name": "나봄", - "category_id": "한식집", - "score": 4.5, - "review": "19", - "address": "경기 성남시 분당구 운중로 128 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180168999.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 223, - "name": "토담정육식당", - "category_id": "한식집", - "score": 0.0, - "review": "7", - "address": "경기 성남시 분당구 판교역로10번길 26 1층", - "operating_hour": "화~일 11:00 ~ 23:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB08F1F2A2F7947E3B00C08D21100EA9B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fphinf.pstatic.net%2Ftvcast%2F20241129_257%2FkL1sc_1732880032936cpVxO_JPEG%2FPublishThumb_20241129_203339_285.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjlfMjAg%2FMDAxNzMyODczOTY2NDMz.0FGuqht-9TDWNd0zetvYV5wf0GoUgBrRE-HgAFsEN7Eg.JIwjMVjZwYcQvlhWghN08K4rE5eIo_byaCGB1sL_fIIg.JPEG%2F15.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 224, - "name": "육회한김스지 판교점", - "category_id": "한식집", - "score": 3.0, - "review": "19", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 123호", - "operating_hour": "월~금 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 01:00", - "phone_number": 317242580.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBD57994A733543A28A4C4184049CB43D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdee6fa2fbcc4163b4df03b9d773af24beb8e0c39%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F96d75241431acad4b71d0e6571ebe2a151cae6be%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 225, - "name": "기달임", - "category_id": "한식집", - "score": 4.5, - "review": "40", - "address": "경기 성남시 분당구 판교역로 240", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FE12BEC277A2D41B6BC6C7D41FC47C3B0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3ADABF97D2FA4B189EEA00CD28D18F9C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4155e9cb1aabce2ff24b9ee72d470a9b2239414428cf87a06769d3f4af1d39a1", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 226, - "name": "집게집 판교직영점", - "category_id": "한식집", - "score": 5.0, - "review": "54", - "address": "경기 성남시 분당구 판교로25번길 6-2 1층", - "operating_hour": "매일 12:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEBC2911D11F04001B4AB52AEF06B2DC3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F993796dd015cc30f8172a44031e7a6b707bbad0e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fab3278d8c980a3d6e68c8d63f69201d8a5542c30%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 227, - "name": "봉황칼국수", - "category_id": "한식집", - "score": 4.8, - "review": "33", - "address": "경기 성남시 분당구 운중로126번길 7 1층", - "operating_hour": "월~토 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:30 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2C00BD73FAAD49288153FA7BE4889070, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0591b5aa675282673eb06ecf638baf48326fc776%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3851ba52ea1bffce71da169c406a52fc0f95fc1a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 228, - "name": "데블스램앤펍 판교점", - "category_id": "한식집", - "score": 2.9, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 판교테크노벨리 유스페이스 107~8호", - "operating_hour": "매일 10:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqsYUzey40_SUqAYHtYACN40HrORtk5l1_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqsYUzey40_SUqAYHtYACN40HrORtk5l1_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqs1PRiamL_gPexLIs0z795tRTd3f4Kgk_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 229, - "name": "대가국밥쟁이 라스트리트점", - "category_id": "한식집", - "score": 1.8, - "review": "5", - "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움타워 1동 2층 212~214호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317096117.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6A6EE075DD6E4CF4813CB56944B5AC1C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcee040b8407cb404887ec759d56b45b45d005b25%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjExMTZfNjEg%2FMDAxNjY4NTU4MDE2MTgx.pga6VIjJuuUoDsF5d9bw2mN3FRe6fBfCumARSBg2KW0g.LwEkSo61sIP5XFrDG5cj4SFmxz21uxG7Mv9nf9sO3fog.JPEG.93kwiyoung%2FIMG_0316.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 230, - "name": "원할머니보쌈족발 서판교배달점", - "category_id": "한식집", - "score": 3.0, - "review": "10", - "address": "경기 성남시 분당구 판교공원로5길 3 1층 103호", - "operating_hour": "매일 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 24:00", - "phone_number": 317031330.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F60BAFE6CC18B42339D3EB8F353D767AD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF8581C67205346BBB3C85E3368922094, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FE14C6324166944C0A5F94C4A01F0A999", - "convenience": "편의시설 정보 없음", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 231, - "name": "종로계림닭도리탕 원조 서판교점", - "category_id": "한식집", - "score": 5.0, - "review": "9", - "address": "경기 성남시 분당구 운중로 135", - "operating_hour": "월~금 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F269B7C566FC94C81971E26AB5FACA5B3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff40fd8ebd12b903bbab84209e485a55cd1f13a45%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9e16fdc6727cf9e7a4a3a49a7ad787e2a69092d9%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 232, - "name": "불고기온소반 판교본점", - "category_id": "한식집", - "score": 4.3, - "review": "3", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 B105,B105-1호", - "operating_hour": "월,화,수,목,금,일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 50255514977.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA7F5C191DC594A87BAACD76CABF71984, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F0D69725A32794D8E99E0176437849F1E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5FFD201EE08345D3A578758348EC5FDC", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 233, - "name": "예다온", - "category_id": "한식집", - "score": 3.5, - "review": "38", - "address": "경기 성남시 분당구 운중로126번길 10", - "operating_hour": "매일 11:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:30", - "phone_number": 317029222.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 234, - "name": "정인면옥 현대백화점판교점", - "category_id": "한식집", - "score": 3.2, - "review": "106", - "address": "경기 성남시 분당구 판교역로146번길 20 9층", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 3151701932.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD2547965382C490F8B8A1AFF4B80D226, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7b266ac4b0ac8804d40f35417f67522d70be9f24%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8843045076e9c6aa02d90cbc90dcdafcf7fb3402%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 235, - "name": "만리어 장어 판교유스페이스점", - "category_id": "한식집", - "score": 3.5, - "review": "25", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스몰1 지하1층 A동 113호", - "operating_hour": "월~금 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 22:00", - "phone_number": 1026697017.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F78896D430EE3432385C063F804A9629A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F3CF90648696940299A5FA4ECB18D274A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F1E8D07650898447A8F42F143A4270EC3", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 236, - "name": "인생아구찜 분당점", - "category_id": "한식집", - "score": 5.0, - "review": "5", - "address": "경기 성남시 분당구 동판교로 49 1층 105호", - "operating_hour": "매일 10:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 24:00", - "phone_number": 317021580.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC82A3D7D2BE74352BF68D10F170CFFFA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F59cc741130eb20b55782aa7e73a5d8351651540e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5DB62BE20FF44A72B271BA5E4B009447", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 237, - "name": "남원추어탕 판교점", - "category_id": "한식집", - "score": 2.0, - "review": "3", - "address": "경기 성남시 분당구 판교로 375 메가스페이스1 2층 201호", - "operating_hour": "월~금 10:30 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 21:30", - "phone_number": 3180179991.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF0A51EE412164DED8F5FDC0325631EA3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F28C24FE721EA49ECB68F9273D7967247, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F55DA69CCF3EE42DC972CC05020ED9FCB", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 238, - "name": "달맞이국밥", - "category_id": "한식집", - "score": 4.1, - "review": "4", - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 지하1층 B102호", - "operating_hour": "월~금 11:30 ~ 20:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 20:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE9406D0CC0D24786AFA9594C0A1C3EB9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe6beb6642d1221a65918c6b00961926e1604e232%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqjuvnRZ4V_STlC0158vGheMfboZmKTc1_img.jpg", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 239, - "name": "박가부대 판교라스트리트점", - "category_id": "한식집", - "score": 2.8, - "review": "31", - "address": "경기 성남시 분당구 판교역로 145 알파리움 2층 210,211호", - "operating_hour": "월~토 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:00", - "phone_number": 317049806.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F403E75E3533141AEADE82B94C9086259, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa7ffea549266abe173d058b4b48916b48323095c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb96e1d2b72761de54744a5e9b54b4ba53711749c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 240, - "name": "명품보쌈호프", - "category_id": "한식집", - "score": 3.6, - "review": "5", - "address": "경기 성남시 분당구 판교역로 230", - "operating_hour": "월~금 14:30 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:30", - "phone_number": 316987800.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd35c26e97bf302173d9894d170c430ce775385b2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F03ab51cf76d9e68c80581e0d68ef767e77842d10%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F199ac31876109aca815cab078ab7cce45166a147%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 241, - "name": "통큰곱창 분당판교직영점", - "category_id": "한식집", - "score": 5.0, - "review": "46", - "address": "경기 성남시 분당구 동판교로 91 백현마을4단지 상가동 B105호", - "operating_hour": "화~일 16:00 ~ 24:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "16:00 ~ 24:00", - "phone_number": 7046470678.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDA0AFC067D974F27B3C42972A9B8264A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd4ea6424a1ecc7046fed04632f9339823cf1e48d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6b2db6e8d4ede5d24b968ca28efb656c569822e2%3Foriginal", - "convenience": "주차", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 242, - "name": "김치도가 판교테크노밸리점", - "category_id": "한식집", - "score": 4.3, - "review": "15", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 B104호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 316983592.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD2D0BBC4A330416C91D8D2D92A39E14B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F81064F9F75B8446A919A3CEE9BFC4AE1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F11388F8CD620433C89D81F577BDADAE6", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 243, - "name": "이치류 아브뉴프랑판교점", - "category_id": "한식집", - "score": 4.7, - "review": "1", - "address": "경기 성남시 분당구 동판교로177번길 25 2층 202호", - "operating_hour": "매일 12:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 22:00", - "phone_number": 317070650.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F31EB30E660C5425B830F946B79CB61F6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9EC7D4CA98754B59850FC619256F3BB2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F676877F01F164AD68C44DF6C6522625F", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 244, - "name": "규정공 더판교", - "category_id": "한식집", - "score": 4.0, - "review": "4", - "address": "경기 성남시 분당구 판교로227번길 6 브릿지타워 1층 110호", - "operating_hour": "월~토 14:30 ~ 16:50", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:30 ~ 16:50", - "phone_number": 317021661.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1160784502, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1F81FE87835B4CABBCB1A689ECB7F2B5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F41AFB72158504C1A8AE4DCEB65263505", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 245, - "name": "방이옥 판교점", - "category_id": "한식집", - "score": 1.0, - "review": "21", - "address": "경기 성남시 분당구 대왕판교로 660 1동 2층 209-4호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F693B2751512F4030B1CF1682A40EABAD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTRfMjE2%2FMDAxNzM0MTU5Njc0NTkw.kW8v15gcuxxpPjLBjjIldoBiI2J68IiuGOG9kU5HgRQg.q3a98tpqZZj5WCSjDJ3rsMX_nGutOxjKnvdTqyA3Iy8g.JPEG%2F900%25EF%25BC%25BF20241214%25EF%25BC%25BF133246.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTRfNjMg%2FMDAxNzM0MTU2MjE2NDA1.1JTK6ylfTLu_XBRr3PfRB7xn5Ews66fxv5nN9Mwb2k4g.9nYoSaPWZl_iBEro96wtRY3Y6tDOuUR_hr1ZG2WsWDog.JPEG%2FIMG_6093.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 246, - "name": "킹콩부대찌개 동판교점", - "category_id": "한식집", - "score": 3.9, - "review": "12", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 2층 207호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 316983240.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqeg2XW2Z1_AgQw3ktUHW56xKK21x7JKk_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqeg2XW2Z1_AgQw3ktUHW56xKK21x7JKk_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcVtCMIhp_HUHmGnhrgPL7OJUNSoX8p0_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 247, - "name": "판교순대", - "category_id": "한식집", - "score": 3.0, - "review": "15", - "address": "경기 성남시 분당구 대왕판교로645번길 36 NS복합건출물 1동 지하1층", - "operating_hour": "월~금 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCC63E4DE19D44192A60A327185451FF1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8c334fc2fba1f533c0df9e4ded7b3ddf67315e6a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMTlfMTc1%2FMDAxNzA4MzQwODgwMjI3.HLtCNOdntaFOONL8J0SviFTWyyRL72ZK4ARzBb69HPcg.CMzzYBmoCP_gC5HBlgj6pkXH1caUqjOSq_oVvN8isWog.JPEG%2F20240219%25EF%25BC%25BF183144.jpg%3Ftype%3Dw773", - "convenience": "WIFI\n주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 248, - "name": "킹콩부대찌개 서판교점", - "category_id": "한식집", - "score": 3.0, - "review": "9", - "address": "경기 성남시 분당구 판교공원로5길 11 1층", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 3180160334.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8046FE43A83B4DBCA6C94FFCA4E3C9D9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqeqVROx9g_7sSLqkj4zq1aC86dq5Uah0_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2225134758DB0F3917", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 249, - "name": "담소나루", - "category_id": "한식집", - "score": 4.1, - "review": "2", - "address": "경기 성남시 분당구 서판교로58번길 8", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180173651.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F735b4015f1aff87d41c0a3f05bebb5f04b5a4db2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F735b4015f1aff87d41c0a3f05bebb5f04b5a4db2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEyMDFfMTk2%2FMDAxNjY5ODc2NTUzNTEy.Ihq7vGan5fx4YVzNfsSAw82fijuaDcR8jKzDwIJN9nMg.AWLyU1wP62GvSt6ihfuBSfu1836K4NKdPQF9Yrcfbxwg.JPEG.yoonkyoe91%2FIMG_9450.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 250, - "name": "본우리반상 판교우림W시티점", - "category_id": "한식집", - "score": 3.0, - "review": "5", - "address": "경기 성남시 분당구 판교로255번길 9-22 2층", - "operating_hour": "월~금 11:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 20:00", - "phone_number": 316288855.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5B84ABD82FEF4BD7B65C78564932BA83, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MjlfMjk0%2FMDAxNzI3NTc3OTMxMjYz.b0YPQT1A_vogEpXC0BiZgcF43Sm2-mbcZEX5z7I_hCAg.SE12v37214pBSk9afGGQmSaztWyTuTI6zFDUclCjedsg.JPEG%2FSE-8BE0D8EC-4CB3-4BEB-80F9-A8F72185B44A.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MjdfMjU3%2FMDAxNzIyMDU4NDg3Mjk0.r4Cr7HPMg9rVuWNhef-vPvvymRm8cOSzzzsWp5SlyDUg.yfjamNqPJ3y34kmuQLCvRhIZU6gDsHAN_gG00RflVI4g.JPEG%2FKakaoTalk_20240726_123423480_05.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 251, - "name": "판미각", - "category_id": "한식집", - "score": 3.8, - "review": "4", - "address": "경기 성남시 분당구 판교공원로1길 59 1층", - "operating_hour": "월~토 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 22:00", - "phone_number": 317818999.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdc8d7dcdf99b81d523cf7caad6dd411d393a6fbe%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FCC178AC1A67E4403B34B3E54FC9516DC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fda6d85a4d30dc1c721553d765ebf97784188d882%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 252, - "name": "기대만족 분당판교점", - "category_id": "한식집", - "score": 4.2, - "review": "1", - "address": "경기 성남시 분당구 동판교로 155 A상가동 1층 102호", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 50713348464.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3BD415A26A554916B496AD09BBA17C31, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCE8054938FB24C52B23C257E53EE88ED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F64E1BBF7074C4A4FA1A0559016574FD7", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 253, - "name": "속초코다리", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670 B동 2층 202호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317029777.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2349D34D583531610A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2566C5485835316112, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2420B34D5835316236", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 254, - "name": "월선네 판교역점", - "category_id": "한식집", - "score": 3.0, - "review": "6", - "address": "경기 성남시 분당구 판교역로192번길 22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6882D8833793484CA8DC24D676780DE1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMTdfMjg4%2FMDAxNzI5MTUxNDg2OTY0.SRslbunSiA3yeXDz3qSPj25LhjopBJOPrBMbKOmhbYAg.C6QyzfpZvya4-LagVr_a2IxLvXECsnZ22mRet5yJwu0g.JPEG%2F20241017_125618.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMTdfMTc1%2FMDAxNzI5MTUxNDg2OTg0.smuHfOJVmhnsypsjweD4wJX9AUcoe-vRagppr8aTHkYg.GGRBefcmSNuf-AABJSs0r_cAKNRDA75DIZCSA6etS1Mg.JPEG%2F20241017_125553.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 255, - "name": "닭갈비야", - "category_id": "한식집", - "score": 3.7, - "review": "15", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 2동 B114호", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 317013666.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD7A71E92497D423D90506386380E5958, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6a265c72106183b2cb1f836059367069a27bfe5f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqetOLJAY0_a05kTr3Vm1kNM9FKlhLcj1_img.jpg", - "convenience": "주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 256, - "name": "장인설렁탕", - "category_id": "한식집", - "score": 4.4, - "review": "3", - "address": "경기 성남시 분당구 운중로 131", - "operating_hour": "월~토 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:00", - "phone_number": 317095888.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F33E8D126F3154F789DC008B83FC3EC7F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB6F0E7AB434E4755AAAF0C3255ADF822, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA79B01ED2A1F47B0813EBB313B6784D8", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 257, - "name": "해질녘", - "category_id": "한식집", - "score": 4.3, - "review": "20", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1동 120호", - "operating_hour": "월~금 16:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 01:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 258, - "name": "손에손잡고 판교직영점", - "category_id": "한식집", - "score": 4.8, - "review": "2", - "address": "경기 성남시 분당구 대왕판교로606번길 47 1층 102호", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2029EC2016EA43C99E76EC8E98200055, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2089C46C0B1B4DD18A8C0E37C2113D6B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3CC5AAD93E71444180876048DF8C0CC1", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 259, - "name": "모박사부대찌개 판교점", - "category_id": "한식집", - "score": 3.5, - "review": "3", - "address": "경기 성남시 분당구 판교로255번길 9-22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316287776.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8DB8C07F433A4FBCA4AC6224BA82CA1B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB2ABD7DA50B6418BB51DED0A4F918D64, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbEWmCz%2FbtrRhJNBFi7%2FGAu7aN3RvuKVps623gz9wk%2Fimg.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 260, - "name": "제주상춘재 현대백화점 판교점", - "category_id": "한식집", - "score": 3.1, - "review": "22", - "address": "경기 성남시 분당구 판교역로146번길 20 9층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC7EC601327E34623952A67B2D83C3865, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F84bb7837e1eb56439361865a4adb6e20e8b0eadc%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7710a8f45919bd957b5e08441bb3f699f8a1aa3e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 261, - "name": "식껍 서판교점", - "category_id": "한식집", - "score": 3.1, - "review": "38", - "address": "경기 성남시 분당구 운중로126번길 12 1층", - "operating_hour": "매일 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCA36A975149A472EA49A20714DDF5A0D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F189fdb3fe441fdb4adfc05897e77ef9c70f5fef0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe94000f57638a87f9d7ca12cdbd8654333dc2cb2%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 262, - "name": "일점가 판교디테라스점", - "category_id": "한식집", - "score": 2.7, - "review": "11", - "address": "경기 성남시 분당구 판교로319번길 13 114호 일점가 판교디테라스점", - "operating_hour": "월~토 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 22:00", - "phone_number": 316097811.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD660D36CF542443D9BB47FB62BBFCE61, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FISA1F%2Fbtstg1oXQ2z%2FIZeGQKs5zoULtufe6aNJY1%2Fimg.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzExMjhfMjE3%2FMDAxNzAxMTc4MTExMTk5.0BeTGFIWXCZjOFXO9Jr1A8H18NW9rA36L7p-7jwMZ9Eg.DXAf8swEBXyMvLyZxeVo82i8j0O-G94jCp-Oyj0mh3Ug.JPEG.songee914%2Foutput_3254301923.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 263, - "name": "죽도령 판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 240", - "operating_hour": "월,화,수,목,금,일 10:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,일", - "time_range": "10:00 ~ 23:00", - "phone_number": 5079787068.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F07C4093C58204233A41339A2033986E5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5028BEEAFC184C87AA506119E7060B03, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F22F44CB4CA854E6A92710D97647FC884", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 264, - "name": "여의나룻 판교점", - "category_id": "한식집", - "score": 3.8, - "review": "81", - "address": "경기 성남시 분당구 분당내곡로 131 2층", - "operating_hour": "매일 15:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:30 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCF850E26BBCE489089CF4BDA78558651, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F727654ABFC58492F85CE173A662BEA66, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF764ED0713EE4359AD468ADA127E12A7", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 265, - "name": "구구족 분당판교점", - "category_id": "한식집", - "score": null, - "review": "1", - "address": "경기 성남시 분당구 동판교로 91 백현마을4단지 상가 지하 1층 108호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317039982.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD8279CF8ADF34E96BA44E44E93DAACEB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDEED99A234F34E9DAC41CE8756B0EB7C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAA22929876C64914A7A2AE9FF1A69173", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 266, - "name": "한뿌리죽 현대백화점 판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 백현동 541 지하1층 현대식품관 내", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701071.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 267, - "name": "신사감자탕&쭈꾸미", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 2층 207호,208호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F28EDF3870C224B3995BC8E6767CA9768, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8afebf55fd954cc5d29d9b54b5b7eeb6db23d050%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9112240429581c587105285b63540c3148b3738b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 268, - "name": "육대장 판교점", - "category_id": "한식집", - "score": 1.0, - "review": "2", - "address": "경기 성남시 분당구 판교역로 230 B118호", - "operating_hour": "매일 10:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB3C6BA1848D14970A6A664464FB5D0AB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F22515B4C5697364B0C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMTVfMjc4%2FMDAxNzI4OTk2MzE5NTI2.soh1mCPzloO0s8pYu0pUkUO9lemR8BV26_f9EXlW_kYg.g983EYMOzEAQawrH13fRtllIJoN2KKyc38hEuqDW0vAg.JPEG%2Foutput_3452271106.jpg%3Ftype%3Dw466", - "convenience": "주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 269, - "name": "서울황태 판교점", - "category_id": "한식집", - "score": 5.0, - "review": "18", - "address": "경기 성남시 분당구 판교역로192번길 16", - "operating_hour": "월~금 16:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2FA14C1A930A4F59A5BDF92C9CAAA44D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MjFfODgg%2FMDAxNzE4OTcyMDUwNjc5.mhVRl2yma74bbddQUk_eI8unEuNC5_MwL1yUKF9z4G0g.d5BnB0THnIQ95DXPa9H6sj-7DjrKdPVJxzTN5knp4eUg.JPEG%2F20240620%25EF%25BC%25BF183016.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MTFfMTcx%2FMDAxNzE1NDA4NTM0OTUw.U9DZztvXARBSAchGF5Qpb0Tf3Y3Vp0hSPTBVZJE3p04g.T31iDjba-I2-8AVP7N4gKu11JxO5dG-fS3n2VUDY7GUg.JPEG%2FIMG_3953.JPG%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 270, - "name": "제비면가 판교본점", - "category_id": "한식집", - "score": 3.8, - "review": "6", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 B114호", - "operating_hour": "월~금 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 21:00", - "phone_number": 316982959.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F819AFB6094144067B19AFB422F2CD5DA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEyMzFfMTIx%2FMDAxNzAzOTg5Njc0MTM2.XMja4OlHUJUOQ9UjR2r0i_VBUrY2bZ8BPFcijdMhUc0g.TG8dPCZxLoByJdEESR2gspdaZOtcM2UDZD7jOVQPbAog.JPEG.iu4862%2FIMG_7111.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMDRfMjEz%2FMDAxNzA0MzIzMzY4NDY3.4QG_p8v4MQ_FgdU_HvmFeXdjtPa73TVg4KOfvtBHD4gg.4jbT2qJmZIdzpZ7O_ZOTwbLsOcx8YeIX2kfaDf2ao1Qg.JPEG.iu4862%2FSE-77903DE2-BDCF-4080-8E27-45C8B395AF3B.jpg%3Ftype%3Dw966", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 271, - "name": "채가원 현대백화점판교점", - "category_id": "한식집", - "score": 2.8, - "review": "40", - "address": "경기 성남시 분당구 판교역로146번길 20 9층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 3151701908.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4E698671E5694AFB83B9DEDC15EAA6B5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEyMzBfMjcx%2FMDAxNzAzOTI0Mzc2MDMw.kjoYusrVNIPygrBOW4DQmZfk4_L7Zr7QTo0enMyAeoYg.13AxjHVCcrGjE5qHIua_NIcCJl_4l9dAyqICfcHkLhQg.JPEG.alth1114%2FIMG_1207.jpg%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MTRfMTk4%2FMDAxNjkxOTQzMjA4MjM3.SYqyymHmAOCdnKPwdhtB53CURuiPF3MUDuUjMSVB2Lgg.e9bfR6ocLaaAIzzYoDHp3C0MnJno5baI51-ydSr2b-Ug.JPEG.ahreum0812%2F1691943202502.jpg%3Ftype%3Dw966", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 272, - "name": "헤이롤", - "category_id": "한식집", - "score": 5.0, - "review": "3", - "address": "경기 성남시 분당구 운중로125번길 3-3 1층 104호", - "operating_hour": "월~금 09:00 ~ 19:00", - "expanded_days": "월,화,수,목,금", - "time_range": "09:00 ~ 19:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7FB76160D7B34F80B41829F6747E788D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F99e7dd51cb762f31dad0aa12f287511c0f2af6e1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F46414f410f70be2dba4308fa354c9d572c40340f%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 273, - "name": "한국집", - "category_id": "한식집", - "score": 2.6, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 9층", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 3151701953.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F19E00D5D12ED4E5782C11987DA3EA8D7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F707810afc4d3ab9096b98fdd8e37f809277f5845%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2f02de61e1bf9afe0609921923ecdd344d9f005c%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 274, - "name": "통이큰낙지", - "category_id": "한식집", - "score": 4.6, - "review": "3", - "address": "경기 성남시 분당구 판교로255번길 9-22 우림W-CITY 지하1층 B103호, B104호", - "operating_hour": "월~토 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa3b224602fadda89246d86b29f75f3cc94450360%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa3b224602fadda89246d86b29f75f3cc94450360%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9fd9182c5ae61162cc2f9f7eacd3111ca8d9a0e4%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 275, - "name": "프레퍼스다이어트푸드 판교점", - "category_id": "한식집", - "score": 1.9, - "review": "27", - "address": "경기 성남시 분당구 판교역로 231", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 50720838506.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F08234A92CD9C4C9196D37809D5AADF78, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7194476a9b4c847df5dc9b2e5fc08a56c0a25e62%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0AFC071053404B758856F6502D18B4FC", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 276, - "name": "동네맛집", - "category_id": "한식집", - "score": 5.0, - "review": "4", - "address": "경기 성남시 분당구 운중로 131 스타식스메트로 1층 102호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FFB77B3C55E954814B5725EA9C62B9664, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F148DB012D5934AC08E0CA22F017D2EF5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F0E12EE94A1144C29BB9C091A9810D88F", - "convenience": "주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 277, - "name": "냉면클라쓰&마약만두 분당백현점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로10번길 12-3", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317811720.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F10D0149D7C8C46D990FF19984E869FC4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F78205E9929D14348B51F78CF5E296F22, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1CC766D760684DFAB13E3A05BC97CA53", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 278, - "name": "취화당", - "category_id": "한식집", - "score": 5.0, - "review": "20", - "address": "경기 성남시 분당구 대왕판교로606번길 45 1층", - "operating_hour": "월~금 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF2016F995E1E4ED6915D6F603124CC31, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4531108C0F9E445FA7DCD3E345C730A6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MjRfMjE3%2FMDAxNzE2NTE2MzUzNDQx.7scokfS5VHxvdycMSJ-7QD2QANUwJMSuoNIC_1bdQOgg.auUgMscafvJ81IdnOICKPdQ5R2lJt0unPfyT_v9vqJgg.JPEG%2FIMG_1182.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 279, - "name": "달맞이 국밥", - "category_id": "한식집", - "score": 3.5, - "review": "0", - "address": "경기 성남시 분당구 판교역로 240 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7158C8C3FFCF46778970D70D5852055F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6e13ecc05948c57e4c2bcff9351ebbd4df960c0a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff190461fc2f517abaf70db37d11429df14d28118%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 280, - "name": "소도둑 판교점", - "category_id": "한식집", - "score": 3.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 163호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F06ec57d349e7202fec25d0ae5d9fcea0101afdd1%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 281, - "name": "이황식당2", - "category_id": "한식집", - "score": 0.0, - "review": "10", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 지하1층 B105호", - "operating_hour": "월~토 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5AB917D0DA2C46AB81848A0863B7C004, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMTFfMTI0%2FMDAxNzA0OTI3NDQxNzI2.B0W6JRIVEKJueVblKP4asTGTOSBT6pIRnC-3muZbVL8g.nXPgk_zzulTNTP2HjFYDaDEdbcW0Fojxj63_3SoeiZAg.JPEG.hayeon961%2FIMG_5548.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMTFfMTM3%2FMDAxNzA0OTI3NDQyMTQz.FV4h8bNrxnPUHJt4-3m3950DKPPhmIW0u9ezvBMCLa4g.qeyYNb3xJwkDMEOtBPMgJHsHD7DUcqW8ARixcF7538gg.JPEG.hayeon961%2FIMG_5547.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 282, - "name": "돼지야미안해", - "category_id": "한식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 45", - "operating_hour": "월~토 21:00 ~ 05:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "21:00 ~ 05:00", - "phone_number": 50720841676.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F25EFE0378F0F45C3BEDE92BD016D0785", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 283, - "name": "어서오시게 분당판교점", - "category_id": "한식집", - "score": 4.3, - "review": "128", - "address": "경기 성남시 분당구 판교역로 184 JS빌딩 1층 102호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317078249.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAD1ACE4289424348A7DE34BC74311B5E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FFCA350AF34814384B274A783B25C731E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD1BE0C6FBF39453D8746614E17A0DBCC", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 284, - "name": "양문 판교점", - "category_id": "한식집", - "score": 5.0, - "review": "61", - "address": "경기 성남시 분당구 대왕판교로 660 1층", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F41EE7513F1354858B24B45816EA57454, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3EB0E453994F4CEFB82C5BDB5FF55FEB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2CA20DA42CF642D7BB0A612CA5F9E71F", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 285, - "name": "미정국수0410 서판교점", - "category_id": "한식집", - "score": 2.5, - "review": "3", - "address": "경기 성남시 분당구 운중로 140 메트로골드 1층", - "operating_hour": "매일 15:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 20:00", - "phone_number": 317080410.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9324E9765B804BC2BAE06315B135F069, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fff72974f55af6681a91266289de1fa49aef304a7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2701C3385539ED6120", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 286, - "name": "군산오징어 리틀 판교우림W시티점", - "category_id": "한식집", - "score": 3.0, - "review": "10", - "address": "경기 성남시 분당구 판교로255번길 9-22 2층 214호", - "operating_hour": "월~금 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:00", - "phone_number": 316288078.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F29291315DFA441008321DA6CD3671898, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FDA6CB3290AE545558C5E581B72285E4A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F1C206669E5CB4F3794032179777C79B6", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 287, - "name": "도리깨침", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로10번길 10-7", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FR1r3O%2FbtsKLZINWWU%2F7zEI09HQV8MyI6JyKOvnUK%2Fimg.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fp40PK%2FbtsKLuvBtaY%2FkXebO4pKVlwnW72kkSRC50%2Fimg.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FerR7oT%2FbtsKKGjcCBR%2F4eHXxcAjS1C7fnhByMokfK%2Fimg.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 288, - "name": "판교화로", - "category_id": "한식집", - "score": 0.0, - "review": "7", - "address": "경기 성남시 분당구 운중로125번길 4-5 1층", - "operating_hour": "월~토 16:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB568CD6DF9D142AFA11700595FCCF6F1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTBfMjgz%2FMDAxNzMzNzg0OTAwMzM3.jrqHSdSbJEiaGn3sBzaXjnI5PjvfR5B_M7cbw8IyuBEg.4BJ6FDuqFFT85gP9Y0BVkdheJ565ck4OG6zMFZWW8mMg.JPEG%2F20241126_165145.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTBfODAg%2FMDAxNzMzNzg0ODk5NDQw.45a7YMmlo8qfYVF7W6uqBfyU7EOUyryyga525AJgANEg.i93RZHSkAWy890QYxGH6HDm1qbyDQOXaIQQLCsX6BuQg.JPEG%2F20241126_163903.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 289, - "name": "꼬들집", - "category_id": "한식집", - "score": 1.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 231 H스퀘어S동 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317893789.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F42381CCD7D644EED90D4DD546C3D384A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0c8a526de06ba366767325e458fc16d09d8401a8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F36aafd7fd3aed851334025ab771d3fefe2c6c151%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 290, - "name": "혜선이", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로 135", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317079735.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 291, - "name": "연어의하루", - "category_id": "한식집", - "score": 3.5, - "review": "0", - "address": "경기 성남시 분당구 운중로 129 1층 106~107호", - "operating_hour": "매일 17:00 ~ 05:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 05:00", - "phone_number": 317077707.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0254cfffb65307da6bf9b0bdd24d8e5227c28d52%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3fdd9a3970b26217eb3be70fb231de805771ed89%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0254cfffb65307da6bf9b0bdd24d8e5227c28d52%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 292, - "name": "한강로칼국수 판교점", - "category_id": "한식집", - "score": 3.1, - "review": "49", - "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", - "operating_hour": "월~목 10:30 ~ 19:30", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 19:30", - "phone_number": 3151701013.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7678A8E87F38408CB67FE58D0F2889A1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1F1CDA22D8A941909B3B68A564AA4E7C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9f7c699a041150437c116f59f7d9f91be2bcccd1%3Foriginal", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 293, - "name": "춘업순대국과 0627부대찌개", - "category_id": "한식집", - "score": 4.7, - "review": "10", - "address": "경기 성남시 분당구 판교로255번길 9-22 우림W-city 2층 215호", - "operating_hour": "월~금 11:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE93376C9F18148C0BDF472A203DB59A6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7fbf731fa97bde1c8127564b4b52e7581f3b418b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMDFfMTgx%2FMDAxNzA2NzUwMjQzNjY4.RUsJlJumM5k6mFgeTptlt4OFFksYUqoWKcu1phwZEU8g.AHjRlogXW1qKdP3RSkFcL8S0M1YYpuOCxsZAvPYBETIg.JPEG.2le_mean%2FKakaoTalk_20240201_092638553_14.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 294, - "name": "압구정김치찌개", - "category_id": "한식집", - "score": 4.0, - "review": "6", - "address": "경기 성남시 분당구 판교로255번길 9-22 우림W시티 207호", - "operating_hour": "월~금 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 21:00", - "phone_number": 316288776.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3F653B2D125C4BCA9E68573444C79A9F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F76380C6F2A9144509DC803D466E7B573, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMDRfMjUx%2FMDAxNzI4MDI0NTY5MTcz.MZgHol1yWUHewdytcJFj5vlKDM-8v0pJ8z3Lc7Iabkog.l6R7xxMqrx3O0VqjQir8dkGaEBAkH5OcyMUvs9m-O8Yg.JPEG%2FIMG_7763.jpg%3Ftype%3Dw773", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 295, - "name": "어부네", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교공원로2길 52", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180163339.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEF227F6F995347F48B3F52788468853A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F97e0a5eea85d37a896d19c11d2053bad5fa5d331%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqjSdGOAES_sC0arGeS3Sh3iKSopXJRKk_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 296, - "name": "청여수", - "category_id": "한식집", - "score": 3.9, - "review": "11", - "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 지하1층 B112호", - "operating_hour": "월~토 07:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "07:00 ~ 21:00", - "phone_number": 316983992.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FE8851D19F52147F493CB56E78A72B967, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FFCAC65D811164FE5B8FCFEF254B8E093, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F38B3D5B8C66F43FA9F1C711EA5A6B9C6", - "convenience": "주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 297, - "name": "서울전통육개장 판교점", - "category_id": "한식집", - "score": 2.5, - "review": "3", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스A동 지하1층 108-1호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FECA71C63333A407AB1A6176A9A3E09CE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F431a9af8344d036256e22825084db8c0b4ca2b60%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA9414ADA94DE4E5C8EEF27F24D5D6D1F", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 298, - "name": "됐소 판교본점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 지하1층 B101호", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 316286092.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F40D59FB0E9DA4555A9353E0A3657B282, //img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDACA1029D0D14899A834A2D16D9AB224", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 299, - "name": "수작", - "category_id": "한식집", - "score": 3.0, - "review": "214", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 지하1층 B115호", - "operating_hour": "월~금 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F10465DEA8CC74FB195F48189B8F2BAD9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0bdce5603456d2228224703f9fb4f6b34b865137%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc59299b0f5e26cf9cdce4938176251dacf70178a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 300, - "name": "효자동생태탕", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 2층", - "operating_hour": "월,수,목 09:00 ~ 23:00", - "expanded_days": "월,수,목", - "time_range": "09:00 ~ 23:00", - "phone_number": 317019104.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 301, - "name": "오전오후", - "category_id": "한식집", - "score": 3.9, - "review": "16", - "address": "경기 성남시 분당구 대왕판교로 670 2층 214호", - "operating_hour": "월~토 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 24:00", - "phone_number": 317052468.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBC3E0FB327E34A5DAE06CA653BFA3291, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6CDDA95B34AD48E1B24D0EF76E39BC18, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF769F7958F4A470686FD512185A657CD", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 302, - "name": "해리포차", - "category_id": "한식집", - "score": 5.0, - "review": "2", - "address": "경기 성남시 분당구 운중로 255", - "operating_hour": "수,금,토 18:00 ~ 01:00", - "expanded_days": "수,금,토", - "time_range": "18:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2E09092500AA49CD8128D7A28FA3C5C5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MjZfMjAx%2FMDAxNzE5MzcxMzY4NTAx.vltvddLDCxZndZKqkoOnTl9yZHIdoJIfbhGGE3FVrJgg.OSskG6CLnRoYYgjW_YHZO1IkgdHXJzZ6OtsEHwnZ0Z8g.JPEG%2F1719371367549.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MjZfMTUy%2FMDAxNzE5MzcxMzU0MzY5.6E1WTm0uF1svxFCORjemWwtDZRw5WXRcXQWBHMzpgpcg.23S9-646zrtL4Z4Hn2cArasyD5qvxuIIlEaIf2PQUV8g.JPEG%2F1719371353215.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 303, - "name": "참다랑어막주는집 서판교점", - "category_id": "한식집", - "score": 0.0, - "review": "1", - "address": "경기 성남시 분당구 판교공원로2길 38 1층 103호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180168484.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF2BEB190925D4F259BC44BAFA2151849, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F2CF88AF5D61A47D48E3A22FC5C040346, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA3MTBfMjc4%2FMDAxNjg4OTYzMDkxMzQy.0YAOg_UWqvYPMz7UW2J0WH_YUXe4CS_OOZZP_VAbVZ4g.ROzWYr7hODUPluc-rY6zle4xnc1lZcXRhLwZjQGh7o8g.JPEG.khsophie%2FSE-F999B989-DBB7-42DC-92FE-54BD757E9581.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 304, - "name": "북청집", - "category_id": "한식집", - "score": 4.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316288130.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F99D2D487A16545AE90C1371731AF3F64, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcTCfooIQ_gGU4KwqkADCBHtuQZfm3v1_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcTyYoz4L_XJ96bk8riCsB28sWC6ELp1_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 305, - "name": "신사부대찌개&품격삼겹살", - "category_id": "한식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 1A동 205호", - "operating_hour": "월~금 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9F2E0BE713B54B0BB53C2193224E3CB3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FCD87A454B3D548338FBA57050E866B75, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5b5b60267331431d773939b9ef580ea0f967e844%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 306, - "name": "회코스앤탕", - "category_id": "한식집", - "score": 2.7, - "review": "1", - "address": "경기 성남시 분당구 동판교로 226 봇들마을4단지아파트상가 1층 104호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 1055423184.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb35f77cb6d9b31011b408e103f9bc8706e2a215e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb35f77cb6d9b31011b408e103f9bc8706e2a215e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F00DCD6EDEEFC47CAAC94C223F80BB62B", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 307, - "name": "산척 동수제비 판교6호점", - "category_id": "한식집", - "score": null, - "review": "10", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 B103호", - "operating_hour": "화~목 14:00 ~ 17:00", - "expanded_days": "화,수,목", - "time_range": "14:00 ~ 17:00", - "phone_number": 316982866.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F91BD214EC74F446285CFEB73705A5A99, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F550DF738206D402F913B1AEB5E81151C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MDJfNzMg%2FMDAxNzE0NjI3MTgxNTY4.wEr0boQ7_ZUltj3GdGU8ocpSdQ-0jd3GFZfbvA-zXlAg.l7ls-apV38juKQshU36OnB9xBks2N4LPn8KXRAftKd8g.JPEG%2FSE-8DC449E1-853C-4006-AEFA-B4D211FB5C79.jpg%3Ftype%3Dw773", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 308, - "name": "도세옥", - "category_id": "한식집", - "score": 5.0, - "review": "1", - "address": "경기 성남시 분당구 대왕판교로606번길 10 알파리움타워 1동 2층 라스트리트 208호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 1062557950.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F96A44D2D47D94493ACF24D7D8B936025, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC6B05B8F8CFE46539BAFEA95B5DED07F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F46559A59E0D54441A7665F5EB905F7FA", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 309, - "name": "마포갈비집 판교점", - "category_id": "한식집", - "score": 0.0, - "review": "45", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 239호", - "operating_hour": "월~토 17:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F70927623C5A540D1962DAA32DEE5F139, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F37793DA134FF49BB93F1179925FF58E4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9F7B4C318BA346DAA95A2D2FF199C42F", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 310, - "name": "의정부부대찌개", - "category_id": "한식집", - "score": 1.0, - "review": "5", - "address": "경기 성남시 분당구 운중로138번길 28-8 1층 101호", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 317180174.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F30747BA272DA4F879FC36A25D246B04E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F3659807491AB4004BB78839C7FFD32A6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FE3079CB2C3B14458BAEA5A9A2901B18A", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 311, - "name": "삼성에버랜드 코리아바이오", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 700", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316280979.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 312, - "name": "집밥맛있다", - "category_id": "한식집", - "score": 3.5, - "review": "1", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 128-2호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317242988.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F243177677dbe838c70a20bd85aefbc50284fa70e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F243177677dbe838c70a20bd85aefbc50284fa70e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcL6OOqFQ_24JqUgSC1PzuU7oS2eeyyk_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 313, - "name": "더건강한장어 직영3호점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22 지하1층 109호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316288088.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 314, - "name": "용인전통순대국 판교점", - "category_id": "한식집", - "score": 1.5, - "review": "3", - "address": "경기 성남시 분당구 판교로255번길 9-22 우림더블유시티 지하1층 B111호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFEB1C45BB3A849EC8B0AFC033D9018DB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FeN9bQW%2FbtrPhmfWPP8%2FKjPXNqjLs0LOOghQmgcPd0%2Fimg.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FcjY76O%2FbtrPk9GVUqK%2Fd2f2fM1dtPdeg120BnfsuK%2Fimg.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 315, - "name": "우리가정육상회 성남판교점", - "category_id": "한식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 B동 2층 213호", - "operating_hour": "월~토 11:30 ~ 22:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:30", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 316, - "name": "김인성의 토평한우소곱창", - "category_id": "한식집", - "score": 4.5, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317242589.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0792d9035c9ac8a9f2f92843fe98d3c6bcac4bd4%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 317, - "name": "윤가네용대리해장국 판교유스페이스직영점", - "category_id": "한식집", - "score": 0.0, - "review": "7", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 116호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317786238.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5633C9E2735B40F6B3241D8F99081C88, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MTJfMTMy%2FMDAxNzIwNzQ1NDY1MzMy.vnte1jLqR5-th1QpiKTYoJkVCMMQp1TpwQi-bNmstLgg.iC-uPoavzMQgCgL2dXltFamie3_njS9B3ARSag8vKDsg.JPEG%2Foutput_3889187223.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MjBfMjc1%2FMDAxNzE4ODU0MjQzMjE3.kdRv3VzvPyrZasX7wh0Vkn_kGNYT-TSbyQJobla68SYg.wdf2yZsrOohs7esRe0SWI6-v7fuswlpgJh_Boz-u-Ssg.JPEG%2FIMG_0950.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 318, - "name": "냉면장인 임사부 판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로52번길 3-6", - "operating_hour": "매일 14:00 ~ 18:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:00 ~ 18:00", - "phone_number": 5074641749.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3E352714592A45D8971A37C94E853CE0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD66FEAAA85434725B34182089AE0B569, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F08C30A2B7F3C4612A5CE81D814D31071", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 319, - "name": "가족회관 현대백화점판교점", - "category_id": "한식집", - "score": 1.3, - "review": "27", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~금 10:30 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151702026.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F21B4EA11B944425FBF7C422BF657040F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDVfMjY0%2FMDAxNzI1NTA5ODUyNDM0.PtohB2Mfzb2KVR9JR7ZHbDPqc5hmnH3PdsQPljM3Zkkg.6eQkSzO0Ah_6oFTxSEZBwLUlW0-uuO5jK8kJ9wZtDj4g.JPEG%2FIMG_6060.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDhfOTgg%2FMDAxNzI1ODAyNDI0NTkw.h582jnUR0XyDZtzxm1iIfDBHDaAJud5nWHAXWM2feswg.1qJGTQyl1iFjsvC5ltl_NbX8b9bWjaqhweuKkWPDZVog.JPEG%2FKakaoTalk_Photo_2024-09-08-22-04-14_008.jpeg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 320, - "name": "만학 현대백화점 판교점", - "category_id": "한식집", - "score": 3.0, - "review": "47", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~금 10:30 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701013.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA3AA6B1623C14F82849EDF5438148249, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDCF82D1710384059B7801E33EA2A9169, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0EB8D56EDE5E45788461B81E29A5D4BD", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 321, - "name": "현대그린푸드 엔에치엔 엔터테인먼트", - "category_id": "한식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로645번길 14", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 315252540.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 322, - "name": "덕순네육개장", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로 225", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317022526.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 323, - "name": "우림닭갈비", - "category_id": "한식집", - "score": 1.0, - "review": "7", - "address": "경기 성남시 분당구 판교로255번길 9-22", - "operating_hour": "월~금 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:30", - "phone_number": 316287766.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDC0C42B991FF4B048D0BBCB3DB14B0E0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTdfMjc5%2FMDAxNzM0NDMzMzc1MDU5.lwHquBkhq1dF8xVKItF_KU38smjOi56cwOkxDJe7LJwg.vzK7Dx9C33JyGmfdHjiUKkJM8wyv2QLZXsjtkmSpJUsg.JPEG%2FIMG_1710.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTdfMjAy%2FMDAxNzM0NDM0MTAwNDcy.4_fh0XWxTO2Eq6Co9DYMw2mmGoJSGgSJ4yrL7qzPscog.a43nUjUO7gYR_3_OIAFmMTeNw_OYwkGv9KP_MmEXYT0g.JPEG%2FIMG_1722.jpg%3Ftype%3Dw386", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 324, - "name": "역전우동 판교역점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 31", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317816999.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 325, - "name": "우물집 현대백화점판교점", - "category_id": "한식집", - "score": 2.3, - "review": "5", - "address": "경기 성남시 분당구 판교역로146번길 20 5층 식품관", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 3151701517.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7064BA5F5C9344F5853EE7918D5271B4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MTlfMjkw%2FMDAxNzIxMzkyOTU5NjUw.6sN52EpaeTGrntudN98dIXdvL02r-7TCcGt9Tn6R5NAg.AkOLYhaXY45ybOX6cfGqHBd2BnbLK3i4GIdbftbKR2Yg.JPEG%2FIMG_1110.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MTlfMjQ3%2FMDAxNzIxMzkyOTU5NjEz.QVz-xUdW_898eTohALVo5QVPxkEpuBYZcxhdk0hkJMYg.ARMOI4Cyk5UdY3WB7yxYSVDOt2Z6uS02TqLJ3DBPDWgg.JPEG%2FIMG_9850.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 326, - "name": "안동찜닭", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 240", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316987857.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEBB5F541C40B4E8EB74CC670730BC8B3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd84f031e3f82b3847c33d54df6179bdf502d113a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5190e46c9fe2102cfc085d0f46173d0650e05767%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 327, - "name": "평안", - "category_id": "한식집", - "score": 4.0, - "review": "4", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 26-1호", - "operating_hour": "월~금 11:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 20:00", - "phone_number": 1080627250.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fblogfiles.pstatic.net%2FMjAyMzA2MjZfMTMx%2FMDAxNjg3NzY0NTAzMjU4.t3gs-YgmN3Swpr3haEmIBf_2nEzaOLyLijp01_xuygUg.UrhZCdzt0iiVNAzlfVei5L3Cde_5vESufQZYnuJCSLMg.PNG.tvanyanggokr%2F(211229, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblogfiles.pstatic.net%2FMjAyMzA2MjZfOTEg%2FMDAxNjg3NzY0NTAwMjEy.3gTMjkWdTs0twPGv9AZzszx7075wnfYhiTS-O8Jhzqgg.VTNASJCYcr-gERVh0UzqjNAnWrrm1BOM5gH7-zV0lmMg.PNG.tvanyanggokr%2F(211229, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblogfiles.pstatic.net%2FMjAyMzA2MjZfODgg%2FMDAxNjg3NzY0NDkzNjQ5.JK2hy6xw0cKvqo5RV1tZxJYEunSn7hRWZOmthaqFseog.KdvCkGibB2VQ-eOotFQWEt3TcRrt47O4fEqxKJekMUsg.JPEG.tvanyanggokr%2F%25EC%25B9%25B4%25EC%25B9%25B4%25EC%2598%25A4%25ED%2586%25A1.jpg%3Ftype%3Dw1", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 328, - "name": "석쇠한판숨두부", - "category_id": "한식집", - "score": 4.6, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22 우림W시티 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 329, - "name": "단푸드", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 136 힐스테이트판교역 판매시설동 지2층 비 2028호", - "operating_hour": "월~금 09:00 ~ 18:00", - "expanded_days": "월,화,수,목,금", - "time_range": "09:00 ~ 18:00", - "phone_number": 7079721525.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 330, - "name": "청담동양마니 현대백화점판교점", - "category_id": "한식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교복합몰 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151701052.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 331, - "name": "비비다낙지 현대백화점 판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151701011.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 332, - "name": "엄마집", - "category_id": "한식집", - "score": 5.0, - "review": "1", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317242989.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F585CA586EA914942ADE8481B287CF8D6", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 333, - "name": "둥지", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로192번길 14-1", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180165103.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F88C1618F53D24E928D71067D961F0968, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F3257B4F0D48A4BD8A7935AD363E675E3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5AA58AEA88CC4E7ABC8FB506AF723676", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 334, - "name": "꿀돼지두루치기", - "category_id": "한식집", - "score": 2.8, - "review": "10", - "address": "경기 성남시 분당구 판교로255번길 9-22 판교 우림 W-CITY 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F62CCB441546541489C33C64656720443, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff17e7f34ab9f242f3a1e677aa5a4abcf8781b852%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9c71a1ed0c2cc186f16104588fb12d053155a89a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 335, - "name": "소호면가", - "category_id": "한식집", - "score": 4.0, - "review": "16", - "address": "경기 성남시 분당구 판교로255번길 9-22 2층 225호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F857395A8EC8042AE8DB62A4047C58886, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb2aeaf31aa459a345e1d9a5b282ffaf4922efb73%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb6f65dd0a2cd153346c0e69868cb7f8403d76244%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 336, - "name": "한솔국시 현대백화점판교점", - "category_id": "한식집", - "score": 1.2, - "review": "1", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151702063.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F66346D397E594B65B723A0DE3032586C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA5MzBfNjQg%2FMDAxNjY0NTQ5Njc5ODc2.-omCUvx2dqOER9JALixK3Yk87sazW3CDeEDulwdbTX0g.-hdJJw3uwvqU9-7hzWlmEwUAjDk5_Fwusc6FoT9xb1Mg.JPEG.fishcakeboss%2F20220930%25EF%25BC%25BF192736.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA5MzBfMTg0%2FMDAxNjY0NTQ5Njc2MzU3.7K9gIew5NM3kD5lYuPVgBjN3MuwzGdlTOZmqyyNsmJwg.GCUjcHlTMa2NITbFfmKUwZ0XwtBvGhPA_mbsGAk_jGAg.JPEG.fishcakeboss%2F20220930%25EF%25BC%25BF192953.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 337, - "name": "온드린 현대백화점 판교점", - "category_id": "한식집", - "score": 3.0, - "review": "1", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151702061.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F03FC9A972E4B4D0A8D044CD587A84E32, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAzMTRfMTYx%2FMDAxNjc4NzU4MDg4NTQ0.Zrffb1sJjIE1fsQ_j9zFDK8eD73HXhLjwA243dz13Dcg.jE5ZIPol9zoxzdqvZhXS2-BaNvqPRsnp8o4NTa2mBzQg.JPEG.haruharang%2FSE-09f96d99-c7c3-45c7-abe9-3c08c0acf5f1.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAzMTRfMjky%2FMDAxNjc4NzU4MDg2NjA0.KRPSUMR_cgeBuZw1SkeW4HHO6rG4wk4rQdmwXS95CEAg.ngrRBhxeSncM1yVczIQ2NiNVkeAcQdvPQi00iDs6-_Yg.JPEG.haruharang%2FSE-3fb0e5a9-0718-4411-a1af-c2390d32e184.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 338, - "name": "막창막장", - "category_id": "한식집", - "score": 5.0, - "review": "17", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 234호", - "operating_hour": "월~금 17:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8FFD78FA3D8D4966BD01CFF772191757, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDRfMTAg%2FMDAxNzMzMjk4MTM1OTgx.NRAr9WEw1MklOiB_PHY76kDrqxlvF0MpCcjyJU-3k6Ag.-IFv1QLu-xmd6vP-4uSK93cFQMM5cp66oWWXGXI-rI4g.JPEG%2F900%25EF%25BC%25BF20241121%25EF%25BC%25BF204048.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjNfMTk4%2FMDAxNzMyMzU5NzgzMzI1.DEmIiJAenazPmApc8YzpJLKHntDFkTo0vmdCEswBJHkg.6tioP0fWCP_K1U8l55iGSAkOp-6_zB2_tE089Xwp-tgg.JPEG%2Fc16481645378cf21cf5ec408d53172cd_thumb.jpg%3Ftype%3Dw580", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 339, - "name": "도시하누판교", - "category_id": "한식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7040771556.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 340, - "name": "미광쭈꾸미", - "category_id": "한식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317242580.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 341, - "name": "국수의진수", - "category_id": "한식집", - "score": 4.6, - "review": "9", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하층 B123호", - "operating_hour": "월~금 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9560E8478B97475599F6E37355AAB6DE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F11fc3e3736e0947d39d885950e1f3d419bb68faf%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4f0b6169c1518fdf7318132f46daea76c7459c36%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 342, - "name": "양바위", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 240", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316983592.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1577493960, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_348914610, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_107879858", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 343, - "name": "두부장수", - "category_id": "한식집", - "score": 0.0, - "review": "1", - "address": "경기 성남시 분당구 대왕판교로606번길 58", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317078859.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 344, - "name": "전주옥", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로146번길 11-4", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317180532.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F27793850DC8746CFA4E5CAB8E2107DC4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MjhfOTEg%2FMDAxNzI0ODA3MDcwMDc3.wN_DwivKoz0-WNgOcjml1SoJaIsq3LqoyjzGTSt5_dog.PHyo_-nR7MsyCqqJQ8XhtR9CLkvoHcPKus44w_XsM34g.JPEG%2FDSC09038.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MjFfMTk2%2FMDAxNzI0MjMyMjYxMjMz.99FPcCsWB5kQOlHtL4qa8m4esMybWhYw7UbwZGWyvukg.YPE6g7trzCsLB3mgoxG_fBTvWNM0qxiXkQOjXoObbPkg.JPEG%2FIMG_0832.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 345, - "name": "오장동흥남집 판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로177번길 25 판교호반써밋플레이스 1층 106호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 317036533.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC83C60B0D3E848B6A645CE3372938BC8, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAEE9DD25C86642C297CCD7631B0E1701, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8175D1668FBB4F81A4870D17ACDC3FFF", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 346, - "name": "어멍막국수", - "category_id": "한식집", - "score": 2.6, - "review": "1", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 3151701013.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F78453AAB9CF040FA856FDC6B6DF4C4D1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FQM9Kp%2FbtsA7OJqZBZ%2FvhqCl4OyoMEkIQXfcKcVy1%2Fimg.png, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FXClYe%2FbtsA25lgmJc%2FVwpBQlMtq5Jpb0v0qdjfEK%2Fimg.png", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 347, - "name": "시골불냉면", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F333E0C9A8B4E42FC9664D0C7CDB1C5F7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fab6ef931c756a3b3dfacb59a056de622c4d40de7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F70029e09951dab39ae875d250d42ec339b524f85%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 348, - "name": "온복비빔국수 현대백화점판교점", - "category_id": "한식집", - "score": 1.0, - "review": "5", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "매일 10:30 ~ 20:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 20:30", - "phone_number": 3151701011.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F08AF1C6BED604FD8B78D784312CD0DF6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2F7ZfMb%2FbtsLAeeJ2lG%2FNrHkaLVdHm2FUJslF8l7v0%2Fimg.png, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbjKghA%2FbtsLAWykBCK%2FbLp85HgJ8T5C2XFIyYKwR0%2Fimg.png", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 349, - "name": "가비정", - "category_id": "한식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22 판교우림W시티 2층 202호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 350, - "name": "편장군족발 현대백화점판교점", - "category_id": "한식집", - "score": 3.0, - "review": "3", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701013.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD41D5D61761346249092A775BC6A9CA3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd3a387ecca32e6ce277a972744e8a4aa5282cec0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MTdfMzUg%2FMDAxNzEzMzU2MTA4NjMy.3OgdWW3ZntSsU8m5Bqed3DfPtd2Bu5VPyMJQhLWmyVYg.4UO5Fv42WQieotAy4P96OS7K6sTlpWtqgkeRwQA7yCYg.JPEG%2FIMG_8423.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 351, - "name": "델리스타트업점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로289번길 20", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 234530833.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 352, - "name": "차림117식당 그레이츠판교", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 백현동 535 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 353, - "name": "베트남이랑", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 145", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5564995459FC476D8AA02B7429631239, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F476EDA6ECD2D47B4BF81F2FD584646C7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb89a2c14207ddff57d8d47418dd0fc3030b895f5%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 354, - "name": "행복한밥상", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316284646.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 355, - "name": "압구정미연 현대백화점 판교점", - "category_id": "한식집", - "score": 0.0, - "review": "5", - "address": "경기 성남시 분당구 판교역로146번길 20", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701022.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F78C14592C14048D1BFC157936DB0F431, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA4MTNfMTIg%2FMDAxNjYwMzUyMTQzMDM2.1dNJsmraoWLN2PgWY71b9su3K-y9-IDOkRWSiirKq30g.2L3ThcTdw6nhnAO2poPT_Mw-uOja7MagDUM3XiQ0Uuwg.JPEG.bsy9408%2FIMG_3060.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA4MTNfMjQg%2FMDAxNjYwMzUyMTQyNzA4.RvX2Jl59pE6aqgSNRtArckLp9ykHHLOomrqE12wxDEAg.vZ-O4EZS8eDRtafb9gkML5-bEx9OVvv84x1_Q7cZSoIg.JPEG.bsy9408%2FIMG_3058.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 356, - "name": "신토제주왕족발", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 202호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 357, - "name": "제주옥", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교공원로2길 19", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FADCA213E71204FE08C3F38078933B276, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F41991eec62226ae171d9106997f469121df5061f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F18efd5fd010ebfea47988a006388d7d848e4120f%3Foriginal", - "convenience": "WIFI\n주차\n놀이방\n흡연실", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 358, - "name": "백가네남원추어탕", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 240", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316984533.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 359, - "name": "오덮", - "category_id": "한식집", - "score": 3.3, - "review": "3", - "address": "경기 성남시 분당구 판교역로 240", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316960365.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F877FA9D0DA074DD29DA29B8628F041B7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe5a0bc70d75606637ecbfe37bd421821fc95dd96%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fefdcae087e20a832b2de09541bdb258bcbe0bb3f%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 360, - "name": "밥이랑커피랑", - "category_id": "한식집", - "score": 2.7, - "review": "1", - "address": "경기 성남시 분당구 판교역로 145", - "operating_hour": "월~금 14:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:00", - "phone_number": 7047921557.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 361, - "name": "장원족발보쌈", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로644번길 65", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317023324.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 362, - "name": "호연에프앤디", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 136 1층 1042호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 363, - "name": "프랑킨바베큐치킨 동판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로52번길 21-4", - "operating_hour": "월~목 14:00 ~ 17:30", - "expanded_days": "월,화,수,목", - "time_range": "14:00 ~ 17:30", - "phone_number": 50720841641.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB915D3F05D934023972597F6587B8FB7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE6AB104ADE4049338586E91F198B3872, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD0B134700BCE4A9281508038485BFEFE", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 364, - "name": "신고집찜칼국수", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로10번길 12", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180160104.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9BB71E05126B4EC3A6BC130E52DD6ACE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F934fe7d79fd53ed7c85d8e492938e419457e2e97%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4d3c114fc63bbd910746444672f1071beebf33ba%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 365, - "name": "한우리 블랙 현대백화점판교점", - "category_id": "한식집", - "score": 0.0, - "review": "4", - "address": "경기 성남시 분당구 판교역로146번길 20 9층", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 3151701916.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F278A0679AD5046FFAFA23129D7B4A62D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTJfMTYy%2FMDAxNzM0MDAxNDA3NjU3.kPyiUyjKNnj92y1aeq9nMT10XwEMh7TXRS_eLq2B3_0g.EoO2PDD7ZTCDUj6I2NBTAs9-idzr2KvLAtd-01bZKDcg.JPEG%2F900%25EF%25BC%25BF20241212%25EF%25BC%25BF111822.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTJfMTg5%2FMDAxNzM0MDA0MjAxOTkw.zgljYKouYtKzXhBw6bnZz0TPDLdEtJSqoCqlKD0LWSMg.KXmjs7dJ6Uc7aDOCC5GP1468k_Ko80JvUDriTjMSLKYg.JPEG%2FSE-b4c9e011-b878-11ef-b8ef-a53aa48477fa.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 366, - "name": "별빛뚝닭 판교본점", - "category_id": "한식집", - "score": 2.0, - "review": "66", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 1층 109,110호", - "operating_hour": "월~토 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:00", - "phone_number": 316983303.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA182F4ECDE5347B4A9C951576DCFFF3A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEyMTJfMjg4%2FMDAxNjcwODI0NDY1MjQ5.tu-Ki2czGKsjKVUW3-clFUsrWIuwQcV0XzJFzQJTT0gg.okrPH8MILgMVRqiOBM1IyeERBaC_sIDyM94I_sHMV2gg.JPEG.chichiho8016%2FKakaoTalk_20221212_142116714_10.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA3MDdfMyAg%2FMDAxNjg4NjU3MzEyMjA5.zoM8w6n5mx8Y1V9rS4O24csiT_imdQU2hHME10_YUqwg.3pkvtrIiRrOpjobS0llmKegIbSJaF2e_1btSLfRlonkg.PNG.rert21%2FSE-81e8b91e-bbc5-47e7-89c8-73417e001713.png%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 367, - "name": "복문 현대백화점 판교점", - "category_id": "한식집", - "score": 3.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151702048.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 368, - "name": "낭만족발", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 2동 107호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 318189943.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 369, - "name": "육촌 판교점", - "category_id": "한식집", - "score": 0.0, - "review": "1", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 120호", - "operating_hour": "월~토 17:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 23:30", - "phone_number": 316284492.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 370, - "name": "기달임 돼지곰탕", - "category_id": "한식집", - "score": 0.0, - "review": "15", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스A동 지하1층 B112호", - "operating_hour": "월~목 15:00 ~ 17:00", - "expanded_days": "월,화,수,목", - "time_range": "15:00 ~ 17:00", - "phone_number": 316982810.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F84A58615E06944DC91D1EB94324BE7C3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMThfOTkg%2FMDAxNzM0NDg4OTg5ODc3.pheYRxnPyksq0k0290UEyOYH-icLUIJy4W9bkG3quvYg.2htjZCN2E-a8JUP-UTx5TMvrWWd-h14mmb5Wz66iSAkg.JPEG%2FSE-70fd05b5-71a3-4d76-b811-c3f696c77718.jpg%3Ftype%3Dw386, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMThfNDYg%2FMDAxNzM0NDg4OTg2NjI2.8KRZhRNneEfGYrNlon_DvxA5chGwejlTOL-LxS69HN8g.zRu492z6oTxaJeoMfdV-wyGfPfjYfo-T0330KbYzTNAg.JPEG%2FSE-d22a9be4-8dd5-4cc1-a1da-bad6fd4e5726.jpg%3Ftype%3Dw386", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 371, - "name": "청구칼국수", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317242666.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 372, - "name": "판교영천육회 본점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교공원로2길 58", - "operating_hour": "월~금 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 21:00", - "phone_number": 50720821696.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1F5098CA52E34451A3999A26CA515D42, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F46ACD5F2B4F547AFA0E49B84CADA28A6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F45A1D56D63944524A4177EAF6C5EEB81", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 373, - "name": "약선닭한마리", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 58 푸르지오월드마크 1104호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 374, - "name": "건강밥상 현대백화점 판교점", - "category_id": "한식집", - "score": 4.3, - "review": "3", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151702064.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc93d37243290cd9c66b07d2e9b4c9fb4219005e8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F164b255a6b0fc56eb32e6e2833ac3f340418f6ff%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MDVfMTgy%2FMDAxNzIwMTYwMjA2NjYz.j7rSggU-K_9ljge6QEDGWzMkbuVNBZbFYmXRqHbjthcg.xbHK-LEGLOLwCCEGHPhwUxRnzdSK3z9uhJ1qPcJwjs4g.JPEG%2F20240704%25EF%25BC%25BF160406.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 375, - "name": "매일한식", - "category_id": "한식집", - "score": 3.7, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 41 프라임스퀘어빌딩 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180165425.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA206CBC06AA44F4488D37486ABEE00D2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F520CC647CBBC4803A885EA8C2B37FAF8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F741D5DEC32774BBAB4F37036146840B6", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 376, - "name": "휴세코 판교지점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로 333", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180627060.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 377, - "name": "안주", - "category_id": "한식집", - "score": 5.0, - "review": "2", - "address": "경기 성남시 분당구 판교로319번길 13", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F94FB6D602F594C76910C6BFB05CA9080, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F636748330a95fee815bce3c51ab523efc5b91792%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0f26319c55a4fc8ea5f73cfb76d966561c089b9c%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 378, - "name": "전주선비빔 현대백화점 판교점", - "category_id": "한식집", - "score": 4.2, - "review": "2", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151702062.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F882AEB547A6C413983332BE75D060483, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd304c9b5065976fb2cb590dd4314b7da7d7649c9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzAyMTdfMjAz%2FMDAxNjc2NTc1NzM2MjE2.vdQC9nNcJ_5dujE0hUCdg5NvPWpbhFEydJSYiJ1q7qog.N9_kze1MTDbDcOqnYeOjiTNBtXBaxh4A6IemOb2mDXog.JPEG.bella__s%2FIMG_4529.JPG%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 379, - "name": "포구어가", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22 우림W시티 지하103, 104호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 380, - "name": "보정골", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 41 지하 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180165425.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 381, - "name": "38보쌈&족발", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 230", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7082371087.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 382, - "name": "몽촌닭갈비 현대백화점판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 본관 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151701021.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 383, - "name": "포세카플러스 분당지점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로289번길 20", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 384, - "name": "일만족발 서판교점", - "category_id": "한식집", - "score": 2.3, - "review": "0", - "address": "경기 성남시 분당구 운중로138번길 36 1층 103호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317020993.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 385, - "name": "하동곰탕화수분", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 230", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316987895.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 386, - "name": "태드럼통", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교공원로2길 52", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 387, - "name": "우선생 국밥 현대백화점판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 388, - "name": "강씨돌판오리", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로712번길 22 판교테크노밸리", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 389, - "name": "편장군 족발", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F77822D6C039D4C82BE2BF6D77F1F87B3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MzFfOSAg%2FMDAxNjkzNDA4NTYxOTU4.r7SrMK_J8Hx_Y6zWiTvg2G7eE7i4sa6FNbjWOjRpqCYg.mHRhTuPYj2aSSWzmmmrP5OCc1t2jqBCh0b5gVGZkx1og.JPEG.lucky1127%2FKakaoTalk_20230824_121402025_01.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MzFfMzQg%2FMDAxNjkzNDA3ODIxMzMy.Xu3lMKGsQJbdJeCI-nJiPZJlLI0A-QL_QBFQAkvyMhsg.2LN7MQHJex-YYCmd4lEwFkEAbvN9xVlCAWaZMPg8O_cg.JPEG.lucky1127%2FKakaoTalk_20230824_121416615_06.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 390, - "name": "더냄비", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로 49", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqkd2M2Z05_hPmA62BPouLlWGMwYnhkhk_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 391, - "name": "비타민장어", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 230", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316982832.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 392, - "name": "후니드 SK플래닛판교", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로 264", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 393, - "name": "궁중만두", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 230", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 394, - "name": "도니족발", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 180", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317021128.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F15E160D0501946EB8BBA9B64F12EFD7F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFBC6BF092D7D41DAB7972331C9A16929, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA777FEF83891434BA1812ECC94825AFF", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 395, - "name": "원마을식당", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교공원로3길 9", - "operating_hour": "매일 09:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 22:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 396, - "name": "해킹", - "category_id": "한식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 208호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FFAEBE067DE7C422BB00597A8DF36A951, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F661CEF2685174E34999FFD4FB12FB974, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA2D4B59FA51343C59B608372B8721DC7", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 397, - "name": "율판교점", - "category_id": "한식집", - "score": 2.0, - "review": "74", - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCB5EDD2E0F8B4E0DBA5E17E9A2C0FC83, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F00961B45B2C14F5087C07483A69C6D58, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3F64E7B247144A46BDC45E81031E97CA", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 398, - "name": "닭갈비야", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 230 삼환하이팩스 B동 208-2~3호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD7A71E92497D423D90506386380E5958, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6a265c72106183b2cb1f836059367069a27bfe5f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqetOLJAY0_a05kTr3Vm1kNM9FKlhLcj1_img.jpg", - "convenience": "주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 399, - "name": "국밥공방", - "category_id": "한식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 231", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC6785A600BDF40A3A601D477495B744E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6419f5179fd5ed2f87c0c6946e5526f16b94e60d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F832E1B3C50CC4E42A47C1D1422AF1528", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 400, - "name": "양생판교 운중점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로 115", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180161515.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 401, - "name": "양대포 판교점", - "category_id": "한식집", - "score": 1.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 1층 117호", - "operating_hour": "매일 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3a1645d410845a2b0f6d97ba2fae94a009781de5%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 402, - "name": "전국3대춘천닭갈비 판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교공원로3길 9", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 50720966371.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE6323BB587FE45B598310048E0D81A34, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE97BDB5A683949428F5948CE052DA680, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F47829C1DF4484590821C44813EBC42AC", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 403, - "name": "고깃집두마리", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 230", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 404, - "name": "어니스트키친 고깃간", - "category_id": "한식집", - "score": 4.5, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316288892.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe674f3ab330652925c9ab915e3c4f946bf5b2fde%3Foriginal, //img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe674f3ab330652925c9ab915e3c4f946bf5b2fde%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 405, - "name": "블루클린", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7086162223.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 406, - "name": "신제주해장국 판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스A동 지하1층 B-107호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 407, - "name": "소소한덮밥", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 240", - "operating_hour": "월~목 09:35 ~ 23:30", - "expanded_days": "월,화,수,목", - "time_range": "09:35 ~ 23:30", - "phone_number": 50712991951.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F842BD98597FA41F9A3BAFB07414A86E2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F83C888E5702140758937E4F644C1086B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE65C372B7FE447B6A04580B4FDEE6CF3", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 408, - "name": "1등급곱창", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 409, - "name": "바푸리 상평점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로 374", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180165692.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 410, - "name": "족발의나라", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 411, - "name": "쭈꾸미온반", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로 52", - "operating_hour": "월,화,수,금,토 10:30 ~ 21:00", - "expanded_days": "월,화,수,금,토", - "time_range": "10:30 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1D63DF04687C4330A2758765886A3C0D, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0BD09AB689DB4B63AB7EE0D5B9D7A9C8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF541CC45BBC84E2CB009E8405089FE96", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 412, - "name": "마약생고기 판교점", - "category_id": "한식집", - "score": 2.5, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 205호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 413, - "name": "부뚜막김치찜 성남분당점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로138번길 36", - "operating_hour": "수~목 15:00 ~ 23:30", - "expanded_days": "수,목", - "time_range": "15:00 ~ 23:30", - "phone_number": 5048067485.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F66F98283D77341CB9A0092B4B642B931, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCB17CFC9DF024391842D3CC12CD2F437, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEF4E9CACCE9646EF808D8ADCABAD0D8B", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 414, - "name": "분당할매김치찜", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로52번길 24", - "operating_hour": "수,금 10:00 ~ 13:30", - "expanded_days": "수,금", - "time_range": "10:00 ~ 13:30", - "phone_number": 50352958098.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDCE254C7CCEA410CA5DEC35E59E2E35C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F263F302DC26E4AB4B34F2F7894B9F7E6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F184BB9964ECE4C40B4F5A17DCA822E99", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 415, - "name": "불독식탁 판교직영점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 58 대우푸르지오 월드스퀘어 1층 113호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 416, - "name": "미소한우등심", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 1B동 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 417, - "name": "한미정", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 분당내곡로 159", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317021199.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 418, - "name": "속편한세상 판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로 375", - "operating_hour": "월,화,수,금 10:00 ~ 21:30", - "expanded_days": "월,화,수,금", - "time_range": "10:00 ~ 21:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD86A83C4850E438F9F99BB3AD7131D8F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F93B6D803553D4C8E94A7EC4A4678B3A5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD586C82754DB4E5ABE5136901D21134A", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 419, - "name": "킹콩부대찌개 판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교공원로5길 11 1층", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 3180160334.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F44861A7CE4C745EA9B52CBEBCFCF0636, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F34F3129313E44487A26E7441552EC8A6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F488C0413C60E44CD92D30705838AC8F4", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 420, - "name": "빌딩과사람들", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로 242", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 24539116.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 421, - "name": "피델리스홀딩스", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로241번길 22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180161992.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 422, - "name": "즐거운식탁", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교공원로2길 40-1", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180178060.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 423, - "name": "수숯불직화꼬치 판교지점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로138번길 28-7", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 424, - "name": "초록별", - "category_id": "한식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 판교로 331", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316200033.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 425, - "name": "한국밥", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22 우림W-CITY B109호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4B1D977BBD64435EB2564566B51137D7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3c3b79b3d10e7211334b3d113dff3b049c857bd6%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1df795b938c3425fc30c2cbe1262286517cbc0bd%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 426, - "name": "이씨엠디 포스코아이씨티", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로 255", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 234007665.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 427, - "name": "돌판제주흑돼지", - "category_id": "한식집", - "score": 0.0, - "review": "1", - "address": "경기 성남시 분당구 판교로255번길 9-22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 314287837.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTdfMjI3%2FMDAxNzM0Mzk4MjI4NDg5.cPZie7MPtFlWQ4eZsKTQ2J4LOXaKs7HkQE-enjP61vEg.2_97gCefq8eyxmVm6NNg2C3xsJqGILSVEGBJ32Uedu8g.PNG%2F4.png%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTdfMTI1%2FMDAxNzM0Mzk4MjE4MzM1.iU20chDivM7zMsnxBkWHZwYDdgGmK4pW6YRlN6clD7sg.U9nIjsnSlHWIubTKJbyErgDGCGHxpiiy8ZYP6ipzfPAg.PNG%2F0.png%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTdfMTgx%2FMDAxNzM0Mzk4MjIwMzg3._CJVX9BHK0LSd79Eq-1RmzpdWBjtUT3EzDCPx4BwJbEg.8WpGpTW0ysteOn1Jtc8Kl1AGpISn43kxnAcHrTCxNvcg.PNG%2F1.png%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 428, - "name": "뵤용만두판교롯데마트", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 58", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 280167530.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 429, - "name": "닐리리맘보 김용만국수 서판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로 242", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 430, - "name": "원할머니명품도시락 서판교배달점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교공원로5길 3", - "operating_hour": "매일 16:30 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:30 ~ 23:30", - "phone_number": 50718662517.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE3C8A99C94AA45B68BD6C246F7B2DA72, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F20EA5676A60C47688FA1DBBBE2870D79, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE5D916C26F8646D48BE6413D6D3C79DC", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 431, - "name": "나이스투밋", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22 우림WCITY 2층 227호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 432, - "name": "애", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로192번길 14-2 골드타워 1층 120호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MDdfMTQ1%2FMDAxNzIwMjgzNzYyODMz.lPEtpUSKck-kUZth9M7dQgtgoVtcAMrEsJqJoKhEj80g.a8mnO7LmFkeihman0vieaK_rVdqDKVpMoEhiHTDv2QMg.JPEG%2FIMG_7539.JPG%3Ftype%3Dw386, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MDdfMTQ2%2FMDAxNzIwMjgzNDI4ODg3.kcSkFdkd84t4LCccWSdCXFe4ASNs-PPZ9xu_B20CTtAg.rVd_f7M5HkXzW--9818T2xIKsTsViOsaLMKYpV5AIScg.JPEG%2FIMG_7532.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MDdfMTA3%2FMDAxNzIwMjgzNDI5MDM1.SdKOK9hIlAZXwnl2MO8gF9dUxTzd5e-UJnknVYV_QzIg.LWZ7KF5eoiAn19YhMPv2glHnmfHxvbRoWVBHLWaMfQgg.JPEG%2FIMG_7531.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 433, - "name": "청해복 판교알파돔시티점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 10 라스트리트1동 2층 215호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 434, - "name": "후니드CnC 판교7층카페", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 38", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 264001846.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 435, - "name": "참숯불구이족발", - "category_id": "한식집", - "score": 1.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로 226", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 436, - "name": "포쿡 아브뉴프랑점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로177번길 25", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317068755.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 437, - "name": "늘솜", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 231", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180184455.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2230DE97594D4B3F8105414DA72606CA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fddd064f0efc4fea88a6847afd0290e978fe9ffd2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9db893e751e709a04beb198034bb87455f6731e4%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 438, - "name": "다이노소어레그 현대백화점판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 439, - "name": "만찬", - "category_id": "한식집", - "score": 0.0, - "review": "1", - "address": "경기 성남시 분당구 판교역로 240", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFA6117FA71314605B5067305A6F6AE6B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F099ba9f61981797483907c1f9a23a5982d1a160c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F85e5eb91745bad7751b7720a9b108afdd2e98015%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 440, - "name": "더전", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 230", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316960399.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F625498DAAD62453F9992F843A6D8A37E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD14C3467C81A443DA1B1BEEA4153AA2F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE51DC07046804918879CBDE665D52EF7", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 441, - "name": "아크윈", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서판교로44번길 3", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 234477177.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 442, - "name": "인생집밥본점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로52번길 24", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317010002.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF90E55C09EAA44D68C99D4954B9F771D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4476372584754C1D8B859C7094FAE77E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F74A5CA1DB7A94314A4EC474C466D8732", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 443, - "name": "라빌란치아", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로188번길 11", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 444, - "name": "기떡찜 동판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로 212", - "operating_hour": "매일 12:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 17:00", - "phone_number": 50720903886.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F02E34A3DF2084291958D22CCF683ACF5", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 445, - "name": "0627부대찌개 본점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22 우림 W-CITY 2층 211호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 446, - "name": "돌구이돌판오겹살", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316287837.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 447, - "name": "푸드몬스터 쌍다리", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로 186", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 315286263.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 448, - "name": "육백", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스몰 지하1층 128-2호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F89070700B28F4481AAB91BB104E32E05, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMjFfMjQw%2FMDAxNzA4NTI0MzM0MDA4.iGswagD_1EXzqDK5sdRfPrU8JLqxKP83HwShqUhX4Lcg.YHXbHSqWfp_joPW0PrgN9a3zb7kfPIJJtKCUrNWtbW4g.PNG%2Fimage.png%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMjFfMjY5%2FMDAxNzA4NTI0MzMwMTcy.v1LxxFHAWE48nr8b7aXGPPC8iKw2xURGEaSH4UJF5QYg.75SSEH_byHRDYWnNG6oh2qbp9Jz0InZKSyI6_g8P-P4g.PNG%2Fimage.png%3Ftype%3Dw966", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 449, - "name": "윤달", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로25번길 6-2", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F225A27B1368445B983AA3FFF5F405A61, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F833BE56CFA5B4D80A951983678C47D0C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F56e2669fa561277d47145a52f9d6480947fb70df%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 450, - "name": "이씨엠디메디포스트", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로644번길 21", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 451, - "name": "너오밥", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서판교로44번길 9", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180175242.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 452, - "name": "후니드 SKC&C판교1점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 38 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "정보 없음", - "convenience": "정보 없음", - "caution": "정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 453, - "name": "더골드그릴", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317242888.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 454, - "name": "짚쌩 판교테크노밸리점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 231", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317893535.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 455, - "name": "퍼스트그린에프엔비", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 145", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 456, - "name": "푸드트레인", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로177번길 25", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180168708.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F88F2ABAE7C314B5B945B0EBC21FFA701, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MDdfMjQx%2FMDAxNzEyNTAwNzY1Nzg2.GLeGVzZlP-ipOZd2b_xOm-byl25YVI66cqJDMYeGsgAg.jK55reBXzpBSd3E3aO0rGaRwgS2_rRX23dunsvzEYTIg.JPEG%2FIMG_0953.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEyMjZfMjA0%2FMDAxNzAzNTU1MzAwMjY5.f6Z-3n5xvWNi9hbSUvz9tbpflocxdywcgpAN1pAN7tog.amaxt-FnF3j12_c8N-SwWkxUOljgn3ZWCkR7YGTKGXAg.JPEG.yori386%2FSE-f180573f-5f43-4362-a801-0ac24c887436.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 457, - "name": "마미밥", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 230", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316987827.0, - "image_urls": "이미지 정보 없음", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 458, - "name": "미라클푸드 판교직영점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 136", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 459, - "name": "우리수산", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로192번길 16", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180167898.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F22C5F5AC0F904E539018C37E01A40977, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faf8d8c498e7c698ed2ce64be58c22cd2041abe9d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffe9c4518e37b0b3045f3eed615380bbde60eb547%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 460, - "name": "푸드스타일리스트이단비", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서판교로44번길 3-9", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 318960727.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 461, - "name": "메이크푸드", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 58", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 462, - "name": "아워홈 실리콘파크분당점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 35", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7075000110.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 463, - "name": "후니네생선굽니", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 464, - "name": "교동찌개집", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스A동 지하1층 102호", - "operating_hour": "월~금 09:00 ~ 20:50", - "expanded_days": "월,화,수,목,금", - "time_range": "09:00 ~ 20:50", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE484EDA9CB9E44DF88CA0B14652C067F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F95E97F124BEA4778ABCBC0DFA7253335, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2CDD311E4E2C4F12A6C903F40F7F8354", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 465, - "name": "강된장114", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 114호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316982852.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 466, - "name": "케이비스트로 판교", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 B동 1층 127호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 467, - "name": "참소 판교점", - "category_id": "한식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 판교로255번길 9-22", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316288840.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 468, - "name": "단골본가", - "category_id": "한식집", - "score": 2.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 670", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316286666.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 469, - "name": "청봉", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로52번길 21-12", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 470, - "name": "늘푸른생선구이", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 145 알파리움타워 2동 1층 102~103호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "WIFI\n주차\n휠체어사용", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 471, - "name": "에스크루에프엔비", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교로319번길 13 1층 113호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 472, - "name": "라하임쿠킹", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로 115", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 473, - "name": "쉬림프트럭 현대백화점 판교점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3151702008.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 474, - "name": "키친사이", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 240", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316987858.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 475, - "name": "시켜먹자", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로52번길 24", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 476, - "name": "앙떡&부뚜막", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로138번길 36", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3552763B0E6E4EC2BF79A6513C4AB55F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F84453467B9A54195A36BB10CA2788F23, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD26A2230F2B44BCFBC77FD2D873DC9FA", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 477, - "name": "돈가네 소미지점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 478, - "name": "노박식탁 주식회사", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로138번길 24-1", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "정보 없음", - "convenience": "정보 없음", - "caution": "정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 479, - "name": "파로구이", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 동판교로52번길 17-4", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 480, - "name": "혼밥세끼", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 240", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 481, - "name": "주식회사 위디플러스", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 운중로 129", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 482, - "name": "오미", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316281888.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 483, - "name": "자연스레 함바라지 한식부페", - "category_id": "한식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로192번길 22 판교효성해링턴타워 2층 207~208호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F27C21F7C9E394950934C4E0B0E028820, //img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F804e483f7b356067a8b17e0b7701f9a15cb66a87%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 484, - "name": "매일한식", - "category_id": "한식집", - "score": 5.0, - "review": "0", - "address": "경기 성남시 수정구 금토로80번길 11 판교이노베이션랩 B107호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 1091684657.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA206CBC06AA44F4488D37486ABEE00D2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F520CC647CBBC4803A885EA8C2B37FAF8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F741D5DEC32774BBAB4F37036146840B6", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 485, - "name": "수랏간한식뷔페", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 수정구 금토로80번길 55", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB30477382F744C56A2A8B0CC0EE6F1EC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MTFfMjM2%2FMDAxNzE1NDE1MTAzNTU0.D9JO52M-Agf8AStZvTM7ZdK2nLu3DJ7u2xhM0ojeiO8g.oWxCpry1ypZ8PJAuswMs-A-3mpH4YmEk-fG1WInDbv4g.JPEG%2F%25EC%2588%2598%25EB%259E%258F%25EA%25B0%2584_6.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MTFfMTIg%2FMDAxNzE1NDE1MTAzNTY2.Mas19EWHKH6R_C6ExM1Xpiot9I_MfGK_OwolYEcnOq0g.5JViKzsb-9WnkdB3MFp46yA3aKj9OToRxyuqrVWqiJEg.JPEG%2F%25EC%2588%2598%25EB%259E%258F%25EA%25B0%2584_5.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 486, - "name": "서현궁 백현점", - "category_id": "한식집", - "score": 3.9, - "review": "50", - "address": "경기 성남시 분당구 판교백현로 63", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317081141.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F99032CD9657A48FEA1771017DF530091, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5652C59CDCEE4C86A30281F596640D65, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6FFE669E5BEF4053BC694AC3E05D5DDC", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 487, - "name": "백마강참숯민물장어 판교점", - "category_id": "한식집", - "score": 3.7, - "review": "166", - "address": "경기 성남시 분당구 안양판교로 1192", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317039252.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE08CB40953D3445EBFA713339A972FDE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd94410bfa3bc9805267007e0c3ff8fe59bd36e58%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7bf1e46365fbce11e29294adb67d800c6d6f30ab5f68801f3536b02913695322", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 488, - "name": "하누소 더힐", - "category_id": "한식집", - "score": 2.0, - "review": "2", - "address": "경기 성남시 분당구 판교백현로 65", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317099980.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC2198923930D42109CA1A13145A05068, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FeG63pA%2FbtrIGx739Cg%2FF6Ik8izpDfsOYnVXnjt2o0%2Fimg.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbgM0Hl%2FbtrIEZcIuLL%2FyjJHfwportBNSuXwkji4c1%2Fimg.jpg", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 489, - "name": "사계절한정식", - "category_id": "한식집", - "score": 1.9, - "review": "67", - "address": "경기 성남시 분당구 판교백현로 49 란정 1층, 2층", - "operating_hour": "매일 14:30 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:30 ~ 17:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F227C9B6F5F13443F84F628DE89E0339C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff50381b390b3cdcc1e87f31ac7a502e37d80860e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc66036fc96eb049f952e235c98f55e2f00eb90bb%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 490, - "name": "본우리집밥 아이에스시컨소시엄점", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 수정구 금토로40번길 26", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 491, - "name": "쭈담", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 수정구 금토로80번길 55", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317020504.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 492, - "name": "청계산담백미", - "category_id": "한식집", - "score": 4.3, - "review": "38", - "address": "경기 성남시 수정구 달래내로 22 1-2층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317070058.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC3531C4DCE5C4D0E8880239D746CA700, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5825238D0C104F31B16FA2A985BCF9AC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4FAA52C0C6254D9EB57CCDE111759DA6", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 493, - "name": "홍박사생고기 판교점", - "category_id": "한식집", - "score": 3.8, - "review": "20", - "address": "경기 성남시 수정구 달래내로 14", - "operating_hour": "매일 11:20 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:20 ~ 21:30", - "phone_number": 317019700.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5539271B723D4D7CA98035F44EFA1DD7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa54081eb87213bbee94d9ee7e82835c7c38f8c55%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3cdee61e08ac925e72b16104d1780d8f7b7219e0%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 494, - "name": "신황산벌", - "category_id": "한식집", - "score": 3.9, - "review": "10", - "address": "경기 성남시 수정구 달래내로 40 1층", - "operating_hour": "매일 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:00", - "phone_number": 317089898.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F17D254B68D664E13A7E7A774575E4365, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7d0d213bbaf249c65c8536827ac4dca90856799b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fee98a95fd4838edd8a08e34df34b84690d6fbd50%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 495, - "name": "소베뉴", - "category_id": "한식집", - "score": 3.8, - "review": "76", - "address": "경기 성남시 분당구 판교백현로 61 1-2층", - "operating_hour": "수~일 10:00 ~ 19:00", - "expanded_days": "수,목,금,토,일", - "time_range": "10:00 ~ 19:00", - "phone_number": 317073770.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F019F223E2C334CDAB4DAF84AF20D09E2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8845FFBEA22F41AD8CBEF4A7AED2BDBD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF1A9952DB8C54D0697BBB50654A15C91", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 496, - "name": "이남장", - "category_id": "한식집", - "score": 2.1, - "review": "4", - "address": "경기 성남시 분당구 판교백현로 31", - "operating_hour": "화~일 07:00 ~ 21:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "07:00 ~ 21:00", - "phone_number": 317039955.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5407bc45d6ce69389cda1be7843ca81cb69d743a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F892B2AE98A424551A47F6D7328A05E92, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fbd7e063eb4e2de50ebcd30c4a17b79d94b3fe8ab%3Foriginal", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 497, - "name": "돗가비불쭈꾸미", - "category_id": "한식집", - "score": 4.9, - "review": "63", - "address": "경기 성남시 수정구 창업로 43 글로벌비즈센터 A동 1층 103호", - "operating_hour": "월~금 15:00 ~ 17:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:00", - "phone_number": 7040108922.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F749C32C4E5B34F03BADCA50BE0EC5CB2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTdfMjk5%2FMDAxNzM0NDE1NTEzODYw.UUISGoArMTA4FBLwz4HoMezLCpGvtSgDsgZ_hy_cjssg.oSVJFDTMo9qqITkDjY2xHYQoc05Md3FS33Q_jvwghdAg.JPEG%2F900%25EF%25BC%25BF20241217%25EF%25BC%25BF113144.jpg%3Ftype%3Dw580, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTdfMTg4%2FMDAxNzM0NDE1NjU4NjI1.lKIu5yBBJLtrcuQJWwwAKqakPDQ6bxlpYPQ5YfnIiaEg.YIoPL6x6RcSgZUr8LoLz6ytfuggqJeDFFKrPEM0uDf0g.JPEG%2F900%25EF%25BC%25BF1734415658282.jpg%3Ftype%3Dw580", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약불가, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 498, - "name": "돈우모리", - "category_id": "한식집", - "score": 4.5, - "review": "11", - "address": "경기 성남시 수정구 창업로 42 판교 제2테크노밸리 경기 기업성장센터 지하1층 B120, 121호", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF6B30F3E442F4141B631BBECCEFCAE74, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9da307989e07de9d29e5fc7f840b79ba42061275%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F307ed963c784ba96f6358820e547dd87b65cf55d%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 499, - "name": "도월", - "category_id": "한식집", - "score": 4.3, - "review": "3", - "address": "경기 성남시 수정구 달래내로28번길 6", - "operating_hour": "월~토 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 22:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 7, - "restaurant_id": 500, - "name": "산들레", - "category_id": "한식집", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교백현로 61", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317016775.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - } -] \ No newline at end of file diff --git a/storage/input_json/restaurants_table8.json b/storage/input_json/restaurants_table8.json deleted file mode 100644 index d062e4f..0000000 --- a/storage/input_json/restaurants_table8.json +++ /dev/null @@ -1,2875 +0,0 @@ -[ - { - "db_category_id": 8, - "restaurant_id": 1, - "name": "홀썸치킨 판교점", - "category_id": "치킨", - "score": 3.8, - "review": 93, - "address": "경기 성남시 분당구 대왕판교로606번길 58 푸르지오월드마크 1층 113호", - "operating_hour": "월~금 15:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 24:00", - "phone_number": 3180166400.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MzFfMTkx%2FMDAxNjkzNDU0ODIyMzUy.nlDh_XDkTjFWSCW29FsD4DSH4HVCkwquqzdafF02Q4gg.ReowrRoQ68TCuPjnOCeE6S-2DClChKQTAd4lm6fpBMkg.JPEG.a878062%2FR0000434.JPG%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FCDC43E6E757F4948B5B67938D2D9DA4D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6E0863F73B034AA0A0B1D62D07EAF1FD", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 2, - "name": "교촌치킨 동판교점", - "category_id": "치킨", - "score": 2.5, - "review": 20, - "address": "경기 성남시 분당구 판교역로192번길 12 1층", - "operating_hour": "매일 11:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 24:00", - "phone_number": 3180610771.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2BC1003BAA3040098CD7A6B508A369BB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe5fd0cf390051891872ec4b6a6c10c2c8f52a30b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F33d308c59c1c2328ab2339d924a3560ab1459483%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 3, - "name": "BHC치킨 판교점", - "category_id": "치킨", - "score": 3.0, - "review": 20, - "address": "경기 성남시 분당구 대왕판교로606번길 47 1층 102-1호", - "operating_hour": "매일 12:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 24:00", - "phone_number": 3180177942.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD827114FE4734E648706A80172E4ECB6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6E608D00A50E4AC19CB206F104C5866C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7308ce60cee77ecdbc194fc83a86edbb001cd004%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 4, - "name": "엠에스생감자치킨", - "category_id": "치킨", - "score": 3.9, - "review": 14, - "address": "경기 성남시 분당구 판교역로 230", - "operating_hour": "월~금 11:30 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 24:00", - "phone_number": 316970668.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F13B3098165614C96A6F250FBA1216C85, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqeggB19Hm_Rsgl1xNt6kW6Q4lOpDnamk_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqdDzvdXxe_L55p7qjK63slPVDXUYz1u0_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 5, - "name": "노랑통닭 분당판교점", - "category_id": "치킨", - "score": 3.0, - "review": 0, - "address": "경기 성남시 분당구 동판교로 153 봇들마을8단지아파트 나상가동 1층 101호", - "operating_hour": "매일 15:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 24:00", - "phone_number": 317010311.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBDB735E3A3584BF5A773A064419ABD64, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDD5F031042CA47C48E53D7CBCAE883B6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6CF73A3AEFD84EBE9FBED7DBBEABCC1A", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 6, - "name": "교촌치킨 서판교점", - "category_id": "치킨", - "score": 2.2, - "review": 5, - "address": "경기 성남시 분당구 판교공원로1길 3 1층", - "operating_hour": "매일 12:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 23:00", - "phone_number": 317021990.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F72F1CF0CE31B43E8A35C2648CE11EFB4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F82ac5d2589ad75aceedc99b2b9a0110ddf1ea834%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2ec59d7b85a23d9a97cda4354183786c07fceb25%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 7, - "name": "BBQ 판교테크노밸리점", - "category_id": "치킨", - "score": 2.0, - "review": 1, - "address": "경기 성남시 분당구 판교역로 231 에스동 1층 121호", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 316967557.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F38dba3509d2c54ea6aa8c9a53683ea290cb4635a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F183418cbfab149e3d02db956b47057abd846a5af%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCC364EB26E8646E182C2D42D5486473F", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 8, - "name": "치킨89 맥주관", - "category_id": "치킨", - "score": 4.1, - "review": 13, - "address": "경기 성남시 분당구 판교공원로1길 47 지하1층", - "operating_hour": "매일 16:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 23:30", - "phone_number": 317060890.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F25090E4E524BBF5818, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6e4227b0656bcc8a731659cd04bba8f84db4a44f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff28ba8eb17e0ed05e8f28fffd75bcabcca6dfd61%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n놀이방", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 9, - "name": "처갓집양념치킨 동판교점", - "category_id": "치킨", - "score": 4.6, - "review": 11, - "address": "경기 성남시 분당구 동판교로52번길 9-3 1층", - "operating_hour": "화~일 13:00 ~ 01:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "13:00 ~ 01:00", - "phone_number": 317049222.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F57D86702DFD04AE6BEB2AA64C5DE185F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3c3b2ce368f7a69eaac62726785528e1b03e8654%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9ea0c7d93e5bcecf1f0f09b65b451148216c594c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "배달가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 10, - "name": "60계 서판교점", - "category_id": "치킨", - "score": 4.8, - "review": 14, - "address": "경기 성남시 분당구 판교공원로3길 6 1층 102호", - "operating_hour": "월,수,목,금 15:00 ~ 23:00", - "expanded_days": "월,수,목,금", - "time_range": "15:00 ~ 23:00", - "phone_number": 317098960.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F49A22DDC14BA4A47906D336D0804D40C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5C366C468BDC4E46A530AB588306F254, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6594F6DF2DDF4B85A7EB145F5403648E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 11, - "name": "굽네치킨 서판교점", - "category_id": "치킨", - "score": 3.5, - "review": 1, - "address": "경기 성남시 분당구 운중로178번길 1 1층 107호", - "operating_hour": "수~수 11:30 ~ 23:00", - "expanded_days": "수", - "time_range": "11:30 ~ 23:00", - "phone_number": 317099294.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB120D75B04A54B40A970422E1E80BFE9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F68a7e0e342b1427f9ffae0dbd170b1af9643ab92%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1A7FFB84E611458FB43C4D5EEDEE24CA", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 12, - "name": "깐부치킨 판교역점", - "category_id": "치킨", - "score": 2.6, - "review": 9, - "address": "경기 성남시 분당구 대왕판교로606번길 45 1층", - "operating_hour": "월~금 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 24:00", - "phone_number": 317025560.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7c1981b2c1aa1b30a10c3089ddb633ed61f9a9de%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7c1981b2c1aa1b30a10c3089ddb633ed61f9a9de%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb8ed9e61a908bf075aa1cd6b5f26bf8c4969023d%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 13, - "name": "정치킨", - "category_id": "치킨", - "score": 4.0, - "review": 17, - "address": "경기 성남시 분당구 판교역로 230 삼환하이펙스 B동 지하1층 119, 119-1, 120호", - "operating_hour": "월~금 16:30 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:30 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F37bd32b74ebf6306f9480f035cf7ba5627358268%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F37bd32b74ebf6306f9480f035cf7ba5627358268%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F15a64911e9a682232a73580a85e7cc64bc41855cee25c8f035445adfbf185af2", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 14, - "name": "BBQ 판교백현마을점", - "category_id": "치킨", - "score": 1.2, - "review": 1, - "address": "경기 성남시 분당구 판교역로 109 SK허브오피스텔 B동 지하1층 127호", - "operating_hour": "매일 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 24:00", - "phone_number": 317079247.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA5F02C1CE68E40EFBDBD3F5E57A18ED6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3A6AA48728614B80A3BECF0FBCBE0986, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8E72BCB365BF43DEB72F489A8897CBA3", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 15, - "name": "깐부치킨 판교산운마을점", - "category_id": "치킨", - "score": 3.4, - "review": 1, - "address": "경기 성남시 분당구 운중로138번길 28-2", - "operating_hour": "화~일 16:30 ~ 24:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "16:30 ~ 24:00", - "phone_number": 3180175054.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F838c3343bc1f0530a2fdbfd71adba4f96f622e18%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F210490365539AFF225, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MjJfMjM5%2FMDAxNzI2OTkxOTIwODU4.YaF0rmejj6OiZQsxiG0AP0z6kvdJGN2Vsl6D1viR_1og.DwldXNhgTjOLfHu3UMO-sZW3bQRpBAWq8bgV9bl_liQg.JPEG%2F%25EA%25B9%2590%25EB%25B6%2580%25EC%25B9%2598%25ED%2582%25A8_%25ED%258C%2590%25EA%25B5%2590%25EC%2582%25B0%25EC%259A%25B4%25EB%25A7%2588%25EC%259D%2584%25EC%25A0%2590_6.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 16, - "name": "클레어수제치킨", - "category_id": "치킨", - "score": 4.0, - "review": 3, - "address": "경기 성남시 분당구 판교역로 109 1층", - "operating_hour": "매일 16:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 02:00", - "phone_number": 317059800.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7FBC43B4672842CCB3E522608D7A078F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F33672d6dbd960bf78d028f7c64dbfde8657cc864%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F55bf5b76530223cec8745e6dc3aee08b95985090%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 17, - "name": "푸라닭치킨 분당동판교점", - "category_id": "치킨", - "score": 3.6, - "review": 0, - "address": "경기 성남시 분당구 동판교로 123 판교푸르지오그랑블 203동 102호", - "operating_hour": "매일 12:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 23:30", - "phone_number": 317039206.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F965c2b410f89f4691a89c8c351fd563c283197b08f7bb791ecd1df0ab112394e, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff2ad473bd826e548fb71f44e3e75b70fbc56b5c9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa7807068825eb4b6f81979e7fd88f8070d51c73b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 18, - "name": "굽네치킨 동판교점", - "category_id": "치킨", - "score": 2.4, - "review": 3, - "address": "경기 성남시 분당구 동판교로 155 봇들마을7단지아파트 상가동 1층 105호", - "operating_hour": "매일 09:00 ~ 01:40", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 01:40", - "phone_number": 317019293.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7C091EB230454C8C9B10A27DE4B8791C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F40A31BDD6ACC4E8DBA65DECE50402190, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF0863F5789D147129ADBE8BAD20ED450", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 19, - "name": "프랑킨숯불양념구이치킨 동판교점", - "category_id": "치킨", - "score": 4.7, - "review": 7, - "address": "경기 성남시 분당구 동판교로52번길 21-4 성문빌딩 1층", - "operating_hour": "매일 15:00 ~ 03:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 03:00", - "phone_number": 317076777.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F96278B20254C423FA4CC3B29DA89AFB2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F337A1E5FCB364E84BC185AEF0CFF1B17, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MjNfMjc1%2FMDAxNzE2NDc2MDU1Mzg4.S39IPpJPqWiH5pseEfCuam2Fz29FBaN5TbZR3lvWhhYg.W8wBJzBlIJgDCd82rVwTsUppZAJpp9BUtVRN2ExgdTAg.JPEG%2FIMG_8848.JPG%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 20, - "name": "훌랄라참숯바베큐치킨", - "category_id": "치킨", - "score": 4.2, - "review": 4, - "address": "경기 성남시 분당구 서판교로44번길 3-6", - "operating_hour": "매일 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 24:00", - "phone_number": 3180179290.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb9a21ffa8a60879e1c3be147b9cf6f225b1d3b93%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd7c32e9099f9bc381db0abb38b067e2881358678%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb9a21ffa8a60879e1c3be147b9cf6f225b1d3b93%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 21, - "name": "매드후라이치킨 판교역점", - "category_id": "치킨", - "score": 1.6, - "review": 9, - "address": "경기 성남시 분당구 판교역로192번길 14-1 판교예미지빌딩 1층", - "operating_hour": "매일 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1FEFDE427D684262BE5B2D8288EFA43E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F15f2f75606f2f4e7090f09fcd4878f4b7d452fcd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1fb4c550ead35f63593ff1fd3ac65e75a6674595%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 22, - "name": "바른치킨 서판교운중점", - "category_id": "치킨", - "score": 2.5, - "review": 5, - "address": "경기 성남시 분당구 운중로 124 마크시티블루 1층 110호", - "operating_hour": "매일 14:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:00 ~ 24:00", - "phone_number": 3180173988.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F48E971033D9C465AB20F476858F78B7F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb5a491627b8ffc72c489cda76ddffd5284388774%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F71f00fa174b9dc44b8a986950207e3ecbdbf3a19%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 23, - "name": "토담옛날통닭 서판교점", - "category_id": "치킨", - "score": 3.3, - "review": 3, - "address": "경기 성남시 분당구 운중로 124 1층 105호", - "operating_hour": "월,수,목,금,토,일 13:00 ~ 23:30", - "expanded_days": "월,수,목,금,토,일", - "time_range": "13:00 ~ 23:30", - "phone_number": 1080240014.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F94197D6920864CBDAF9002AC018CB765, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F293923d3381db20e70e842933c364a66e61e9773%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5c59952dc99ef2e34a945199203bf91129f24bff%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 24, - "name": "BHC치킨 삼평점", - "category_id": "치킨", - "score": 3.8, - "review": 1, - "address": "경기 성남시 분당구 판교로 393 봇들마을2단지이지더원아파트상가 1층", - "operating_hour": "매일 12:00 ~ 23:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 23:30", - "phone_number": 317075888.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F23ec2dbe6d4b955711a725f4a35c611e92d2ecac%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe5564643d1beb5c89fdb74400d62413f0c89e5eb%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F23ec2dbe6d4b955711a725f4a35c611e92d2ecac%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 25, - "name": "치킨마루 백현화랑초교점", - "category_id": "치킨", - "score": 5.0, - "review": 7, - "address": "경기 성남시 분당구 동판교로 91 백현마을4단지 상가동 1층 B107호", - "operating_hour": "매일 15:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:30 ~ 24:00", - "phone_number": 317047780.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD75EA4D6009E4569A7CE2CB8B3E323D3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FE52B5FB83D764147A38F20D608BABF02, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F864e779ac1626263bd83e3eaaa9e90b3eed10dce%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "배달가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 26, - "name": "치킨플러스 동판교점", - "category_id": "치킨", - "score": 5.0, - "review": 2, - "address": "경기 성남시 분당구 동판교로 212 봇들마을6단지아파트 가 상가 101호", - "operating_hour": "화~목 12:00 ~ 24:00", - "expanded_days": "화,수,목", - "time_range": "12:00 ~ 24:00", - "phone_number": 3180169233.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F516d647ecd036df6aba1bf89e2051c8290760818%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEEECDEF9C8134A7596C7AB85182B1B09, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1BBD2B1192A841B09F114E3A610975BB", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 27, - "name": "명동닭튀김 서판교점", - "category_id": "치킨", - "score": 4.5, - "review": 0, - "address": "경기 성남시 분당구 운중로126번길 12", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180167864.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc8da167064434b3ac077491adb58706896da4738%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9adce876685d7b6868ce2aca7edaa766565d1747%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa031c00520453401aeeecb1ee6938c12c28aa37c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 28, - "name": "러브미텐더 판교우림 W시티점", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교로255번길 9-22 1층 104호", - "operating_hour": "월~목 17:00 ~ 23:30", - "expanded_days": "월,화,수,목", - "time_range": "17:00 ~ 23:30", - "phone_number": 316288888.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD5FFDF93E0B143C2A27B4533D72CB030, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD77CF1E417AD45EDB6D644DC110DA240, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD944C21E807D47319AC54759D78B6990", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 29, - "name": "치킨89 동판교점", - "category_id": "치킨", - "score": 3.4, - "review": 2, - "address": "경기 성남시 분당구 동판교로 212 봇들마을6단지휴먼시아아파트 가상가동 1층 102호", - "operating_hour": "수~수 17:00 ~ 23:30", - "expanded_days": "수", - "time_range": "17:00 ~ 23:30", - "phone_number": 3180170890.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6EA1D058BEBA4D4AA62D33D5C7A2085F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F52BCCE4E7C6B4929A774AAC0C1E74F50, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F59A5CE93BB324A83B5A27FF69D047E7F", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 30, - "name": "지코바 동판교점", - "category_id": "치킨", - "score": 2.3, - "review": 6, - "address": "경기 성남시 분당구 동판교로 58 1층", - "operating_hour": "화~토 10:40 ~ 02:00", - "expanded_days": "화,수,목,금,토", - "time_range": "10:40 ~ 02:00", - "phone_number": 317043799.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F47417A0F537545038FF750CC50DF2170, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F802801a854a9a12755e124e61227a6359cfd8803%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F572443FAFDAC4F7EBF4CB5E80F832788", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 31, - "name": "깐부치킨 판교원마을점", - "category_id": "치킨", - "score": 3.8, - "review": 2, - "address": "경기 성남시 분당구 판교공원로5길 11 1층", - "operating_hour": "월,화,수,목,금,일 16:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,일", - "time_range": "16:00 ~ 23:00", - "phone_number": 7042289280.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F826ED4A9533842B99AEA74A3DBE5BB4E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F704418552A9C44B98B4B8F32BDD07D8E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2AA19DFA12034A5D8B7980E82BA1D552", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 32, - "name": "푸라닭치킨 분당서판교점", - "category_id": "치킨", - "score": 2.2, - "review": 3, - "address": "경기 성남시 분당구 운중로 132", - "operating_hour": "매일 12:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 23:00", - "phone_number": 317049206.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F759B87BAFF544BFAA2BE94508D74A805, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F256c27b6e35fff3f4cec9dbf8ae779a921afc342%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC8015745F71B4FDA87EA46EFEBCF8940", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 33, - "name": "신통치킨 동판교점", - "category_id": "치킨", - "score": 4.0, - "review": 3, - "address": "경기 성남시 분당구 동판교로 92 1층", - "operating_hour": "월~토 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 24:00", - "phone_number": 317813187.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1E95A4DA36434C4196F4863A78D66EF9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Febe90b6898276937d6d96abd153af18af2217236%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F23039138563301CC10", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 34, - "name": "생활치킨 판교역점", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로192번길 16", - "operating_hour": "매일 16:30 ~ 23:50", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:30 ~ 23:50", - "phone_number": 50712997999.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F26D6D1FE415F421B927F421BB0F2A4B0", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 35, - "name": "네네치킨 서판교점", - "category_id": "치킨", - "score": 3.3, - "review": 4, - "address": "경기 성남시 분당구 판교로25번길 22-6", - "operating_hour": "매일 12:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 24:00", - "phone_number": 50372573182.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5D590654F571442A8BEDC80C63CE23B2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F28ECBC2BBEB7429AA469691CDCC7B7AB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F356F987FAD4043E79C24CE9454C30925", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 36, - "name": "영계소문옛날통닭 판교점", - "category_id": "치킨", - "score": 3.8, - "review": 4, - "address": "경기 성남시 분당구 판교로 374 스타식스코리아2 1층 103호", - "operating_hour": "화~토 12:00 ~ 23:00", - "expanded_days": "화,수,목,금,토", - "time_range": "12:00 ~ 23:00", - "phone_number": 317051230.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6B4495000F01439483D519BE8C6CBC0C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe44ea10a341d8800488fc7f992056f799fc2ac58%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F592392c6bf389b0f4cd56e6347fbfcb311b3f88e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 37, - "name": "탐탐치킨&커피", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로 180", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 38, - "name": "용가리치킨", - "category_id": "치킨", - "score": 2.3, - "review": 17, - "address": "경기 성남시 분당구 대왕판교로645번길 36", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 316068519.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F38F1FC89A05D4A99B8DA5C5A65A464E6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fac011de4aca33902014145f9e4c9c309b7b5a6d9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa23aa2dd19a7bda3af7ba38dfab89529501118d4%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 39, - "name": "처갓집양념치킨 서판교점", - "category_id": "치킨", - "score": 3.0, - "review": 2, - "address": "경기 성남시 분당구 운중로 129", - "operating_hour": "매일 12:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 24:00", - "phone_number": 7042425566.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB0A737A6D9AA404BBC35762BA3A78FA0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FECD23E4D3109407E8FD2B0961894FC85, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBD44D9843910457092CC93F583FA7193", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 40, - "name": "5K 치킨", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로606번길 45", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316049233.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 41, - "name": "형제쌀통닭", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로192번길 16", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 42, - "name": "순삭닭강정 판교운중점", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 운중로 117", - "operating_hour": "매일 10:30 ~ 19:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 19:00", - "phone_number": 5045258083.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8B18D323C54B40199A160E11AADF72F8, //img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBD4CDA5158CA48D4A4007B71FB85E3F3", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 43, - "name": "광규통닭", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317242530.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 44, - "name": "행복한키친판교", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로606번길 58", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 45, - "name": "꼰또치킨", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 46, - "name": "사바사바치킨", - "category_id": "치킨", - "score": 3.5, - "review": 3, - "address": "경기 성남시 분당구 황새울로258번길 32", - "operating_hour": "매일 14:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:00 ~ 24:00", - "phone_number": 317119239.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F22E40ED01D35471096175FFB6F4CF335, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEyMjFfMTY4%2FMDAxNzAzMTQ1NDQ5NDU5.dggU3sBP-U0MeUgwmOnOlxt4fgpuDa9eFcN20K37wuwg.X9dC89xA-M_gL1QhQmgNaiyu8-pPDIwNdGanoYvXhKQg.JPEG.thdmd11%2F20231213%25EF%25BC%25BF215830.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEyMjFfMjA1%2FMDAxNzAzMTQ1NDQ5NDQ4.lNjjNfS6JJICeXN_AXj7W2TQ4g7SWJZvIUVwMSMKbJ0g.QhFbmU2qjrNYJpj32H0npyXbqrzDsqnwRy2UL2bMdKkg.JPEG.thdmd11%2F20231213%25EF%25BC%25BF215837.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 47, - "name": "구도로통닭 분당수내점", - "category_id": "치킨", - "score": 3.2, - "review": 104, - "address": "경기 성남시 분당구 수내로46번길 22 2층", - "operating_hour": "월~토 16:00 ~ 00:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:00 ~ 00:30", - "phone_number": 50713876909.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFE75C9CA033542F3977932F4F2B11676, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe9d6f03ac861b4d2fb0325a9224f5476f5681a8eb085752f6c08193fc72d11bd, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8d13c048ec5fbc86e597ffb84ee2c8d292f1480156f010173c4349408ae709ec", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 48, - "name": "노랑통닭 수내역점", - "category_id": "치킨", - "score": 4.0, - "review": 4, - "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 1층", - "operating_hour": "매일 16:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 01:00", - "phone_number": 317191239.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdbf78e2106f43056be64601f09468c0581bc8116%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe8c25deafe16407cfe7a541d5fc99b24d91b5920%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdbf78e2106f43056be64601f09468c0581bc8116%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 49, - "name": "BHC치킨 이매행복점", - "category_id": "치킨", - "score": 3.1, - "review": 4, - "address": "경기 성남시 분당구 성남대로779번길 54 동산쇼핑몰 1층 103호", - "operating_hour": "화~일 12:00 ~ 24:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "12:00 ~ 24:00", - "phone_number": 317023693.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA8E6F41EA7704B05A85AD45EEABF3685, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB18C71FFC31F4E3A86453B53F50B56C6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6AA8D4BA1DFA4381B3C8E2CCEE18E02D", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 50, - "name": "깐부치킨", - "category_id": "치킨", - "score": 4.3, - "review": 7, - "address": "경기 성남시 분당구 황새울로258번길 32", - "operating_hour": "매일 14:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:00 ~ 01:00", - "phone_number": 317146992.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC6E4BE7DEC6B43B294AEBB3070FD0684, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc58ba94acb4763ead3882da933429f9c54352568%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0d73dc6460cf889c4a9231de74dc294d276ad04c%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 51, - "name": "보드람치킨 수내점", - "category_id": "치킨", - "score": 4.5, - "review": 4, - "address": "경기 성남시 분당구 백현로101번길 16 대덕프라자 1층 121호", - "operating_hour": "매일 14:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "14:00 ~ 01:00", - "phone_number": 317159233.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F345073604C5B488AAC7689A710E9592E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F17334b07a02ab1ee0f9dd6ddcee4e1fbd89dde22%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F216B683355277B8F2F", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 52, - "name": "놀부옛날통닭 서현점", - "category_id": "치킨", - "score": 5.0, - "review": 0, - "address": "경기 성남시 분당구 서현로 170 풍림아이원플러스오피스텔 지하 1층 B106호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 53, - "name": "이누리치킨", - "category_id": "치킨", - "score": 0.0, - "review": 1, - "address": "경기 성남시 분당구 탄천로 35 1층 103,104호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317034047.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F79DFFF61B9054730B450B9826C637B45, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbjuUBm%2FbtsitHvtKlU%2FtKRe05SiInXmKBsqgJzUh0%2Fimg.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fl0FEM%2Fbtsiwkstlhp%2FwkiDfsP7VN23UtokZTAZb1%2Fimg.png", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 54, - "name": "화락바베큐치킨 서현1호점", - "category_id": "치킨", - "score": 0.0, - "review": 2, - "address": "경기 성남시 분당구 황새울로319번길 6 지하1층 105호", - "operating_hour": "매일 10:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAE51AA946A8240058B812D80DC72DE93, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC869155F611C45C582CD7D8EF8964246, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC15B1E000A9F4422A823CA4EC4C64719", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 55, - "name": "마라통닭 분당아름마을점", - "category_id": "치킨", - "score": 5.0, - "review": 0, - "address": "경기 성남시 분당구 판교로 431 1층 106,107호", - "operating_hour": "매일 16:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 24:00", - "phone_number": 7048210135.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB02E4B510AA445EAB7BCA9EECD19076F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6764A5FBEA7842DF9EC444576E686236, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F66a2942aa6bcfee53a05d0ce1d2dcfd4438d220f%3Foriginal", - "convenience": "WIFI\n동물출입\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 56, - "name": "구도로통닭 수내점", - "category_id": "치킨", - "score": 2.0, - "review": 0, - "address": "경기 성남시 분당구 수내로46번길 22 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fef6f55c97ed616779251ab40f81c808736b8fa9c%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 57, - "name": "화락바베큐치킨 서현2호점", - "category_id": "치킨", - "score": 5.0, - "review": 1, - "address": "경기 성남시 분당구 황새울로319번길 6 지하1층 103호", - "operating_hour": "매일 10:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F99B6C82A10AF4A61847A379D8B3EE632, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc614725b06e855944bb37732768ca6b57629b288%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2F6nWzO%2FbtsJDs6AVvC%2FhAA4kZpd5K7eEUlgP98Xo1%2Fimg.gif", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 58, - "name": "위드치킨", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 성남대로779번길 54", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317023693.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7826FDDF6CE842C294ADE53FD662944D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD4EAAB616AAA490EA41873686BA7E220, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F28E9A353EFE0475681BAD62D9F6C3036", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 59, - "name": "페리카나", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교로 430", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB0F127A8CFAA4FB484D5393C441541E1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FBA6A8DFFE089488AB73BA76190C46486, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5bc4052e8e4cc71a9736a4b54300686e47370b0a%3Foriginal", - "convenience": "주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 60, - "name": "오븐숯불민족 수내역점", - "category_id": "치킨", - "score": 4.6, - "review": 11, - "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 1층 103호", - "operating_hour": "매일 12:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 24:00", - "phone_number": 317199233.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F66724B78FAFA467290CA62F50CD5F018, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F112079d1d3286351190e7da410ed30ca28a67841%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F90ca1836d341d259d362cdc8f5be29b8d0133271%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 61, - "name": "제이스토어", - "category_id": "치킨", - "score": 0.0, - "review": 5, - "address": "경기 성남시 분당구 황새울로319번길 6", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317027004.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 62, - "name": "생활치킨 수내동좁은골목점", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 수내로46번길 20", - "operating_hour": "매일 17:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:30 ~ 24:00", - "phone_number": 50372573818.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F287EE12A487C40C181E20D62D265CA99", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 63, - "name": "치킨스프앤틱", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로606번길 58", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 64, - "name": "프랑킨바베큐치킨 동판교점", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 동판교로52번길 21-4", - "operating_hour": "월~목 14:00 ~ 17:30", - "expanded_days": "월,화,수,목", - "time_range": "14:00 ~ 17:30", - "phone_number": 50720841641.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB915D3F05D934023972597F6587B8FB7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE6AB104ADE4049338586E91F198B3872, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD0B134700BCE4A9281508038485BFEFE", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 65, - "name": "에스피자치킨 분당점", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 성남대로779번길 52", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 66, - "name": "일편닭심", - "category_id": "치킨", - "score": 4.2, - "review": 75, - "address": "경기 성남시 분당구 판교역로192번길 22 효성해링턴타워 110호", - "operating_hour": "매일 17:00 ~ 01:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 01:30", - "phone_number": 316021847.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD9F4FFCAAF5B40B8B4DC27B6B1BC52B8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F612A0C4E1BC746A28B7CE8C3CC18507A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF4606E1D28394EAE84C86FF9D0C606A8", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 67, - "name": "라디오베이", - "category_id": "치킨", - "score": 3.3, - "review": 247, - "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋타워 2층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 3180610773.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDE570D016BC24DAA856B68B58CE6A04B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7693107f317b0d7c6a2caf05acf80ba313dc6533%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9e8461aaf171b7672504214c12d184521bfcf51a%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 68, - "name": "감성타코 판교점", - "category_id": "치킨", - "score": 2.6, - "review": 530, - "address": "경기 성남시 분당구 동판교로177번길 25 아브뉴프랑 2층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317818885.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4058128DA0A849B1A145FA4FF5F5D7C2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F73896818cb29a8d5aecf512041664c3a981708b9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0594525ff682e03a354a2cd3badff1c2b841f015%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 69, - "name": "맥도날드 동판교점", - "category_id": "치킨", - "score": 3.0, - "review": 42, - "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크아파트 상가동 1,2층", - "operating_hour": "매일 00:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "00:00 ~ 24:00", - "phone_number": 316064000.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF83A6EECE939409393A7DE2F0BF67ED0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F866A7D06CDB7498EA0F2EC04BA9F9950, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Feb9d0cc1f64e85a4c449d2a74a592f72c0d0278e%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 70, - "name": "맥도날드 서판교DT점", - "category_id": "치킨", - "score": 2.2, - "review": 26, - "address": "경기 성남시 분당구 운중로 190 1-2층", - "operating_hour": "매일 07:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "07:00 ~ 24:00", - "phone_number": 316023500.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE6613E465AD74A4DA481049DDFD4F2A6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1fe1213f15d202bd64cc183793de38dfcbec43de%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff39d6eadab57599f9a9b495accd44a2e42144a1a%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 71, - "name": "인디테이블", - "category_id": "치킨", - "score": 3.3, - "review": 412, - "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 109호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317087022.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1BEB7258C7DA42978E9E383F4607CD7F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F13209fbb6622b09024783a18a2fd2ffe6484395f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqeEYBvaKF_GDI0moIRQxxg0zVjj0xNik_img.jpg", - "convenience": "WIFI\n주차\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 72, - "name": "맥도날드 판교테크노밸리점", - "category_id": "치킨", - "score": 2.8, - "review": 36, - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층", - "operating_hour": "매일 07:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "07:00 ~ 24:00", - "phone_number": 316064100.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1E2D9324D0244EB1B42A1AD4E0694C61, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcMho9oqu_WzQ1mu1dO4IjNfUqA6F0Ok_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcMcg4Dab_GdICt4prfWbLAelsYHnpC0_img.jpg", - "convenience": "주차", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 73, - "name": "탭퍼블릭 판교점", - "category_id": "치킨", - "score": 3.4, - "review": 181, - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 1층", - "operating_hour": "월~토 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 24:00", - "phone_number": 316017549.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4BFB80DBD61249709CA5931531E3E8D0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8c737a1b17994446fb198f4f1d27980ab064e38d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F791eedd82fe2ed23f218d23b8cf44ec29f6e98ce%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 74, - "name": "제일호프", - "category_id": "치킨", - "score": 4.0, - "review": 43, - "address": "경기 성남시 분당구 판교역로192번길 16", - "operating_hour": "매일 16:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 02:00", - "phone_number": 317041136.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0F92C5676D7F4948B8ECB0E3B6EB43A1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MTNfMjkg%2FMDAxNzE1NTg4OTg1ODgz.J-MZfS396sjJ2n0QeOsMJvg0g3SB-4hMx7pJ3XwM-9Yg.tH2WkDJTqhVuiZBngM_zoPI9TCbkxGfI0AkB2AAIgqIg.JPEG%2FIMG_7550.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MTNfMjgx%2FMDAxNzE1NTg4OTg0NTkx.db3qIP2EpzJVKf9KQ0Y23WB5LRnIzIItj-XasHcq3gkg.bSBD3y3aKVflkl0k16H2lPvGCQ5TwJPTLdN73fhLXQog.JPEG%2FIMG_7543.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 75, - "name": "롯데리아 판교DT점", - "category_id": "치킨", - "score": 3.8, - "review": 0, - "address": "경기 성남시 분당구 동판교로 42 1,2층", - "operating_hour": "매일 10:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 24:00", - "phone_number": 3180163015.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc802bb50ed43f0e1f07a22b41afd731e4c6dfcaf%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6ff3df47d709e5d3a3228a963a65e6d284551787%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F51a85c48cb79ba2a2b94002a6c479b1e14821def%3Foriginal", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 76, - "name": "후안즈", - "category_id": "치킨", - "score": 4.8, - "review": 26, - "address": "경기 성남시 분당구 판교공원로2길 55 1층", - "operating_hour": "화~토 17:00 ~ 24:00", - "expanded_days": "화,수,목,금,토", - "time_range": "17:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEEDB61D8109944A78A19219F2B37B6D8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd3ff79e684e6e6c12dde7d849f6bd7adb7e63927%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fbd27a042c041ef4e1749029eb01542fe08342f1a%3Foriginal", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 77, - "name": "봄베이브로이 판교점", - "category_id": "치킨", - "score": 4.2, - "review": 49, - "address": "경기 성남시 분당구 판교역로2번길 25", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 3180174931.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F246B675057708AC01B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2158BD3457708AC511, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F762dd208b7282538d3790ed90094b7a6bea5c281%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 78, - "name": "피자헛 분당백현점", - "category_id": "치킨", - "score": 3.5, - "review": 6, - "address": "경기 성남시 분당구 동판교로52번길 11", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 3180178770.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F60AF89A6C9014C57A0EDEBD50A2BFC2D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEA32A80873334264A4B2AB5154168BD7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC910E46B48984683BA4E158D8E2149D3", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 79, - "name": "생활맥주 판교역점", - "category_id": "치킨", - "score": 2.7, - "review": 26, - "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 1층 106호", - "operating_hour": "매일 16:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 01:00", - "phone_number": 3180177037.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6658E887AF5B4574A2301C9A4973079E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3aa3f36b7bead412ec6089909835cb769a61373b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F42be931cc6de8617748c9b9173ac1183760fea5e%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 80, - "name": "판교로262bar", - "category_id": "치킨", - "score": 5.0, - "review": 21, - "address": "경기 성남시 분당구 판교역로 240 삼환하이팩스 a동 1층 106호", - "operating_hour": "월~금 18:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "18:00 ~ 01:00", - "phone_number": 1064410622.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9E87B42DB5D54A9DA9C684F55616864F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MTRfNTYg%2FMDAxNzIzNTg2ODkxMTU3.qzirI2c4SeKjfch5cwv8vbhsawLKVrvTVnuedbxDaocg.NioIBz7rKooWnLiQphDuu2Ose_-hOyx5yBSVRIrgmgUg.JPEG%2F1722222168191.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MTRfMTg3%2FMDAxNzIzNTg2ODkwNTYy.LHjoCTqov8Yt6McdwuOSUqLP9KekUw681skUhavcKlIg.ND6YFfEhYFTavGWJZuJ4vqo8iQsbnaLsw2tSX1fvSsIg.JPEG%2F1722222168472.jpg%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 81, - "name": "맘스터치 서판교점", - "category_id": "치킨", - "score": 2.9, - "review": 17, - "address": "경기 성남시 분당구 운중로 142 판교메디칼타워 1층", - "operating_hour": "매일 10:00 ~ 21:50", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:50", - "phone_number": 317070912.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F516CEEB6F6394579884CB35DAC42DB93, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC59169044CFA4571BDC01D200F0B9A59, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1EA547DA5D2B4060834C2A662429A5A9", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 82, - "name": "오늘와인한잔 판교역점", - "category_id": "치킨", - "score": 2.9, - "review": 9, - "address": "경기 성남시 분당구 대왕판교로606번길 45 판교역푸르지오시티오피스텔 1층 103,104호", - "operating_hour": "매일 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9782875C838E4A908E2930BA15D14C63, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F18dfa74e842b2d1f821333317d795eeb07c6b6b8480274dba292d51b54573367, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdbda9a9ab71c1dda5597fdf932439b4158daa69a%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 83, - "name": "모비딕", - "category_id": "치킨", - "score": 3.4, - "review": 15, - "address": "경기 성남시 분당구 대왕판교로606번길 45", - "operating_hour": "월~금 16:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 01:00", - "phone_number": 317015070.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 84, - "name": "바차 판교점", - "category_id": "치킨", - "score": 3.9, - "review": 156, - "address": "경기 성남시 분당구 분당내곡로 151 1층", - "operating_hour": "매일 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": 317077668.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F360E29C189BD450AA757577A19C5BAB4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE9EE49B88A444A6F8B7231C722AE0927, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F01920782C737467699AEBC8C09BF3036", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 85, - "name": "갓잇 서판교점", - "category_id": "치킨", - "score": 3.6, - "review": 392, - "address": "경기 성남시 분당구 판교공원로5길 24 1층", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317030255.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F55A4F4A044254E679D8B8DED12C0BB1D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fba87a5fd2eea800c509f0a813f359f3a81f7ea62%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2eb2b15b8ac0427523d1166d608cd1bd3dfedd8a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 86, - "name": "포레스트오늘숲 서판교점", - "category_id": "치킨", - "score": 4.7, - "review": 151, - "address": "경기 성남시 분당구 운중로146번길 35 1층 101호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317016506.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F388FF2DD8F104B3986DB30D11975F7F5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F068890e9affc522a9bdb19a0188f53648fa42664%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F821cb1dd36d729d9c82f3553d6cba9b7e729377d%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 87, - "name": "청년다방 판교테크노밸리점", - "category_id": "치킨", - "score": 3.5, - "review": 166, - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 A동 2층 206호", - "operating_hour": "월~토 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:00", - "phone_number": 317242723.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAB81822A857F4E3BB8546D7BFEE1318C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4bf83a9af38cc23d8ebf7c95a19679472be185e793b325acac5ca41f39569127, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqe5fQe4Jf_4XJ0re23tNwjtFQ0t42zs0_img.jpg", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 88, - "name": "안주의신 판교본점", - "category_id": "치킨", - "score": 4.0, - "review": 27, - "address": "경기 성남시 분당구 대왕판교로606번길 45 판교푸르지오시티 1층 113호", - "operating_hour": "월~금 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 01:00", - "phone_number": 50255502849.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE9C3DDC5CF6C4C0EA551B5BBB23E1210, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1BEF664A82C54879B237A6DD704B0E1C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F281236ED342B4F8990D30AB95FF70BA7", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 89, - "name": "클로이샌드위치", - "category_id": "치킨", - "score": 4.9, - "review": 32, - "address": "경기 성남시 분당구 판교공원로3길 4 1층 102호", - "operating_hour": "월,화,수,목,토,일 09:00 ~ 17:30", - "expanded_days": "월,화,수,목,토,일", - "time_range": "09:00 ~ 17:30", - "phone_number": 50713901549.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC730FD816F0143D3AA51EB74F5C80233, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F861741731217b13152c10c66d2b4e8628c3262c0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F122326caa1b9caec0ea51779d4cf7990a1bc1dca%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 90, - "name": "파파존스 판교점", - "category_id": "치킨", - "score": 3.9, - "review": 7, - "address": "경기 성남시 분당구 서판교로 154 2층 204호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317099492.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBC9B2C6B60E2437999A81A8C760EB012, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Feab17fa6dd37f195a50b1003517b4c449c619f51%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F523bdfd22981ca85d57c5f73f5c0a5bb2153834a%3Foriginal", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 91, - "name": "역전할머니맥주 분당판교역점", - "category_id": "치킨", - "score": 4.0, - "review": 20, - "address": "경기 성남시 분당구 판교역로192번길 14-2 1층", - "operating_hour": "매일 16:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 02:00", - "phone_number": 317016333.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6F0D73550DE7448EB159AE4726FCF519, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6e2a328e29ec2a74d918a9e7529177070155eaf7%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff0922740e223799d5646d6d9131d3b8e4c50061a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 92, - "name": "리듬앤버거", - "category_id": "치킨", - "score": 4.5, - "review": 25, - "address": "경기 성남시 분당구 판교역로192번길 14-2 골드타워 2층 12호", - "operating_hour": "월~토 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:00 ~ 17:30", - "phone_number": 3180397227.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FAA720B80EC28424D9C19E5AC930E6C0F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F79CFAE77CC7D409B8BD86FFAF6B23CDB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAB7461E1CB634FBC83089CE875AB66B8", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 93, - "name": "블루", - "category_id": "치킨", - "score": 4.9, - "review": 6, - "address": "경기 성남시 분당구 판교공원로1길 43 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317049250.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FE55150EA537E4F0EBF971FB89E246722, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F221391475537681328, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDhfMTcw%2FMDAxNzI1NzU5MDA0MDY4.cbKhu2KiK3WCIIABu7ou6uNp6jd_EHdsRIIIndP3bdQg.GCXpyDZxSZ6wn3wR-xKnzikxzvZwYZKVm_ZTcZFe_EYg.PNG%2FPhoto_4.png%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 94, - "name": "쿠차라 판교카카오점", - "category_id": "치킨", - "score": 3.0, - "review": 95, - "address": "경기 성남시 분당구 판교역로 166 1층 9호", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 316017223.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2E2D81DD80A6487F92539D7B21861582, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F24a608f2dfe79b86237cc426a05198ddd7edf3b0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6d541326f56b0df352029f5a39dffb6a15166b84%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 95, - "name": "피자헛 판교중앙점", - "category_id": "치킨", - "score": 2.3, - "review": 4, - "address": "경기 성남시 분당구 운중로 237", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 317240503.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCEE439C842CE4E2FAFF177AAECA6518D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb82609dd39dd30ccc24f13c82a6e2b7f6b88aed0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F90A5F74462E847DB95AE662EB27B5F28", - "convenience": "주차", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 96, - "name": "생활맥주 판교도서관점", - "category_id": "치킨", - "score": 2.0, - "review": 5, - "address": "경기 성남시 분당구 판교공원로2길 54 1층", - "operating_hour": "매일 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 01:00", - "phone_number": 3180166733.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4307E58B8B3B45DC93E268B6C4BCF22F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTdfMzAw%2FMDAxNzE4NTkxMzUyMDc3.NLfPDOw9XoxV4E9zYYItWs24l1xS23RZ-8jX0lQG2mYg._UhOquCKyRMKfFUzJE61xt8u0VI9KwPcJdcAIT7D2ggg.PNG%2FPhoto_4.png%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTdfOTYg%2FMDAxNzE4NTkxMzM3NTcy.WGT19Umz8jqlJmkE7-0inkQ2Imk3BYX1s-oEPpMAQM8g.RPmYiqL9KF484y9y8d2tUwHrg5_i9x10b0nXzRGQ84og.PNG%2FPhoto_3.png%3Ftype%3Dw773", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 97, - "name": "루카즈", - "category_id": "치킨", - "score": 3.4, - "review": 52, - "address": "경기 성남시 분당구 판교역로 6-5 1층", - "operating_hour": "수~일 15:30 ~ 17:30", - "expanded_days": "수,목,금,토,일", - "time_range": "15:30 ~ 17:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCEA8E5895D77443494B49D3BA4456283, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd585a009cbc6c3769ee22887ff4606138d12b5e4%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3cb08e8f49e2aac57852de5ec3834e379eb882fb%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 98, - "name": "람부뜨리", - "category_id": "치킨", - "score": 4.6, - "review": 106, - "address": "경기 성남시 분당구 판교공원로1길 43", - "operating_hour": "월~토 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F83A8A0283DB3454D8C165CD1E7DCF25C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FFBE67280D0A74A6CAECC2180A1AE7E6F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD3DF184EACA44423A2DDD51341BB6B3F", - "convenience": "WIFI", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 99, - "name": "이터스 현대백화점판교점", - "category_id": "치킨", - "score": 3.8, - "review": 45, - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~목 10:00 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:00 ~ 20:00", - "phone_number": 3151701053.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F41ADA16E31504A358331E25B7083E7DD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd2974a05541eca0ba03fcf67332fa0db8f7cf046%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0fdf116984def5124f3c27840fee9b896c04171e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 100, - "name": "펀비어킹 분당판교테크노밸리점", - "category_id": "치킨", - "score": 3.6, - "review": 1, - "address": "경기 성남시 분당구 대왕판교로 660 1층 148호", - "operating_hour": "매일 16:00 ~ 04:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 04:00", - "phone_number": 317242678.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF080EB3AD947442F946C8EB3B2D48409, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F38C61EA4CBDE4D938FF31F6EA6C1A538, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F81A227591E1A4BAB8C9C26EBA38651FC", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 101, - "name": "스트릿 현대백화점판교점", - "category_id": "치킨", - "score": 2.8, - "review": 88, - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151702008.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1227E8759F254DE883D61E1E9C1D14B2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc0744ab2f91086485c577f06eecc4ee30d04d64b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5c7d844faba94e1395baff9e7f6a16552eef6509%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 102, - "name": "탄탄면공방 판교테크노밸리점", - "category_id": "치킨", - "score": 3.0, - "review": 29, - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 121호", - "operating_hour": "월~금 14:00 ~ 20:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 20:30", - "phone_number": 316984535.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF9C7F197346747398197BF1DD36F2F66, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F14D76C191B064B2BB4D8C5EFE6245A14, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FCF4ED4B5558A43579A12EB614031027C", - "convenience": "편의시설 정보 없음", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 103, - "name": "마마스포", - "category_id": "치킨", - "score": 3.7, - "review": 20, - "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어에스동 1층 123호", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 316967696.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2974160334EC43718B1AEFAC7CC49409, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqc6sxtzPk_QG8SENQOvePitwsXQIh0FK_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqc80mBPWt_QzlulhRR0VSUc5tskaii20_img.jpg", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 104, - "name": "투고샐러드 판교유스페이스점", - "category_id": "치킨", - "score": 5.0, - "review": 16, - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 2층 230호", - "operating_hour": "월~금 08:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 20:00", - "phone_number": 317242588.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F28DE063882D7447FADD594E51DC43EFE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F751CF7D14D25450585FDB939339CB527, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDJfODcg%2FMDAxNzMzMTQ4NjQ0MzI5.MYQAK6o435SimSjPpAi2_g_JLnA3hg3UdWZQQNjjeD4g.lMajwmKhzckhI1N6PVL47ZlDhzJnk2ctDkiMiom_GLYg.JPEG%2FIMG_1161.JPG%3Ftype%3Dw466", - "convenience": "WIFI\n주차\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 105, - "name": "신전떡볶이 운중점", - "category_id": "치킨", - "score": 3.4, - "review": 1, - "address": "경기 성남시 분당구 운중로 129 마크시티 엘로우 108호", - "operating_hour": "화~일 11:00 ~ 22:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317815575.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD65FF17544CD4DECAF95B9FA9D92F99B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F526CA5C3AD724CC9BA8DDD989B113F83, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FAC0FEAB54B3A46749AEB8F0EBD029DFB", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 106, - "name": "생활맥주 판교유스페이스점", - "category_id": "치킨", - "score": 1.0, - "review": 4, - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1빌딩 1층 142호", - "operating_hour": "월~금 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 01:00", - "phone_number": 316281470.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MTBfNTkg%2FMDAxNzEyNzMwMzgyMzk2.6TbF0yLqgFWOmlkeYasbdgDwfAOoCFKmOITLQkw7MJYg.m-XWbN3bmvSKrLvRo2QErOSwFvLta0kI7wFypkCh74Ag.JPEG%2Foutput_1693895877.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MTBfMzIg%2FMDAxNzEyNzMwMzEzMzgy.195BPBXqx4-cslOm6b9aJj2M3NzbgdLkfXYhIRUskysg.b1mvQY7qt6WEoDUxm_gVOE_MQvTZB-nYPCTK5TXM9gMg.JPEG%2Foutput_602703339.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA0MTBfMTAz%2FMDAxNzEyNzMwMjU2NTU2.soZqRbHjeVyE7BuSvmZzY4RZfaJpjZs6o3vKHQzns-Ag.jG4w7fx3Uo1Gz0gDH0Gmohhlygh-QfdHHA6REKJcSE0g.JPEG%2Foutput_2944431536.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 107, - "name": "프랭크버거 서판교점", - "category_id": "치킨", - "score": 3.0, - "review": 7, - "address": "경기 성남시 분당구 운중로 123", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317073787.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1F5F3BE9E88E4856A17E3CFCCA7917C5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F39a14c73a11583024209c2d6b0ab7d3638950a38%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7D082EF069014561A93FA3CFE7E8FB1D", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 108, - "name": "신전떡볶이 삼평점", - "category_id": "치킨", - "score": 4.4, - "review": 16, - "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 101호", - "operating_hour": "월~금 10:40 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:40 ~ 22:00", - "phone_number": 317038259.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE5C2E43A76A044AD83D4DEDD5C57FD4D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa5fb70662f3b3785389ea532eb85acf1c009119b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F91a727b9896031021904e136b0b2b197726c3d9e%3Foriginal", - "convenience": "주차", - "caution": "배달가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 109, - "name": "서울맥주1977 서판교점", - "category_id": "치킨", - "score": 4.2, - "review": 8, - "address": "경기 성남시 분당구 판교공원로1길 61", - "operating_hour": "매일 17:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:30 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8992748727394692B1BC1492B0AC4206, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdac03c42498634e34a8a903d9be5aae7282360bc%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F32ed8377ca790cdcb4e21f6d2a2652b273dde844%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 110, - "name": "킹콩부대찌개 서판교점", - "category_id": "치킨", - "score": 3.0, - "review": 9, - "address": "경기 성남시 분당구 판교공원로5길 11 1층", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 3180160334.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8046FE43A83B4DBCA6C94FFCA4E3C9D9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqeqVROx9g_7sSLqkj4zq1aC86dq5Uah0_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2225134758DB0F3917", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 111, - "name": "더제이스", - "category_id": "치킨", - "score": 5.0, - "review": 21, - "address": "경기 성남시 분당구 서판교로 160 스타식스밸리 102호", - "operating_hour": "월~토 16:30 ~ 23:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "16:30 ~ 23:30", - "phone_number": 1051061483.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE5CB971FF640425AA4C69F52D7DCDE7A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTVfMTcx%2FMDAxNzE4NDQxMTA2NTIy.IYvggi6Z4NKP3unw_A6TdBxwjdape3qLEt_j24venlwg.Q6mCfbHtcmCvq_66J_aRCW74qETsoMYkkykQ6FCvnT8g.PNG%2FPhoto_1.png%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MDdfODQg%2FMDAxNzE3NzU0Mjc4ODcz.35RVHmMFkN4ot0DAZIDJFq_HxKGUFXYFD76D7V_PCDcg.P9NtZD-5Vg9XYcpM-AGyS4_i4Mx4ZE7rXs9vFJQWPS8g.PNG%2FPhoto_4.png%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 112, - "name": "스노우폭스 판교테크노밸리점", - "category_id": "치킨", - "score": 0.0, - "review": 30, - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 102호", - "operating_hour": "월~금 07:30 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "07:30 ~ 21:00", - "phone_number": 317786683.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7418A867F42F4372B7D60FA2A20A2903, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F04EE4AF167CE4FE5B9C521F371C67484, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2CE700AA51014CC6BCC2C0DEC3CAD962", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 113, - "name": "킹콩부대찌개 동판교점", - "category_id": "치킨", - "score": 3.9, - "review": 12, - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 2층 207호", - "operating_hour": "월~금 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "10:00 ~ 20:00", - "phone_number": 316983240.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqeg2XW2Z1_AgQw3ktUHW56xKK21x7JKk_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqeg2XW2Z1_AgQw3ktUHW56xKK21x7JKk_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcVtCMIhp_HUHmGnhrgPL7OJUNSoX8p0_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 114, - "name": "미술", - "category_id": "치킨", - "score": 5.0, - "review": 58, - "address": "경기 성남시 분당구 판교역로192번길 22 효성해링턴타워 3층 313호", - "operating_hour": "월~금 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 24:00", - "phone_number": 1039820423.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F536AA1C0B29A4456A74F649D4FDFFF0B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1908888947, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1920416530", - "convenience": "동물출입\n휠체어사용", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 115, - "name": "더탭하우스", - "category_id": "치킨", - "score": 3.4, - "review": 4, - "address": "경기 성남시 분당구 판교역로 235 H스퀘어 N동 120호", - "operating_hour": "매일 17:30 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:30 ~ 02:00", - "phone_number": 317377447.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2371C2385312EFEB04, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2276BB4C5320200217, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F270CC74C5320200309", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 116, - "name": "프랭크버거 풀무원판교넥슨점", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교로256번길 19", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 117, - "name": "호화식탁", - "category_id": "치킨", - "score": 5.0, - "review": 11, - "address": "경기 성남시 분당구 판교공원로3길 4 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2602cea14140cf881463cfd4ebf69ecf3806229b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0EAEFDAE97C140FF9FC71F8616555E3D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2602cea14140cf881463cfd4ebf69ecf3806229b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 118, - "name": "생활맥주 서판교운중점", - "category_id": "치킨", - "score": 4.5, - "review": 1, - "address": "경기 성남시 분당구 운중로138번길 24-3", - "operating_hour": "월~토 17:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:30 ~ 24:00", - "phone_number": 3180160825.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F97DF25B8BE6B4BB1857BAD3F69FCAC29, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5950f0dffea6540481804547704f7c651551b092%3Foriginal, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTdfMTc3%2FMDAxNzE4NTg5MjU5NTE2.gIhfzVyRhIioRQHWQ3XS9xyr4HLHJLpDil2YK75161Ug.aAgWVAISAueCBRZPL_U1ZjBKdEkQ2W96Cl-NDp57Uisg.PNG%2FPhoto_1.png%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 119, - "name": "을지로노가리", - "category_id": "치킨", - "score": 3.0, - "review": 2, - "address": "경기 성남시 분당구 대왕판교로 670", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317242530.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA3MjZfODUg%2FMDAxNjU4ODM0ODExMjg0.mXvzCOBF7ExpSkT6EzzJLEoMaCCXVSzs8utQ-Xr65zUg.A-8YTlfxadd4KD_HK0qKx-i7zIthIbSQEDeEB8cnLYcg.JPEG.choig825%2F20220726%25EF%25BC%25BF191223.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3cb04e384bc83374a49cfaa9d77a181afd197aaa%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa9d4e7768dc33120e402d8c1aecdd322b7b987da%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 120, - "name": "반올림피자 판교점", - "category_id": "치킨", - "score": 5.0, - "review": 2, - "address": "경기 성남시 분당구 판교공원로1길 3 1층 101호", - "operating_hour": "매일 12:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 23:00", - "phone_number": 317047773.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7D2FF143E5D54CA7B46C70CF720ED236, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6E6527583E834F25993AF7D2B1FD147A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9BA0F871538C42D4B9741C83D20C5EB4", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 121, - "name": "감탄떡볶이 서판교점", - "category_id": "치킨", - "score": 3.0, - "review": 22, - "address": "경기 성남시 분당구 운중로138번길 37 1층 102호", - "operating_hour": "월~토 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:00", - "phone_number": 3180165889.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F22BFD142CE144F4497C4C315C4CD2BBD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F236937385939F1D31E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MTFfOTgg%2FMDAxNzE1NDI5NzA2NTky.EEKCf7G5RQ9q69IdkuGjfnz8ev1dCi7kKpaeU0L_SlYg.-3uFtPENSWm5hR9UzxbyjwHb4nYIlrC4kwxtn9FJ_cwg.JPEG%2F20240511%25EF%25BC%25BF205436.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 122, - "name": "청년다방 판교운중점", - "category_id": "치킨", - "score": 3.7, - "review": 20, - "address": "경기 성남시 분당구 운중로138번길 28-5", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317032539.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1330B323EAD3451BBDDA6FB9EE97A368, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1B5EACC77E5C4E3CBB5871988F24D8FB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2127964357E207522B", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 123, - "name": "서울황태 판교점", - "category_id": "치킨", - "score": 5.0, - "review": 18, - "address": "경기 성남시 분당구 판교역로192번길 16", - "operating_hour": "월~금 16:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2FA14C1A930A4F59A5BDF92C9CAAA44D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MjFfODgg%2FMDAxNzE4OTcyMDUwNjc5.mhVRl2yma74bbddQUk_eI8unEuNC5_MwL1yUKF9z4G0g.d5BnB0THnIQ95DXPa9H6sj-7DjrKdPVJxzTN5knp4eUg.JPEG%2F20240620%25EF%25BC%25BF183016.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MTFfMTcx%2FMDAxNzE1NDA4NTM0OTUw.U9DZztvXARBSAchGF5Qpb0Tf3Y3Vp0hSPTBVZJE3p04g.T31iDjba-I2-8AVP7N4gKu11JxO5dG-fS3n2VUDY7GUg.JPEG%2FIMG_3953.JPG%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 124, - "name": "프레퍼스다이어트푸드 판교점", - "category_id": "치킨", - "score": 1.9, - "review": 27, - "address": "경기 성남시 분당구 판교역로 231", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 50720838506.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F08234A92CD9C4C9196D37809D5AADF78, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7194476a9b4c847df5dc9b2e5fc08a56c0a25e62%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0AFC071053404B758856F6502D18B4FC", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 125, - "name": "남자피자 판교백현점", - "category_id": "치킨", - "score": 2.0, - "review": 0, - "address": "경기 성남시 분당구 동판교로 122", - "operating_hour": "월~토 10:50 ~ 22:50", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:50 ~ 22:50", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FFD10AC4AF06C4858A23372A4AD1B9504, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcSsLkeTl_g7gWI2o38lP6eDU0GNz7ok_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqcSqzXD6w_jfTgzrHtF2P8JGNnNkh0xk_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 126, - "name": "돈돈정 판교아브뉴프랑점", - "category_id": "치킨", - "score": 2.8, - "review": 2, - "address": "경기 성남시 분당구 동판교로177번길 25 2층 203호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317080418.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3F85091E4E5F49F8AF10D228F95C2BA9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2cba29a7550c0541b5d73b1d74dfc3e3dd3905f9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6d4e62bbdfc2e693fb7348dbac264ca1efbc2feb%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 127, - "name": "2도비어 판교역점", - "category_id": "치킨", - "score": 2.4, - "review": 12, - "address": "경기 성남시 분당구 판교역로192번길 16 판교타워 1층 110호", - "operating_hour": "월~금 16:30 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:30 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F885AD13A1B2042EF92D5B9AF33685F04, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MDlfMTIz%2FMDAxNzIzMTg3MTY4MjUy.VNwQNqaLG_ByLWyn70g3BJ-2ICmiZk_EMegS164GDWsg.2ITU5f73gvAvzIGDNCbGe3qDhmLfv43joScKjejO5S4g.JPEG%2FSE-1B6BE17C-D906-4162-A52A-541C3555ACFA.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbeBmtT%2FbtrveLkFdbv%2FZAUpM0dxMFMxYqykWuKkL0%2Fimg.jpg", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 128, - "name": "가마로강정 판교점", - "category_id": "치킨", - "score": 0.0, - "review": 1, - "address": "경기 성남시 분당구 동판교로 49 1동 1층 106호", - "operating_hour": "매일 12:00 ~ 22:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 22:30", - "phone_number": 317077292.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2D61E4C9F7BB459581D7514FAFDF35AB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBB0F689F18644C268DB727721998A575, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2FA968E6C1064CE7AE2551EA4B7C0AF4", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 129, - "name": "삼첩분식 판교점", - "category_id": "치킨", - "score": 0.0, - "review": 4, - "address": "경기 성남시 분당구 판교역로 109 SK허브오피스텔 B동 지하1층 129호", - "operating_hour": "수~금 10:30 ~ 21:00", - "expanded_days": "수,목,금", - "time_range": "10:30 ~ 21:00", - "phone_number": 316061235.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F12C249ADC3294C9A9387390F1CEF764B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB770FC3A548C4ECC8290C3D402433EB6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F88010D03D44C44B084CF65DC3F9F997B", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 130, - "name": "프랭크버거 풀무원판교한화점", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교로319번길 6", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 131, - "name": "크라운비펍 판교점", - "category_id": "치킨", - "score": 4.7, - "review": 9, - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 203호", - "operating_hour": "월~금 18:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "18:00 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F51345422066F4BB7B4786BC6D50EB1EE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5083ef06273fa3798ed4d949b8b8ab6d73c97edc%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8aad523e18bc52cb65e7c36f859bf33e66cb34f1%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 132, - "name": "꿀돼지두루치기", - "category_id": "치킨", - "score": 2.8, - "review": 10, - "address": "경기 성남시 분당구 판교로255번길 9-22 판교 우림 W-CITY 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F62CCB441546541489C33C64656720443, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff17e7f34ab9f242f3a1e677aa5a4abcf8781b852%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9c71a1ed0c2cc186f16104588fb12d053155a89a%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 133, - "name": "치어스 판교테크노밸리점", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 대왕판교로 660 3층", - "operating_hour": "매일 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F22311649553DD7CC34", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 134, - "name": "남자피자 판교점", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 서판교로 160", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F22068C3B57B5447729", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 135, - "name": "킹콩부대찌개 판교점", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교공원로5길 11 1층", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 3180160334.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F44861A7CE4C745EA9B52CBEBCFCF0636, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F34F3129313E44487A26E7441552EC8A6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F488C0413C60E44CD92D30705838AC8F4", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 136, - "name": "별난주점", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 판교역로192번길 16", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa3d23e6b40023db485242be49d04f5410b408a7a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa3d23e6b40023db485242be49d04f5410b408a7a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F80977fc3babef7b7f780294e740b9694f8eb7320%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 137, - "name": "맥도날드 수내역점", - "category_id": "치킨", - "score": 3.4, - "review": 39, - "address": "경기 성남시 분당구 백현로101번길 29 C&C빌딩 1층", - "operating_hour": "매일 00:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "00:00 ~ 24:00", - "phone_number": 316298000.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc78203e30aa6512574cbf3fb6fa0812ab6fe7278%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F71ff62bcd0199a1fa39efc645924d9c248507452%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd4b16363683a3983acaef062e5696d081cec9297%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 138, - "name": "개성전통삼계탕 분당본점", - "category_id": "치킨", - "score": 3.4, - "review": 30, - "address": "경기 성남시 분당구 백현로 97 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317163454.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7629A09E795C426BB7A31B7952BEEB0E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F917bd3f354f1bdf5f4a13ea52bcb8019f6a6d29a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa1423cc8e855987c041f454df575cc72b81dd3e1%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 139, - "name": "돈가스에미치다 수내본점", - "category_id": "치킨", - "score": 2.6, - "review": 151, - "address": "경기 성남시 분당구 백현로101번길 11 동현프라자 1층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317210307.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD157A30C10E24AED88E8DFB82BCAF9BE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6C29CA24A0BE4C8DBEF63D3523BCBDAC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9DEEC8C354744A65A5B9E9EBBFCEE997", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 140, - "name": "맘스터치 수내역점", - "category_id": "치킨", - "score": 3.3, - "review": 15, - "address": "경기 성남시 분당구 백현로101번길 20 그린프라자 1층 103~104호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 317195007.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3112A5D08ECE41D4BD9099A48304681D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F596aec18331f2dd370d165acc0b66fae4135eb4c%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqe87ES0j3_QqvQZN2YY0Vs9P9w24gaQ0_img.jpg", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 141, - "name": "가마로강정 수내롯데점", - "category_id": "치킨", - "score": 3.5, - "review": 4, - "address": "경기 성남시 분당구 백현로101번길 13 월드프라자 1층 101호", - "operating_hour": "월~금 11:30 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 23:00", - "phone_number": 317117293.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6791B77E0E114802955D8595EC25249B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb43781572fc51e459a1e528eb9ffbfa932f6da69%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F37D84100352541969E133B6DBF30272E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 142, - "name": "펀비어킹 수내역점", - "category_id": "치킨", - "score": 4.6, - "review": 3, - "address": "경기 성남시 분당구 황새울로258번길 36", - "operating_hour": "매일 16:00 ~ 04:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 04:00", - "phone_number": 317131110.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCDE80B6FA66949C7B75ED441729F91E4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F179D8B877292417AB0DD7784C5B6ADEF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F26F159870EAD42C4A74F60027E34BAE5", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 143, - "name": "심야포차 불면증", - "category_id": "치킨", - "score": 5.0, - "review": 12, - "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 2층 203호", - "operating_hour": "월~토 14:00 ~ 03:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "14:00 ~ 03:00", - "phone_number": 50371500637.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8ECDE8F9D0C445B1A7CFE39AC8A4FFF0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F65E402C262664DD2B1F1E03DC9125C26, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F0CC63488A5E647C9BD240F246BA14F24", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 144, - "name": "오지 OG버거 판교1호점", - "category_id": "치킨", - "score": 3.6, - "review": 5, - "address": "경기 성남시 수정구 창업로 17 B동 1층 101호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317225552.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fff93b45d9003e718936049cc6c55ce3b713cb5af%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MDNfMjQg%2FMDAxNzE5OTQwNjk4MTQ0.qj-vk7e_kOg-AzBzN13VIfJQWwc6I7x0HbMDfG_JuJEg.ceTQi-GNvi-nO8Vgcn-vutX_BUNvT0aCvuZAXX5jIAUg.JPEG%2F20240702_134834.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAzMjhfMTI1%2FMDAxNzExNTU0OTQ0ODY1.a_jUjB6CmLTWfsQP5c2CW_vSncqhXDHLOlmLzgH9pfkg.f2ftvLZ3Kb1zHxnlvLvsLXm9WGdzZdkmpgUQslQDa9sg.JPEG%2FIMG_7744.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 145, - "name": "청년다방 수내점", - "category_id": "치킨", - "score": 3.5, - "review": 10, - "address": "경기 성남시 분당구 백현로101번길 16", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317160900.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7319D18511D94782AC81294E0F019B6D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F42f0b1e33b265d27141573bdb82e8501e7975b89%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa6e0968f5725c1ae7ccc336f7b9f3e820bd293ce%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 146, - "name": "역전할머니맥주 분당수내역점", - "category_id": "치킨", - "score": 0.0, - "review": 8, - "address": "경기 성남시 분당구 황새울로258번길 10-9 영성라벤더 2층 202호", - "operating_hour": "월~토 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 01:00", - "phone_number": 317116386.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE27C62AFCFA74C1AA9BFEB108EFE1032, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjNfNzAg%2FMDAxNzMyMzE1NDk1NTk2.PjIhava8G_QNpBjx0hYmZ2riYmaUUu3PqcZZLffkt3Yg.8xXa0YRsR9IkCgL_9VnpMyQ_SPnE50q16ZNRg1Xe3ocg.JPEG%2FIMG_6397.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDdfMTcw%2FMDAxNzI1Njc4OTIxOTA0.HSgKlUosda3tUF0tb1CbyzF8K2WxwD4lQnbUt7CL8Owg.nHPnZQSp_1CkZC4dGTvuHQFlEHA--BY3MWWLWdn_t7Ag.JPEG%2FIMG_9624.jpg%3Ftype%3Dw966", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 147, - "name": "토끼정", - "category_id": "치킨", - "score": 2.5, - "review": 0, - "address": "경기 성남시 수정구 창업로 17", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA88703CF8140423D91BA9DF687D1D10A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9888684C12164A96B9548917880D9C46, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4ABD0E30825B40CC99D0503A316707CF", - "convenience": "주차", - "caution": "예약불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 148, - "name": "맘스터치 분당HD현대GRC점", - "category_id": "치킨", - "score": 1.0, - "review": 0, - "address": "경기 성남시 분당구 정자동 4-5 4층", - "operating_hour": "매일 10:30 ~ 18:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 18:00", - "phone_number": 317117113.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2773BF4D53857FA90C", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 149, - "name": "델리커리 판교점", - "category_id": "치킨", - "score": 4.0, - "review": 40, - "address": "경기 성남시 수정구 창업로 18 파미어스몰 P1동 2층 210-1호", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F596434C4FCDF47A1B3FBB8BA4C51EF8D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdee694f9330db6c7c704ca82b7fca573b2f6122b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5945ef9f237321b26f3481cb115d13efe048a9e8%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 150, - "name": "21 Flamingo", - "category_id": "치킨", - "score": 5.0, - "review": 45, - "address": "경기 성남시 수정구 대왕판교로 815 LH기업지원허브 103호", - "operating_hour": "월~금 08:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 20:00", - "phone_number": 317788811.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF9399049A4C2438E9F820994265FECD8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFA0DEEC713114B29A25314379B3D074B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F48B5532D989A4B4FA8254AA468662168", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 151, - "name": "삐삣버거 판교파미어스점", - "category_id": "치킨", - "score": 2.4, - "review": 15, - "address": "경기 성남시 수정구 창업로 18 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 50714978603.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F91941acf1b923c67f6bbb81b4df4a499fb1ee990%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe2ff85797f5209b964a574b08da2fe5fc741cfee%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4abe8f1c94104c7244545961671d47d2ebb4fabb%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 152, - "name": "생활맥주 수내동좁은골목점", - "category_id": "치킨", - "score": 2.3, - "review": 19, - "address": "경기 성남시 분당구 수내로46번길 20 105~106호", - "operating_hour": "매일 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": 317167979.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB2853DDC77884B3E82F657037577939F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MjNfMjU4%2FMDAxNzIxNjk0NjEzODkw.9kDamVKJt3sWfSv7VNV-sPQSlOBeMPCKI8wOND9h8Lwg.9XNhNvVoW3m1PDiq6nTul725h5nd9Ewp-GrGeKeupWYg.JPEG%2FIMG_8331.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MjNfMjA0%2FMDAxNzIxNjk0NjE1NTUy.BG7gxI4rkepfu9rjEPR_EGBtu7gJXK3PMm_uXoSGgzsg.F83kQFSFBL_kxBz2YzIsD-JZP8B-tahpY8NVt4JohJEg.JPEG%2FIMG_8330.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 153, - "name": "신전떡볶이 수내점", - "category_id": "치킨", - "score": 4.2, - "review": 9, - "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 2층 204호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317111151.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F94ABB42FD7FF4158A8E34DEDD25430F1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffb616806642d6b8c61b10eff3de659572dc10028%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9FA4A9AB828D44139765D658E1AA6382", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 154, - "name": "청년다방 판교파미어스몰점", - "category_id": "치킨", - "score": 2.5, - "review": 8, - "address": "경기 성남시 수정구 창업로 17", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317102790.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC542D6AA560449588C7BD033D89509CD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2127964357E207522B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MjZfODcg%2FMDAxNzE5Mzk5NTIxODAw.p0Qi-xGS8aq3n86PZq1h4-rEMaLTTj6OzT128xqekJsg.pC1g4hX68LHUY3rSF9c7WXzlxG4LCfQnpqEd3kHzduQg.JPEG%2FKakaoTalk_20240626_191216501_08.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 155, - "name": "봄이머무는언덕", - "category_id": "치킨", - "score": 4.5, - "review": 6, - "address": "경기 성남시 분당구 황새울로311번길 14 서현리더스빌딩 8층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317040858.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0F0D7BDA266F4D2EAC4A530F6BE6E4DD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2F3MuRk%2FbtsnpkwsB8q%2FBOewAuAwuLTU6CDRFFKgsK%2Fimg.png, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2F3MuRk%2FbtsnpkwsB8q%2FBOewAuAwuLTU6CDRFFKgsK%2Fimg.png", - "convenience": "편의시설 정보 없음", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 156, - "name": "마리오븐", - "category_id": "치킨", - "score": 5.0, - "review": 1, - "address": "경기 성남시 수정구 창업로 42 1층 117호", - "operating_hour": "월~금 11:30 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F346923C3D3454B6488923B1000F08169, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F848502B1F7524804BF454DCDDD45AA6C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FF0844B99568D44E587C30009F619D381", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 157, - "name": "봉구비어 분당수내역점", - "category_id": "치킨", - "score": 2.2, - "review": 2, - "address": "경기 성남시 분당구 황새울로258번길 32 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F250CE24D553751332B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTJfMTAy%2FMDAxNzE4MTYwMjI2NTk4.ihFug_ag5w-B-ikDBcMO5BjkyqB9hiRQV90gzvY5RIAg.7eLKxxzL4j-5NIUiHPvEuCcoUjNv-K73ShaJmTkC5TEg.PNG%2FPhoto_2.png%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MTJfMjQ2%2FMDAxNzE4MTYwMjM2NTQ1.XMSWJw7pGW8oIS5wiWRbtr-latznQmVBj4sYTzS9smcg.OzjMme5O5FOHAfS1fEgFxaJ0GI3l3snDeZpYDkqFsuYg.PNG%2FPhoto_3.png%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 158, - "name": "짝태군망고양 수내점", - "category_id": "치킨", - "score": 5.0, - "review": 9, - "address": "경기 성남시 분당구 황새울로258번길 43 수내프라자 1층 112~114호", - "operating_hour": "매일 16:30 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:30 ~ 01:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD0058A7AAC4344A7B3F0B79706BD4527, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDVfMjAw%2FMDAxNzI1NTI0MTQ2MDUz.GWDZKCdxreCBC04svyRNCqOqGb-SbGt89dFVrMMvM9sg.ZmT4pq5I_k0MqHf2svUubwlroD86O93leUmPLUx6aqog.JPEG%2F20240320%25EF%25BC%25BF202509.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MDVfMTkx%2FMDAxNzI1NTI0MTQ1MDE4.U1ZMoSy-VTCk1EVKnpb17fTgb3MyeuCgcYdgh5jA_sgg.Q4N11lHnw8oOpm49bDZZBsWZjTLTvv3JwJaqTCCwfEog.JPEG%2F20240320%25EF%25BC%25BF202513.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 159, - "name": "바리 판교점", - "category_id": "치킨", - "score": 2.9, - "review": 2, - "address": "경기 성남시 수정구 창업로 18 제2판교 테크노밸리 C1동 1층 118호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7075859331.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa7babbe469e887906ea76c3fc17637bf1bf04fe1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fb6Ee6J%2Fbtr5Pc9bXzX%2Fvcz5k1nerGJsVEsd1GiTo1%2Fimg.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FcP8IWd%2Fbtr5OyLsR5e%2FqdyIHJ8T4qxuK1sut8a8KK%2Fimg.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 160, - "name": "2도비어 분당수내점", - "category_id": "치킨", - "score": 3.0, - "review": 0, - "address": "경기 성남시 분당구 황새울로258번길 10-7 가나프라자 1층 105호", - "operating_hour": "매일 18:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "18:00 ~ 02:00", - "phone_number": 317128801.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqg7DJezDi_eeCcQqmBfrgMkv7k0CXbz1_img.jpg, //img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2Fbtqg8ojJ9Hh_1y3uD9Kek59OHlmryajCE1_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 161, - "name": "홀리데이앳런던", - "category_id": "치킨", - "score": 0.0, - "review": 58, - "address": "경기 성남시 수정구 창업로40번길 6 근린생활시설동 지하 2층 2호", - "operating_hour": "매일 09:00 ~ 19:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 19:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1A0733855B1843B0B105853D56C6D4C7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0E019A592D314A70AFD4A271A40EB793, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7C92CB59FBA64DB49CBCAB18CC3B2D90", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 162, - "name": "백스비어 분당수내점", - "category_id": "치킨", - "score": 0.0, - "review": 4, - "address": "경기 성남시 분당구 수내로46번길 11 1층", - "operating_hour": "월~토 17:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:30 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCAF2C4E05DB14BD78BC4CB4D417C91C0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTNfMTgx%2FMDAxNzM0MDgyMTc4NjQw.qeM9GWcMYsn1RLiYM6q21D-LlCmQAAL-ukT41XXHYqog.BTWmxemeU-AmhqM77F8VTAJDs8U_Mq0s2ARLjdg2nPsg.JPEG%2FKakaoTalk_20241213_182210121_04.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MjlfNjAg%2FMDAxNzI3NjIwMDMxMTMw.THlh7OEuzM_t4U36F4WsBtfJkcf6HYYYz0GZ_iidlSgg.ofUXpjqhtEKMNatqc37CeZRivfwnvfDqbxnCQ9TH4Dog.PNG%2Fimage.png%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 163, - "name": "탄탄면공방 판교아이스퀘어점", - "category_id": "치킨", - "score": 4.0, - "review": 29, - "address": "경기 성남시 수정구 창업로 17 F동 2층 212호", - "operating_hour": "월~금 11:00 ~ 20:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 20:30", - "phone_number": 7043234467.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4848DD9082194B578C25A8F62060D600, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7EA4529A6D9B447CA0F7F2B6F04816AC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB5BD89CAE11246089679350C12443252", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 164, - "name": "B1 Burger", - "category_id": "치킨", - "score": 0.0, - "review": 6, - "address": "경기 성남시 분당구 황새울로 216 휴맥스빌리지 지하 1층 14호", - "operating_hour": "월,화,수,목,금,일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 7080800235.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3EF0C0D6A67D42EC94BB3E7865EB317A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MjNfMzUg%2FMDAxNjkyNzcxNjc5NTMz.zsNwLIXvvRNanhKdMcq_1pL4F4RK_Ls2_J2feXLhi8Ig.gw8LeWPZfmk-pews1902HxkyWNk_hhEjOTl0Rsp4_vog.JPEG.jinny_79%2F1692771549001.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MjNfNSAg%2FMDAxNjkyNzcxNjc0Njk4.HyuoBHwtAeqFPmk9JeQYx01yVJ2ww6JidRHXgHgypQsg.uI7-5wlxE9THlh8fjl7X55awZrmyqWRowFwFj7qwpcwg.JPEG.jinny_79%2F1692771540029.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 165, - "name": "피치타임 수내역점", - "category_id": "치킨", - "score": 0.0, - "review": 47, - "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 1층 104호", - "operating_hour": "매일 12:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "12:00 ~ 24:00", - "phone_number": 317199232.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F708A53CB11FD474F836A0E9C915DF123, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA5MDhfMTM2%2FMDAxNjYyNjQ3OTEzMzY0.qdCiE5OVE1eNpkmgCZGiK6rsZ6wlbc2V31skbzenfW4g.YXtBJm0I4aQS3HwwZvFDNZCkCyIJOV-gL36AgLCdn50g.JPEG.vintageemoeum%2FIMG_7859.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjA5MDhfNyAg%2FMDAxNjYyNjQ3OTEzMDAy.2DO1lTZg_AwPZOiK0RJXoI_jp6EFzgbouvQ1oz_uB_0g.k0Xpltv0Ya71ELKF-KZg9XIM50E2fSCoYm6lIOCUnjUg.JPEG.vintageemoeum%2FIMG_7857.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 166, - "name": "동키호펍", - "category_id": "치킨", - "score": 5.0, - "review": 2, - "address": "경기 성남시 분당구 수내로46번길 20 맛자랑멋자랑 2층 205호", - "operating_hour": "월~금 15:00 ~ 24:00", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 24:00", - "phone_number": 317172481.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F94B190084943420A977A8EAEA5E770BA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F37A1EB9EBA994FB8A61092AD45853F39, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEE9DA237F8134FECBDEAB91BDD36754D", - "convenience": "WIFI\n동물출입\n주차\n놀이방\n흡연실", - "caution": "예약가능, 배달불가", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 167, - "name": "스틱스", - "category_id": "치킨", - "score": 4.8, - "review": 5, - "address": "경기 성남시 분당구 황새울로258번길 32 208호", - "operating_hour": "월~금 07:00 ~ 01:00", - "expanded_days": "월,화,수,목,금", - "time_range": "07:00 ~ 01:00", - "phone_number": 7086482590.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 168, - "name": "시즈카 분당점", - "category_id": "치킨", - "score": 0.0, - "review": 0, - "address": "경기 성남시 분당구 황새울로 315 대현빌딩 205호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 8, - "restaurant_id": 169, - "name": "동경키친슈", - "category_id": "치킨", - "score": 4.6, - "review": 63, - "address": "경기 성남시 분당구 백현로101번길 17 초림프라자 2층", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F5C16204FC7CC48DBA6ADDE2509DF8711, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FB72799A753E24936A47EBAB464C23E66, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F86e77ff05e9a948ad551c65c8ec8e35bc170261b%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - } -] \ No newline at end of file diff --git a/storage/input_json/restaurants_table9.json b/storage/input_json/restaurants_table9.json deleted file mode 100644 index a06b411..0000000 --- a/storage/input_json/restaurants_table9.json +++ /dev/null @@ -1,2977 +0,0 @@ -[ - { - "db_category_id": 9, - "restaurant_id": 1, - "name": "붓처스컷 아브뉴프랑 판교점", - "category_id": "스테이크", - "score": 3.8, - "review": "241", - "address": "경기 성남시 분당구 동판교로177번길 25 2층", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 317077037.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2FC41E703B654DA5B79B0B74A14819C7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFBD9DB04D8444EDC95A152CF40D8D2B8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F07CC3E18B59A412D99E45989A2EBEBB8", - "convenience": "WIFI\n주차\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 2, - "name": "제로투나인", - "category_id": "스테이크", - "score": 4.1, - "review": "41", - "address": "경기 성남시 분당구 운중로146번길 19-3", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 317026625.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2372A9335745330A12, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe5bd473ca276d02d8b9e91330f68de0795f2ed6d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1427e65fea61e3c0e16bcdbe262e716eb69343a1%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 3, - "name": "데이빗앤룰스 판교점", - "category_id": "스테이크", - "score": null, - "review": "94", - "address": "경기 성남시 분당구 판교로319번길 13 지하1층 B101~B103호", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 316028915.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F19D314CB2A8D4E58B2819638B22D333B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F99708BF9E6CE42C19244BA66A919C2A2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F662E1AA129DE45FF9A7CC74DC7C82E52", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 4, - "name": "텍사스로드하우스 현대백화점판교점", - "category_id": "스테이크", - "score": 3.0, - "review": "685", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701046.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F24601735EB134173903B12CA68ED72EF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4ba9f6e9c11f8fba9d97bad406bfe6eae1be36b5%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffa607a8abc7318e723825580dd676fb3bdfb6275%3Foriginal", - "convenience": "주차", - "caution": "예약불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 5, - "name": "헤비스테이크 판교테크노밸리점", - "category_id": "스테이크", - "score": 3.6, - "review": "37", - "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어에스동 1층 107호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317893909.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1271508418, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FE3C69B5249F6469597B9E3AF1111C36C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F8D47AC04DB6A4C72A4832C830FE9B82E", - "convenience": "주차", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 6, - "name": "로코스 비비큐 현대백화점판교점", - "category_id": "스테이크", - "score": null, - "review": "44", - "address": "경기 성남시 분당구 판교역로146번길 20 지하 1층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701013.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FED3100BC35124B31862EB98D29A5454A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MTFfMTI2%2FMDAxNzIzMzAzMjE2NTYx.seZ6ZHIcNcc7lyCK-OC12e65_z8k9ChL2x_H2iT684og.Ly4VO6OIFC7DZCMOPJ_UBzfPEXnr5nVXzLtkruUYQmkg.JPEG%2FSE-58905871-A66E-4441-824D-723D27B32C76.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA4MTFfMzYg%2FMDAxNzIzMzAzMjExNTEz.Zv9xyWbwelkRyBRG_yCSVIjXbrNkHkgrXHLmMBCNIFYg.Vq4MacMp9TonwQgeBNUybcQw_wF9JCSsJUrWcUsFOvYg.JPEG%2FSE-81AB9CFB-94EE-46CA-95D4-74230CDC775B.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 7, - "name": "써든스테이크 판교점", - "category_id": "스테이크", - "score": 1.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로 240 삼환하이펙스 A동 지하1층 125호", - "operating_hour": "화,수,목,금,일 11:00 ~ 23:00", - "expanded_days": "화,수,목,금,일", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1C39204D271B4645BDC996254939B4A1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1932AF7DC9B3456385CC46490ACE78E7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBF6DBF7C07C34F389C60EEC98B755137", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 8, - "name": "뚜에이오", - "category_id": "스테이크", - "score": 4.2, - "review": "873", - "address": "경기 성남시 분당구 판교공원로3길 24-2", - "operating_hour": "매일 11:00 ~ 21:20", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:20", - "phone_number": 3180161865.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB82840AE9F744073B9D6094C29710FC6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe24915e23baf44f44b8b11275f41ebbbf30acbb2%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F150dff4ef35678581f6c0082d4d944e845a19652%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 9, - "name": "더다이닝스위트", - "category_id": "스테이크", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서판교로44번길 17-7 지하1층 B101호", - "operating_hour": "화~금 15:00 ~ 17:30", - "expanded_days": "화,수,목,금", - "time_range": "15:00 ~ 17:30", - "phone_number": 3180168913.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 10, - "name": "아웃백스테이크하우스 판교점", - "category_id": "스테이크", - "score": 1.2, - "review": "303", - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 지하1층", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 316017401.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF050EB5F1B6C44B9B70960237CFBEE1C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff592cc9b8e9f5a6c5530dd4b1a64c1a56e912a9e%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F01225be911eefea1522b574b106a8e7970a5acae%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 11, - "name": "스즈메그릴", - "category_id": "스테이크", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 판교공원로2길 63 1층 101호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 12, - "name": "라비떼", - "category_id": "스테이크", - "score": 3.9, - "review": "274", - "address": "경기 성남시 분당구 판교공원로3길 16 1층", - "operating_hour": "월,수,목,금,토,일 15:00 ~ 17:30", - "expanded_days": "월,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1def0ea4858280591039c8bb29fce9d0f315529a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F446554de6c23735d5e0387be33b370aa7c18adaf%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd745934381b680d25efff2133a3ef256e21ee7dc%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 13, - "name": "후라토식당 아브뉴프랑판교", - "category_id": "스테이크", - "score": 3.7, - "review": "525", - "address": "경기 성남시 분당구 동판교로177번길 25 2층 220호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 316077090.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_294781750, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F0497301F15384E5AACD535C63C71B08D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F2608D192D7F443CF8A01526A296D6BEA", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 14, - "name": "빕스 프리미어 판교점", - "category_id": "스테이크", - "score": 3.3, - "review": "269", - "address": "경기 성남시 분당구 동판교로177번길 25 아브뉴프랑 2층", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 3180165996.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F707DAF846579424DB0289A0CB2CAC2F5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2698bd6458e16c7bd856a2eb64ed9364e13ecf3a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0735f466a9d2746ebd5bddf9f29ced6552545bbe%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 15, - "name": "라디오베이", - "category_id": "스테이크", - "score": 3.3, - "review": "247", - "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋타워 2층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 3180610773.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDE570D016BC24DAA856B68B58CE6A04B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7693107f317b0d7c6a2caf05acf80ba313dc6533%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9e8461aaf171b7672504214c12d184521bfcf51a%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 16, - "name": "빈티지1988", - "category_id": "스테이크", - "score": 3.1, - "review": "442", - "address": "경기 성남시 분당구 판교역로 231 H스퀘어 S동 1층 101호", - "operating_hour": "월~금 14:30 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:30", - "phone_number": 50713871993.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F126FF7464FFA64F81D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2021A2434FFA653F2C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F0EF2F3FE94A34CB38838C2F1EAD50271", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 17, - "name": "세렌", - "category_id": "스테이크", - "score": 3.8, - "review": "300", - "address": "경기 성남시 분당구 운중로188번길 11 1층", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 317090775.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 18, - "name": "울프스덴", - "category_id": "스테이크", - "score": 3.4, - "review": "355", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 2층 215호", - "operating_hour": "월~금 14:30 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:30", - "phone_number": 50714011887.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDEA10F22BD374B62A4598B3D1DEB8FB6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F13E6493621AB41C891EA61EB34C35067, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2F519E565EE34802ACA0F86F5BE49396", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 19, - "name": "닥터로빈 시그니처 판교점", - "category_id": "스테이크", - "score": 3.3, - "review": "1,249", - "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 108호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317813105.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FC487C3B0B6A94279BA04C828D9258845, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD1CFE9835C2C4963B47264B4BBE7F419, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F94068CCE39A046DE911FF645EE9823B3", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 20, - "name": "어글리스토브 판교라스트리트점", - "category_id": "스테이크", - "score": 3.2, - "review": "342", - "address": "경기 성남시 분당구 판교역로 145 2동 2층 219호", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317068459.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9D86BBB6CA2C48D086300B8354BD0211, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8FF235B5889A4E52903FD82604049D3B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDA3479ED1DF84A888041A2C1AA91CC82", - "convenience": "WIFI\n주차\n휠체어사용\n흡연실", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 21, - "name": "리얼스페인 판교점", - "category_id": "스테이크", - "score": 3.2, - "review": "135", - "address": "경기 성남시 분당구 판교역로10번길 12-5 1층", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 3180173614.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA7FFEE37CF5441318EC4B131ACB41B01, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd5e4b40dc44dfee74149fcf1c16a42f97efa608a%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3a42e1c574c2f037b7ece2fabafb63f012f9b023b92198d949210db67b7d21e8", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 22, - "name": "샤슬릭", - "category_id": "스테이크", - "score": 3.8, - "review": "152", - "address": "경기 성남시 분당구 판교공원로2길 45 1층", - "operating_hour": "화~일 11:00 ~ 22:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 3180166262.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F13486E454F1F518D1F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F1360B9364F1F517B20, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F154FCD494F1F517024", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 23, - "name": "더라운지", - "category_id": "스테이크", - "score": 3.3, - "review": "1", - "address": "경기 성남시 분당구 서판교로 162 랜드리스타워 1층", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 3180168059.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FAE0E68765A964D528416F32A087476AF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Faed9eb40f3915106b8d154f01eddf2aa990b9000%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqjeEZ2E0P_qyLsCtUBC6KJsSl6j8ZGY1_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 24, - "name": "오스테리아 워모잡", - "category_id": "스테이크", - "score": 3.4, - "review": "250", - "address": "경기 성남시 분당구 판교공원로2길 40-1 1층", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 1030059541.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1876655045, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FB7DA27DC93A54FCFB5D8279AF222FED1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4514A6591B97421DA0E1C0826AAC89EB", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 25, - "name": "매드포갈릭 판교라스트리트점", - "category_id": "스테이크", - "score": 3.7, - "review": "101", - "address": "경기 성남시 분당구 대왕판교로606번길 10 1동 2층 219호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317038920.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F106F608BE42B47F3A17A001F378DACE7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDCD81A3F23F84C7FA9F3C0209C535777, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Fbooking%2Freview%2F55F54E85349A4C57BC9ECBFF73D51F2F", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 26, - "name": "라그릴리아 판교점", - "category_id": "스테이크", - "score": 4.2, - "review": "112", - "address": "경기 성남시 분당구 판교역로 166 카카오 판교 아지트 1층 17호", - "operating_hour": "매일 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 317070999.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F1F79BCF05170474896655B1794C0CEC9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe8ff1fbe71bfe749a2aacc85cb99bb90a03ff10f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdc1f7c8802c81ba74e7fe99125b3215a391914df%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 27, - "name": "라스토리아1001", - "category_id": "스테이크", - "score": null, - "review": "266", - "address": "경기 성남시 분당구 판교공원로3길 24 1층", - "operating_hour": "수~일 11:00 ~ 21:00", - "expanded_days": "수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 50255516969.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F39CE7677E1224AB29BF7CABEBCC30EDB, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTRfNjEg%2FMDAxNzM0MTc1ODQ3Mzgz.gqAcdiiv1-4iRAdJPhUHXoDvLd2aR0MV4Mp-nCw7Of8g.uIpuMzCYiSmapuZHx8c3B0vXJ2a-i5tMDH6h9BT4_Pkg.JPEG%2FKakaoTalk_20241214_202300299_15.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMTRfMjgz%2FMDAxNzM0MTc2MDE4NTI5.QoCGDS1BbdKIUfOhRHfRBT-dcVHLbMMRp4xjhmOm_4sg.kQe82WRIj3nKVNumCT8SETXGcdZotw96cdMwt12p5Fog.JPEG%2FIMG_7751.JPG%3Ftype%3Dw966", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 28, - "name": "올리브그릴", - "category_id": "스테이크", - "score": 4.3, - "review": "35", - "address": "경기 성남시 분당구 운중로146번길 15-3 1층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 3180166341.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEBE117B8BA074C0AAB0C80CE6D06CF8E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqjxEEXxGM_WocDMhDa6LEadJkXku5SK1_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqjxEZfsDK_ztb7O8DQvOyTdQKSBU9Qv0_img.jpg", - "convenience": "WIFI\n주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 29, - "name": "이탈리 판교점", - "category_id": "스테이크", - "score": 3.2, - "review": "231", - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 지하1층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701061.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F69575383D004495694C62007A51D4955, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F227f30d1c47269b0079b4a62155d537ef7b1fa77%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5572427af547f6e729f170634f4ff19c70dde076%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 30, - "name": "베네쿠치", - "category_id": "스테이크", - "score": 4.1, - "review": "48", - "address": "경기 성남시 분당구 운중로146번길 19 1층", - "operating_hour": "화~금 11:30 ~ 21:30", - "expanded_days": "화,수,목,금", - "time_range": "11:30 ~ 21:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4EEFD72E8366454194DE7AE54DDCCDEC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc4a1bd15b2fe732ff21e56c5dbba2478bd3a5175%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd2b9e2eada92ef8e1ef05d79982ada7455ab143a%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 31, - "name": "우몽 판교본점", - "category_id": "스테이크", - "score": 4.4, - "review": "734", - "address": "경기 성남시 분당구 판교역로192번길 12 판교미래에셋타워 2층 204호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 3180610712.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F876FF9A7FA7A47AE8BCAF28496FA854E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F79607C5DA1E946BC9B49F2E0539DCFEE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F802E03AE111E47719DB7928DF200BF7D", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 32, - "name": "구우트", - "category_id": "스테이크", - "score": 4.6, - "review": "135", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 A동 지하1층 B109,110호", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 50713970922.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6A9F6ECC24C7452294CE40371EF339E2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4B462B6BDC544376871579B67173AF79, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F849176E7AEFE48A890C1CAF648B7EF49", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 33, - "name": "더쉐프인젤코바", - "category_id": "스테이크", - "score": 4.2, - "review": "35", - "address": "경기 성남시 분당구 판교로25번길 22-3", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 3180177796.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEB6FE47A43914BD8B723E4F3D498E406, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa031ef957d1b6742c55a460fb5317273334f1d42%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fce263d3385f76fdb722ce0b3db0b062fdf1218be%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 34, - "name": "아르틴", - "category_id": "스테이크", - "score": 3.4, - "review": "167", - "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 1층 107호", - "operating_hour": "화~일 10:00 ~ 22:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 1089962243.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBEA4E593384648CDA1EB6DDED06B083C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9DD03FE814C8460489AE512FEFF6DCE6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F723FC5848BBB473586BBD24F1CD7A3EE", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 35, - "name": "탭퍼블릭 판교점", - "category_id": "스테이크", - "score": 3.4, - "review": "181", - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원타워 1층", - "operating_hour": "월~토 11:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 24:00", - "phone_number": 316017549.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4BFB80DBD61249709CA5931531E3E8D0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8c737a1b17994446fb198f4f1d27980ab064e38d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F791eedd82fe2ed23f218d23b8cf44ec29f6e98ce%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약불가, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 36, - "name": "더플레이스 판교점", - "category_id": "스테이크", - "score": 4.4, - "review": "169", - "address": "경기 성남시 분당구 동판교로177번길 25 1층", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 317010421.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F786AA23600B3441790908105A95F1406, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDF3E48C0E17543EEAA756F9929C282B2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F05EFD500C2B442228BE3C3B833DF5ADA", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 37, - "name": "피크버거&스테이크", - "category_id": "스테이크", - "score": 5.0, - "review": "2", - "address": "경기 성남시 분당구 운중로 131 1층 101호", - "operating_hour": "월~토 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fef7c1d729e90e2ec9d82dbf2fed1667f5fa83966%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4514C65891074A94AB95EAAF7BAE2B2A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMDJfMjM3%2FMDAxNzMwNTM1ODkzODk1.ZZ_EfJOGxuOmg4_TjlJkjpvTk0vrsK00xadO90iOxtsg.lUOwq0N0ycnDj2A7w3XvwEcM3uzamH6vuuuZZMDIecIg.JPEG%2FKakaoTalk_20241010_161444043_29.jpg%3Ftype%3Dw966", - "convenience": "WIFI\n주차\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 38, - "name": "비앙또아", - "category_id": "스테이크", - "score": 3.4, - "review": "287", - "address": "경기 성남시 분당구 동판교로177번길 25 판교아브뉴프랑 1층 127호", - "operating_hour": "매일 10:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 21:00", - "phone_number": 317071088.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6ED984367D5E455BA6C896E701EC563B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F877B3471DF7843D6AA8F38B4B3C2BA9E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9cdb08ae5de5fdc31473f64c88f8a7f257bcee87%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 39, - "name": "메리가든 판교", - "category_id": "스테이크", - "score": null, - "review": "235", - "address": "경기 성남시 분당구 판교역로 10 1층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317815090.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6708FFDAEAE947109A7E5C4F0ADE9DEA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2DE49C0D340D4D3188BC0B9484973FF8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8855C4B5DB07401EB05C41E4AE007C51", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 40, - "name": "오늘와인한잔 판교역점", - "category_id": "스테이크", - "score": 2.9, - "review": "9", - "address": "경기 성남시 분당구 대왕판교로606번길 45 판교역푸르지오시티오피스텔 1층 103,104호", - "operating_hour": "매일 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9782875C838E4A908E2930BA15D14C63, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F18dfa74e842b2d1f821333317d795eeb07c6b6b8480274dba292d51b54573367, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdbda9a9ab71c1dda5597fdf932439b4158daa69a%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 41, - "name": "카페소시올로지", - "category_id": "스테이크", - "score": 4.6, - "review": "101", - "address": "경기 성남시 분당구 판교역로 145 라스트리트 1층", - "operating_hour": "월~금 17:00 ~ 18:00", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 18:00", - "phone_number": 317083737.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7489730138F74E7BB1230C499F555FF7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F24D513279C6C44FAAADDC5A01642B38C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F68F070BB2404495EAF7C0DCE0CC04477", - "convenience": "편의시설 정보 없음", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 42, - "name": "에이치541", - "category_id": "스테이크", - "score": 3.5, - "review": "10", - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 9층", - "operating_hour": "매일 10:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:30", - "phone_number": 3151702541.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F746BA92B638C4474BBC3794EF8C477CE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0f4c9bb7b2f812da8438f55086fbb2d5d37ab459%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F05964b549291f601ac99b6759dc92828b49b3a8a%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 43, - "name": "슈퍼스테이크 본사", - "category_id": "스테이크", - "score": 3.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로192번길 14-2 골드타워 625,626호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 3180167282.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F227DAE4355C1DF611C, //img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffb3b7dfa61c802b97201945a54c96e6ea651658b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 44, - "name": "체르또", - "category_id": "스테이크", - "score": 4.6, - "review": "23", - "address": "경기 성남시 분당구 동판교로52번길 13-10 1층 102호", - "operating_hour": "화~토 11:00 ~ 21:30", - "expanded_days": "화,수,목,금,토", - "time_range": "11:00 ~ 21:30", - "phone_number": 50255501744.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 45, - "name": "플랩잭팬트리 본점", - "category_id": "스테이크", - "score": null, - "review": "8", - "address": "경기 성남시 분당구 서판교로44번길 17-11 1층", - "operating_hour": "월,수,목,금 10:00 ~ 21:00", - "expanded_days": "월,수,목,금", - "time_range": "10:00 ~ 21:00", - "phone_number": 3180160168.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB17C90EB0DAA4DAD94ED6366ECE25E26, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFE10F37BD02145D4A6B299BFA9732BED, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F27B74B1C27744836AE3A90AA27CF45D1", - "convenience": "편의시설 정보 없음", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 46, - "name": "에이치이에이", - "category_id": "스테이크", - "score": 5.0, - "review": "467", - "address": "경기 성남시 분당구 판교공원로1길 67 지하1층", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 317810122.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 47, - "name": "스마일쿡", - "category_id": "스테이크", - "score": 4.3, - "review": "7", - "address": "경기 성남시 분당구 판교역로 231 지하1층 112호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMThfMTU0%2FMDAxNzI5MjIxNDQwMDA4.eZRWHIPXEAaNtAazFumJ84ybUrxfyPn5kP4YWhfkZokg._zLLRBFMQybahB02hPSbGSP5XfrdeUkZeRRiM2Iebdog.JPEG%2FKakaoTalk_Photo_2024-10-18-12-09-05_003.jpeg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMThfMTcw%2FMDAxNzI5MjIxMjY5NjUz.iOJl3WGZL1jauFMLtdZzT6NmAgF59GxUI1cuCaO-CWEg.0HWoVnhdMgFlqVatcA7xEY5LvSjG_GVVMmqWLWjQX78g.JPEG%2FKakaoTalk_Photo_2024-10-18-12-09-05_001.jpeg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEwMTdfMTg3%2FMDAxNzI5MTY3OTMwMzcx.up-g-DcCSeBnQFFgNjMuaEYXW6gR6Aa5MVBPc--DWasg.FHMGKDNXRTECkjuPHCr1fv0h93O2l7TS7p1jboiPUGMg.JPEG%2FSE-7e174169-f8c5-4f84-bd93-36a35e8de8c5.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 48, - "name": "일상화식", - "category_id": "스테이크", - "score": 3.6, - "review": "55", - "address": "경기 성남시 분당구 대왕판교로 670 유스페이스2 2층 226호", - "operating_hour": "월~금 11:30 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 21:30", - "phone_number": 317398340.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fec0c7e52e706147ab20192379605875f44c72137%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff87eed3158912271f7390d52e686bf6a5bfcf185%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fec0c7e52e706147ab20192379605875f44c72137%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 49, - "name": "더이탈리안클럽 판교테크원점", - "category_id": "스테이크", - "score": 3.6, - "review": "207", - "address": "경기 성남시 분당구 분당내곡로 131 1층 5-2호", - "operating_hour": "월~금 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "15:00 ~ 17:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4043FB44BB5E4E3D80938662F6213BF8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6d6187b7f53e3deeb01626cfc0dd7e9d07877650%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3269e3b72c8760d0edec5036c1aed3d08f285396%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 50, - "name": "멀멀 판교", - "category_id": "스테이크", - "score": 5.0, - "review": "28", - "address": "경기 성남시 분당구 판교역로2번길 6 태훈빌딩 1층", - "operating_hour": "매일 10:00 ~ 18:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 18:00", - "phone_number": 7088220313.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD1A5F7092CAE4028980BD2ED4836FAEC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7254F420CE5E4D3FB2802A9809DC5085, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F19EF36301D4F4CDF82CE8E38D6B2A4D4", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 51, - "name": "쿠차라 판교카카오점", - "category_id": "스테이크", - "score": 3.0, - "review": "95", - "address": "경기 성남시 분당구 판교역로 166 1층 9호", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 316017223.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2E2D81DD80A6487F92539D7B21861582, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F24a608f2dfe79b86237cc426a05198ddd7edf3b0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6d541326f56b0df352029f5a39dffb6a15166b84%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약불가, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 52, - "name": "비스트로바이콘", - "category_id": "스테이크", - "score": 4.3, - "review": "18", - "address": "경기 성남시 분당구 대왕판교로645번길 36 1층", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 316068511.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F72763F140BDE498D9F722FDC2784B312, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjhfNTUg%2FMDAxNzMyNzg3NDgyMDkw.5gh8FCut0ESujYQTAQD1f9aoGCIxJRFFOg_WUDvQbEsg.O_siazouFjXkpbWcrQbdwf2EsNRQ--58btjVal-TytAg.JPEG%2FIMG_9807.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDExMjhfMTk3%2FMDAxNzMyNzg3NDgyMTMw.4sGphTUk6dPzF4yhUe86MkIWVl-8o75NSv-T-XLRjgEg.HilFQ3G7aQ5bRL9UwAMF-SI2K7qA84ity6apAV5mrUIg.JPEG%2FIMG_9806.JPG%3Ftype%3Dw966", - "convenience": "WIFI\n주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 53, - "name": "오션문", - "category_id": "스테이크", - "score": 4.1, - "review": "65", - "address": "경기 성남시 분당구 운중로146번길 15-4 1층", - "operating_hour": "매일 10:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FE1804D5832964782AA255BB01185A89B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F43B8981577B84DDDAB78CE3F14AB733D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F374a3757d46b8b122c454f7a59dc4596bbebbb26%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 54, - "name": "까사파스토", - "category_id": "스테이크", - "score": 4.9, - "review": "36", - "address": "경기 성남시 분당구 판교역로10번길 14-5 1층 102호", - "operating_hour": "화~토 10:30 ~ 21:00", - "expanded_days": "화,수,목,금,토", - "time_range": "10:30 ~ 21:00", - "phone_number": 317269155.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F28496E3046B94D6FA8752A8A5F55B711, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F93EE961CF25845BFA16730815711FFA1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F5A48AAC82E2549269FD141594CC1EDB7", - "convenience": "WIFI\n동물출입\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 55, - "name": "스튜디오지구", - "category_id": "스테이크", - "score": 4.6, - "review": "18", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 지하1층 116호", - "operating_hour": "월~금 14:00 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:00 ~ 17:30", - "phone_number": 316281000.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7A33FAA73C8F49258AEA7902F9C4D2C1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAFE5ACF63E004DA5A9FC37CBCAC04131, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8FD400D4A7334EF589474D051E2D418C", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 56, - "name": "퀴즈노스 랩 판교테크노밸리점", - "category_id": "스테이크", - "score": 3.1, - "review": "43", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 111,112호", - "operating_hour": "월~금 08:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 21:00", - "phone_number": 317242724.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7EA5FDCAB7FE45BD862C886ECDB2874F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F33fa8b6d9d9e85b3be5e1c73421ab79f11f533ec7b603ad4174422978949caa6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb99bdcf51d6d8ec41b2a6fcc37f973fbeb01451b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 57, - "name": "오시", - "category_id": "스테이크", - "score": 5.0, - "review": "779", - "address": "경기 성남시 분당구 동판교로52번길 21-2", - "operating_hour": "화~일 11:00 ~ 21:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 58, - "name": "콘노이", - "category_id": "스테이크", - "score": 4.0, - "review": "20", - "address": "경기 성남시 분당구 운중로138번길 24-1 1층", - "operating_hour": "매일 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 24:00", - "phone_number": 50713260064.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7401528A82004731AD892BB94880C212, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F475e8473308788178d822ed7e3bdc2948d199699%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F54ac32166b8d9af4bf0cf58475eeaddfdcc63d98%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 59, - "name": "판교의하루일과", - "category_id": "스테이크", - "score": 3.5, - "review": "84", - "address": "경기 성남시 분당구 분당내곡로 131 2층 11호", - "operating_hour": "매일 11:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 24:00", - "phone_number": 316017559.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F13BAD30E2C204E13A2FD5664CD01DA9E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA3393900C4A54CDDB55B89064101DBD4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F8521FF560A6147E194060691F2B9BCF4", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 60, - "name": "이터스 현대백화점판교점", - "category_id": "스테이크", - "score": 3.8, - "review": "45", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~목 10:00 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:00 ~ 20:00", - "phone_number": 3151701053.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F41ADA16E31504A358331E25B7083E7DD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd2974a05541eca0ba03fcf67332fa0db8f7cf046%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0fdf116984def5124f3c27840fee9b896c04171e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 61, - "name": "한촌설렁탕 판교테크노밸리점", - "category_id": "스테이크", - "score": 0.0, - "review": "41", - "address": "경기 성남시 분당구 판교역로 231 에이치스퀘어 S동 B129,130호", - "operating_hour": "매일 08:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "08:00 ~ 22:00", - "phone_number": 317893690.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F7BD6CF6A0E8A441EB44391EA3768C1C0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7DA4FA23AA404D2FBCC4901C4E70F493, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1BE8D11F22534F768ABA472262837FD7", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 62, - "name": "모로미쿠시 판교점", - "category_id": "스테이크", - "score": 3.3, - "review": "27", - "address": "경기 성남시 분당구 판교역로192번길 14-2 1층", - "operating_hour": "매일 16:00 ~ 01:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 01:30", - "phone_number": 3180169835.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F22705A50574E62162D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F989e6147c1f2079aea81c450160fb8f06b838ba6%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F55e12ef7db4431ffe463b7007e6fe6fcb4de61f7%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 63, - "name": "오늘한잔", - "category_id": "스테이크", - "score": 3.0, - "review": "2", - "address": "경기 성남시 분당구 대왕판교로606번길 45 푸르지오시티 1층 112호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2F90B7DFA5674AE1A022EB33560C1994, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F655eeac04a3189f21ba63724e0ed7bf33c49ce99%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0be4d23868ace0513a9f5e6b38736b01f77582db%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 64, - "name": "미도인 판교테크원", - "category_id": "스테이크", - "score": 3.3, - "review": "1,334", - "address": "경기 성남시 분당구 분당내곡로 131 판교테크원 지하1층 31호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 316017407.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F53D6902A6B464629B25ABF78F90945F7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F409DC33A9DD74B41A1E5E61CC562ED94, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB0920B03D39749739755313E58955E7F", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 65, - "name": "마츠노하나 현대백화점판교점", - "category_id": "스테이크", - "score": 3.8, - "review": "406", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "매일 10:30 ~ 20:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 20:30", - "phone_number": 3151702032.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F25C9C133B5164F9293D16F8479E60018, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0C1E01C260C44B38861C65819E4FA043, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff60cd84c1a517fc6a22cdf39a915b5fc492a5ab3%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 66, - "name": "스너그", - "category_id": "스테이크", - "score": 3.7, - "review": "28", - "address": "경기 성남시 분당구 운중로113번길 12-2 1층 101호", - "operating_hour": "매일 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:00 ~ 22:00", - "phone_number": 1072572055.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 67, - "name": "더 키친 일뽀르노 현대백화점 판교점", - "category_id": "스테이크", - "score": 3.8, - "review": "87", - "address": "경기 성남시 분당구 판교역로146번길 20 5층", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": 3151701592.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F343745CAEBD64500812E8E1182298A6D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC38BD0D9873B476A956843CA743B4593, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F765C1F0BF8224CF6A6BD9967271F70F6", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 68, - "name": "아르고", - "category_id": "스테이크", - "score": 4.8, - "review": "15", - "address": "경기 성남시 분당구 판교역로 145 알파리움 2동 117호", - "operating_hour": "월~금 17:00 ~ 23:30", - "expanded_days": "월,화,수,목,금", - "time_range": "17:00 ~ 23:30", - "phone_number": 317011114.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 69, - "name": "마스터키친 현대백화점판교점", - "category_id": "스테이크", - "score": 3.1, - "review": "34", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "월~목 10:30 ~ 20:00", - "expanded_days": "월,화,수,목", - "time_range": "10:30 ~ 20:00", - "phone_number": 3151701013.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F306eb63238969d76872432d9aaee27f469eec5dd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F63AE606FA0434C188A0E910062DE142D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3afa8007c78308007464c8306ee22bd7bd75e3e7%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 70, - "name": "삐에뜨라", - "category_id": "스테이크", - "score": 3.4, - "review": "133", - "address": "경기 성남시 분당구 판교역로2번길 5 101호", - "operating_hour": "매일 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 317813080.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F2D6D8FA052ED443CB166862EA22E83B9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa327738770032bbe15213792268f6aff253e715b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3a7880f04fb9ab316c49c480b2acfcafc495acfc%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 71, - "name": "호화식탁", - "category_id": "스테이크", - "score": 5.0, - "review": "11", - "address": "경기 성남시 분당구 판교공원로3길 4 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2602cea14140cf881463cfd4ebf69ecf3806229b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F0EAEFDAE97C140FF9FC71F8616555E3D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2602cea14140cf881463cfd4ebf69ecf3806229b%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 72, - "name": "비스트로42", - "category_id": "스테이크", - "score": 4.0, - "review": "44", - "address": "경기 성남시 분당구 판교역로192번길 12 2층 202호", - "operating_hour": "월~토 17:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:00 ~ 24:00", - "phone_number": 3180610711.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FCB2901F4ED3D42FC9D1C23C9298CB9F1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F2E694C4D00C94F9E9084BF415A632A7E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6F75B5B8268048E5923F892700D4CA40", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 73, - "name": "부처스그릴라운지 판교점", - "category_id": "스테이크", - "score": 0.0, - "review": "3", - "address": "경기 성남시 분당구 판교역로192번길 22 효성해링턴타워 118호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317040333.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9FE19BF736C1402F85E413C345312619, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F80D85750BEF24498894E0633DF94000B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEwMTNfODMg%2FMDAxNjY1NjU0NDg0MDIw.ALWy1sXcjiQdjllp7WYoMdmC9vldqe-_ewjhanMxPkwg.hUKjEvMJ9rLPARYxdFjL-QCAVlolpY5U2ADbvMc7hLsg.JPEG.yeonjinnim%2FIMG_0549.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 74, - "name": "투고샐러드 판교유스페이스점", - "category_id": "스테이크", - "score": 5.0, - "review": "16", - "address": "경기 성남시 분당구 대왕판교로 660 유스페이스1 B동 2층 230호", - "operating_hour": "월~금 08:00 ~ 20:00", - "expanded_days": "월,화,수,목,금", - "time_range": "08:00 ~ 20:00", - "phone_number": 317242588.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F28DE063882D7447FADD594E51DC43EFE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F751CF7D14D25450585FDB939339CB527, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDJfODcg%2FMDAxNzMzMTQ4NjQ0MzI5.MYQAK6o435SimSjPpAi2_g_JLnA3hg3UdWZQQNjjeD4g.lMajwmKhzckhI1N6PVL47ZlDhzJnk2ctDkiMiom_GLYg.JPEG%2FIMG_1161.JPG%3Ftype%3Dw466", - "convenience": "WIFI\n주차\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 75, - "name": "샐러디아 판교역점", - "category_id": "스테이크", - "score": null, - "review": "11", - "address": "경기 성남시 분당구 대왕판교로606번길 58 판교푸르지오월드마크 상가 1층 76호", - "operating_hour": "매일 09:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "09:00 ~ 20:00", - "phone_number": 3180161060.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5F23D404A3B344F093C79C13C8074BAC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE0D980D8F2EE4E3EBCAB3261437288D8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8B105885AFFE4D5497E90F540CC7AA5B", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 76, - "name": "카사준", - "category_id": "스테이크", - "score": 0.0, - "review": "30", - "address": "경기 성남시 분당구 판교공원로2길 46-1 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD8EC57AFD9D841D683E3D8F13E54CEF8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FoqdDB%2FbtsLBWFAKAD%2FCaflv0mB6qPkl46EuifvkK%2Fimg.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbwalYe%2FbtsLD1erjSO%2FCPCch7IrpqrqzvHckWjckK%2Fimg.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 77, - "name": "루체까사", - "category_id": "스테이크", - "score": 5.0, - "review": "3", - "address": "경기 성남시 분당구 판교역로18번길 2", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F34C791CC0F7E43A593D5B13ADA8C5345, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F62a298255a8497b8370b1aa7f2617ff3bd8befd8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F9fac156141c5a174b0372df3f73d162d72543f67%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 78, - "name": "올라포케 판교점", - "category_id": "스테이크", - "score": 5.0, - "review": "6", - "address": "경기 성남시 분당구 대왕판교로 660", - "operating_hour": "월~금 10:30 ~ 20:30", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 20:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFC320F81CE5C4A63AB05BF32B9F1B22A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F77cf31b5f21f944a8c742f6a29c8c83899f01b46%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F01E227C3F9854C2F866E3493E9B3D717", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 79, - "name": "돈돈정 판교아브뉴프랑점", - "category_id": "스테이크", - "score": 2.8, - "review": "2", - "address": "경기 성남시 분당구 동판교로177번길 25 2층 203호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317080418.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3F85091E4E5F49F8AF10D228F95C2BA9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F2cba29a7550c0541b5d73b1d74dfc3e3dd3905f9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6d4e62bbdfc2e693fb7348dbac264ca1efbc2feb%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 80, - "name": "105파스타 서판교점", - "category_id": "스테이크", - "score": 4.2, - "review": "3", - "address": "경기 성남시 분당구 판교공원로5길 3 1층 102호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317070105.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FFBFDE3E4606F4A44A32975398DB89F78, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F801522F204634C6F976A24498E46B3DC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAxMDRfMjMz%2FMDAxNzA0MzU3Mjk1MjY0.dxKQGxaoxyjb8q4y3ejbVkkvGgnVoMgNZ-cxUX_VRbwg.Caxf6oGOiWLt-W1zGqRDIECnLs955vEJchnoGxOjONUg.JPEG.nks9548%2FKakaoTalk_20240101_171514066_07.jpg%3Ftype%3Dw966", - "convenience": "WIFI", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 81, - "name": "마이치치스", - "category_id": "스테이크", - "score": 4.0, - "review": "0", - "address": "경기 성남시 분당구 판교역로146번길 20 현대백화점 판교점 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqeW2DeQ2o_dvw0sK4p9akqqLnDsSSHdK_img.jpg, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqeVimg02Y_wzSdJssBE7XEeSmq2XjwTk_img.jpg, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqeW2DeQ2o_dvw0sK4p9akqqLnDsSSHdK_img.jpg", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 82, - "name": "오말리 판교점", - "category_id": "스테이크", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로606번길 47", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316251232.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 83, - "name": "구전동화 판교점", - "category_id": "스테이크", - "score": 2.0, - "review": "3", - "address": "경기 성남시 분당구 동판교로177번길 25 지하1층 비101호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F18E2081FFFC745F1A0145CBE9E610C3F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD214C5CAA99D4E588B5E2493D70B4744, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FCD2FD8F3C4BA4EA2840DC1475EB5C0E3", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 84, - "name": "사반바이미연 현대백화점 판교점", - "category_id": "스테이크", - "score": 0.0, - "review": "11", - "address": "경기 성남시 분당구 판교역로146번길 20 지하1층", - "operating_hour": "매일 10:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 22:00", - "phone_number": 3151701022.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F895EC7295A344D0BBB8991FF1C83B294, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA4MDdfNTkg%2FMDAxNjkxMzgwNzg0Mzg0.P-b0OGEIzggnAPYEVQ5q4DtxXJqNnZ5WyodBKHBmCykg.wodkO10W5eurK6JIVcYtm6dXbJfE-xOK-_eL9WKW078g.JPEG.wewewz%2FKakaoTalk_20230807_112624187.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA3MjlfOSAg%2FMDAxNjkwNjE3NDY5OTUz.TNdmAcUpToLl8-CwLEh1JXnm65D_MEUBHktE-dIKq94g.oBWqFB2FbP-5CljvJ6-wLHYiJb0EE3yqU8_JJ7lrrkYg.JPEG.moomore%2Foutput_3666784993.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 85, - "name": "더냄비 판교점", - "category_id": "스테이크", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 대왕판교로 660 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 316281006.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 86, - "name": "소베뉴", - "category_id": "스테이크", - "score": 3.8, - "review": "76", - "address": "경기 성남시 분당구 판교백현로 61 1-2층", - "operating_hour": "수~일 10:00 ~ 19:00", - "expanded_days": "수,목,금,토,일", - "time_range": "10:00 ~ 19:00", - "phone_number": 317073770.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F019F223E2C334CDAB4DAF84AF20D09E2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F8845FFBEA22F41AD8CBEF4A7AED2BDBD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF1A9952DB8C54D0697BBB50654A15C91", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 87, - "name": "언버튼", - "category_id": "스테이크", - "score": 5.0, - "review": "33", - "address": "경기 성남시 수정구 창업로 43 글로벌비즈센터 A동 1층 107호", - "operating_hour": "월~금 10:30 ~ 21:30", - "expanded_days": "월,화,수,목,금", - "time_range": "10:30 ~ 21:30", - "phone_number": 7082304448.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 88, - "name": "서가앤쿡 판교파이어스몰점", - "category_id": "스테이크", - "score": 2.9, - "review": "0", - "address": "경기 성남시 수정구 창업로 17 아이스퀘어 A동 106호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317210401.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F81c135219fda656f1a6d6395be8c43ae664e8ed8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F81c135219fda656f1a6d6395be8c43ae664e8ed8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F37ca1fb50f35102a1a5a9ccb9d4133c760b8982d%3Foriginal", - "convenience": "WIFI\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 89, - "name": "동해강릉초당짬뽕순두부 판교 파미어스몰점", - "category_id": "스테이크", - "score": 4.9, - "review": "33", - "address": "경기 성남시 수정구 창업로 17 판교아이스퀘어 E동 2층 206-2호", - "operating_hour": "월~토 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 21:00", - "phone_number": 7086702542.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBB4D445E3843407A9CBADD0C9E1864D2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F919B03BD57F447838BD9ECF17EC06FF9, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FBD62D39CC1F649EE94F311452BD41799", - "convenience": "WIFI\n주차\n휠체어사용", - "caution": "포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 90, - "name": "토끼정", - "category_id": "스테이크", - "score": 2.5, - "review": "0", - "address": "경기 성남시 수정구 창업로 17", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA88703CF8140423D91BA9DF687D1D10A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F9888684C12164A96B9548917880D9C46, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4ABD0E30825B40CC99D0503A316707CF", - "convenience": "주차", - "caution": "예약불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 91, - "name": "더몰트하우스 서핑시티 판교점", - "category_id": "스테이크", - "score": 3.7, - "review": "122", - "address": "경기 성남시 수정구 창업로 18 파미어스몰 1층", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 317555818.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F37162052C0754569938318EF9E95F90B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F96EC580AD38D441697CB19EA324ADA17, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F130E5B6D99004EA9B767D591111C0256", - "convenience": "WIFI\n주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 92, - "name": "더블트리 바이 힐튼 서울 판교 닉스", - "category_id": "스테이크", - "score": 4.2, - "review": "219", - "address": "경기 성남시 분당구 백현로 26 21층", - "operating_hour": "매일 11:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 24:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7C21494F70814C7D880453241F17C4A8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff525f628543dfe94d9f2f2129b726c18b3c53497%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4423b99045ad465425a6e8e0484a0a3ef567472e%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 93, - "name": "조셉스테이크 더블트리바이힐튼점", - "category_id": "스테이크", - "score": 5.0, - "review": "40", - "address": "경기 성남시 분당구 백현로 26", - "operating_hour": "매일 15:00 ~ 18:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 18:00", - "phone_number": 3180397397.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7d7aded327c5e7f279588b91733578d631a2f0dd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F306b43cc638617c4766bc0ecbe9bc696a97f3a19%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F894b4a2c781308694e8d2f64813a98cc7b286737%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 94, - "name": "도쿄스테이크 서현역점", - "category_id": "스테이크", - "score": 3.3, - "review": "2,392", - "address": "경기 성남시 분당구 분당로53번길 19 피아자코코빌딩 2층 202호", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": 317052828.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F1FA51E1F77B7442FA4C805A468F3F253, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F38663D8C9AC442B88D2EE0A6A0CCE040, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAF7D9D1F2C5E48A5B0AC459EB51ADD42", - "convenience": "WIFI\n주차", - "caution": "배달가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 95, - "name": "비스트로도마", - "category_id": "스테이크", - "score": 4.1, - "review": "201", - "address": "경기 성남시 분당구 하오개로 383 1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317026009.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAC58C904CF3E4910B053235C84B1E158, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEB541FDF2DEE4CA4A5D2005B6B73BB9E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F996D877AA24341F3B5113A68EF6C9703", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 96, - "name": "지오쿠치나", - "category_id": "스테이크", - "score": null, - "review": "189", - "address": "경기 성남시 분당구 황새울로200번길 34 코포모빌딩 1층 101,102호", - "operating_hour": "월~토 11:30 ~ 21:50", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 21:50", - "phone_number": 317119488.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9D77F5DEEBD04845887DB99EBD810FF3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fcfe85c84ed338d366bdf1c6c1d6bd632ea428d85%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa3c4cb9e877750d3dfc8ae0db8cc22024ead8a78%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 97, - "name": "미츠스테이크 서현", - "category_id": "스테이크", - "score": 4.4, - "review": "121", - "address": "경기 성남시 분당구 분당로53번길 11 서원플라자 5층", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 317086617.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FAAD9752C70724FB9BCD98A7995700414, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA51E4BC0BA494DE7BA9DBF99D5666CD2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA161C981174A4C3CAF8553144FB5264A", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 98, - "name": "푸른언덕", - "category_id": "스테이크", - "score": 3.3, - "review": "19", - "address": "경기 성남시 수정구 사송로80번길 23 1,2층", - "operating_hour": "월~토 10:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 20:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F7A0831E190B840899B2B5119365EFFCE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMDZfMjc3%2FMDAxNjk2NjAyNzYzODQw.L71nS4Ejz8PDKrBGu82YPhTV02ih47qfdLeEcOgljDkg.TOtKi7yDDisFV0S0-on6jZ8efbPmWS573jSBhQGTt9og.JPEG.cofls0277%2FIMG_0180.JPG%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzEwMDZfMjA1%2FMDAxNjk2NjAyNzYzNTYz.sQkItxb_sb7pNWgp3p4ngd8O0zZMs_fTBL3FHl5AmU0g.Ywd_mNFNz-xut9ZFIu0eOVmDBWmr_qsyd-AUlmDR3usg.JPEG.cofls0277%2FIMG_0179.JPG%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 99, - "name": "페삭", - "category_id": "스테이크", - "score": null, - "review": "99", - "address": "경기 성남시 분당구 황새울로214번길 8 엠에스프라자 3층 306호", - "operating_hour": "월~토 10:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "10:00 ~ 22:00", - "phone_number": 317187852.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F265C7E3A521D8D8047, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F174478414FBD9ACE1C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F21648C3B521D8D6C12", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 100, - "name": "토브나인", - "category_id": "스테이크", - "score": 4.1, - "review": "95", - "address": "경기 성남시 수정구 사송로 56 1,2층", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": 7088709990.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC530ADC96FA34CDAAA3F0602A32BAFC8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6b957d5481a07fc1175973b3020487c835a116a1%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe9e0a4d5cde9e02da977f104330e2b3e1325b2b2%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 101, - "name": "레스토랑마고", - "category_id": "스테이크", - "score": 4.2, - "review": "161", - "address": "경기 성남시 분당구 정자일로 230 동양파라곤 105동 지하 103호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": 1045260589.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F707FB104E3E740049149D5890574DC53, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDCB45A60450E49EE893CA7FA345B9588, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9E2DB72075EC4402B53A1EFE68A25B09", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 102, - "name": "아웃백스테이크하우스 분당AK점", - "category_id": "스테이크", - "score": 3.2, - "review": "274", - "address": "경기 성남시 분당구 황새울로360번길 42 AK플라자 5층", - "operating_hour": "매일 10:30 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:30", - "phone_number": 3180232800.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F72FABB7098824E8F89ADCFADEEE81027, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa8177da3417aa8c0464299f209b097a8bc24192b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F08775e6fe3c832e3af1db36869133fd6910d986b%3Foriginal", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 103, - "name": "스테이크마켙", - "category_id": "스테이크", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로 216 휴맥스빌리지 지하1층 B101호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 104, - "name": "다크앤라이트", - "category_id": "스테이크", - "score": 4.5, - "review": "162", - "address": "경기 성남시 수정구 달래내로 252 2층", - "operating_hour": "수~일 15:00 ~ 17:30", - "expanded_days": "수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": 317088730.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA05E4443344543A6BCB64C943479D6DC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F59A905DAE0534BCC8F1A3F305C1E3AA5, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6BC839C57AF44F5D908B8FFFAF661E37", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 105, - "name": "매드포갈릭 분당서현점", - "category_id": "스테이크", - "score": 3.9, - "review": "95", - "address": "경기 성남시 분당구 분당로53번길 22 블루홀플라자 지하1층", - "operating_hour": "매일 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 317058120.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB2E3594CEFF54B11B9A7E0D95B71B2E2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1a0a23a7161409f51a5c6007f4b4dfee60278805%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4cb9caa3921f8e5760c842ca001bc76a6e46e515%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 106, - "name": "롤링파스타 서현역점", - "category_id": "스테이크", - "score": 4.4, - "review": "184", - "address": "경기 성남시 분당구 분당로53번길 14 서현프라자 2층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317073547.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7694B636D7424703AE6A46E67A81853F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1462799448, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1629882925", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 107, - "name": "윤스테이크 본점", - "category_id": "스테이크", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서현로 170", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 108, - "name": "모티이", - "category_id": "스테이크", - "score": 4.7, - "review": "381", - "address": "경기 성남시 분당구 황새울로311번길 28", - "operating_hour": "매일 11:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 01:00", - "phone_number": 317079297.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F195697362F7F4E2F90652648AF4383B8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDhfNTEg%2FMDAxNzMzNTkxNzQ4NDQ2.CKFdblc8Qny9RBzCl8uZa9L2qLMcnHPBlcQGd8PQg0Ig.rywEpk6tXuPZaSeUWIrYkIosfCj8l99s-JYkSyiZMDsg.JPEG%2FIMG_6513.JPG%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDEyMDhfMjc5%2FMDAxNzMzNTkxNzQ3NDc0.pNXxDCdKyQDrVOB1Gxk2wWGxdMko4an_4KhI7QNasYsg.mHCR7c-fs0ksTTBsYyk-qoqpgwl11SkinyT0AuQg2mYg.JPEG%2FIMG_6477.JPG%3Ftype%3Dw773", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 109, - "name": "틈 서현", - "category_id": "스테이크", - "score": 4.7, - "review": "232", - "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 106호", - "operating_hour": "월~목 17:00 ~ 02:00", - "expanded_days": "월,화,수,목", - "time_range": "17:00 ~ 02:00", - "phone_number": 50371504886.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FA94FB178F7704B81A3019FDBCDEB9568, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F0C02E5BB85F54611A9050B1D60D2E272, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FEAE75B0976A840F39E7155E9D700DE5E", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 110, - "name": "잔잔 서현역점", - "category_id": "스테이크", - "score": 3.8, - "review": "609", - "address": "경기 성남시 분당구 황새울로335번길 8 덕산빌딩 1층", - "operating_hour": "월,화,수,목,일 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,일", - "time_range": "17:00 ~ 01:00", - "phone_number": 317030877.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE09FECFA69D64796A75CCFBED483AE5D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ff035362c52cb9585388cbc97a6b7096c0e3f7952%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa888df7bde20108852e6868932ca5cc911beb1b6%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 111, - "name": "웅성웅성 서현점", - "category_id": "스테이크", - "score": 4.7, - "review": "63", - "address": "경기 성남시 분당구 황새울로335번길 5 1층", - "operating_hour": "매일 16:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 02:00", - "phone_number": 316961211.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F44BEA8D9BA6C4F7188A3A5B81356515D, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F537CD63957094DE39B26657ED3627BD7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6D4D89E3A824425EA38A1EDBB2529ADB", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 112, - "name": "라그릴리아 롯데백화점분당점", - "category_id": "스테이크", - "score": 3.9, - "review": "30", - "address": "경기 성남시 분당구 황새울로200번길 45 1층", - "operating_hour": "매일 10:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "10:30 ~ 21:00", - "phone_number": 317382051.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1A1CBD23E0E945DBB9F22F3648649864, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F57ba29ec70b76e49ab465fe4f62f8425cab0e0b6%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8fd20522840747b53a405b9fdf82929fe6c2a321%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 113, - "name": "투파인드피터 서현점", - "category_id": "스테이크", - "score": 4.7, - "review": "621", - "address": "경기 성남시 분당구 황새울로360번길 26 4층 401호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 317786263.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F67AE650F1619491A878D29D12C4746FA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fea7cfa97b02bbfb993c9469c328cde623dbf9265%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F06b0cfb6bb7ec3b85a162ba00c4b3145ce43182f%3Foriginal", - "convenience": "WIFI\n동물출입\n주차", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 114, - "name": "쉐프쿠치나", - "category_id": "스테이크", - "score": 5.0, - "review": "7", - "address": "경기 성남시 분당구 하오개로349번길 4", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqfwHES31u_LjaVkkY0hKva7DEQVzU3Dk_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F756c2a0add96a38b254903bb216ac7f87da9eee8%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F319a75f00e7c58f0987f44aa5f90c1612698a593%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 115, - "name": "미도인 서현", - "category_id": "스테이크", - "score": null, - "review": "1,163", - "address": "경기 성남시 분당구 분당로53번길 10 2층 202호", - "operating_hour": "매일 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 317031990.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F6753A4FE415149F381220542B21DF569, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F734A939860A844C09B0BB5E40DCBD2B3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F73582D49B9ED47FE9688DFE08B26D49E", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 116, - "name": "웅성웅성 서현본점", - "category_id": "스테이크", - "score": 4.7, - "review": "689", - "address": "경기 성남시 분당구 황새울로311번길 28 롯데서현주차빌딩 1층 108호", - "operating_hour": "매일 16:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 02:00", - "phone_number": 317017888.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F28F89AB94DBD499883372B20F38CC8DF, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB29CB4B985924727B930C624E7979C6B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4ECAF2836E1A4FEB8A70C1BA79DC9508", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 117, - "name": "브루클린더버거 조인트 분당정자점", - "category_id": "스테이크", - "score": 3.4, - "review": "104", - "address": "경기 성남시 분당구 정자일로213번길 18 201동 103호", - "operating_hour": "매일 11:00 ~ 21:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317177180.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FE98CEF16A23F45ACA55EE77F4504116A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc77ff34c54250157cd21e390e50affa06633610f%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F57b21c917247164248c0f052e1daec53a13c260c%3Foriginal", - "convenience": "주차", - "caution": "예약불가", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 118, - "name": "로우테라스", - "category_id": "스테이크", - "score": 4.1, - "review": "276", - "address": "경기 성남시 수정구 청계산로5길 8 1층", - "operating_hour": "화~일 11:00 ~ 21:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 7086913028.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF81C2496B63B4C9BAB967630C5A77538, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F18779E1C772F4F8493C6F146C210C80C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF18F5688C99F40778B317A6D441E7B0D", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 119, - "name": "모로미 수내점", - "category_id": "스테이크", - "score": 4.1, - "review": "33", - "address": "경기 성남시 분당구 황새울로258번길 32 코리아나빌딩 205, 206호", - "operating_hour": "월~토 17:30 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "17:30 ~ 24:00", - "phone_number": 317110209.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_475703444, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F1360e7f57361b3f9f79d131571403fa7407355aa%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fb8ac17c15b1151cc7bcf968382b109d2f3680ea5%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 120, - "name": "에뿔라이(epulae)", - "category_id": "스테이크", - "score": 5.0, - "review": "1", - "address": "경기 성남시 분당구 황새울로335번길 5", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FB17D30F1CEA34CBFB74775B0DD6A9FA7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F72aef38a2b0ae8bcbb74b1cffdb9df42b4e366da%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6e8118269cc687551b8f9f7b32cbdd4a19b6ff66%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 121, - "name": "미도인덮밥 스테이크 서현점", - "category_id": "스테이크", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 분당로53번길 10", - "operating_hour": "월~금 11:00 ~ 19:50", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 19:50", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBA45F3D4B0D64F51AC04752CA38564C4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC49C7F8A06DA45A9ACDD29B810D434E4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9E087E4F0B474A7A8B92764F63B53142", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 122, - "name": "살토", - "category_id": "스테이크", - "score": 4.3, - "review": "48", - "address": "경기 성남시 분당구 정자일로 136 정자역 엠코헤리츠 3단지 C동 105, 106호", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC25B5010D13749C58C56DF465F87EA00, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FAD2BBB5A07FD4EB1ADEB2EBB8363CAF2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FA8C56E3DDE8C4BA7BE4F604B35C2E247", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 123, - "name": "재미스 판교", - "category_id": "스테이크", - "score": 3.9, - "review": "171", - "address": "경기 성남시 수정구 대왕판교로950번길 24 1층", - "operating_hour": "화~일 10:00 ~ 17:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "10:00 ~ 17:00", - "phone_number": 50713375290.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F675467F425954E2C896F576501713745, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FCE209CD93FAA458B8D14E6DD94413248, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F863647941B6140DC87F9316EA2750981", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 124, - "name": "콩킨누스", - "category_id": "스테이크", - "score": 5.0, - "review": "172", - "address": "경기 성남시 수정구 청계산로 752 101~104, 116호", - "operating_hour": "월~금 14:30 ~ 17:30", - "expanded_days": "월,화,수,목,금", - "time_range": "14:30 ~ 17:30", - "phone_number": 317520009.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9BE94DDCF75E41FD861CAAF12FB3D1E7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FF8C3CFF95F9E490DA6100D0147A340CD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FB1420F8BD21344A99FE5586ACE3A8552", - "convenience": "WIFI\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 125, - "name": "욜로", - "category_id": "스테이크", - "score": 1.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로319번길 6 텍스타워 106호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 7088721212.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F933FE5DFA3904214924A27F33F9C8300, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMDdfNzEg%2FMDAxNzA3MjcxNzU5OTEy.TGSMvfYWd647y4cBQU5E7t2PBNdVsTqkuU12i42AUCcg.vrEQKWckku-O-h7eUOpVmuydPt2V66cRSsyW_suP6Lcg.JPEG.clapkite98%2F20240206%25EF%25BC%25BF173646.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDAyMDdfMjUz%2FMDAxNzA3MjcxNzU4NjQ3.YCtZJ0W9QuFyH2pAtE2mR5HXgsblweitiCHY3XjeNJog.uRKTQ61l2-PvROkn8CwjAgynS1nzETrVj5Mv-nqCd50g.JPEG.clapkite98%2F20240206%25EF%25BC%25BF173619.jpg%3Ftype%3Dw386", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 126, - "name": "돈까스클럽 성남시청점", - "category_id": "스테이크", - "score": 3.2, - "review": "111", - "address": "경기 성남시 수정구 탄천로307번길 16", - "operating_hour": "화~일 11:00 ~ 21:30", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 21:30", - "phone_number": 317511769.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBFF862EFE5E24A05A7880D2A41ADAEE7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F05784b08a4ff8a92a90c5820f6420d267344d60d%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F5d9c27e12db319beecbf7d73434b5f9ecafc0dcc%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 127, - "name": "쏘렐라파스타 본점", - "category_id": "스테이크", - "score": 3.8, - "review": "33", - "address": "경기 성남시 분당구 정자일로 177 인텔리지빌딩 상가 3층 306호", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 317825882.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F47106427CDA24658B3432CDAFCD72BDD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4956B7F2620241A8ADD7D739268B4DAD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7247EB9FB505446297426DACCFABAD41", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 128, - "name": "랜돌프비어 서현점", - "category_id": "스테이크", - "score": 3.8, - "review": "28", - "address": "경기 성남시 분당구 황새울로360번길 12 대명프라자 3층 301,311호", - "operating_hour": "매일 17:00 ~ 03:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 03:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2Fsearchregister_1108257603, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fce66b9a041e0f36c5f0c945b589c6c7f7ed17461%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4d97236b5563bedcefcea142c806414810d6de70%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 129, - "name": "연무", - "category_id": "스테이크", - "score": 4.8, - "review": "311", - "address": "경기 성남시 분당구 서현로210번길 10 다두프라자 지하1층 101호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 50713344366.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDDC5A336411F481A98BF3287EF56A485, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F838CFA0302094B47A9FD68F78D98ADFC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3c2434f3501913281d0516b5e34554091c52d3f1%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 130, - "name": "춘자싸롱", - "category_id": "스테이크", - "score": 3.8, - "review": "9", - "address": "경기 성남시 분당구 정자일로 210 동양파라곤 102동 지하1층 101호", - "operating_hour": "매일 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:00", - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 131, - "name": "미담", - "category_id": "스테이크", - "score": 3.8, - "review": "1,338", - "address": "경기 성남시 분당구 성남대로331번길 9-13 1층", - "operating_hour": "월~금 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:30 ~ 22:00", - "phone_number": 317110774.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FABFE3F1745194A16B7323AF0AF1E94D0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3c358220e57cdb6dc10cf8ab16f51e39846df195%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6f9c13d4185b46ab3ec3852ea8bc3af124a509ac%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 132, - "name": "수룹타코 suruptaco", - "category_id": "스테이크", - "score": 5.0, - "review": "8", - "address": "경기 성남시 분당구 분당로53번길 10", - "operating_hour": "매일 11:30 ~ 22:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 22:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE43BD505DA8243CAA44F6AD5021C5D61, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F1D906554691848C98291037529C7D9F7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFE90E6C199F84E15B8A7F927FB975C86", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 133, - "name": "카렌 AK분당점", - "category_id": "스테이크", - "score": 3.1, - "review": "1", - "address": "경기 성남시 분당구 황새울로360번길 42 지하 1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F80BCC5A41A6741848396612C5A9E604C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F3e372f44fc07faf923e0c971d9524f459499442b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F4bb418bb691803aebcd4b83d8b7deb472d784094%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 134, - "name": "핑크덤벨헬스푸드", - "category_id": "스테이크", - "score": 4.0, - "review": "8", - "address": "경기 성남시 분당구 황새울로342번길 19 1층", - "operating_hour": "월~금 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 21:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6423CC6EFBFB40D1854568469F3D00B6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6CF960BED3114428A08B7E23D2778C35, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F25DE85BA695A4C439D2CCDE48B665B43", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 135, - "name": "짚동가리쌩주", - "category_id": "스테이크", - "score": 1.9, - "review": "11", - "address": "경기 성남시 분당구 황새울로360번길 28", - "operating_hour": "월~금 11:00 ~ 03:00", - "expanded_days": "월,화,수,목,금", - "time_range": "11:00 ~ 03:00", - "phone_number": 317081377.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FEF0A0F090246442F9D3118F431E884FA, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F2710124B5539D07703, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA2MThfNiAg%2FMDAxNzE4NjcxODQwOTEz.NxlQFp4W9k9oBhBBvFNc4fRbphPk2gfhdXU2O6yCHdcg.m_GOdieXdfRkxS1wt-ozUMyFeCLyeoTEYg7Fk9TBBJcg.JPEG%2F20240617%25EF%25BC%25BF212426.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 136, - "name": "어퍼그레이 AK플라자 분당점", - "category_id": "스테이크", - "score": 4.5, - "review": "22", - "address": "경기 성남시 분당구 황새울로360번길 42 7층", - "operating_hour": "매일 11:00 ~ 20:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 20:30", - "phone_number": 3180232700.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FA55751036A4D4B428F668A35587D8D0B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa4bd832940cca1630829b00d56ee4edc94918d5d59c72cd552ad1050b530ff0f, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MjRfMjEg%2FMDAxNzIxODAxMjM0NTk0.CfZ_eUiS9IkJBuEjjPrYJOkqkGSZijGXBpW2LIUhFhcg.CPbeKhTldtNZ1b5k3YWuO2Xeu2asAWBbSt6i1rdpLDwg.JPEG%2FSE-29b2c6cc-b3c5-4172-a3b7-c4b4996b78c7.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 137, - "name": "술마실고양", - "category_id": "스테이크", - "score": 5.0, - "review": "3", - "address": "경기 성남시 분당구 서현로210번길 16 유성트윈프라자 1차 302호", - "operating_hour": "매일 17:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 02:00", - "phone_number": 50255510585.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F7EAF0A5FAED94D8792FD1B2C13113E0B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FDFE484AC31A2436797BDBD03BFDE7B78, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F9BED3F48209840C8A1EA0258B753660A", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 138, - "name": "롤링파스타 분당정자점", - "category_id": "스테이크", - "score": 3.8, - "review": "1", - "address": "경기 성남시 분당구 황새울로108번길 5 1층", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317173547.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F8AB16F3C73F34BE485455E82D55D3476, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F31256ba087c5d0eb3935851e5c105a05552f2f9b%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F90A4AD6619C24596838D193DF4D7D860", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 139, - "name": "마리에뜨다이닝", - "category_id": "스테이크", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로360번길 42", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 140, - "name": "미담휴", - "category_id": "스테이크", - "score": 3.0, - "review": "1,060", - "address": "경기 성남시 분당구 성남대로331번길 9-12 우경빌딩 2층", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FD00181ED29BB44A8993BEBC58E9E5EBC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F705700C2A2D146FD896BBD8413417792, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FF6DB02A0E9F04ED292A738B6CED54FCD", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 141, - "name": "부에노부스", - "category_id": "스테이크", - "score": 4.0, - "review": "40", - "address": "경기 성남시 분당구 장미로 42 야탑리더스 1층 116호", - "operating_hour": "매일 18:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "18:00 ~ 24:00", - "phone_number": 7041893425.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F3216B58D98C4436D89A8B0DB9261AAF4, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqrM2llxnd_9CgcOcx7GU5ESpsKYfkJh1_img.jpg, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Flocal%2Freview_placeapp%2FbtqrOgQIeni_MkEWCVLDhh5ZulyiqRKCs0_img.jpg", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 142, - "name": "에이치앤에이치바", - "category_id": "스테이크", - "score": 3.0, - "review": "112", - "address": "경기 성남시 분당구 황새울로360번길 24 대명코아 2층 206~207호", - "operating_hour": "매일 19:00 ~ 02:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "19:00 ~ 02:00", - "phone_number": 50371510052.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FBD89866CD1A4438794EA0FAE665417A6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fd4f7329ed7605f120aa7ded4a2ea6ce4b399f3f1095d2ff9fa96c4459894671e, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MTRfODEg%2FMDAxNzE1NjkxODM2MTIx.HAEuUi12rwbXFf2R3H1LSwH4BOon5leIFtl0uLhHVhog.MOgv4Dq7DFfOOP1rbbq8wop6Nlr8oFmJTovqo9ylmjQg.JPEG%2FIMG_7146.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 143, - "name": "라까사데파스타", - "category_id": "스테이크", - "score": 4.7, - "review": "0", - "address": "경기 성남시 분당구 중앙공원로31번길 42", - "operating_hour": "화~토 11:30 ~ 21:00", - "expanded_days": "화,수,목,금,토", - "time_range": "11:30 ~ 21:00", - "phone_number": 1087418588.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F5113D66CF2F243FEA8727FF2A48A080E, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F6FA21DA95DF34822B6D312D9601D47F8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F056FCE2F8C09438CA45BB392B60D82CE", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 144, - "name": "육덮밥", - "category_id": "스테이크", - "score": 4.8, - "review": "0", - "address": "경기 성남시 분당구 내정로173번길 11", - "operating_hour": "월~토 11:00 ~ 20:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 20:00", - "phone_number": 7088270348.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC17BEED27EAE499CBAE6E23FDF736516, //img1.kakaocdn.net/cthumb/local/C640x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F72463101CE3F44788992B40813AABE3A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FFE1AD3C84ECA45EEBBD8405673055CC8", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 145, - "name": "꽃물 서현점", - "category_id": "스테이크", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 서현로210번길 14 유성트윈프라자 지하1호,2호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C1280x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F18600E4D5004D8671A", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 146, - "name": "리미니 NC야탑점", - "category_id": "스테이크", - "score": 2.0, - "review": "73", - "address": "경기 성남시 분당구 야탑로81번길 11 7층", - "operating_hour": "매일 11:00 ~ 20:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 20:30", - "phone_number": 317038176.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F11B01359F7A8410DABC5DAA318971C4C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F41fe7ddbdc5b9a14b99332e5e9eacbc2c714f187%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F0c33270c8ac5cf3c1423b2af8aa75b543915bdf5%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 147, - "name": "호5락실 분당서현점", - "category_id": "스테이크", - "score": 2.0, - "review": "0", - "address": "경기 성남시 분당구 황새울로360번길 12 대명프라자4층", - "operating_hour": "매일 16:00 ~ 10:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "16:00 ~ 10:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F1410843A500F4E5122, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F14236D35500F4E5D18, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F15505B3A500F4E5227", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 148, - "name": "와인플레이 분당점", - "category_id": "스테이크", - "score": 4.6, - "review": "9", - "address": "경기 성남시 분당구 쇳골로 7 1층", - "operating_hour": "매일 11:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": 316093011.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F3B3AB2B623CE49609F91753FC4C73A07, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F4498DC48753A4137877FCE30C06FA8EC, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FDEF1457DE6634D189D8A6ACA3BA56E96", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 149, - "name": "마이에마스", - "category_id": "스테이크", - "score": 3.7, - "review": "218", - "address": "경기 성남시 분당구 정자일로 146 115호", - "operating_hour": "화~일 11:30 ~ 21:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 317253215.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FE0EDB1EA718F43E3AEB7BA4B2778487F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa1a1736e585f413beb9a54b9d8d807678d8af3f9%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6919e42f6fc48f8bc9d49fc7c09bf2d942efbfe1%3Foriginal", - "convenience": "주차", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 150, - "name": "술지비오", - "category_id": "스테이크", - "score": 0.0, - "review": "25", - "address": "경기 성남시 분당구 중앙공원로39번길 49 113호", - "operating_hour": "월~토 18:00 ~ 24:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "18:00 ~ 24:00", - "phone_number": 317040337.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF55192F538AC4790B674BDEC121AA4C2, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEwMDNfMTI0%2FMDAxNjY0NzkwODQzODg0.B6wLPKMijIjnntZkJ7iOiZBHq-ervEOgOU8GnN6SCyEg.15U8m9Vlm051PiKBRyOKzjPOUAQbP0m_K2oFJfTtn4Ag.JPEG.wldms1743%2Foutput_3874077177.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMjEwMDNfMSAg%2FMDAxNjY0NzkwNjczNzY3.LcpAssBWd3UZtlflhAo3IwYxMdPYNzph06zrv571IdAg.uVlioH7ky8iH027OPe7WXEIsIw4kK6Sf4YOW20WcpwMg.JPEG.wldms1743%2Foutput_3761622160.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 151, - "name": "코헨", - "category_id": "스테이크", - "score": 4.0, - "review": "1", - "address": "경기 성남시 분당구 정자일로 197 푸르지오시티 2층 205호", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317192204.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 152, - "name": "호쿠모쿠", - "category_id": "스테이크", - "score": 4.5, - "review": "172", - "address": "경기 성남시 분당구 정자일로 140 정자역엠코헤리츠2단지 B동 1층 101호", - "operating_hour": "매일 15:00 ~ 17:30", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "15:00 ~ 17:30", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F72DD088266564CCDB146CD5CB66E62A0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F04D21DB3A16D4D27A782FE3DD93E6644, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7412d7fb05788306dc8e7853d969b8a746f2867ae715945030d9b6291e5430a9", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 153, - "name": "스파게티올리브0904", - "category_id": "스테이크", - "score": 4.7, - "review": "56", - "address": "경기 성남시 분당구 성남대로925번길 11", - "operating_hour": "화~일 11:30 ~ 21:30", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:30 ~ 21:30", - "phone_number": 317040904.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F8672F45D938143EBBAD25002C2ECC41A, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F12b2a70ca77fc074d805daab085d152fd51cdecf%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F22b42e1b03a1f09bd5d97c764f588d6765ef2ab8%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 154, - "name": "다리오42", - "category_id": "스테이크", - "score": 0.0, - "review": "4", - "address": "경기 성남시 분당구 느티로51번길 8-3", - "operating_hour": "화~일 11:00 ~ 23:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F9BB4C0DFE677443987D5EFBCD627E32B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzExMjRfMjUg%2FMDAxNzAwNzUzNjQzMjAy.NisVmH_yw5lgskYdtVI36POqwvukDu8BhC8hyl16o7Eg.9tuySf6DTtor-AQFGBJdEn7OTxNSybWwrMy9jcK4ygQg.JPEG.icekbs%2F1700753641814.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzExMjRfMjE2%2FMDAxNzAwNzUzNTkxNTQ1.BTKzPk3YptrWfdDSDUrEBWlmOOKWlcbtFQ7u3ty4kNcg.UcUfgCXJG1AJfBvLXNRFmK0wfVXQ61KuJCB-RwnvxGog.JPEG.icekbs%2F1700753589920.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 155, - "name": "김밥천국", - "category_id": "스테이크", - "score": 1.4, - "review": "4", - "address": "경기 성남시 분당구 성남대로331번길 8", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317179042.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F41c506fe06c52a3cbccf71d6ea3d825d7b4daa45%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F20ee706a398efe94a20127c496e42895fd21b0bd%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fc91505d2b4a1a453cb835c3adcc233e0aa40960a%3Foriginal", - "convenience": "주차", - "caution": "예약가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 156, - "name": "하우스브란트 야탑점", - "category_id": "스테이크", - "score": 4.5, - "review": "6", - "address": "경기 성남시 분당구 성남대로925번길 19", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": 317030449.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FD8F37520B36044DFB28EF126CE5157E1, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA5MTFfMjQz%2FMDAxNzI2MDI3MTk4NjE4.9ya3rBgmpWbV9_Z3h1O9087OQ0UYI9C4Mybz98Weqwog.vfQplPF66UfRgtr1JyDyYQGIOSlih_ZyavO_SBmqqdgg.JPEG%2FIMG_3608.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MDJfODIg%2FMDAxNzE5OTAzMjY5MTMz.vViaVxMr7Nbz_T7V5NaJvk3IcrjdwFXAhZ5R8yIdQZwg.KlLr9Sm9fLahmpK0h96HHFzH0-40MiW3O7FAuoEFYGwg.JPEG%2FIMG_8695.JPG%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 157, - "name": "벨라로사", - "category_id": "스테이크", - "score": 4.3, - "review": "65", - "address": "경기 성남시 분당구 성남대로 295 대림아크로텔 상가 1층 118호", - "operating_hour": "월~토 11:30 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:30 ~ 22:00", - "phone_number": 317177282.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 158, - "name": "멜랑", - "category_id": "스테이크", - "score": 4.3, - "review": "90", - "address": "경기 성남시 분당구 야탑로111번길 5-3 1층", - "operating_hour": "매일 11:30 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:30 ~ 21:00", - "phone_number": 317787109.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC2850CCA8CBB49E2A91C4AB2ACDEFEA6, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fe61c09a846b5006b143a449fb704e644cc67bb00%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fa3575233fdc922d1164560c7f4cd35d7d21c3ed0%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 159, - "name": "다구오", - "category_id": "스테이크", - "score": 5.0, - "review": "7", - "address": "경기 성남시 분당구 야탑로81번길 11 NC백화점 지하1층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 160, - "name": "Pokeallday포케 샐러드 분당야탑점", - "category_id": "스테이크", - "score": 0.0, - "review": "25", - "address": "경기 성남시 분당구 야탑로75번길 15", - "operating_hour": "월~금 09:00 ~ 20:30", - "expanded_days": "월,화,수,목,금", - "time_range": "09:00 ~ 20:30", - "phone_number": 50720843638.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FC90E07E440C24249BAA095A088EABCFE, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F71AD5FA457E34CD1AD35258A51064E44, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FF896757DF7B74D97BCCFE0580345BB95", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 161, - "name": "리츠다이너", - "category_id": "스테이크", - "score": null, - "review": "411", - "address": "경기 성남시 분당구 정자일로 146 엠코헤리츠1단지 1층 A111호", - "operating_hour": "월~토 15:30 ~ 17:30", - "expanded_days": "월,화,수,목,금,토", - "time_range": "15:30 ~ 17:30", - "phone_number": 317184307.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F793221D4D6D845768F90FDDFEDB2AE66, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F50B31D29F39F47478B566B14D738B491, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2FC14FCE07CA0344A4B927D64025214263", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 162, - "name": "쿠모야", - "category_id": "스테이크", - "score": 4.4, - "review": "25", - "address": "경기 성남시 분당구 성남대로925번길 16 201동 상가 203~207호", - "operating_hour": "매일 11:00 ~ 21:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 21:00", - "phone_number": 317022270.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2FC103442115B14F6DA9DB891BCAB681B7, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocalfiy%2F3ECA2081EECB480B8A0875DC92EA696C, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Ffcc915401d0860a0e6eae7e88d43b1425c540a79%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 163, - "name": "롤링파스타 야탑역점", - "category_id": "스테이크", - "score": 3.9, - "review": "54", - "address": "경기 성남시 분당구 성남대로926번길 6 대덕프라자 2층 201호", - "operating_hour": "화~일 11:30 ~ 21:30", - "expanded_days": "화,수,목,금,토,일", - "time_range": "11:30 ~ 21:30", - "phone_number": 316978709.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F0C646F7588834B72BCE6028D6A31225F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2Fdee9118f0f738a518c14b1c2170143b666e45407%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F82ea213c5733060e5ca3245959d6db4ec884f144%3Foriginal", - "convenience": "주차", - "caution": "배달가능, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 164, - "name": "오뎅판다 야탑본점", - "category_id": "스테이크", - "score": 2.9, - "review": "10", - "address": "경기 성남시 분당구 야탑로105번길 18", - "operating_hour": "매일 17:00 ~ 04:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 04:00", - "phone_number": 317075089.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F5B3CDCDD6585443890522EF51370CEB8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F7be5453277635ab5dd917391335bbd03b3aa92a0%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F36e2ae2dd4a167391d47319fe6e2ea90a962aba4%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 165, - "name": "와인플레이 분당점,와뱅와플", - "category_id": "스테이크", - "score": 4.7, - "review": "0", - "address": "경기 성남시 분당구 쇳골로 7 지하1층", - "operating_hour": "매일 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "11:00 ~ 22:00", - "phone_number": 316093011.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FFF098E3E9D51466B8A07C3FF609AC1D3, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FE22233796A2E4332B4FC276927E9CA3B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F25DFBA5FE21D4057B792959D5A402DC2", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 166, - "name": "지금보고싶다 야탑점", - "category_id": "스테이크", - "score": 3.8, - "review": "18", - "address": "경기 성남시 분당구 야탑로105번길 18 2층", - "operating_hour": "월~토 18:00 ~ 03:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "18:00 ~ 03:00", - "phone_number": 317072070.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F6123F14542FA44C8A47B18A4F4356BF8, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F6e7fb84b632337898c53b8aef2910a2a1c6d8d47%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F04c8f5302409af05718d909a3745784456a1b466%3Foriginal", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 167, - "name": "엘리팝 판교점", - "category_id": "스테이크", - "score": 3.0, - "review": "12", - "address": "경기 성남시 분당구 판교대장로6길 10 104호", - "operating_hour": "매일 18:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "18:00 ~ 01:00", - "phone_number": 317180212.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F4CF649B58D5849419538F835303DC468, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2F261F854853C6015506, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA1MTVfNjYg%2FMDAxNzE1NzYzOTY3MDMy.OcFOAeFtXXrl-kiTQ9q0NFV2eneMxbY3Hi-EkPnxhQ4g.BnlcwdZSYqNF41uNwV6_wGMkFDLpu_OV-sS20LXzJQUg.JPEG%2F1715763727906.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 168, - "name": "오브리", - "category_id": "스테이크", - "score": 4.5, - "review": "161", - "address": "경기 성남시 분당구 정자일로 146 엠코헤리츠1단지 101동 104호", - "operating_hour": "매일 17:00 ~ 01:00", - "expanded_days": "월,화,수,목,금,토,일", - "time_range": "17:00 ~ 01:00", - "phone_number": 316066009.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 169, - "name": "루트스테이", - "category_id": "스테이크", - "score": 3.7, - "review": "70", - "address": "경기 성남시 분당구 정자일로 140", - "operating_hour": "월,수,목,금,토,일 11:30 ~ 23:00", - "expanded_days": "월,수,목,금,토,일", - "time_range": "11:30 ~ 23:00", - "phone_number": 317146643.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FDCFFF7743CFC407396E90DA1AA1730B0, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F8f91b2ff259b45793031e4dcf1c6dd3d32756303%3Foriginal, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Flocal%2FkakaomapPhoto%2Freview%2F954eb37a2bb6200ddf8eb2d3290945936094a1b1%3Foriginal", - "convenience": "주차", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 170, - "name": "비틀즈", - "category_id": "스테이크", - "score": 5.0, - "review": "5", - "address": "경기 성남시 분당구 안골로 1 지하1층", - "operating_hour": "월~토 18:00 ~ 23:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "18:00 ~ 23:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2FCF98D14A40F24A569D00B19FCEDB3931, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MTdfMTYy%2FMDAxNzIxMTg3MTgzMDIz.67wz4HDjxh0A-p08I2q2nh4z62OSWr6XD88XxhbA45Yg.3zy5izDZnQ1LK_s_p6s2pCC8GmnW9yps2DkPFvDZVCsg.JPEG%2F20240425%25EF%25BC%25BF194916.jpg%3Ftype%3Dw966, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyNDA3MTdfMjAz%2FMDAxNzIxMTg3MTgyODM1.OTIMWQdXmHXuls-70zv0DbejdKK4eeFGbbS748i9YfEg.HqRZgkUICpPxCWjRzk04nyribfkAt7FY2shWrV3oaT8g.JPEG%2F20240425%25EF%25BC%25BF194907.jpg%3Ftype%3Dw966", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 171, - "name": "뉴욕야시장 야탑역점", - "category_id": "스테이크", - "score": 0.0, - "review": "4", - "address": "경기 성남시 분당구 장미로86번길 12-1 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fplace%2F93E1C2F8F67D4D71A368DA08D5D0AACD, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA3MThfMTUx%2FMDAxNjg5NjQyMDYwMjQ1.GcY8RsQoMXbIqnkz_XY93vmWINAQ7TR29nCBQFBokkwg.MapWP-q6Vs3kPdtqD3QafzAig2T87ZSWxCWJQTDxukcg.JPEG.rkdwlgus0906%2FIMG_9018.jpg%3Ftype%3Dw773, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=https%3A%2F%2Fpostfiles.pstatic.net%2FMjAyMzA3MThfMjg5%2FMDAxNjg5NjQyMDYwNTYx.MX7igt51zYGTd9RvD80HVFcaP48KbqTFOmZzqXzwvzAg.UK1BcWtAWO4iCFPIBScbufF_ARjbRYsuGwUZ-FjXC3sg.JPEG.rkdwlgus0906%2FIMG_9017.jpg%3Ftype%3Dw773", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 172, - "name": "누아", - "category_id": "스테이크", - "score": 5.0, - "review": "1", - "address": "경기 성남시 분당구 정자일로 146 엠코헤리츠 1단지 1층 A127호", - "operating_hour": "화~일 17:00 ~ 23:00", - "expanded_days": "화,수,목,금,토,일", - "time_range": "17:00 ~ 23:00", - "phone_number": 50255511955.0, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 173, - "name": "하누품은식탁", - "category_id": "스테이크", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 성남대로926번길 6 야탑대덕프라자 4층 416호", - "operating_hour": "월~토 11:00 ~ 22:00", - "expanded_days": "월,화,수,목,금,토", - "time_range": "11:00 ~ 22:00", - "phone_number": null, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F999E911ED6D5461FB95DBF6CDDA232A5, //img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Ffiy_reboot%2Fplace%2F14F3F1065DA345ED9447A26B0CAEEFFA", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장가능", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 174, - "name": "삼바삼바 분당야탑점", - "category_id": "스테이크", - "score": 0.0, - "review": "0", - "address": "경기 성남시 분당구 장미로 86 이코노샤르망빌딩 2층", - "operating_hour": null, - "expanded_days": null, - "time_range": null, - "phone_number": null, - "image_urls": "이미지 정보 없음", - "convenience": "편의시설 정보 없음", - "caution": "유의사항 정보 없음", - "is_deleted": false - }, - { - "db_category_id": 9, - "restaurant_id": 175, - "name": "봉고기정육식당", - "category_id": "스테이크", - "score": 5.0, - "review": "204", - "address": "경기 성남시 분당구 야탑로105번길 12-6 1층", - "operating_hour": "월~금 16:00 ~ 23:00", - "expanded_days": "월,화,수,목,금", - "time_range": "16:00 ~ 23:00", - "phone_number": 317099089.0, - "image_urls": "//img1.kakaocdn.net/cthumb/local/C640x640.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F4C3B656A5009400F928DF2481481ED4F, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2F442D518AFE064CC5B34AFA6D58A03F1B, //img1.kakaocdn.net/cthumb/local/C320x320.q50/?fname=http%3A%2F%2Ft1.kakaocdn.net%2Fmystore%2FD8C28D30B41546BE836C6DF610DD028C", - "convenience": "WIFI\n동물출입\n주차\n휠체어사용\n놀이방\n흡연실", - "caution": "예약가능, 배달불가, 포장불가", - "is_deleted": false - } -] \ No newline at end of file diff --git a/storage/input_json/user/.gitkeep b/storage/input_json/user/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/storage/input_json/user/Final_Reservation_Table.csv b/storage/input_json/user/Final_Reservation_Table.csv new file mode 100644 index 0000000..2d4a559 --- /dev/null +++ b/storage/input_json/user/Final_Reservation_Table.csv @@ -0,0 +1,283 @@ +reservation_date,created_at,id,reservation_time_id,restaurant_id,seat_type_id,user_id,status +2025.01.04,2025-03-10 05:56:04,1,7,56,1,1,COMPLETED +2025.30.04,2025-03-10 05:56:04,2,5,480,3,1,COMPLETED +2025.28.03,2025-03-10 05:56:04,3,10,258,1,1,CANCELED +2025.09.04,2025-03-10 05:56:04,4,2,604,1,1,COMPLETED +2025.22.04,2025-03-10 05:56:04,5,8,1028,1,1,COMPLETED +2025.22.04,2025-03-10 05:56:04,6,2,1175,3,2,COMPLETED +2025.03.03,2025-03-10 05:56:04,7,2,583,3,2,COMPLETED +2025.08.03,2025-03-10 05:56:04,8,1,326,2,2,COMPLETED +2025.11.04,2025-03-10 05:56:04,9,5,420,1,2,COMPLETED +2025.24.03,2025-03-10 05:56:04,10,1,821,2,2,COMPLETED +2025.31.03,2025-03-10 05:56:04,11,10,638,1,3,COMPLETED +2025.31.03,2025-03-10 05:56:04,12,3,248,2,4,COMPLETED +2025.08.03,2025-03-10 05:56:04,13,10,1653,2,4,COMPLETED +2025.21.04,2025-03-10 05:56:04,14,6,899,2,4,COMPLETED +2025.16.03,2025-03-10 05:56:04,15,2,292,3,4,COMPLETED +2025.19.03,2025-03-10 05:56:04,16,4,1,1,5,COMPLETED +2025.30.03,2025-03-10 05:56:04,17,8,507,2,5,COMPLETED +2025.26.03,2025-03-10 05:56:04,18,9,113,2,5,COMPLETED +2025.05.03,2025-03-10 05:56:04,19,9,1235,3,5,COMPLETED +2025.06.04,2025-03-10 05:56:04,20,9,577,3,5,CANCELED +2025.03.03,2025-03-10 05:56:04,21,6,21,2,6,COMPLETED +2025.14.03,2025-03-10 05:56:04,22,10,499,1,6,COMPLETED +2025.15.04,2025-03-10 05:56:04,23,11,1796,2,6,COMPLETED +2025.09.03,2025-03-10 05:56:04,24,3,1040,1,6,COMPLETED +2025.25.03,2025-03-10 05:56:04,25,5,418,1,7,CANCELED +2025.30.04,2025-03-10 05:56:04,26,10,1734,2,7,COMPLETED +2025.02.03,2025-03-10 05:56:04,27,11,2041,2,7,COMPLETED +2025.31.03,2025-03-10 05:56:04,28,10,2021,2,7,COMPLETED +2025.08.03,2025-03-10 05:56:04,29,5,271,3,7,COMPLETED +2025.24.04,2025-03-10 05:56:04,30,11,1626,2,8,COMPLETED +2025.21.04,2025-03-10 05:56:04,31,10,2166,3,8,COMPLETED +2025.30.04,2025-03-10 05:56:04,32,5,637,2,9,COMPLETED +2025.13.04,2025-03-10 05:56:04,33,4,1670,2,9,CANCELED +2025.25.03,2025-03-10 05:56:04,34,10,954,1,9,COMPLETED +2025.22.03,2025-03-10 05:56:04,35,8,1936,2,9,COMPLETED +2025.25.04,2025-03-10 05:56:04,36,7,501,1,10,COMPLETED +2025.22.03,2025-03-10 05:56:04,37,3,1444,1,10,COMPLETED +2025.06.04,2025-03-10 05:56:04,38,4,230,3,10,CANCELED +2025.15.03,2025-03-10 05:56:04,39,9,2176,3,10,COMPLETED +2025.02.03,2025-03-10 05:56:04,40,6,864,1,12,COMPLETED +2025.27.04,2025-03-10 05:56:04,41,3,468,3,12,COMPLETED +2025.23.04,2025-03-10 05:56:04,42,10,768,3,12,COMPLETED +2025.10.04,2025-03-10 05:56:04,43,2,1064,2,12,COMPLETED +2025.17.03,2025-03-10 05:56:04,44,9,152,1,13,COMPLETED +2025.15.03,2025-03-10 05:56:04,45,7,1537,1,13,COMPLETED +2025.14.04,2025-03-10 05:56:04,46,4,1790,1,13,COMPLETED +2025.18.04,2025-03-10 05:56:04,47,2,1702,1,13,COMPLETED +2025.25.03,2025-03-10 05:56:04,48,4,441,2,13,COMPLETED +2025.20.03,2025-03-10 05:56:04,49,3,2148,1,14,COMPLETED +2025.17.03,2025-03-10 05:56:04,50,1,1539,3,14,FAILED +2025.28.04,2025-03-10 05:56:04,51,9,2248,2,14,COMPLETED +2025.01.03,2025-03-10 05:56:04,52,11,1208,2,14,COMPLETED +2025.09.03,2025-03-10 05:56:04,53,1,261,1,14,COMPLETED +2025.31.03,2025-03-10 05:56:04,54,6,1693,1,15,COMPLETED +2025.12.04,2025-03-10 05:56:04,55,7,1607,2,16,COMPLETED +2025.17.03,2025-03-10 05:56:04,56,6,1916,3,16,COMPLETED +2025.24.03,2025-03-10 05:56:04,57,11,586,1,17,COMPLETED +2025.18.03,2025-03-10 05:56:04,58,2,1901,2,17,COMPLETED +2025.18.03,2025-03-10 05:56:04,59,7,1623,2,18,COMPLETED +2025.25.04,2025-03-10 05:56:04,60,3,1460,3,19,COMPLETED +2025.27.03,2025-03-10 05:56:04,61,1,684,2,19,COMPLETED +2025.20.04,2025-03-10 05:56:04,62,9,7,3,20,COMPLETED +2025.10.03,2025-03-10 05:56:04,63,9,1021,2,21,COMPLETED +2025.13.03,2025-03-10 05:56:04,64,2,905,2,21,COMPLETED +2025.30.04,2025-03-10 05:56:04,65,4,257,1,22,COMPLETED +2025.13.03,2025-03-10 05:56:04,66,8,2162,1,22,COMPLETED +2025.05.03,2025-03-10 05:56:04,67,6,606,2,22,COMPLETED +2025.22.04,2025-03-10 05:56:04,68,2,2010,2,22,COMPLETED +2025.12.04,2025-03-10 05:56:04,69,6,477,3,22,COMPLETED +2025.28.03,2025-03-10 05:56:04,70,3,1076,3,23,COMPLETED +2025.10.03,2025-03-10 05:56:04,71,6,1255,1,23,COMPLETED +2025.02.04,2025-03-10 05:56:04,72,2,1870,3,24,COMPLETED +2025.14.04,2025-03-10 05:56:04,73,4,1276,1,24,COMPLETED +2025.26.03,2025-03-10 05:56:04,74,7,1772,2,24,COMPLETED +2025.25.03,2025-03-10 05:56:04,75,5,1128,1,25,CANCELED +2025.03.03,2025-03-10 05:56:04,76,3,1360,3,26,COMPLETED +2025.19.03,2025-03-10 05:56:04,77,9,1686,2,26,COMPLETED +2025.03.03,2025-03-10 05:56:04,78,10,2092,2,27,CANCELED +2025.11.04,2025-03-10 05:56:04,79,4,1892,1,28,CANCELED +2025.01.04,2025-03-10 05:56:04,80,1,876,3,28,COMPLETED +2025.15.03,2025-03-10 05:56:04,81,8,2128,3,28,COMPLETED +2025.13.04,2025-03-10 05:56:04,82,3,1993,3,29,COMPLETED +2025.17.04,2025-03-10 05:56:04,83,2,41,1,30,COMPLETED +2025.27.04,2025-03-10 05:56:04,84,2,1955,1,30,COMPLETED +2025.09.03,2025-03-10 05:56:04,85,9,2164,2,30,COMPLETED +2025.07.03,2025-03-10 05:56:04,86,6,2213,3,30,COMPLETED +2025.08.04,2025-03-10 05:56:04,87,3,361,2,31,COMPLETED +2025.12.04,2025-03-10 05:56:04,88,5,150,1,32,COMPLETED +2025.13.03,2025-03-10 05:56:04,89,6,1764,3,32,COMPLETED +2025.11.03,2025-03-10 05:56:04,90,1,1837,1,32,COMPLETED +2025.26.03,2025-03-10 05:56:04,91,5,63,2,33,COMPLETED +2025.09.03,2025-03-10 05:56:04,92,1,703,2,33,COMPLETED +2025.17.04,2025-03-10 05:56:04,93,4,1061,1,33,COMPLETED +2025.25.03,2025-03-10 05:56:04,94,7,1857,3,35,COMPLETED +2025.14.04,2025-03-10 05:56:04,95,4,2234,1,36,COMPLETED +2025.27.04,2025-03-10 05:56:04,96,11,1866,1,36,COMPLETED +2025.16.04,2025-03-10 05:56:04,97,7,1143,3,36,COMPLETED +2025.03.04,2025-03-10 05:56:04,98,9,1322,3,36,FAILED +2025.30.04,2025-03-10 05:56:04,99,3,1491,2,37,CANCELED +2025.26.04,2025-03-10 05:56:04,100,2,484,2,37,CANCELED +2025.21.03,2025-03-10 05:56:04,101,8,1691,1,37,CANCELED +2025.13.03,2025-03-10 05:56:04,102,6,512,1,37,COMPLETED +2025.23.04,2025-03-10 05:56:04,103,7,2102,3,38,CANCELED +2025.23.03,2025-03-10 05:56:04,104,4,553,1,39,COMPLETED +2025.02.03,2025-03-10 05:56:04,105,8,1450,2,39,COMPLETED +2025.21.04,2025-03-10 05:56:04,106,11,492,2,39,COMPLETED +2025.24.04,2025-03-10 05:56:04,107,9,1431,3,40,COMPLETED +2025.06.03,2025-03-10 05:56:04,108,11,2048,2,40,COMPLETED +2025.07.04,2025-03-10 05:56:04,109,8,604,1,40,COMPLETED +2025.02.04,2025-03-10 05:56:04,110,3,1526,3,41,COMPLETED +2025.15.03,2025-03-10 05:56:04,111,2,706,2,41,COMPLETED +2025.06.03,2025-03-10 05:56:04,112,9,863,3,41,COMPLETED +2025.21.03,2025-03-10 05:56:04,113,11,230,2,41,COMPLETED +2025.07.03,2025-03-10 05:56:04,114,8,235,3,42,COMPLETED +2025.16.04,2025-03-10 05:56:04,115,4,1248,2,43,CANCELED +2025.18.03,2025-03-10 05:56:04,116,3,320,3,44,COMPLETED +2025.14.03,2025-03-10 05:56:04,117,2,2007,3,44,COMPLETED +2025.02.04,2025-03-10 05:56:04,118,9,1632,3,44,COMPLETED +2025.05.04,2025-03-10 05:56:04,119,2,1737,2,44,COMPLETED +2025.18.03,2025-03-10 05:56:04,120,1,1890,1,45,COMPLETED +2025.25.03,2025-03-10 05:56:04,121,1,1719,3,45,COMPLETED +2025.14.03,2025-03-10 05:56:04,122,10,171,3,45,COMPLETED +2025.24.03,2025-03-10 05:56:04,123,8,732,2,45,COMPLETED +2025.27.04,2025-03-10 05:56:04,124,8,1482,1,46,COMPLETED +2025.23.03,2025-03-10 05:56:04,125,2,24,2,46,COMPLETED +2025.24.03,2025-03-10 05:56:04,126,2,199,2,46,COMPLETED +2025.04.03,2025-03-10 05:56:04,127,7,251,1,46,COMPLETED +2025.20.04,2025-03-10 05:56:04,128,8,206,3,46,COMPLETED +2025.14.03,2025-03-10 05:56:04,129,4,1610,1,47,COMPLETED +2025.16.03,2025-03-10 05:56:04,130,2,2175,3,47,COMPLETED +2025.09.04,2025-03-10 05:56:04,131,10,1478,3,47,COMPLETED +2025.09.03,2025-03-10 05:56:04,132,6,13,3,48,COMPLETED +2025.10.04,2025-03-10 05:56:04,133,4,1415,2,48,COMPLETED +2025.09.03,2025-03-10 05:56:04,134,4,1344,3,48,CANCELED +2025.11.03,2025-03-10 05:56:04,135,7,1801,2,48,COMPLETED +2025.04.04,2025-03-10 05:56:04,136,2,942,2,48,COMPLETED +2025.01.04,2025-03-10 05:56:04,137,9,1192,1,49,FAILED +2025.20.03,2025-03-10 05:56:04,138,7,260,2,49,COMPLETED +2025.18.03,2025-03-10 05:56:04,139,11,373,3,49,COMPLETED +2025.22.04,2025-03-10 05:56:04,140,2,1967,3,49,COMPLETED +2025.02.03,2025-03-10 05:56:04,141,7,1972,2,51,COMPLETED +2025.25.03,2025-03-10 05:56:04,142,2,556,1,51,CANCELED +2025.06.03,2025-03-10 05:56:04,143,11,2114,1,51,COMPLETED +2025.28.04,2025-03-10 05:56:04,144,1,1714,3,51,COMPLETED +2025.02.04,2025-03-10 05:56:04,145,11,1056,3,51,COMPLETED +2025.16.03,2025-03-10 05:56:04,146,9,1545,1,52,COMPLETED +2025.28.03,2025-03-10 05:56:04,147,10,806,3,52,COMPLETED +2025.21.04,2025-03-10 05:56:04,148,10,201,1,52,COMPLETED +2025.25.03,2025-03-10 05:56:04,149,6,541,3,53,FAILED +2025.12.04,2025-03-10 05:56:04,150,11,1977,2,54,COMPLETED +2025.28.04,2025-03-10 05:56:04,151,6,428,2,54,COMPLETED +2025.06.04,2025-03-10 05:56:04,152,6,408,2,54,COMPLETED +2025.07.03,2025-03-10 05:56:04,153,6,2043,1,55,COMPLETED +2025.26.04,2025-03-10 05:56:04,154,6,605,3,55,COMPLETED +2025.16.03,2025-03-10 05:56:04,155,4,241,3,55,COMPLETED +2025.11.03,2025-03-10 05:56:04,156,9,1826,1,55,COMPLETED +2025.20.04,2025-03-10 05:56:04,157,11,1714,1,55,COMPLETED +2025.30.04,2025-03-10 05:56:04,158,1,1554,2,56,COMPLETED +2025.02.04,2025-03-10 05:56:04,159,10,1397,2,56,COMPLETED +2025.01.03,2025-03-10 05:56:04,160,1,765,3,56,COMPLETED +2025.05.03,2025-03-10 05:56:04,161,5,664,1,57,FAILED +2025.31.03,2025-03-10 05:56:04,162,4,140,2,57,COMPLETED +2025.01.03,2025-03-10 05:56:04,163,4,1765,3,57,COMPLETED +2025.09.03,2025-03-10 05:56:04,164,11,816,2,57,COMPLETED +2025.08.03,2025-03-10 05:56:04,165,7,1901,1,57,COMPLETED +2025.01.03,2025-03-10 05:56:04,166,3,1907,2,58,COMPLETED +2025.01.04,2025-03-10 05:56:04,167,10,127,2,58,COMPLETED +2025.18.04,2025-03-10 05:56:04,168,11,1566,1,58,COMPLETED +2025.23.03,2025-03-10 05:56:04,169,3,242,3,58,COMPLETED +2025.07.04,2025-03-10 05:56:04,170,3,1260,2,58,COMPLETED +2025.02.03,2025-03-10 05:56:04,171,10,154,2,59,COMPLETED +2025.05.04,2025-03-10 05:56:04,172,8,570,2,60,COMPLETED +2025.06.03,2025-03-10 05:56:04,173,11,555,1,60,COMPLETED +2025.25.03,2025-03-10 05:56:04,174,7,1163,1,60,COMPLETED +2025.17.03,2025-03-10 05:56:04,175,11,2134,1,60,COMPLETED +2025.20.03,2025-03-10 05:56:04,176,4,1111,2,60,COMPLETED +2025.14.03,2025-03-10 05:56:04,177,9,468,3,61,COMPLETED +2025.05.03,2025-03-10 05:56:04,178,4,296,2,61,CANCELED +2025.11.03,2025-03-10 05:56:04,179,11,1907,1,61,COMPLETED +2025.25.03,2025-03-10 05:56:04,180,5,810,2,61,COMPLETED +2025.29.04,2025-03-10 05:56:04,181,8,1718,2,63,COMPLETED +2025.14.04,2025-03-10 05:56:04,182,7,1830,1,63,COMPLETED +2025.24.04,2025-03-10 05:56:04,183,3,357,2,63,COMPLETED +2025.29.03,2025-03-10 05:56:04,184,3,1761,2,63,COMPLETED +2025.26.04,2025-03-10 05:56:04,185,11,2040,1,64,COMPLETED +2025.07.04,2025-03-10 05:56:04,186,9,160,3,64,COMPLETED +2025.14.03,2025-03-10 05:56:04,187,1,126,3,64,COMPLETED +2025.25.03,2025-03-10 05:56:04,188,11,458,3,64,CANCELED +2025.07.04,2025-03-10 05:56:04,189,7,1774,1,64,COMPLETED +2025.29.04,2025-03-10 05:56:04,190,2,900,2,65,COMPLETED +2025.25.04,2025-03-10 05:56:04,191,8,1178,3,66,COMPLETED +2025.02.04,2025-03-10 05:56:04,192,7,411,3,67,COMPLETED +2025.23.04,2025-03-10 05:56:04,193,2,1118,2,67,COMPLETED +2025.09.04,2025-03-10 05:56:04,194,7,1820,1,68,FAILED +2025.06.03,2025-03-10 05:56:04,195,3,922,2,68,COMPLETED +2025.14.03,2025-03-10 05:56:04,196,5,1959,3,68,COMPLETED +2025.04.03,2025-03-10 05:56:04,197,2,527,1,68,COMPLETED +2025.07.03,2025-03-10 05:56:04,198,7,530,3,69,COMPLETED +2025.27.03,2025-03-10 05:56:04,199,11,1718,2,70,COMPLETED +2025.22.03,2025-03-10 05:56:04,200,10,1361,1,70,COMPLETED +2025.31.03,2025-03-10 05:56:04,201,11,463,1,70,COMPLETED +2025.21.04,2025-03-10 05:56:04,202,9,647,1,70,COMPLETED +2025.28.03,2025-03-10 05:56:04,203,7,2196,2,70,COMPLETED +2025.24.03,2025-03-10 05:56:04,204,10,625,1,71,COMPLETED +2025.31.03,2025-03-10 05:56:04,205,7,34,2,71,COMPLETED +2025.02.03,2025-03-10 05:56:04,206,3,947,3,71,COMPLETED +2025.17.04,2025-03-10 05:56:04,207,4,1034,3,71,COMPLETED +2025.02.03,2025-03-10 05:56:04,208,5,68,2,71,COMPLETED +2025.13.04,2025-03-10 05:56:04,209,2,1680,2,72,COMPLETED +2025.11.03,2025-03-10 05:56:04,210,9,1675,3,72,COMPLETED +2025.11.03,2025-03-10 05:56:04,211,9,744,2,72,COMPLETED +2025.27.03,2025-03-10 05:56:04,212,11,2143,3,75,COMPLETED +2025.07.03,2025-03-10 05:56:04,213,2,940,3,75,COMPLETED +2025.02.04,2025-03-10 05:56:04,214,9,787,1,76,COMPLETED +2025.20.03,2025-03-10 05:56:04,215,8,1301,1,76,COMPLETED +2025.30.04,2025-03-10 05:56:04,216,10,1585,2,76,COMPLETED +2025.06.03,2025-03-10 05:56:04,217,7,1810,2,77,COMPLETED +2025.14.04,2025-03-10 05:56:04,218,4,17,1,77,COMPLETED +2025.25.03,2025-03-10 05:56:04,219,9,1087,2,77,COMPLETED +2025.14.04,2025-03-10 05:56:04,220,4,941,3,77,COMPLETED +2025.01.03,2025-03-10 05:56:04,221,5,1451,3,78,COMPLETED +2025.02.03,2025-03-10 05:56:04,222,11,1953,1,80,COMPLETED +2025.30.03,2025-03-10 05:56:04,223,2,986,3,80,COMPLETED +2025.24.04,2025-03-10 05:56:04,224,8,1523,3,80,COMPLETED +2025.14.03,2025-03-10 05:56:04,225,4,665,1,80,COMPLETED +2025.13.04,2025-03-10 05:56:04,226,1,801,2,80,COMPLETED +2025.08.03,2025-03-10 05:56:04,227,7,498,3,81,COMPLETED +2025.08.03,2025-03-10 05:56:04,228,7,1784,1,81,FAILED +2025.18.03,2025-03-10 05:56:04,229,5,1498,1,81,COMPLETED +2025.03.03,2025-03-10 05:56:04,230,10,2068,1,81,COMPLETED +2025.28.04,2025-03-10 05:56:04,231,8,1387,2,82,COMPLETED +2025.26.03,2025-03-10 05:56:04,232,7,72,1,82,COMPLETED +2025.05.04,2025-03-10 05:56:04,233,11,80,1,82,COMPLETED +2025.15.04,2025-03-10 05:56:04,234,3,1427,2,82,CANCELED +2025.13.04,2025-03-10 05:56:04,235,3,374,3,83,COMPLETED +2025.11.03,2025-03-10 05:56:04,236,3,2202,2,83,COMPLETED +2025.21.04,2025-03-10 05:56:04,237,10,1512,2,83,COMPLETED +2025.06.04,2025-03-10 05:56:04,238,3,921,3,83,COMPLETED +2025.02.03,2025-03-10 05:56:04,239,10,45,2,84,COMPLETED +2025.29.04,2025-03-10 05:56:04,240,9,1860,2,84,COMPLETED +2025.07.04,2025-03-10 05:56:04,241,7,1983,2,85,COMPLETED +2025.23.04,2025-03-10 05:56:04,242,9,608,1,85,CANCELED +2025.17.04,2025-03-10 05:56:04,243,9,1553,1,85,COMPLETED +2025.02.04,2025-03-10 05:56:04,244,10,630,1,85,COMPLETED +2025.18.03,2025-03-10 05:56:04,245,5,959,3,85,FAILED +2025.25.04,2025-03-10 05:56:04,246,9,1852,2,86,COMPLETED +2025.16.04,2025-03-10 05:56:04,247,6,978,1,86,COMPLETED +2025.21.03,2025-03-10 05:56:04,248,8,1504,1,86,COMPLETED +2025.02.03,2025-03-10 05:56:04,249,4,2141,1,86,COMPLETED +2025.03.04,2025-03-10 05:56:04,250,5,957,1,86,COMPLETED +2025.28.03,2025-03-10 05:56:04,251,8,956,3,87,COMPLETED +2025.24.04,2025-03-10 05:56:04,252,9,1079,2,87,COMPLETED +2025.24.03,2025-03-10 05:56:04,253,8,1844,3,87,CANCELED +2025.04.04,2025-03-10 05:56:04,254,10,314,3,90,COMPLETED +2025.14.03,2025-03-10 05:56:04,255,2,238,2,90,FAILED +2025.01.04,2025-03-10 05:56:04,256,10,1960,3,91,COMPLETED +2025.02.03,2025-03-10 05:56:04,257,2,2253,3,91,COMPLETED +2025.04.03,2025-03-10 05:56:04,258,1,1743,1,91,COMPLETED +2025.08.03,2025-03-10 05:56:04,259,11,616,1,91,COMPLETED +2025.18.04,2025-03-10 05:56:04,260,9,1951,3,92,CANCELED +2025.17.04,2025-03-10 05:56:04,261,2,1497,2,92,CANCELED +2025.21.04,2025-03-10 05:56:04,262,7,226,3,92,COMPLETED +2025.28.03,2025-03-10 05:56:04,263,3,1808,2,92,COMPLETED +2025.21.04,2025-03-10 05:56:04,264,10,888,2,92,COMPLETED +2025.04.04,2025-03-10 05:56:04,265,5,1375,3,94,COMPLETED +2025.19.04,2025-03-10 05:56:04,266,7,993,1,95,CANCELED +2025.27.04,2025-03-10 05:56:04,267,7,1555,3,95,COMPLETED +2025.18.03,2025-03-10 05:56:04,268,4,1737,3,95,COMPLETED +2025.20.04,2025-03-10 05:56:04,269,10,1934,1,95,COMPLETED +2025.11.03,2025-03-10 05:56:04,270,5,1972,1,95,COMPLETED +2025.09.03,2025-03-10 05:56:04,271,9,834,1,96,COMPLETED +2025.13.04,2025-03-10 05:56:04,272,10,1463,1,96,COMPLETED +2025.12.04,2025-03-10 05:56:04,273,7,48,3,96,COMPLETED +2025.24.03,2025-03-10 05:56:04,274,2,111,3,96,COMPLETED +2025.08.03,2025-03-10 05:56:04,275,6,934,2,97,COMPLETED +2025.10.04,2025-03-10 05:56:04,276,2,1425,3,98,COMPLETED +2025.13.03,2025-03-10 05:56:04,277,9,881,1,98,COMPLETED +2025.15.04,2025-03-10 05:56:04,278,8,301,1,98,COMPLETED +2025.22.03,2025-03-10 05:56:04,279,5,56,3,99,COMPLETED +2025.03.03,2025-03-10 05:56:04,280,3,1469,3,99,COMPLETED +2025.07.03,2025-03-10 05:56:04,281,7,2183,3,99,COMPLETED +2025.27.03,2025-03-10 05:56:04,282,4,1677,2,100,COMPLETED diff --git a/storage/input_json/user/Updated_User_Preference_Category_Table.csv b/storage/input_json/user/Updated_User_Preference_Category_Table.csv new file mode 100644 index 0000000..1e041c5 --- /dev/null +++ b/storage/input_json/user/Updated_User_Preference_Category_Table.csv @@ -0,0 +1,301 @@ +category_id,user_preference_id +8,1 +1,1 +11,1 +8,2 +5,2 +6,2 +9,3 +7,3 +4,3 +5,4 +8,4 +10,4 +3,5 +1,5 +6,5 +9,6 +7,6 +11,6 +1,7 +11,7 +9,7 +3,8 +12,8 +9,8 +5,9 +10,9 +12,9 +3,10 +9,10 +4,10 +4,11 +6,11 +7,11 +9,12 +6,12 +4,12 +2,13 +10,13 +7,13 +7,14 +4,14 +12,14 +2,15 +5,15 +7,15 +5,16 +6,16 +11,16 +1,17 +2,17 +9,17 +3,18 +2,18 +11,18 +7,19 +10,19 +12,19 +5,20 +3,20 +12,20 +6,21 +11,21 +2,21 +5,22 +4,22 +3,22 +6,23 +11,23 +7,23 +5,24 +2,24 +1,24 +7,25 +11,25 +12,25 +6,26 +10,26 +11,26 +2,27 +10,27 +11,27 +11,28 +5,28 +6,28 +4,29 +5,29 +1,29 +5,30 +8,30 +3,30 +8,31 +4,31 +5,31 +5,32 +1,32 +8,32 +8,33 +5,33 +12,33 +4,34 +3,34 +11,34 +1,35 +9,35 +5,35 +7,36 +8,36 +1,36 +11,37 +10,37 +3,37 +3,38 +1,38 +7,38 +3,39 +11,39 +6,39 +9,40 +12,40 +4,40 +1,41 +9,41 +10,41 +3,42 +10,42 +1,42 +3,43 +7,43 +4,43 +12,44 +7,44 +6,44 +12,45 +1,45 +10,45 +8,46 +12,46 +7,46 +11,47 +4,47 +12,47 +6,48 +5,48 +10,48 +11,49 +2,49 +1,49 +10,50 +12,50 +11,50 +9,51 +10,51 +12,51 +2,52 +8,52 +3,52 +11,53 +6,53 +9,53 +9,54 +5,54 +6,54 +4,55 +5,55 +2,55 +5,56 +9,56 +4,56 +9,57 +11,57 +2,57 +1,58 +5,58 +7,58 +6,59 +11,59 +7,59 +2,60 +1,60 +9,60 +4,61 +7,61 +12,61 +5,62 +11,62 +2,62 +11,63 +9,63 +3,63 +5,64 +12,64 +10,64 +5,65 +2,65 +4,65 +2,66 +12,66 +6,66 +12,67 +6,67 +1,67 +6,68 +12,68 +2,68 +9,69 +3,69 +11,69 +1,70 +3,70 +9,70 +8,71 +6,71 +12,71 +7,72 +1,72 +2,72 +12,73 +11,73 +1,73 +2,74 +6,74 +11,74 +8,75 +2,75 +3,75 +4,76 +5,76 +6,76 +6,77 +1,77 +11,77 +3,78 +2,78 +1,78 +11,79 +4,79 +6,79 +1,80 +4,80 +9,80 +7,81 +5,81 +10,81 +3,82 +6,82 +12,82 +7,83 +9,83 +3,83 +9,84 +7,84 +6,84 +4,85 +1,85 +7,85 +11,86 +3,86 +2,86 +5,87 +3,87 +9,87 +10,88 +3,88 +4,88 +6,89 +11,89 +5,89 +4,90 +6,90 +10,90 +4,91 +3,91 +9,91 +9,92 +12,92 +8,92 +6,93 +3,93 +12,93 +1,94 +2,94 +7,94 +1,95 +11,95 +6,95 +5,96 +4,96 +1,96 +8,97 +3,97 +10,97 +7,98 +12,98 +8,98 +11,99 +5,99 +10,99 +10,100 +9,100 +6,100 diff --git a/storage/input_json/user/Updated_User_Preference_Table.csv b/storage/input_json/user/Updated_User_Preference_Table.csv new file mode 100644 index 0000000..cd9eed1 --- /dev/null +++ b/storage/input_json/user/Updated_User_Preference_Table.csv @@ -0,0 +1,101 @@ +max_price,min_price,user_id +360000,270000,1 +310000,210000,2 +640000,250000,3 +650000,400000,4 +230000,110000,5 +340000,320000,6 +730000,310000,7 +830000,670000,8 +70000,0,9 +110000,30000,10 +400000,240000,11 +560000,450000,12 +590000,580000,13 +60000,30000,14 +210000,130000,15 +740000,240000,16 +460000,140000,17 +460000,0,18 +990000,300000,19 +580000,190000,20 +940000,40000,21 +70000,60000,22 +510000,480000,23 +850000,760000,24 +390000,200000,25 +490000,310000,26 +560000,340000,27 +700000,100000,28 +620000,370000,29 +700000,360000,30 +260000,240000,31 +970000,630000,32 +680000,50000,33 +550000,360000,34 +900000,680000,35 +770000,580000,36 +390000,310000,37 +60000,40000,38 +580000,120000,39 +600000,370000,40 +560000,100000,41 +570000,550000,42 +990000,490000,43 +880000,460000,44 +760000,590000,45 +350000,250000,46 +180000,110000,47 +80000,40000,48 +250000,160000,49 +710000,50000,50 +950000,900000,51 +970000,780000,52 +630000,10000,53 +980000,830000,54 +50000,10000,55 +950000,650000,56 +810000,140000,57 +990000,140000,58 +530000,270000,59 +10000,0,60 +190000,160000,61 +970000,870000,62 +420000,320000,63 +480000,240000,64 +960000,860000,65 +300000,270000,66 +530000,510000,67 +330000,250000,68 +680000,440000,69 +280000,260000,70 +900000,140000,71 +830000,40000,72 +140000,90000,73 +240000,30000,74 +100000,90000,75 +670000,80000,76 +470000,40000,77 +440000,340000,78 +570000,520000,79 +710000,80000,80 +410000,130000,81 +810000,700000,82 +220000,170000,83 +250000,10000,84 +20000,20000,85 +410000,350000,86 +820000,150000,87 +350000,240000,88 +320000,250000,89 +460000,310000,90 +630000,310000,91 +390000,200000,92 +670000,650000,93 +720000,70000,94 +160000,100000,95 +60000,50000,96 +440000,390000,97 +250000,150000,98 +940000,300000,99 +210000,120000,100 diff --git a/storage/input_json/user/User_Table.csv b/storage/input_json/user/User_Table.csv new file mode 100644 index 0000000..e14c9f2 --- /dev/null +++ b/storage/input_json/user/User_Table.csv @@ -0,0 +1,101 @@ +empty_ticket_count,is_deleted,normal_ticket_count,sex,id,image_url,nickname,phone_number,status +1,False,42,FEMALE,1,https://example.com/image1.jpg,Ava85,010-1470-4237,AVAILABLE +2,False,47,FEMALE,2,https://example.com/image2.jpg,Charlotte39,010-2128-5779,AVAILABLE +0,False,107,MALE,3,https://example.com/image3.jpg,David94,010-5889-3876,AVAILABLE +4,False,44,MALE,4,https://example.com/image4.jpg,Lucas13,010-1086-4409,AVAILABLE +2,True,102,FEMALE,5,https://example.com/image5.jpg,Sebastian45,010-4565-6374,AVAILABLE +4,False,23,FEMALE,6,https://example.com/image6.jpg,Alice70,010-3080-4043,AVAILABLE +2,False,109,MALE,7,https://example.com/image7.jpg,Noah71,010-6869-2477,AVAILABLE +4,False,71,FEMALE,8,https://example.com/image8.jpg,Jack42,010-9021-8466,AVAILABLE +3,False,112,FEMALE,9,https://example.com/image9.jpg,Sophia46,010-8293-1568,AVAILABLE +0,False,74,FEMALE,10,https://example.com/image10.jpg,Isabella68,010-8877-5847,AVAILABLE +1,True,82,FEMALE,11,https://example.com/image11.jpg,James52,010-2480-8164,AVAILABLE +3,False,109,MALE,12,https://example.com/image12.jpg,Alexander19,010-3241-3760,AVAILABLE +0,False,15,MALE,13,https://example.com/image13.jpg,Alice39,010-2984-7798,AVAILABLE +5,False,24,MALE,14,https://example.com/image14.jpg,Noah16,010-3058-9524,AVAILABLE +4,True,10,MALE,15,https://example.com/image15.jpg,Sunny91,010-8906-8031,AVAILABLE +1,False,85,FEMALE,16,https://example.com/image16.jpg,Benjamin45,010-1499-1768,AVAILABLE +4,False,84,FEMALE,17,https://example.com/image17.jpg,Michael93,010-1594-4855,AVAILABLE +0,True,105,MALE,18,https://example.com/image18.jpg,Emily86,010-5522-3420,AVAILABLE +5,False,46,MALE,19,https://example.com/image19.jpg,Emma6,010-9168-8775,AVAILABLE +2,False,119,MALE,20,https://example.com/image20.jpg,David9,010-9596-8695,AVAILABLE +0,False,77,FEMALE,21,https://example.com/image21.jpg,Alice78,010-2756-6745,AVAILABLE +0,False,74,MALE,22,https://example.com/image22.jpg,Sunny56,010-5655-6889,AVAILABLE +4,False,37,FEMALE,23,https://example.com/image23.jpg,Alexander60,010-7489-3061,AVAILABLE +4,False,24,MALE,24,https://example.com/image24.jpg,William56,010-9604-7990,AVAILABLE +4,True,23,MALE,25,https://example.com/image25.jpg,Liam47,010-7839-5490,AVAILABLE +0,False,108,FEMALE,26,https://example.com/image26.jpg,Alexander33,010-9062-9114,AVAILABLE +4,False,55,FEMALE,27,https://example.com/image27.jpg,Evelyn86,010-4564-6136,AVAILABLE +1,False,54,FEMALE,28,https://example.com/image28.jpg,James38,010-9752-7208,AVAILABLE +3,True,112,MALE,29,https://example.com/image29.jpg,Sunny51,010-3237-3844,AVAILABLE +5,False,54,MALE,30,https://example.com/image30.jpg,Benjamin76,010-6707-2914,AVAILABLE +2,False,35,FEMALE,31,https://example.com/image31.jpg,James21,010-5115-8778,AVAILABLE +5,False,26,FEMALE,32,https://example.com/image32.jpg,Isabella68,010-3487-2064,AVAILABLE +4,False,42,MALE,33,https://example.com/image33.jpg,Amelia25,010-1074-2638,AVAILABLE +0,False,48,MALE,34,https://example.com/image34.jpg,Amelia49,010-2762-7849,AVAILABLE +5,True,42,FEMALE,35,https://example.com/image35.jpg,Emma32,010-1718-1051,AVAILABLE +2,False,52,MALE,36,https://example.com/image36.jpg,Daniel44,010-9740-6059,AVAILABLE +1,True,91,MALE,37,https://example.com/image37.jpg,Sophia20,010-2985-8303,AVAILABLE +5,True,72,FEMALE,38,https://example.com/image38.jpg,Alice7,010-7831-6875,AVAILABLE +3,True,41,FEMALE,39,https://example.com/image39.jpg,Amelia16,010-1932-9569,AVAILABLE +3,False,71,MALE,40,https://example.com/image40.jpg,Lucas92,010-3936-3021,AVAILABLE +4,False,74,FEMALE,41,https://example.com/image41.jpg,Ella46,010-4087-2066,AVAILABLE +0,False,117,MALE,42,https://example.com/image42.jpg,Jack91,010-7324-4791,AVAILABLE +2,False,95,FEMALE,43,https://example.com/image43.jpg,Amelia68,010-5119-8187,AVAILABLE +4,False,49,FEMALE,44,https://example.com/image44.jpg,Emily10,010-2209-4874,AVAILABLE +1,False,93,MALE,45,https://example.com/image45.jpg,Lucas31,010-3077-9540,AVAILABLE +1,False,113,MALE,46,https://example.com/image46.jpg,Lucas48,010-9144-4368,AVAILABLE +0,False,58,MALE,47,https://example.com/image47.jpg,James7,010-4193-2810,AVAILABLE +3,True,61,FEMALE,48,https://example.com/image48.jpg,Isabella17,010-4278-3372,AVAILABLE +3,False,100,FEMALE,49,https://example.com/image49.jpg,Isabella25,010-1362-7656,AVAILABLE +0,True,87,MALE,50,https://example.com/image50.jpg,Lucas8,010-8748-6296,AVAILABLE +1,False,22,MALE,51,https://example.com/image51.jpg,Kevin9,010-1605-9777,AVAILABLE +1,False,69,MALE,52,https://example.com/image52.jpg,Olivia87,010-2302-5160,AVAILABLE +3,False,91,FEMALE,53,https://example.com/image53.jpg,Alexander57,010-5841-2209,AVAILABLE +2,False,15,MALE,54,https://example.com/image54.jpg,Mia24,010-4332-6716,AVAILABLE +2,False,75,MALE,55,https://example.com/image55.jpg,Amelia20,010-6893-4560,AVAILABLE +5,True,60,MALE,56,https://example.com/image56.jpg,Michael96,010-6404-7737,AVAILABLE +4,False,101,MALE,57,https://example.com/image57.jpg,Sunny33,010-4500-3036,AVAILABLE +2,False,51,MALE,58,https://example.com/image58.jpg,Noah77,010-2670-4991,AVAILABLE +3,True,90,FEMALE,59,https://example.com/image59.jpg,Abigail93,010-5990-2712,AVAILABLE +1,False,30,FEMALE,60,https://example.com/image60.jpg,Alice28,010-1202-5358,AVAILABLE +0,True,35,MALE,61,https://example.com/image61.jpg,Ethan92,010-5212-1222,AVAILABLE +5,False,34,FEMALE,62,https://example.com/image62.jpg,Kevin76,010-1853-9012,AVAILABLE +1,False,37,FEMALE,63,https://example.com/image63.jpg,Alexander36,010-7018-8499,AVAILABLE +3,True,110,FEMALE,64,https://example.com/image64.jpg,Olivia24,010-9894-7576,AVAILABLE +0,False,105,FEMALE,65,https://example.com/image65.jpg,Liam10,010-6799-9257,AVAILABLE +1,False,83,FEMALE,66,https://example.com/image66.jpg,Alexander61,010-7607-9136,AVAILABLE +4,False,69,MALE,67,https://example.com/image67.jpg,Ava68,010-1904-9655,AVAILABLE +1,False,62,MALE,68,https://example.com/image68.jpg,Emily94,010-1680-9422,AVAILABLE +2,False,6,MALE,69,https://example.com/image69.jpg,Noah29,010-1130-9815,AVAILABLE +0,False,111,FEMALE,70,https://example.com/image70.jpg,Ethan63,010-6237-8493,AVAILABLE +4,False,39,FEMALE,71,https://example.com/image71.jpg,Lucas99,010-2772-5810,AVAILABLE +0,False,79,MALE,72,https://example.com/image72.jpg,William84,010-1077-6940,AVAILABLE +3,False,72,FEMALE,73,https://example.com/image73.jpg,Alice77,010-1915-8342,AVAILABLE +1,False,65,FEMALE,74,https://example.com/image74.jpg,Harper16,010-1279-4093,AVAILABLE +5,False,5,MALE,75,https://example.com/image75.jpg,Lucas86,010-7503-7903,AVAILABLE +3,False,100,FEMALE,76,https://example.com/image76.jpg,Sunny24,010-7791-1038,AVAILABLE +4,True,94,FEMALE,77,https://example.com/image77.jpg,Sophia66,010-8973-9099,AVAILABLE +3,False,62,MALE,78,https://example.com/image78.jpg,James89,010-8185-9540,AVAILABLE +3,True,7,FEMALE,79,https://example.com/image79.jpg,Ava70,010-2294-4644,AVAILABLE +4,False,72,FEMALE,80,https://example.com/image80.jpg,Abigail60,010-1942-5228,AVAILABLE +3,True,14,MALE,81,https://example.com/image81.jpg,Abigail89,010-1740-8302,AVAILABLE +5,False,86,MALE,82,https://example.com/image82.jpg,Lucas11,010-4482-4978,AVAILABLE +1,True,28,MALE,83,https://example.com/image83.jpg,Abigail48,010-2969-2370,AVAILABLE +5,False,101,MALE,84,https://example.com/image84.jpg,Alexander19,010-4363-8760,AVAILABLE +4,False,33,MALE,85,https://example.com/image85.jpg,Isabella99,010-1494-5982,AVAILABLE +3,False,24,FEMALE,86,https://example.com/image86.jpg,Sunny1,010-9241-9444,AVAILABLE +5,False,21,FEMALE,87,https://example.com/image87.jpg,Emma45,010-1523-6528,AVAILABLE +4,False,118,FEMALE,88,https://example.com/image88.jpg,Liam41,010-7042-4754,AVAILABLE +0,False,36,MALE,89,https://example.com/image89.jpg,Sunny89,010-7388-9855,AVAILABLE +4,False,39,FEMALE,90,https://example.com/image90.jpg,Liam19,010-3530-9247,AVAILABLE +2,False,60,MALE,91,https://example.com/image91.jpg,William20,010-9271-4509,AVAILABLE +1,False,17,MALE,92,https://example.com/image92.jpg,Evelyn73,010-5701-3171,AVAILABLE +2,False,73,MALE,93,https://example.com/image93.jpg,Sunny16,010-6179-3432,AVAILABLE +0,True,16,MALE,94,https://example.com/image94.jpg,Daniel42,010-9612-5301,AVAILABLE +5,False,88,MALE,95,https://example.com/image95.jpg,Noah70,010-4503-5878,AVAILABLE +1,False,104,MALE,96,https://example.com/image96.jpg,Alexander83,010-9461-6656,AVAILABLE +2,False,89,FEMALE,97,https://example.com/image97.jpg,Sunny70,010-6069-9419,AVAILABLE +1,False,114,MALE,98,https://example.com/image98.jpg,Isabella19,010-5360-3314,AVAILABLE +4,False,108,FEMALE,99,https://example.com/image99.jpg,Sunny21,010-9062-4224,AVAILABLE +0,False,49,FEMALE,100,https://example.com/image100.jpg,Daniel56,010-4785-4745,AVAILABLE diff --git a/storage/input_json/user/likes_20250330_212302.json b/storage/input_json/user/likes_20250330_212302.json new file mode 100644 index 0000000..bd91064 --- /dev/null +++ b/storage/input_json/user/likes_20250330_212302.json @@ -0,0 +1,12002 @@ +[ + { + "user_id": 928, + "restaurant_id": 1191 + }, + { + "user_id": 799, + "restaurant_id": 864 + }, + { + "user_id": 991, + "restaurant_id": 422 + }, + { + "user_id": 536, + "restaurant_id": 764 + }, + { + "user_id": 538, + "restaurant_id": 411 + }, + { + "user_id": 721, + "restaurant_id": 1335 + }, + { + "user_id": 218, + "restaurant_id": 841 + }, + { + "user_id": 172, + "restaurant_id": 1406 + }, + { + "user_id": 572, + "restaurant_id": 1194 + }, + { + "user_id": 462, + "restaurant_id": 1442 + }, + { + "user_id": 984, + "restaurant_id": 604 + }, + { + "user_id": 340, + "restaurant_id": 231 + }, + { + "user_id": 282, + "restaurant_id": 438 + }, + { + "user_id": 18, + "restaurant_id": 754 + }, + { + "user_id": 180, + "restaurant_id": 811 + }, + { + "user_id": 954, + "restaurant_id": 1080 + }, + { + "user_id": 573, + "restaurant_id": 421 + }, + { + "user_id": 986, + "restaurant_id": 528 + }, + { + "user_id": 814, + "restaurant_id": 1512 + }, + { + "user_id": 214, + "restaurant_id": 1517 + }, + { + "user_id": 717, + "restaurant_id": 1630 + }, + { + "user_id": 96, + "restaurant_id": 1955 + }, + { + "user_id": 869, + "restaurant_id": 287 + }, + { + "user_id": 31, + "restaurant_id": 1171 + }, + { + "user_id": 418, + "restaurant_id": 2078 + }, + { + "user_id": 609, + "restaurant_id": 2236 + }, + { + "user_id": 129, + "restaurant_id": 1525 + }, + { + "user_id": 732, + "restaurant_id": 748 + }, + { + "user_id": 922, + "restaurant_id": 255 + }, + { + "user_id": 179, + "restaurant_id": 1496 + }, + { + "user_id": 434, + "restaurant_id": 2180 + }, + { + "user_id": 732, + "restaurant_id": 2256 + }, + { + "user_id": 302, + "restaurant_id": 141 + }, + { + "user_id": 987, + "restaurant_id": 740 + }, + { + "user_id": 699, + "restaurant_id": 937 + }, + { + "user_id": 886, + "restaurant_id": 1900 + }, + { + "user_id": 680, + "restaurant_id": 2124 + }, + { + "user_id": 595, + "restaurant_id": 2237 + }, + { + "user_id": 356, + "restaurant_id": 365 + }, + { + "user_id": 883, + "restaurant_id": 873 + }, + { + "user_id": 543, + "restaurant_id": 995 + }, + { + "user_id": 244, + "restaurant_id": 1800 + }, + { + "user_id": 642, + "restaurant_id": 1706 + }, + { + "user_id": 74, + "restaurant_id": 127 + }, + { + "user_id": 140, + "restaurant_id": 2030 + }, + { + "user_id": 863, + "restaurant_id": 87 + }, + { + "user_id": 833, + "restaurant_id": 353 + }, + { + "user_id": 762, + "restaurant_id": 536 + }, + { + "user_id": 861, + "restaurant_id": 1237 + }, + { + "user_id": 772, + "restaurant_id": 1996 + }, + { + "user_id": 707, + "restaurant_id": 938 + }, + { + "user_id": 232, + "restaurant_id": 868 + }, + { + "user_id": 172, + "restaurant_id": 386 + }, + { + "user_id": 251, + "restaurant_id": 255 + }, + { + "user_id": 271, + "restaurant_id": 40 + }, + { + "user_id": 312, + "restaurant_id": 731 + }, + { + "user_id": 731, + "restaurant_id": 839 + }, + { + "user_id": 416, + "restaurant_id": 1482 + }, + { + "user_id": 49, + "restaurant_id": 5 + }, + { + "user_id": 453, + "restaurant_id": 317 + }, + { + "user_id": 563, + "restaurant_id": 1265 + }, + { + "user_id": 800, + "restaurant_id": 441 + }, + { + "user_id": 85, + "restaurant_id": 683 + }, + { + "user_id": 854, + "restaurant_id": 1939 + }, + { + "user_id": 659, + "restaurant_id": 1792 + }, + { + "user_id": 780, + "restaurant_id": 906 + }, + { + "user_id": 426, + "restaurant_id": 1109 + }, + { + "user_id": 881, + "restaurant_id": 379 + }, + { + "user_id": 467, + "restaurant_id": 328 + }, + { + "user_id": 11, + "restaurant_id": 1073 + }, + { + "user_id": 461, + "restaurant_id": 2032 + }, + { + "user_id": 248, + "restaurant_id": 660 + }, + { + "user_id": 405, + "restaurant_id": 2051 + }, + { + "user_id": 24, + "restaurant_id": 1232 + }, + { + "user_id": 345, + "restaurant_id": 2099 + }, + { + "user_id": 130, + "restaurant_id": 1730 + }, + { + "user_id": 10, + "restaurant_id": 125 + }, + { + "user_id": 96, + "restaurant_id": 351 + }, + { + "user_id": 375, + "restaurant_id": 820 + }, + { + "user_id": 748, + "restaurant_id": 1974 + }, + { + "user_id": 641, + "restaurant_id": 514 + }, + { + "user_id": 93, + "restaurant_id": 1572 + }, + { + "user_id": 250, + "restaurant_id": 1284 + }, + { + "user_id": 206, + "restaurant_id": 830 + }, + { + "user_id": 88, + "restaurant_id": 1323 + }, + { + "user_id": 972, + "restaurant_id": 2005 + }, + { + "user_id": 618, + "restaurant_id": 883 + }, + { + "user_id": 955, + "restaurant_id": 543 + }, + { + "user_id": 384, + "restaurant_id": 1504 + }, + { + "user_id": 402, + "restaurant_id": 971 + }, + { + "user_id": 609, + "restaurant_id": 1383 + }, + { + "user_id": 417, + "restaurant_id": 1707 + }, + { + "user_id": 198, + "restaurant_id": 1287 + }, + { + "user_id": 152, + "restaurant_id": 304 + }, + { + "user_id": 960, + "restaurant_id": 1604 + }, + { + "user_id": 298, + "restaurant_id": 968 + }, + { + "user_id": 290, + "restaurant_id": 1289 + }, + { + "user_id": 455, + "restaurant_id": 1362 + }, + { + "user_id": 426, + "restaurant_id": 577 + }, + { + "user_id": 592, + "restaurant_id": 1080 + }, + { + "user_id": 319, + "restaurant_id": 185 + }, + { + "user_id": 830, + "restaurant_id": 1639 + }, + { + "user_id": 657, + "restaurant_id": 2048 + }, + { + "user_id": 127, + "restaurant_id": 2092 + }, + { + "user_id": 932, + "restaurant_id": 1530 + }, + { + "user_id": 714, + "restaurant_id": 1922 + }, + { + "user_id": 453, + "restaurant_id": 2060 + }, + { + "user_id": 328, + "restaurant_id": 1421 + }, + { + "user_id": 88, + "restaurant_id": 2210 + }, + { + "user_id": 452, + "restaurant_id": 1064 + }, + { + "user_id": 520, + "restaurant_id": 542 + }, + { + "user_id": 542, + "restaurant_id": 498 + }, + { + "user_id": 562, + "restaurant_id": 1424 + }, + { + "user_id": 661, + "restaurant_id": 1923 + }, + { + "user_id": 718, + "restaurant_id": 1453 + }, + { + "user_id": 700, + "restaurant_id": 562 + }, + { + "user_id": 563, + "restaurant_id": 1696 + }, + { + "user_id": 752, + "restaurant_id": 255 + }, + { + "user_id": 521, + "restaurant_id": 1939 + }, + { + "user_id": 820, + "restaurant_id": 457 + }, + { + "user_id": 564, + "restaurant_id": 1010 + }, + { + "user_id": 831, + "restaurant_id": 1739 + }, + { + "user_id": 973, + "restaurant_id": 1030 + }, + { + "user_id": 640, + "restaurant_id": 1113 + }, + { + "user_id": 319, + "restaurant_id": 904 + }, + { + "user_id": 64, + "restaurant_id": 1964 + }, + { + "user_id": 451, + "restaurant_id": 880 + }, + { + "user_id": 486, + "restaurant_id": 2136 + }, + { + "user_id": 24, + "restaurant_id": 1048 + }, + { + "user_id": 400, + "restaurant_id": 538 + }, + { + "user_id": 530, + "restaurant_id": 253 + }, + { + "user_id": 695, + "restaurant_id": 696 + }, + { + "user_id": 690, + "restaurant_id": 185 + }, + { + "user_id": 650, + "restaurant_id": 1730 + }, + { + "user_id": 61, + "restaurant_id": 671 + }, + { + "user_id": 29, + "restaurant_id": 642 + }, + { + "user_id": 309, + "restaurant_id": 2039 + }, + { + "user_id": 153, + "restaurant_id": 1652 + }, + { + "user_id": 424, + "restaurant_id": 2080 + }, + { + "user_id": 283, + "restaurant_id": 1944 + }, + { + "user_id": 51, + "restaurant_id": 1079 + }, + { + "user_id": 442, + "restaurant_id": 989 + }, + { + "user_id": 938, + "restaurant_id": 1373 + }, + { + "user_id": 682, + "restaurant_id": 618 + }, + { + "user_id": 516, + "restaurant_id": 1854 + }, + { + "user_id": 314, + "restaurant_id": 798 + }, + { + "user_id": 958, + "restaurant_id": 1866 + }, + { + "user_id": 181, + "restaurant_id": 1338 + }, + { + "user_id": 788, + "restaurant_id": 1757 + }, + { + "user_id": 836, + "restaurant_id": 1647 + }, + { + "user_id": 459, + "restaurant_id": 1962 + }, + { + "user_id": 702, + "restaurant_id": 1293 + }, + { + "user_id": 240, + "restaurant_id": 649 + }, + { + "user_id": 544, + "restaurant_id": 2115 + }, + { + "user_id": 789, + "restaurant_id": 1382 + }, + { + "user_id": 965, + "restaurant_id": 1863 + }, + { + "user_id": 306, + "restaurant_id": 1414 + }, + { + "user_id": 60, + "restaurant_id": 1865 + }, + { + "user_id": 76, + "restaurant_id": 396 + }, + { + "user_id": 4, + "restaurant_id": 721 + }, + { + "user_id": 112, + "restaurant_id": 1055 + }, + { + "user_id": 663, + "restaurant_id": 69 + }, + { + "user_id": 438, + "restaurant_id": 1871 + }, + { + "user_id": 793, + "restaurant_id": 981 + }, + { + "user_id": 662, + "restaurant_id": 524 + }, + { + "user_id": 966, + "restaurant_id": 715 + }, + { + "user_id": 988, + "restaurant_id": 1276 + }, + { + "user_id": 425, + "restaurant_id": 1510 + }, + { + "user_id": 543, + "restaurant_id": 852 + }, + { + "user_id": 770, + "restaurant_id": 844 + }, + { + "user_id": 333, + "restaurant_id": 2195 + }, + { + "user_id": 336, + "restaurant_id": 490 + }, + { + "user_id": 140, + "restaurant_id": 171 + }, + { + "user_id": 255, + "restaurant_id": 736 + }, + { + "user_id": 426, + "restaurant_id": 1152 + }, + { + "user_id": 572, + "restaurant_id": 2123 + }, + { + "user_id": 133, + "restaurant_id": 917 + }, + { + "user_id": 574, + "restaurant_id": 1192 + }, + { + "user_id": 738, + "restaurant_id": 580 + }, + { + "user_id": 566, + "restaurant_id": 1685 + }, + { + "user_id": 42, + "restaurant_id": 2134 + }, + { + "user_id": 188, + "restaurant_id": 720 + }, + { + "user_id": 606, + "restaurant_id": 1488 + }, + { + "user_id": 257, + "restaurant_id": 1957 + }, + { + "user_id": 846, + "restaurant_id": 634 + }, + { + "user_id": 579, + "restaurant_id": 1752 + }, + { + "user_id": 184, + "restaurant_id": 827 + }, + { + "user_id": 789, + "restaurant_id": 960 + }, + { + "user_id": 321, + "restaurant_id": 2004 + }, + { + "user_id": 367, + "restaurant_id": 1997 + }, + { + "user_id": 919, + "restaurant_id": 1656 + }, + { + "user_id": 395, + "restaurant_id": 999 + }, + { + "user_id": 60, + "restaurant_id": 2056 + }, + { + "user_id": 499, + "restaurant_id": 2198 + }, + { + "user_id": 622, + "restaurant_id": 1462 + }, + { + "user_id": 183, + "restaurant_id": 451 + }, + { + "user_id": 395, + "restaurant_id": 2024 + }, + { + "user_id": 790, + "restaurant_id": 181 + }, + { + "user_id": 538, + "restaurant_id": 733 + }, + { + "user_id": 763, + "restaurant_id": 2153 + }, + { + "user_id": 932, + "restaurant_id": 1726 + }, + { + "user_id": 522, + "restaurant_id": 1601 + }, + { + "user_id": 590, + "restaurant_id": 2011 + }, + { + "user_id": 56, + "restaurant_id": 463 + }, + { + "user_id": 582, + "restaurant_id": 1633 + }, + { + "user_id": 265, + "restaurant_id": 336 + }, + { + "user_id": 247, + "restaurant_id": 1683 + }, + { + "user_id": 984, + "restaurant_id": 1004 + }, + { + "user_id": 134, + "restaurant_id": 345 + }, + { + "user_id": 321, + "restaurant_id": 113 + }, + { + "user_id": 263, + "restaurant_id": 1109 + }, + { + "user_id": 672, + "restaurant_id": 2042 + }, + { + "user_id": 769, + "restaurant_id": 951 + }, + { + "user_id": 651, + "restaurant_id": 553 + }, + { + "user_id": 966, + "restaurant_id": 1853 + }, + { + "user_id": 113, + "restaurant_id": 302 + }, + { + "user_id": 522, + "restaurant_id": 1095 + }, + { + "user_id": 814, + "restaurant_id": 213 + }, + { + "user_id": 321, + "restaurant_id": 173 + }, + { + "user_id": 216, + "restaurant_id": 664 + }, + { + "user_id": 190, + "restaurant_id": 1375 + }, + { + "user_id": 961, + "restaurant_id": 1377 + }, + { + "user_id": 579, + "restaurant_id": 63 + }, + { + "user_id": 628, + "restaurant_id": 1630 + }, + { + "user_id": 326, + "restaurant_id": 116 + }, + { + "user_id": 385, + "restaurant_id": 1309 + }, + { + "user_id": 982, + "restaurant_id": 1945 + }, + { + "user_id": 303, + "restaurant_id": 105 + }, + { + "user_id": 361, + "restaurant_id": 66 + }, + { + "user_id": 862, + "restaurant_id": 2224 + }, + { + "user_id": 104, + "restaurant_id": 1136 + }, + { + "user_id": 350, + "restaurant_id": 211 + }, + { + "user_id": 574, + "restaurant_id": 1030 + }, + { + "user_id": 532, + "restaurant_id": 769 + }, + { + "user_id": 605, + "restaurant_id": 1285 + }, + { + "user_id": 696, + "restaurant_id": 866 + }, + { + "user_id": 689, + "restaurant_id": 571 + }, + { + "user_id": 342, + "restaurant_id": 1739 + }, + { + "user_id": 845, + "restaurant_id": 623 + }, + { + "user_id": 42, + "restaurant_id": 1411 + }, + { + "user_id": 882, + "restaurant_id": 351 + }, + { + "user_id": 395, + "restaurant_id": 413 + }, + { + "user_id": 394, + "restaurant_id": 759 + }, + { + "user_id": 72, + "restaurant_id": 1375 + }, + { + "user_id": 16, + "restaurant_id": 1461 + }, + { + "user_id": 381, + "restaurant_id": 957 + }, + { + "user_id": 559, + "restaurant_id": 273 + }, + { + "user_id": 48, + "restaurant_id": 340 + }, + { + "user_id": 402, + "restaurant_id": 1104 + }, + { + "user_id": 556, + "restaurant_id": 1052 + }, + { + "user_id": 67, + "restaurant_id": 645 + }, + { + "user_id": 489, + "restaurant_id": 2146 + }, + { + "user_id": 718, + "restaurant_id": 219 + }, + { + "user_id": 630, + "restaurant_id": 1111 + }, + { + "user_id": 121, + "restaurant_id": 995 + }, + { + "user_id": 946, + "restaurant_id": 1750 + }, + { + "user_id": 524, + "restaurant_id": 71 + }, + { + "user_id": 149, + "restaurant_id": 801 + }, + { + "user_id": 3, + "restaurant_id": 2101 + }, + { + "user_id": 836, + "restaurant_id": 1935 + }, + { + "user_id": 156, + "restaurant_id": 304 + }, + { + "user_id": 59, + "restaurant_id": 1092 + }, + { + "user_id": 87, + "restaurant_id": 320 + }, + { + "user_id": 186, + "restaurant_id": 1394 + }, + { + "user_id": 509, + "restaurant_id": 39 + }, + { + "user_id": 789, + "restaurant_id": 987 + }, + { + "user_id": 850, + "restaurant_id": 2077 + }, + { + "user_id": 620, + "restaurant_id": 1429 + }, + { + "user_id": 463, + "restaurant_id": 2189 + }, + { + "user_id": 371, + "restaurant_id": 1068 + }, + { + "user_id": 213, + "restaurant_id": 1180 + }, + { + "user_id": 655, + "restaurant_id": 1252 + }, + { + "user_id": 39, + "restaurant_id": 437 + }, + { + "user_id": 647, + "restaurant_id": 910 + }, + { + "user_id": 664, + "restaurant_id": 2133 + }, + { + "user_id": 633, + "restaurant_id": 268 + }, + { + "user_id": 534, + "restaurant_id": 764 + }, + { + "user_id": 815, + "restaurant_id": 481 + }, + { + "user_id": 538, + "restaurant_id": 207 + }, + { + "user_id": 618, + "restaurant_id": 821 + }, + { + "user_id": 600, + "restaurant_id": 2013 + }, + { + "user_id": 115, + "restaurant_id": 1948 + }, + { + "user_id": 648, + "restaurant_id": 1678 + }, + { + "user_id": 935, + "restaurant_id": 231 + }, + { + "user_id": 923, + "restaurant_id": 1701 + }, + { + "user_id": 891, + "restaurant_id": 86 + }, + { + "user_id": 68, + "restaurant_id": 902 + }, + { + "user_id": 982, + "restaurant_id": 2024 + }, + { + "user_id": 818, + "restaurant_id": 127 + }, + { + "user_id": 850, + "restaurant_id": 1651 + }, + { + "user_id": 110, + "restaurant_id": 1742 + }, + { + "user_id": 474, + "restaurant_id": 720 + }, + { + "user_id": 487, + "restaurant_id": 439 + }, + { + "user_id": 239, + "restaurant_id": 1300 + }, + { + "user_id": 155, + "restaurant_id": 1635 + }, + { + "user_id": 159, + "restaurant_id": 377 + }, + { + "user_id": 778, + "restaurant_id": 2121 + }, + { + "user_id": 322, + "restaurant_id": 1760 + }, + { + "user_id": 210, + "restaurant_id": 1014 + }, + { + "user_id": 422, + "restaurant_id": 1527 + }, + { + "user_id": 276, + "restaurant_id": 840 + }, + { + "user_id": 222, + "restaurant_id": 1046 + }, + { + "user_id": 643, + "restaurant_id": 1472 + }, + { + "user_id": 730, + "restaurant_id": 188 + }, + { + "user_id": 740, + "restaurant_id": 502 + }, + { + "user_id": 95, + "restaurant_id": 852 + }, + { + "user_id": 520, + "restaurant_id": 624 + }, + { + "user_id": 684, + "restaurant_id": 1889 + }, + { + "user_id": 223, + "restaurant_id": 1557 + }, + { + "user_id": 883, + "restaurant_id": 91 + }, + { + "user_id": 372, + "restaurant_id": 1712 + }, + { + "user_id": 452, + "restaurant_id": 794 + }, + { + "user_id": 338, + "restaurant_id": 682 + }, + { + "user_id": 45, + "restaurant_id": 982 + }, + { + "user_id": 605, + "restaurant_id": 1394 + }, + { + "user_id": 27, + "restaurant_id": 1349 + }, + { + "user_id": 758, + "restaurant_id": 936 + }, + { + "user_id": 455, + "restaurant_id": 1402 + }, + { + "user_id": 324, + "restaurant_id": 692 + }, + { + "user_id": 843, + "restaurant_id": 1559 + }, + { + "user_id": 687, + "restaurant_id": 1288 + }, + { + "user_id": 578, + "restaurant_id": 799 + }, + { + "user_id": 205, + "restaurant_id": 870 + }, + { + "user_id": 974, + "restaurant_id": 775 + }, + { + "user_id": 617, + "restaurant_id": 2220 + }, + { + "user_id": 207, + "restaurant_id": 2249 + }, + { + "user_id": 498, + "restaurant_id": 1483 + }, + { + "user_id": 324, + "restaurant_id": 195 + }, + { + "user_id": 511, + "restaurant_id": 1306 + }, + { + "user_id": 60, + "restaurant_id": 154 + }, + { + "user_id": 432, + "restaurant_id": 800 + }, + { + "user_id": 445, + "restaurant_id": 372 + }, + { + "user_id": 564, + "restaurant_id": 1574 + }, + { + "user_id": 105, + "restaurant_id": 274 + }, + { + "user_id": 346, + "restaurant_id": 1332 + }, + { + "user_id": 931, + "restaurant_id": 1216 + }, + { + "user_id": 535, + "restaurant_id": 2220 + }, + { + "user_id": 731, + "restaurant_id": 995 + }, + { + "user_id": 668, + "restaurant_id": 1196 + }, + { + "user_id": 711, + "restaurant_id": 56 + }, + { + "user_id": 141, + "restaurant_id": 1205 + }, + { + "user_id": 102, + "restaurant_id": 627 + }, + { + "user_id": 546, + "restaurant_id": 1082 + }, + { + "user_id": 732, + "restaurant_id": 686 + }, + { + "user_id": 559, + "restaurant_id": 803 + }, + { + "user_id": 296, + "restaurant_id": 1867 + }, + { + "user_id": 564, + "restaurant_id": 273 + }, + { + "user_id": 970, + "restaurant_id": 2099 + }, + { + "user_id": 744, + "restaurant_id": 1094 + }, + { + "user_id": 838, + "restaurant_id": 1284 + }, + { + "user_id": 678, + "restaurant_id": 879 + }, + { + "user_id": 742, + "restaurant_id": 1991 + }, + { + "user_id": 840, + "restaurant_id": 1413 + }, + { + "user_id": 565, + "restaurant_id": 1433 + }, + { + "user_id": 888, + "restaurant_id": 591 + }, + { + "user_id": 699, + "restaurant_id": 133 + }, + { + "user_id": 974, + "restaurant_id": 2029 + }, + { + "user_id": 419, + "restaurant_id": 1137 + }, + { + "user_id": 834, + "restaurant_id": 419 + }, + { + "user_id": 700, + "restaurant_id": 1005 + }, + { + "user_id": 419, + "restaurant_id": 1208 + }, + { + "user_id": 307, + "restaurant_id": 1121 + }, + { + "user_id": 657, + "restaurant_id": 1653 + }, + { + "user_id": 436, + "restaurant_id": 1377 + }, + { + "user_id": 228, + "restaurant_id": 61 + }, + { + "user_id": 364, + "restaurant_id": 1075 + }, + { + "user_id": 217, + "restaurant_id": 247 + }, + { + "user_id": 77, + "restaurant_id": 671 + }, + { + "user_id": 641, + "restaurant_id": 1890 + }, + { + "user_id": 908, + "restaurant_id": 805 + }, + { + "user_id": 348, + "restaurant_id": 555 + }, + { + "user_id": 362, + "restaurant_id": 1856 + }, + { + "user_id": 612, + "restaurant_id": 2152 + }, + { + "user_id": 888, + "restaurant_id": 1502 + }, + { + "user_id": 253, + "restaurant_id": 1994 + }, + { + "user_id": 501, + "restaurant_id": 334 + }, + { + "user_id": 433, + "restaurant_id": 1699 + }, + { + "user_id": 72, + "restaurant_id": 720 + }, + { + "user_id": 592, + "restaurant_id": 1942 + }, + { + "user_id": 969, + "restaurant_id": 680 + }, + { + "user_id": 209, + "restaurant_id": 854 + }, + { + "user_id": 285, + "restaurant_id": 1477 + }, + { + "user_id": 427, + "restaurant_id": 620 + }, + { + "user_id": 46, + "restaurant_id": 224 + }, + { + "user_id": 899, + "restaurant_id": 2026 + }, + { + "user_id": 104, + "restaurant_id": 1334 + }, + { + "user_id": 245, + "restaurant_id": 199 + }, + { + "user_id": 665, + "restaurant_id": 1588 + }, + { + "user_id": 387, + "restaurant_id": 1933 + }, + { + "user_id": 816, + "restaurant_id": 905 + }, + { + "user_id": 450, + "restaurant_id": 1222 + }, + { + "user_id": 357, + "restaurant_id": 226 + }, + { + "user_id": 940, + "restaurant_id": 740 + }, + { + "user_id": 152, + "restaurant_id": 682 + }, + { + "user_id": 131, + "restaurant_id": 586 + }, + { + "user_id": 192, + "restaurant_id": 354 + }, + { + "user_id": 923, + "restaurant_id": 775 + }, + { + "user_id": 934, + "restaurant_id": 333 + }, + { + "user_id": 828, + "restaurant_id": 1801 + }, + { + "user_id": 59, + "restaurant_id": 1261 + }, + { + "user_id": 399, + "restaurant_id": 1519 + }, + { + "user_id": 919, + "restaurant_id": 1520 + }, + { + "user_id": 641, + "restaurant_id": 1479 + }, + { + "user_id": 748, + "restaurant_id": 2034 + }, + { + "user_id": 701, + "restaurant_id": 364 + }, + { + "user_id": 142, + "restaurant_id": 1827 + }, + { + "user_id": 976, + "restaurant_id": 668 + }, + { + "user_id": 911, + "restaurant_id": 328 + }, + { + "user_id": 7, + "restaurant_id": 1326 + }, + { + "user_id": 517, + "restaurant_id": 848 + }, + { + "user_id": 315, + "restaurant_id": 634 + }, + { + "user_id": 43, + "restaurant_id": 178 + }, + { + "user_id": 24, + "restaurant_id": 1054 + }, + { + "user_id": 519, + "restaurant_id": 1571 + }, + { + "user_id": 58, + "restaurant_id": 301 + }, + { + "user_id": 408, + "restaurant_id": 703 + }, + { + "user_id": 386, + "restaurant_id": 1938 + }, + { + "user_id": 646, + "restaurant_id": 2144 + }, + { + "user_id": 896, + "restaurant_id": 2165 + }, + { + "user_id": 959, + "restaurant_id": 689 + }, + { + "user_id": 534, + "restaurant_id": 2047 + }, + { + "user_id": 400, + "restaurant_id": 1509 + }, + { + "user_id": 366, + "restaurant_id": 565 + }, + { + "user_id": 35, + "restaurant_id": 1877 + }, + { + "user_id": 697, + "restaurant_id": 280 + }, + { + "user_id": 749, + "restaurant_id": 1294 + }, + { + "user_id": 491, + "restaurant_id": 2145 + }, + { + "user_id": 992, + "restaurant_id": 1192 + }, + { + "user_id": 641, + "restaurant_id": 1029 + }, + { + "user_id": 898, + "restaurant_id": 473 + }, + { + "user_id": 607, + "restaurant_id": 2213 + }, + { + "user_id": 571, + "restaurant_id": 59 + }, + { + "user_id": 341, + "restaurant_id": 1065 + }, + { + "user_id": 396, + "restaurant_id": 150 + }, + { + "user_id": 122, + "restaurant_id": 1750 + }, + { + "user_id": 510, + "restaurant_id": 1003 + }, + { + "user_id": 197, + "restaurant_id": 1147 + }, + { + "user_id": 231, + "restaurant_id": 989 + }, + { + "user_id": 443, + "restaurant_id": 1822 + }, + { + "user_id": 735, + "restaurant_id": 1265 + }, + { + "user_id": 932, + "restaurant_id": 1652 + }, + { + "user_id": 494, + "restaurant_id": 470 + }, + { + "user_id": 486, + "restaurant_id": 468 + }, + { + "user_id": 843, + "restaurant_id": 84 + }, + { + "user_id": 632, + "restaurant_id": 2230 + }, + { + "user_id": 542, + "restaurant_id": 261 + }, + { + "user_id": 164, + "restaurant_id": 1071 + }, + { + "user_id": 872, + "restaurant_id": 913 + }, + { + "user_id": 821, + "restaurant_id": 1210 + }, + { + "user_id": 805, + "restaurant_id": 566 + }, + { + "user_id": 909, + "restaurant_id": 535 + }, + { + "user_id": 260, + "restaurant_id": 1196 + }, + { + "user_id": 800, + "restaurant_id": 28 + }, + { + "user_id": 12, + "restaurant_id": 1914 + }, + { + "user_id": 659, + "restaurant_id": 1742 + }, + { + "user_id": 196, + "restaurant_id": 1847 + }, + { + "user_id": 782, + "restaurant_id": 129 + }, + { + "user_id": 294, + "restaurant_id": 601 + }, + { + "user_id": 974, + "restaurant_id": 1154 + }, + { + "user_id": 502, + "restaurant_id": 1079 + }, + { + "user_id": 950, + "restaurant_id": 743 + }, + { + "user_id": 338, + "restaurant_id": 557 + }, + { + "user_id": 218, + "restaurant_id": 658 + }, + { + "user_id": 492, + "restaurant_id": 97 + }, + { + "user_id": 678, + "restaurant_id": 55 + }, + { + "user_id": 155, + "restaurant_id": 2115 + }, + { + "user_id": 656, + "restaurant_id": 2187 + }, + { + "user_id": 304, + "restaurant_id": 1509 + }, + { + "user_id": 464, + "restaurant_id": 1518 + }, + { + "user_id": 469, + "restaurant_id": 870 + }, + { + "user_id": 62, + "restaurant_id": 2220 + }, + { + "user_id": 738, + "restaurant_id": 1070 + }, + { + "user_id": 56, + "restaurant_id": 1315 + }, + { + "user_id": 696, + "restaurant_id": 1111 + }, + { + "user_id": 961, + "restaurant_id": 892 + }, + { + "user_id": 692, + "restaurant_id": 1896 + }, + { + "user_id": 666, + "restaurant_id": 734 + }, + { + "user_id": 489, + "restaurant_id": 256 + }, + { + "user_id": 502, + "restaurant_id": 707 + }, + { + "user_id": 472, + "restaurant_id": 1837 + }, + { + "user_id": 874, + "restaurant_id": 568 + }, + { + "user_id": 571, + "restaurant_id": 1923 + }, + { + "user_id": 889, + "restaurant_id": 254 + }, + { + "user_id": 868, + "restaurant_id": 403 + }, + { + "user_id": 752, + "restaurant_id": 874 + }, + { + "user_id": 128, + "restaurant_id": 323 + }, + { + "user_id": 690, + "restaurant_id": 480 + }, + { + "user_id": 117, + "restaurant_id": 314 + }, + { + "user_id": 218, + "restaurant_id": 693 + }, + { + "user_id": 34, + "restaurant_id": 1028 + }, + { + "user_id": 497, + "restaurant_id": 730 + }, + { + "user_id": 721, + "restaurant_id": 417 + }, + { + "user_id": 706, + "restaurant_id": 2005 + }, + { + "user_id": 152, + "restaurant_id": 582 + }, + { + "user_id": 956, + "restaurant_id": 1406 + }, + { + "user_id": 334, + "restaurant_id": 2146 + }, + { + "user_id": 590, + "restaurant_id": 1931 + }, + { + "user_id": 331, + "restaurant_id": 523 + }, + { + "user_id": 91, + "restaurant_id": 2086 + }, + { + "user_id": 88, + "restaurant_id": 1397 + }, + { + "user_id": 800, + "restaurant_id": 1082 + }, + { + "user_id": 535, + "restaurant_id": 1722 + }, + { + "user_id": 549, + "restaurant_id": 681 + }, + { + "user_id": 137, + "restaurant_id": 780 + }, + { + "user_id": 393, + "restaurant_id": 2143 + }, + { + "user_id": 944, + "restaurant_id": 1179 + }, + { + "user_id": 269, + "restaurant_id": 1059 + }, + { + "user_id": 771, + "restaurant_id": 1003 + }, + { + "user_id": 814, + "restaurant_id": 329 + }, + { + "user_id": 693, + "restaurant_id": 540 + }, + { + "user_id": 655, + "restaurant_id": 16 + }, + { + "user_id": 877, + "restaurant_id": 1705 + }, + { + "user_id": 465, + "restaurant_id": 1338 + }, + { + "user_id": 948, + "restaurant_id": 96 + }, + { + "user_id": 540, + "restaurant_id": 457 + }, + { + "user_id": 775, + "restaurant_id": 1558 + }, + { + "user_id": 106, + "restaurant_id": 883 + }, + { + "user_id": 9, + "restaurant_id": 741 + }, + { + "user_id": 596, + "restaurant_id": 203 + }, + { + "user_id": 688, + "restaurant_id": 1932 + }, + { + "user_id": 225, + "restaurant_id": 168 + }, + { + "user_id": 788, + "restaurant_id": 563 + }, + { + "user_id": 590, + "restaurant_id": 1751 + }, + { + "user_id": 638, + "restaurant_id": 199 + }, + { + "user_id": 580, + "restaurant_id": 586 + }, + { + "user_id": 295, + "restaurant_id": 975 + }, + { + "user_id": 485, + "restaurant_id": 568 + }, + { + "user_id": 115, + "restaurant_id": 1071 + }, + { + "user_id": 351, + "restaurant_id": 680 + }, + { + "user_id": 93, + "restaurant_id": 1535 + }, + { + "user_id": 399, + "restaurant_id": 1149 + }, + { + "user_id": 674, + "restaurant_id": 1521 + }, + { + "user_id": 552, + "restaurant_id": 110 + }, + { + "user_id": 784, + "restaurant_id": 1923 + }, + { + "user_id": 799, + "restaurant_id": 1684 + }, + { + "user_id": 290, + "restaurant_id": 125 + }, + { + "user_id": 229, + "restaurant_id": 1665 + }, + { + "user_id": 577, + "restaurant_id": 1746 + }, + { + "user_id": 696, + "restaurant_id": 539 + }, + { + "user_id": 632, + "restaurant_id": 1636 + }, + { + "user_id": 392, + "restaurant_id": 1169 + }, + { + "user_id": 340, + "restaurant_id": 207 + }, + { + "user_id": 627, + "restaurant_id": 1111 + }, + { + "user_id": 332, + "restaurant_id": 1680 + }, + { + "user_id": 265, + "restaurant_id": 1628 + }, + { + "user_id": 406, + "restaurant_id": 2062 + }, + { + "user_id": 461, + "restaurant_id": 137 + }, + { + "user_id": 483, + "restaurant_id": 786 + }, + { + "user_id": 358, + "restaurant_id": 2037 + }, + { + "user_id": 973, + "restaurant_id": 318 + }, + { + "user_id": 18, + "restaurant_id": 1372 + }, + { + "user_id": 767, + "restaurant_id": 1371 + }, + { + "user_id": 953, + "restaurant_id": 1789 + }, + { + "user_id": 954, + "restaurant_id": 1502 + }, + { + "user_id": 348, + "restaurant_id": 443 + }, + { + "user_id": 937, + "restaurant_id": 337 + }, + { + "user_id": 888, + "restaurant_id": 1039 + }, + { + "user_id": 199, + "restaurant_id": 1455 + }, + { + "user_id": 670, + "restaurant_id": 309 + }, + { + "user_id": 606, + "restaurant_id": 1420 + }, + { + "user_id": 22, + "restaurant_id": 1457 + }, + { + "user_id": 938, + "restaurant_id": 988 + }, + { + "user_id": 866, + "restaurant_id": 306 + }, + { + "user_id": 163, + "restaurant_id": 1856 + }, + { + "user_id": 449, + "restaurant_id": 906 + }, + { + "user_id": 14, + "restaurant_id": 2145 + }, + { + "user_id": 762, + "restaurant_id": 1563 + }, + { + "user_id": 559, + "restaurant_id": 1986 + }, + { + "user_id": 690, + "restaurant_id": 335 + }, + { + "user_id": 866, + "restaurant_id": 749 + }, + { + "user_id": 832, + "restaurant_id": 379 + }, + { + "user_id": 539, + "restaurant_id": 885 + }, + { + "user_id": 103, + "restaurant_id": 2176 + }, + { + "user_id": 129, + "restaurant_id": 220 + }, + { + "user_id": 646, + "restaurant_id": 1942 + }, + { + "user_id": 957, + "restaurant_id": 2004 + }, + { + "user_id": 632, + "restaurant_id": 786 + }, + { + "user_id": 524, + "restaurant_id": 1153 + }, + { + "user_id": 773, + "restaurant_id": 351 + }, + { + "user_id": 18, + "restaurant_id": 133 + }, + { + "user_id": 149, + "restaurant_id": 357 + }, + { + "user_id": 33, + "restaurant_id": 868 + }, + { + "user_id": 847, + "restaurant_id": 1122 + }, + { + "user_id": 144, + "restaurant_id": 1285 + }, + { + "user_id": 611, + "restaurant_id": 164 + }, + { + "user_id": 177, + "restaurant_id": 8 + }, + { + "user_id": 581, + "restaurant_id": 1354 + }, + { + "user_id": 321, + "restaurant_id": 609 + }, + { + "user_id": 83, + "restaurant_id": 475 + }, + { + "user_id": 893, + "restaurant_id": 2159 + }, + { + "user_id": 389, + "restaurant_id": 200 + }, + { + "user_id": 486, + "restaurant_id": 636 + }, + { + "user_id": 942, + "restaurant_id": 1682 + }, + { + "user_id": 262, + "restaurant_id": 258 + }, + { + "user_id": 843, + "restaurant_id": 1088 + }, + { + "user_id": 483, + "restaurant_id": 866 + }, + { + "user_id": 157, + "restaurant_id": 1943 + }, + { + "user_id": 505, + "restaurant_id": 72 + }, + { + "user_id": 477, + "restaurant_id": 257 + }, + { + "user_id": 70, + "restaurant_id": 1960 + }, + { + "user_id": 163, + "restaurant_id": 1953 + }, + { + "user_id": 4, + "restaurant_id": 718 + }, + { + "user_id": 511, + "restaurant_id": 589 + }, + { + "user_id": 69, + "restaurant_id": 1075 + }, + { + "user_id": 192, + "restaurant_id": 2106 + }, + { + "user_id": 809, + "restaurant_id": 1519 + }, + { + "user_id": 723, + "restaurant_id": 947 + }, + { + "user_id": 186, + "restaurant_id": 1372 + }, + { + "user_id": 360, + "restaurant_id": 13 + }, + { + "user_id": 879, + "restaurant_id": 789 + }, + { + "user_id": 338, + "restaurant_id": 1196 + }, + { + "user_id": 896, + "restaurant_id": 935 + }, + { + "user_id": 178, + "restaurant_id": 1159 + }, + { + "user_id": 179, + "restaurant_id": 1132 + }, + { + "user_id": 39, + "restaurant_id": 267 + }, + { + "user_id": 786, + "restaurant_id": 700 + }, + { + "user_id": 269, + "restaurant_id": 520 + }, + { + "user_id": 620, + "restaurant_id": 137 + }, + { + "user_id": 139, + "restaurant_id": 989 + }, + { + "user_id": 741, + "restaurant_id": 242 + }, + { + "user_id": 316, + "restaurant_id": 2082 + }, + { + "user_id": 591, + "restaurant_id": 1217 + }, + { + "user_id": 658, + "restaurant_id": 2135 + }, + { + "user_id": 219, + "restaurant_id": 504 + }, + { + "user_id": 504, + "restaurant_id": 1700 + }, + { + "user_id": 394, + "restaurant_id": 1277 + }, + { + "user_id": 792, + "restaurant_id": 217 + }, + { + "user_id": 358, + "restaurant_id": 1167 + }, + { + "user_id": 566, + "restaurant_id": 1721 + }, + { + "user_id": 305, + "restaurant_id": 2130 + }, + { + "user_id": 975, + "restaurant_id": 584 + }, + { + "user_id": 552, + "restaurant_id": 696 + }, + { + "user_id": 458, + "restaurant_id": 1399 + }, + { + "user_id": 149, + "restaurant_id": 1872 + }, + { + "user_id": 693, + "restaurant_id": 1242 + }, + { + "user_id": 122, + "restaurant_id": 903 + }, + { + "user_id": 48, + "restaurant_id": 58 + }, + { + "user_id": 341, + "restaurant_id": 1522 + }, + { + "user_id": 95, + "restaurant_id": 1305 + }, + { + "user_id": 183, + "restaurant_id": 1970 + }, + { + "user_id": 924, + "restaurant_id": 1529 + }, + { + "user_id": 519, + "restaurant_id": 1284 + }, + { + "user_id": 901, + "restaurant_id": 1183 + }, + { + "user_id": 986, + "restaurant_id": 1893 + }, + { + "user_id": 246, + "restaurant_id": 552 + }, + { + "user_id": 326, + "restaurant_id": 1648 + }, + { + "user_id": 179, + "restaurant_id": 1880 + }, + { + "user_id": 912, + "restaurant_id": 2234 + }, + { + "user_id": 532, + "restaurant_id": 1195 + }, + { + "user_id": 43, + "restaurant_id": 1399 + }, + { + "user_id": 5, + "restaurant_id": 1359 + }, + { + "user_id": 464, + "restaurant_id": 543 + }, + { + "user_id": 601, + "restaurant_id": 1665 + }, + { + "user_id": 362, + "restaurant_id": 72 + }, + { + "user_id": 81, + "restaurant_id": 887 + }, + { + "user_id": 220, + "restaurant_id": 770 + }, + { + "user_id": 398, + "restaurant_id": 1634 + }, + { + "user_id": 704, + "restaurant_id": 1281 + }, + { + "user_id": 425, + "restaurant_id": 1906 + }, + { + "user_id": 683, + "restaurant_id": 282 + }, + { + "user_id": 759, + "restaurant_id": 1134 + }, + { + "user_id": 710, + "restaurant_id": 2133 + }, + { + "user_id": 170, + "restaurant_id": 878 + }, + { + "user_id": 17, + "restaurant_id": 1182 + }, + { + "user_id": 261, + "restaurant_id": 531 + }, + { + "user_id": 775, + "restaurant_id": 1146 + }, + { + "user_id": 123, + "restaurant_id": 1867 + }, + { + "user_id": 620, + "restaurant_id": 2026 + }, + { + "user_id": 536, + "restaurant_id": 1953 + }, + { + "user_id": 792, + "restaurant_id": 2107 + }, + { + "user_id": 25, + "restaurant_id": 956 + }, + { + "user_id": 361, + "restaurant_id": 1896 + }, + { + "user_id": 176, + "restaurant_id": 1626 + }, + { + "user_id": 109, + "restaurant_id": 400 + }, + { + "user_id": 361, + "restaurant_id": 1192 + }, + { + "user_id": 540, + "restaurant_id": 625 + }, + { + "user_id": 228, + "restaurant_id": 1065 + }, + { + "user_id": 611, + "restaurant_id": 979 + }, + { + "user_id": 177, + "restaurant_id": 952 + }, + { + "user_id": 367, + "restaurant_id": 1934 + }, + { + "user_id": 798, + "restaurant_id": 1262 + }, + { + "user_id": 642, + "restaurant_id": 787 + }, + { + "user_id": 691, + "restaurant_id": 335 + }, + { + "user_id": 555, + "restaurant_id": 32 + }, + { + "user_id": 84, + "restaurant_id": 950 + }, + { + "user_id": 989, + "restaurant_id": 27 + }, + { + "user_id": 617, + "restaurant_id": 2144 + }, + { + "user_id": 880, + "restaurant_id": 1466 + }, + { + "user_id": 584, + "restaurant_id": 1483 + }, + { + "user_id": 581, + "restaurant_id": 1680 + }, + { + "user_id": 214, + "restaurant_id": 462 + }, + { + "user_id": 37, + "restaurant_id": 741 + }, + { + "user_id": 983, + "restaurant_id": 1983 + }, + { + "user_id": 957, + "restaurant_id": 1299 + }, + { + "user_id": 447, + "restaurant_id": 1867 + }, + { + "user_id": 658, + "restaurant_id": 365 + }, + { + "user_id": 899, + "restaurant_id": 243 + }, + { + "user_id": 374, + "restaurant_id": 1255 + }, + { + "user_id": 997, + "restaurant_id": 1599 + }, + { + "user_id": 739, + "restaurant_id": 2236 + }, + { + "user_id": 223, + "restaurant_id": 764 + }, + { + "user_id": 804, + "restaurant_id": 1344 + }, + { + "user_id": 602, + "restaurant_id": 1779 + }, + { + "user_id": 422, + "restaurant_id": 126 + }, + { + "user_id": 437, + "restaurant_id": 1560 + }, + { + "user_id": 942, + "restaurant_id": 78 + }, + { + "user_id": 334, + "restaurant_id": 837 + }, + { + "user_id": 944, + "restaurant_id": 1286 + }, + { + "user_id": 155, + "restaurant_id": 1562 + }, + { + "user_id": 592, + "restaurant_id": 1516 + }, + { + "user_id": 88, + "restaurant_id": 709 + }, + { + "user_id": 629, + "restaurant_id": 147 + }, + { + "user_id": 205, + "restaurant_id": 1242 + }, + { + "user_id": 983, + "restaurant_id": 1539 + }, + { + "user_id": 98, + "restaurant_id": 509 + }, + { + "user_id": 716, + "restaurant_id": 2045 + }, + { + "user_id": 843, + "restaurant_id": 848 + }, + { + "user_id": 224, + "restaurant_id": 1279 + }, + { + "user_id": 322, + "restaurant_id": 1996 + }, + { + "user_id": 405, + "restaurant_id": 1137 + }, + { + "user_id": 552, + "restaurant_id": 1164 + }, + { + "user_id": 542, + "restaurant_id": 1300 + }, + { + "user_id": 913, + "restaurant_id": 716 + }, + { + "user_id": 359, + "restaurant_id": 866 + }, + { + "user_id": 15, + "restaurant_id": 1350 + }, + { + "user_id": 773, + "restaurant_id": 1518 + }, + { + "user_id": 246, + "restaurant_id": 593 + }, + { + "user_id": 825, + "restaurant_id": 1623 + }, + { + "user_id": 957, + "restaurant_id": 230 + }, + { + "user_id": 765, + "restaurant_id": 1331 + }, + { + "user_id": 843, + "restaurant_id": 1668 + }, + { + "user_id": 756, + "restaurant_id": 1534 + }, + { + "user_id": 444, + "restaurant_id": 618 + }, + { + "user_id": 430, + "restaurant_id": 2170 + }, + { + "user_id": 489, + "restaurant_id": 2161 + }, + { + "user_id": 14, + "restaurant_id": 801 + }, + { + "user_id": 561, + "restaurant_id": 1062 + }, + { + "user_id": 545, + "restaurant_id": 1517 + }, + { + "user_id": 903, + "restaurant_id": 1161 + }, + { + "user_id": 578, + "restaurant_id": 1864 + }, + { + "user_id": 447, + "restaurant_id": 1439 + }, + { + "user_id": 179, + "restaurant_id": 1930 + }, + { + "user_id": 473, + "restaurant_id": 916 + }, + { + "user_id": 929, + "restaurant_id": 713 + }, + { + "user_id": 719, + "restaurant_id": 1115 + }, + { + "user_id": 917, + "restaurant_id": 1301 + }, + { + "user_id": 609, + "restaurant_id": 2203 + }, + { + "user_id": 965, + "restaurant_id": 492 + }, + { + "user_id": 453, + "restaurant_id": 1440 + }, + { + "user_id": 963, + "restaurant_id": 1731 + }, + { + "user_id": 411, + "restaurant_id": 1583 + }, + { + "user_id": 486, + "restaurant_id": 123 + }, + { + "user_id": 911, + "restaurant_id": 899 + }, + { + "user_id": 280, + "restaurant_id": 2246 + }, + { + "user_id": 894, + "restaurant_id": 1852 + }, + { + "user_id": 470, + "restaurant_id": 1228 + }, + { + "user_id": 52, + "restaurant_id": 1041 + }, + { + "user_id": 682, + "restaurant_id": 1196 + }, + { + "user_id": 231, + "restaurant_id": 173 + }, + { + "user_id": 700, + "restaurant_id": 910 + }, + { + "user_id": 640, + "restaurant_id": 124 + }, + { + "user_id": 704, + "restaurant_id": 1753 + }, + { + "user_id": 206, + "restaurant_id": 2005 + }, + { + "user_id": 696, + "restaurant_id": 993 + }, + { + "user_id": 587, + "restaurant_id": 585 + }, + { + "user_id": 36, + "restaurant_id": 1888 + }, + { + "user_id": 996, + "restaurant_id": 154 + }, + { + "user_id": 682, + "restaurant_id": 740 + }, + { + "user_id": 178, + "restaurant_id": 1438 + }, + { + "user_id": 558, + "restaurant_id": 1536 + }, + { + "user_id": 236, + "restaurant_id": 817 + }, + { + "user_id": 24, + "restaurant_id": 1448 + }, + { + "user_id": 962, + "restaurant_id": 935 + }, + { + "user_id": 17, + "restaurant_id": 700 + }, + { + "user_id": 777, + "restaurant_id": 924 + }, + { + "user_id": 958, + "restaurant_id": 680 + }, + { + "user_id": 897, + "restaurant_id": 17 + }, + { + "user_id": 766, + "restaurant_id": 241 + }, + { + "user_id": 66, + "restaurant_id": 1653 + }, + { + "user_id": 379, + "restaurant_id": 2016 + }, + { + "user_id": 344, + "restaurant_id": 432 + }, + { + "user_id": 9, + "restaurant_id": 335 + }, + { + "user_id": 934, + "restaurant_id": 766 + }, + { + "user_id": 827, + "restaurant_id": 243 + }, + { + "user_id": 421, + "restaurant_id": 27 + }, + { + "user_id": 513, + "restaurant_id": 792 + }, + { + "user_id": 871, + "restaurant_id": 1389 + }, + { + "user_id": 600, + "restaurant_id": 1331 + }, + { + "user_id": 48, + "restaurant_id": 2128 + }, + { + "user_id": 28, + "restaurant_id": 1977 + }, + { + "user_id": 59, + "restaurant_id": 1654 + }, + { + "user_id": 814, + "restaurant_id": 1619 + }, + { + "user_id": 654, + "restaurant_id": 47 + }, + { + "user_id": 798, + "restaurant_id": 1614 + }, + { + "user_id": 189, + "restaurant_id": 810 + }, + { + "user_id": 134, + "restaurant_id": 1712 + }, + { + "user_id": 91, + "restaurant_id": 126 + }, + { + "user_id": 967, + "restaurant_id": 938 + }, + { + "user_id": 876, + "restaurant_id": 959 + }, + { + "user_id": 717, + "restaurant_id": 1191 + }, + { + "user_id": 130, + "restaurant_id": 2086 + }, + { + "user_id": 701, + "restaurant_id": 670 + }, + { + "user_id": 149, + "restaurant_id": 1924 + }, + { + "user_id": 374, + "restaurant_id": 1888 + }, + { + "user_id": 401, + "restaurant_id": 839 + }, + { + "user_id": 474, + "restaurant_id": 743 + }, + { + "user_id": 994, + "restaurant_id": 1617 + }, + { + "user_id": 533, + "restaurant_id": 1894 + }, + { + "user_id": 401, + "restaurant_id": 1655 + }, + { + "user_id": 808, + "restaurant_id": 860 + }, + { + "user_id": 445, + "restaurant_id": 881 + }, + { + "user_id": 448, + "restaurant_id": 669 + }, + { + "user_id": 857, + "restaurant_id": 218 + }, + { + "user_id": 468, + "restaurant_id": 1469 + }, + { + "user_id": 828, + "restaurant_id": 281 + }, + { + "user_id": 191, + "restaurant_id": 2011 + }, + { + "user_id": 210, + "restaurant_id": 1185 + }, + { + "user_id": 49, + "restaurant_id": 675 + }, + { + "user_id": 675, + "restaurant_id": 1493 + }, + { + "user_id": 866, + "restaurant_id": 1762 + }, + { + "user_id": 438, + "restaurant_id": 2074 + }, + { + "user_id": 154, + "restaurant_id": 743 + }, + { + "user_id": 105, + "restaurant_id": 1720 + }, + { + "user_id": 25, + "restaurant_id": 1386 + }, + { + "user_id": 28, + "restaurant_id": 1014 + }, + { + "user_id": 821, + "restaurant_id": 939 + }, + { + "user_id": 988, + "restaurant_id": 1468 + }, + { + "user_id": 538, + "restaurant_id": 1489 + }, + { + "user_id": 674, + "restaurant_id": 1357 + }, + { + "user_id": 306, + "restaurant_id": 1535 + }, + { + "user_id": 332, + "restaurant_id": 156 + }, + { + "user_id": 646, + "restaurant_id": 1936 + }, + { + "user_id": 147, + "restaurant_id": 1659 + }, + { + "user_id": 790, + "restaurant_id": 6 + }, + { + "user_id": 259, + "restaurant_id": 201 + }, + { + "user_id": 68, + "restaurant_id": 1152 + }, + { + "user_id": 142, + "restaurant_id": 1336 + }, + { + "user_id": 111, + "restaurant_id": 493 + }, + { + "user_id": 29, + "restaurant_id": 579 + }, + { + "user_id": 169, + "restaurant_id": 79 + }, + { + "user_id": 75, + "restaurant_id": 741 + }, + { + "user_id": 79, + "restaurant_id": 2235 + }, + { + "user_id": 353, + "restaurant_id": 1905 + }, + { + "user_id": 132, + "restaurant_id": 689 + }, + { + "user_id": 334, + "restaurant_id": 2198 + }, + { + "user_id": 259, + "restaurant_id": 967 + }, + { + "user_id": 38, + "restaurant_id": 395 + }, + { + "user_id": 869, + "restaurant_id": 1108 + }, + { + "user_id": 514, + "restaurant_id": 557 + }, + { + "user_id": 407, + "restaurant_id": 629 + }, + { + "user_id": 89, + "restaurant_id": 1321 + }, + { + "user_id": 522, + "restaurant_id": 663 + }, + { + "user_id": 208, + "restaurant_id": 1648 + }, + { + "user_id": 383, + "restaurant_id": 1311 + }, + { + "user_id": 158, + "restaurant_id": 1843 + }, + { + "user_id": 909, + "restaurant_id": 757 + }, + { + "user_id": 968, + "restaurant_id": 153 + }, + { + "user_id": 509, + "restaurant_id": 591 + }, + { + "user_id": 692, + "restaurant_id": 159 + }, + { + "user_id": 878, + "restaurant_id": 781 + }, + { + "user_id": 120, + "restaurant_id": 747 + }, + { + "user_id": 637, + "restaurant_id": 1724 + }, + { + "user_id": 10, + "restaurant_id": 353 + }, + { + "user_id": 840, + "restaurant_id": 351 + }, + { + "user_id": 519, + "restaurant_id": 495 + }, + { + "user_id": 375, + "restaurant_id": 306 + }, + { + "user_id": 324, + "restaurant_id": 397 + }, + { + "user_id": 473, + "restaurant_id": 1044 + }, + { + "user_id": 24, + "restaurant_id": 968 + }, + { + "user_id": 569, + "restaurant_id": 1055 + }, + { + "user_id": 115, + "restaurant_id": 580 + }, + { + "user_id": 375, + "restaurant_id": 336 + }, + { + "user_id": 217, + "restaurant_id": 361 + }, + { + "user_id": 801, + "restaurant_id": 973 + }, + { + "user_id": 986, + "restaurant_id": 1651 + }, + { + "user_id": 755, + "restaurant_id": 115 + }, + { + "user_id": 456, + "restaurant_id": 462 + }, + { + "user_id": 475, + "restaurant_id": 1902 + }, + { + "user_id": 257, + "restaurant_id": 1953 + }, + { + "user_id": 63, + "restaurant_id": 2185 + }, + { + "user_id": 486, + "restaurant_id": 1978 + }, + { + "user_id": 161, + "restaurant_id": 1197 + }, + { + "user_id": 985, + "restaurant_id": 1592 + }, + { + "user_id": 602, + "restaurant_id": 231 + }, + { + "user_id": 63, + "restaurant_id": 1178 + }, + { + "user_id": 268, + "restaurant_id": 2075 + }, + { + "user_id": 190, + "restaurant_id": 1620 + }, + { + "user_id": 65, + "restaurant_id": 684 + }, + { + "user_id": 207, + "restaurant_id": 713 + }, + { + "user_id": 113, + "restaurant_id": 1776 + }, + { + "user_id": 680, + "restaurant_id": 1531 + }, + { + "user_id": 329, + "restaurant_id": 1447 + }, + { + "user_id": 223, + "restaurant_id": 2247 + }, + { + "user_id": 609, + "restaurant_id": 1169 + }, + { + "user_id": 54, + "restaurant_id": 2085 + }, + { + "user_id": 521, + "restaurant_id": 1073 + }, + { + "user_id": 518, + "restaurant_id": 242 + }, + { + "user_id": 799, + "restaurant_id": 2129 + }, + { + "user_id": 881, + "restaurant_id": 557 + }, + { + "user_id": 278, + "restaurant_id": 783 + }, + { + "user_id": 792, + "restaurant_id": 1268 + }, + { + "user_id": 899, + "restaurant_id": 1567 + }, + { + "user_id": 378, + "restaurant_id": 1360 + }, + { + "user_id": 812, + "restaurant_id": 398 + }, + { + "user_id": 407, + "restaurant_id": 1924 + }, + { + "user_id": 369, + "restaurant_id": 2217 + }, + { + "user_id": 781, + "restaurant_id": 2246 + }, + { + "user_id": 179, + "restaurant_id": 26 + }, + { + "user_id": 909, + "restaurant_id": 2194 + }, + { + "user_id": 154, + "restaurant_id": 188 + }, + { + "user_id": 369, + "restaurant_id": 112 + }, + { + "user_id": 35, + "restaurant_id": 1066 + }, + { + "user_id": 164, + "restaurant_id": 2135 + }, + { + "user_id": 302, + "restaurant_id": 861 + }, + { + "user_id": 815, + "restaurant_id": 1511 + }, + { + "user_id": 395, + "restaurant_id": 1659 + }, + { + "user_id": 414, + "restaurant_id": 2025 + }, + { + "user_id": 595, + "restaurant_id": 423 + }, + { + "user_id": 106, + "restaurant_id": 1145 + }, + { + "user_id": 558, + "restaurant_id": 932 + }, + { + "user_id": 301, + "restaurant_id": 1687 + }, + { + "user_id": 974, + "restaurant_id": 412 + }, + { + "user_id": 610, + "restaurant_id": 1898 + }, + { + "user_id": 437, + "restaurant_id": 185 + }, + { + "user_id": 838, + "restaurant_id": 2191 + }, + { + "user_id": 933, + "restaurant_id": 1041 + }, + { + "user_id": 339, + "restaurant_id": 2226 + }, + { + "user_id": 545, + "restaurant_id": 130 + }, + { + "user_id": 394, + "restaurant_id": 1008 + }, + { + "user_id": 199, + "restaurant_id": 2256 + }, + { + "user_id": 280, + "restaurant_id": 1835 + }, + { + "user_id": 926, + "restaurant_id": 985 + }, + { + "user_id": 156, + "restaurant_id": 1870 + }, + { + "user_id": 160, + "restaurant_id": 980 + }, + { + "user_id": 954, + "restaurant_id": 1004 + }, + { + "user_id": 258, + "restaurant_id": 1658 + }, + { + "user_id": 41, + "restaurant_id": 1923 + }, + { + "user_id": 439, + "restaurant_id": 799 + }, + { + "user_id": 581, + "restaurant_id": 1571 + }, + { + "user_id": 345, + "restaurant_id": 868 + }, + { + "user_id": 395, + "restaurant_id": 1272 + }, + { + "user_id": 363, + "restaurant_id": 2186 + }, + { + "user_id": 766, + "restaurant_id": 1210 + }, + { + "user_id": 874, + "restaurant_id": 215 + }, + { + "user_id": 585, + "restaurant_id": 1678 + }, + { + "user_id": 486, + "restaurant_id": 543 + }, + { + "user_id": 484, + "restaurant_id": 441 + }, + { + "user_id": 28, + "restaurant_id": 443 + }, + { + "user_id": 34, + "restaurant_id": 526 + }, + { + "user_id": 842, + "restaurant_id": 1723 + }, + { + "user_id": 651, + "restaurant_id": 1721 + }, + { + "user_id": 852, + "restaurant_id": 1702 + }, + { + "user_id": 935, + "restaurant_id": 1085 + }, + { + "user_id": 168, + "restaurant_id": 1184 + }, + { + "user_id": 544, + "restaurant_id": 1762 + }, + { + "user_id": 571, + "restaurant_id": 952 + }, + { + "user_id": 795, + "restaurant_id": 1906 + }, + { + "user_id": 219, + "restaurant_id": 435 + }, + { + "user_id": 333, + "restaurant_id": 301 + }, + { + "user_id": 828, + "restaurant_id": 852 + }, + { + "user_id": 347, + "restaurant_id": 632 + }, + { + "user_id": 736, + "restaurant_id": 2209 + }, + { + "user_id": 683, + "restaurant_id": 1750 + }, + { + "user_id": 400, + "restaurant_id": 2079 + }, + { + "user_id": 408, + "restaurant_id": 1638 + }, + { + "user_id": 216, + "restaurant_id": 1327 + }, + { + "user_id": 120, + "restaurant_id": 758 + }, + { + "user_id": 423, + "restaurant_id": 892 + }, + { + "user_id": 217, + "restaurant_id": 711 + }, + { + "user_id": 653, + "restaurant_id": 1249 + }, + { + "user_id": 836, + "restaurant_id": 408 + }, + { + "user_id": 512, + "restaurant_id": 2214 + }, + { + "user_id": 46, + "restaurant_id": 1854 + }, + { + "user_id": 799, + "restaurant_id": 254 + }, + { + "user_id": 528, + "restaurant_id": 681 + }, + { + "user_id": 260, + "restaurant_id": 1315 + }, + { + "user_id": 573, + "restaurant_id": 1274 + }, + { + "user_id": 79, + "restaurant_id": 898 + }, + { + "user_id": 296, + "restaurant_id": 1738 + }, + { + "user_id": 579, + "restaurant_id": 382 + }, + { + "user_id": 998, + "restaurant_id": 452 + }, + { + "user_id": 754, + "restaurant_id": 313 + }, + { + "user_id": 561, + "restaurant_id": 1912 + }, + { + "user_id": 247, + "restaurant_id": 753 + }, + { + "user_id": 867, + "restaurant_id": 1573 + }, + { + "user_id": 566, + "restaurant_id": 630 + }, + { + "user_id": 104, + "restaurant_id": 1313 + }, + { + "user_id": 622, + "restaurant_id": 1068 + }, + { + "user_id": 445, + "restaurant_id": 1433 + }, + { + "user_id": 136, + "restaurant_id": 150 + }, + { + "user_id": 265, + "restaurant_id": 1053 + }, + { + "user_id": 599, + "restaurant_id": 2026 + }, + { + "user_id": 14, + "restaurant_id": 1849 + }, + { + "user_id": 857, + "restaurant_id": 346 + }, + { + "user_id": 848, + "restaurant_id": 1228 + }, + { + "user_id": 472, + "restaurant_id": 455 + }, + { + "user_id": 995, + "restaurant_id": 348 + }, + { + "user_id": 654, + "restaurant_id": 512 + }, + { + "user_id": 992, + "restaurant_id": 1287 + }, + { + "user_id": 233, + "restaurant_id": 418 + }, + { + "user_id": 78, + "restaurant_id": 238 + }, + { + "user_id": 909, + "restaurant_id": 251 + }, + { + "user_id": 586, + "restaurant_id": 1706 + }, + { + "user_id": 728, + "restaurant_id": 329 + }, + { + "user_id": 499, + "restaurant_id": 906 + }, + { + "user_id": 93, + "restaurant_id": 1222 + }, + { + "user_id": 707, + "restaurant_id": 666 + }, + { + "user_id": 727, + "restaurant_id": 1178 + }, + { + "user_id": 45, + "restaurant_id": 1705 + }, + { + "user_id": 382, + "restaurant_id": 93 + }, + { + "user_id": 423, + "restaurant_id": 426 + }, + { + "user_id": 814, + "restaurant_id": 1715 + }, + { + "user_id": 614, + "restaurant_id": 1855 + }, + { + "user_id": 870, + "restaurant_id": 378 + }, + { + "user_id": 42, + "restaurant_id": 717 + }, + { + "user_id": 632, + "restaurant_id": 989 + }, + { + "user_id": 470, + "restaurant_id": 465 + }, + { + "user_id": 674, + "restaurant_id": 76 + }, + { + "user_id": 539, + "restaurant_id": 588 + }, + { + "user_id": 128, + "restaurant_id": 2071 + }, + { + "user_id": 79, + "restaurant_id": 1732 + }, + { + "user_id": 647, + "restaurant_id": 2177 + }, + { + "user_id": 938, + "restaurant_id": 1916 + }, + { + "user_id": 517, + "restaurant_id": 1231 + }, + { + "user_id": 330, + "restaurant_id": 642 + }, + { + "user_id": 548, + "restaurant_id": 2216 + }, + { + "user_id": 345, + "restaurant_id": 1884 + }, + { + "user_id": 878, + "restaurant_id": 917 + }, + { + "user_id": 809, + "restaurant_id": 303 + }, + { + "user_id": 160, + "restaurant_id": 1797 + }, + { + "user_id": 200, + "restaurant_id": 24 + }, + { + "user_id": 969, + "restaurant_id": 625 + }, + { + "user_id": 739, + "restaurant_id": 1224 + }, + { + "user_id": 216, + "restaurant_id": 96 + }, + { + "user_id": 803, + "restaurant_id": 1432 + }, + { + "user_id": 741, + "restaurant_id": 350 + }, + { + "user_id": 218, + "restaurant_id": 49 + }, + { + "user_id": 914, + "restaurant_id": 297 + }, + { + "user_id": 950, + "restaurant_id": 749 + }, + { + "user_id": 225, + "restaurant_id": 65 + }, + { + "user_id": 154, + "restaurant_id": 365 + }, + { + "user_id": 807, + "restaurant_id": 135 + }, + { + "user_id": 747, + "restaurant_id": 1008 + }, + { + "user_id": 995, + "restaurant_id": 841 + }, + { + "user_id": 145, + "restaurant_id": 1494 + }, + { + "user_id": 366, + "restaurant_id": 1826 + }, + { + "user_id": 32, + "restaurant_id": 278 + }, + { + "user_id": 275, + "restaurant_id": 1473 + }, + { + "user_id": 575, + "restaurant_id": 1731 + }, + { + "user_id": 156, + "restaurant_id": 503 + }, + { + "user_id": 537, + "restaurant_id": 355 + }, + { + "user_id": 766, + "restaurant_id": 98 + }, + { + "user_id": 714, + "restaurant_id": 1515 + }, + { + "user_id": 494, + "restaurant_id": 1509 + }, + { + "user_id": 387, + "restaurant_id": 1075 + }, + { + "user_id": 678, + "restaurant_id": 1446 + }, + { + "user_id": 940, + "restaurant_id": 1534 + }, + { + "user_id": 353, + "restaurant_id": 193 + }, + { + "user_id": 174, + "restaurant_id": 2091 + }, + { + "user_id": 24, + "restaurant_id": 1430 + }, + { + "user_id": 934, + "restaurant_id": 1619 + }, + { + "user_id": 232, + "restaurant_id": 240 + }, + { + "user_id": 741, + "restaurant_id": 1298 + }, + { + "user_id": 113, + "restaurant_id": 1872 + }, + { + "user_id": 369, + "restaurant_id": 1263 + }, + { + "user_id": 518, + "restaurant_id": 1193 + }, + { + "user_id": 189, + "restaurant_id": 2236 + }, + { + "user_id": 207, + "restaurant_id": 721 + }, + { + "user_id": 777, + "restaurant_id": 566 + }, + { + "user_id": 175, + "restaurant_id": 2111 + }, + { + "user_id": 767, + "restaurant_id": 1289 + }, + { + "user_id": 241, + "restaurant_id": 40 + }, + { + "user_id": 585, + "restaurant_id": 1646 + }, + { + "user_id": 699, + "restaurant_id": 883 + }, + { + "user_id": 908, + "restaurant_id": 149 + }, + { + "user_id": 814, + "restaurant_id": 61 + }, + { + "user_id": 252, + "restaurant_id": 36 + }, + { + "user_id": 314, + "restaurant_id": 761 + }, + { + "user_id": 492, + "restaurant_id": 1232 + }, + { + "user_id": 752, + "restaurant_id": 1416 + }, + { + "user_id": 83, + "restaurant_id": 1292 + }, + { + "user_id": 82, + "restaurant_id": 2086 + }, + { + "user_id": 300, + "restaurant_id": 1197 + }, + { + "user_id": 662, + "restaurant_id": 2231 + }, + { + "user_id": 709, + "restaurant_id": 857 + }, + { + "user_id": 134, + "restaurant_id": 988 + }, + { + "user_id": 46, + "restaurant_id": 878 + }, + { + "user_id": 140, + "restaurant_id": 1511 + }, + { + "user_id": 699, + "restaurant_id": 443 + }, + { + "user_id": 555, + "restaurant_id": 9 + }, + { + "user_id": 197, + "restaurant_id": 1131 + }, + { + "user_id": 12, + "restaurant_id": 336 + }, + { + "user_id": 145, + "restaurant_id": 490 + }, + { + "user_id": 544, + "restaurant_id": 10 + }, + { + "user_id": 918, + "restaurant_id": 2017 + }, + { + "user_id": 341, + "restaurant_id": 1197 + }, + { + "user_id": 664, + "restaurant_id": 653 + }, + { + "user_id": 877, + "restaurant_id": 1165 + }, + { + "user_id": 341, + "restaurant_id": 1325 + }, + { + "user_id": 190, + "restaurant_id": 2136 + }, + { + "user_id": 802, + "restaurant_id": 1188 + }, + { + "user_id": 437, + "restaurant_id": 119 + }, + { + "user_id": 47, + "restaurant_id": 2038 + }, + { + "user_id": 876, + "restaurant_id": 1219 + }, + { + "user_id": 375, + "restaurant_id": 345 + }, + { + "user_id": 261, + "restaurant_id": 1869 + }, + { + "user_id": 786, + "restaurant_id": 519 + }, + { + "user_id": 875, + "restaurant_id": 2181 + }, + { + "user_id": 178, + "restaurant_id": 55 + }, + { + "user_id": 201, + "restaurant_id": 2091 + }, + { + "user_id": 784, + "restaurant_id": 1190 + }, + { + "user_id": 233, + "restaurant_id": 1974 + }, + { + "user_id": 760, + "restaurant_id": 886 + }, + { + "user_id": 782, + "restaurant_id": 1117 + }, + { + "user_id": 455, + "restaurant_id": 1001 + }, + { + "user_id": 428, + "restaurant_id": 923 + }, + { + "user_id": 888, + "restaurant_id": 221 + }, + { + "user_id": 488, + "restaurant_id": 2247 + }, + { + "user_id": 231, + "restaurant_id": 369 + }, + { + "user_id": 807, + "restaurant_id": 1507 + }, + { + "user_id": 141, + "restaurant_id": 245 + }, + { + "user_id": 362, + "restaurant_id": 360 + }, + { + "user_id": 954, + "restaurant_id": 477 + }, + { + "user_id": 61, + "restaurant_id": 1409 + }, + { + "user_id": 726, + "restaurant_id": 1323 + }, + { + "user_id": 287, + "restaurant_id": 1736 + }, + { + "user_id": 598, + "restaurant_id": 2176 + }, + { + "user_id": 147, + "restaurant_id": 688 + }, + { + "user_id": 696, + "restaurant_id": 1893 + }, + { + "user_id": 522, + "restaurant_id": 1498 + }, + { + "user_id": 729, + "restaurant_id": 650 + }, + { + "user_id": 123, + "restaurant_id": 587 + }, + { + "user_id": 517, + "restaurant_id": 285 + }, + { + "user_id": 41, + "restaurant_id": 1103 + }, + { + "user_id": 508, + "restaurant_id": 1152 + }, + { + "user_id": 93, + "restaurant_id": 785 + }, + { + "user_id": 507, + "restaurant_id": 1648 + }, + { + "user_id": 669, + "restaurant_id": 819 + }, + { + "user_id": 880, + "restaurant_id": 762 + }, + { + "user_id": 139, + "restaurant_id": 1974 + }, + { + "user_id": 89, + "restaurant_id": 1474 + }, + { + "user_id": 872, + "restaurant_id": 1407 + }, + { + "user_id": 923, + "restaurant_id": 963 + }, + { + "user_id": 780, + "restaurant_id": 582 + }, + { + "user_id": 507, + "restaurant_id": 574 + }, + { + "user_id": 334, + "restaurant_id": 261 + }, + { + "user_id": 171, + "restaurant_id": 216 + }, + { + "user_id": 388, + "restaurant_id": 270 + }, + { + "user_id": 462, + "restaurant_id": 532 + }, + { + "user_id": 819, + "restaurant_id": 1460 + }, + { + "user_id": 233, + "restaurant_id": 87 + }, + { + "user_id": 620, + "restaurant_id": 71 + }, + { + "user_id": 19, + "restaurant_id": 1359 + }, + { + "user_id": 163, + "restaurant_id": 829 + }, + { + "user_id": 197, + "restaurant_id": 1887 + }, + { + "user_id": 386, + "restaurant_id": 885 + }, + { + "user_id": 488, + "restaurant_id": 1841 + }, + { + "user_id": 300, + "restaurant_id": 1527 + }, + { + "user_id": 579, + "restaurant_id": 532 + }, + { + "user_id": 24, + "restaurant_id": 738 + }, + { + "user_id": 546, + "restaurant_id": 950 + }, + { + "user_id": 512, + "restaurant_id": 2104 + }, + { + "user_id": 384, + "restaurant_id": 87 + }, + { + "user_id": 974, + "restaurant_id": 47 + }, + { + "user_id": 670, + "restaurant_id": 1449 + }, + { + "user_id": 799, + "restaurant_id": 1236 + }, + { + "user_id": 885, + "restaurant_id": 1320 + }, + { + "user_id": 925, + "restaurant_id": 1993 + }, + { + "user_id": 343, + "restaurant_id": 1757 + }, + { + "user_id": 208, + "restaurant_id": 1939 + }, + { + "user_id": 471, + "restaurant_id": 638 + }, + { + "user_id": 835, + "restaurant_id": 2071 + }, + { + "user_id": 243, + "restaurant_id": 501 + }, + { + "user_id": 820, + "restaurant_id": 1962 + }, + { + "user_id": 590, + "restaurant_id": 1739 + }, + { + "user_id": 443, + "restaurant_id": 172 + }, + { + "user_id": 442, + "restaurant_id": 991 + }, + { + "user_id": 362, + "restaurant_id": 1354 + }, + { + "user_id": 90, + "restaurant_id": 2189 + }, + { + "user_id": 226, + "restaurant_id": 499 + }, + { + "user_id": 54, + "restaurant_id": 2091 + }, + { + "user_id": 807, + "restaurant_id": 1270 + }, + { + "user_id": 165, + "restaurant_id": 1467 + }, + { + "user_id": 511, + "restaurant_id": 1675 + }, + { + "user_id": 935, + "restaurant_id": 447 + }, + { + "user_id": 746, + "restaurant_id": 827 + }, + { + "user_id": 982, + "restaurant_id": 1948 + }, + { + "user_id": 137, + "restaurant_id": 2207 + }, + { + "user_id": 112, + "restaurant_id": 1387 + }, + { + "user_id": 466, + "restaurant_id": 717 + }, + { + "user_id": 50, + "restaurant_id": 274 + }, + { + "user_id": 593, + "restaurant_id": 2038 + }, + { + "user_id": 397, + "restaurant_id": 1777 + }, + { + "user_id": 148, + "restaurant_id": 1694 + }, + { + "user_id": 3, + "restaurant_id": 349 + }, + { + "user_id": 768, + "restaurant_id": 1884 + }, + { + "user_id": 693, + "restaurant_id": 2142 + }, + { + "user_id": 781, + "restaurant_id": 2090 + }, + { + "user_id": 264, + "restaurant_id": 1444 + }, + { + "user_id": 135, + "restaurant_id": 1235 + }, + { + "user_id": 444, + "restaurant_id": 1536 + }, + { + "user_id": 697, + "restaurant_id": 397 + }, + { + "user_id": 463, + "restaurant_id": 239 + }, + { + "user_id": 80, + "restaurant_id": 699 + }, + { + "user_id": 251, + "restaurant_id": 2055 + }, + { + "user_id": 705, + "restaurant_id": 269 + }, + { + "user_id": 352, + "restaurant_id": 135 + }, + { + "user_id": 827, + "restaurant_id": 1502 + }, + { + "user_id": 100, + "restaurant_id": 111 + }, + { + "user_id": 877, + "restaurant_id": 24 + }, + { + "user_id": 563, + "restaurant_id": 686 + }, + { + "user_id": 617, + "restaurant_id": 480 + }, + { + "user_id": 127, + "restaurant_id": 1883 + }, + { + "user_id": 923, + "restaurant_id": 971 + }, + { + "user_id": 938, + "restaurant_id": 761 + }, + { + "user_id": 582, + "restaurant_id": 2231 + }, + { + "user_id": 931, + "restaurant_id": 736 + }, + { + "user_id": 43, + "restaurant_id": 1188 + }, + { + "user_id": 248, + "restaurant_id": 445 + }, + { + "user_id": 928, + "restaurant_id": 2146 + }, + { + "user_id": 370, + "restaurant_id": 464 + }, + { + "user_id": 466, + "restaurant_id": 1017 + }, + { + "user_id": 914, + "restaurant_id": 102 + }, + { + "user_id": 657, + "restaurant_id": 1528 + }, + { + "user_id": 562, + "restaurant_id": 947 + }, + { + "user_id": 779, + "restaurant_id": 909 + }, + { + "user_id": 512, + "restaurant_id": 1046 + }, + { + "user_id": 579, + "restaurant_id": 1232 + }, + { + "user_id": 272, + "restaurant_id": 505 + }, + { + "user_id": 247, + "restaurant_id": 2018 + }, + { + "user_id": 747, + "restaurant_id": 1184 + }, + { + "user_id": 34, + "restaurant_id": 1471 + }, + { + "user_id": 905, + "restaurant_id": 1419 + }, + { + "user_id": 407, + "restaurant_id": 1835 + }, + { + "user_id": 582, + "restaurant_id": 2032 + }, + { + "user_id": 23, + "restaurant_id": 682 + }, + { + "user_id": 169, + "restaurant_id": 439 + }, + { + "user_id": 71, + "restaurant_id": 470 + }, + { + "user_id": 745, + "restaurant_id": 709 + }, + { + "user_id": 257, + "restaurant_id": 1859 + }, + { + "user_id": 346, + "restaurant_id": 551 + }, + { + "user_id": 618, + "restaurant_id": 2108 + }, + { + "user_id": 312, + "restaurant_id": 2079 + }, + { + "user_id": 515, + "restaurant_id": 722 + }, + { + "user_id": 434, + "restaurant_id": 535 + }, + { + "user_id": 432, + "restaurant_id": 2080 + }, + { + "user_id": 602, + "restaurant_id": 1189 + }, + { + "user_id": 160, + "restaurant_id": 1473 + }, + { + "user_id": 852, + "restaurant_id": 1786 + }, + { + "user_id": 675, + "restaurant_id": 1786 + }, + { + "user_id": 826, + "restaurant_id": 1253 + }, + { + "user_id": 133, + "restaurant_id": 874 + }, + { + "user_id": 589, + "restaurant_id": 842 + }, + { + "user_id": 755, + "restaurant_id": 1092 + }, + { + "user_id": 868, + "restaurant_id": 2173 + }, + { + "user_id": 979, + "restaurant_id": 1698 + }, + { + "user_id": 644, + "restaurant_id": 1443 + }, + { + "user_id": 817, + "restaurant_id": 906 + }, + { + "user_id": 949, + "restaurant_id": 555 + }, + { + "user_id": 312, + "restaurant_id": 1371 + }, + { + "user_id": 79, + "restaurant_id": 1522 + }, + { + "user_id": 439, + "restaurant_id": 1569 + }, + { + "user_id": 512, + "restaurant_id": 972 + }, + { + "user_id": 997, + "restaurant_id": 917 + }, + { + "user_id": 336, + "restaurant_id": 465 + }, + { + "user_id": 306, + "restaurant_id": 303 + }, + { + "user_id": 694, + "restaurant_id": 974 + }, + { + "user_id": 374, + "restaurant_id": 2104 + }, + { + "user_id": 865, + "restaurant_id": 1367 + }, + { + "user_id": 402, + "restaurant_id": 561 + }, + { + "user_id": 951, + "restaurant_id": 1912 + }, + { + "user_id": 62, + "restaurant_id": 212 + }, + { + "user_id": 959, + "restaurant_id": 1963 + }, + { + "user_id": 172, + "restaurant_id": 765 + }, + { + "user_id": 613, + "restaurant_id": 94 + }, + { + "user_id": 245, + "restaurant_id": 886 + }, + { + "user_id": 951, + "restaurant_id": 1430 + }, + { + "user_id": 934, + "restaurant_id": 1340 + }, + { + "user_id": 995, + "restaurant_id": 1687 + }, + { + "user_id": 772, + "restaurant_id": 1323 + }, + { + "user_id": 283, + "restaurant_id": 1636 + }, + { + "user_id": 765, + "restaurant_id": 761 + }, + { + "user_id": 438, + "restaurant_id": 752 + }, + { + "user_id": 577, + "restaurant_id": 173 + }, + { + "user_id": 198, + "restaurant_id": 1026 + }, + { + "user_id": 276, + "restaurant_id": 785 + }, + { + "user_id": 913, + "restaurant_id": 773 + }, + { + "user_id": 285, + "restaurant_id": 243 + }, + { + "user_id": 819, + "restaurant_id": 134 + }, + { + "user_id": 207, + "restaurant_id": 1591 + }, + { + "user_id": 201, + "restaurant_id": 1123 + }, + { + "user_id": 369, + "restaurant_id": 957 + }, + { + "user_id": 458, + "restaurant_id": 1196 + }, + { + "user_id": 869, + "restaurant_id": 1234 + }, + { + "user_id": 519, + "restaurant_id": 78 + }, + { + "user_id": 432, + "restaurant_id": 1254 + }, + { + "user_id": 928, + "restaurant_id": 500 + }, + { + "user_id": 409, + "restaurant_id": 1753 + }, + { + "user_id": 17, + "restaurant_id": 1090 + }, + { + "user_id": 396, + "restaurant_id": 768 + }, + { + "user_id": 161, + "restaurant_id": 1954 + }, + { + "user_id": 541, + "restaurant_id": 1705 + }, + { + "user_id": 578, + "restaurant_id": 1769 + }, + { + "user_id": 771, + "restaurant_id": 1672 + }, + { + "user_id": 187, + "restaurant_id": 1465 + }, + { + "user_id": 610, + "restaurant_id": 550 + }, + { + "user_id": 490, + "restaurant_id": 1371 + }, + { + "user_id": 496, + "restaurant_id": 2137 + }, + { + "user_id": 128, + "restaurant_id": 739 + }, + { + "user_id": 186, + "restaurant_id": 338 + }, + { + "user_id": 894, + "restaurant_id": 275 + }, + { + "user_id": 928, + "restaurant_id": 386 + }, + { + "user_id": 151, + "restaurant_id": 1478 + }, + { + "user_id": 308, + "restaurant_id": 954 + }, + { + "user_id": 560, + "restaurant_id": 2173 + }, + { + "user_id": 2, + "restaurant_id": 633 + }, + { + "user_id": 980, + "restaurant_id": 993 + }, + { + "user_id": 989, + "restaurant_id": 1373 + }, + { + "user_id": 766, + "restaurant_id": 737 + }, + { + "user_id": 924, + "restaurant_id": 1058 + }, + { + "user_id": 744, + "restaurant_id": 1951 + }, + { + "user_id": 487, + "restaurant_id": 335 + }, + { + "user_id": 868, + "restaurant_id": 1496 + }, + { + "user_id": 290, + "restaurant_id": 549 + }, + { + "user_id": 159, + "restaurant_id": 135 + }, + { + "user_id": 105, + "restaurant_id": 560 + }, + { + "user_id": 541, + "restaurant_id": 640 + }, + { + "user_id": 150, + "restaurant_id": 260 + }, + { + "user_id": 799, + "restaurant_id": 1564 + }, + { + "user_id": 287, + "restaurant_id": 1619 + }, + { + "user_id": 628, + "restaurant_id": 205 + }, + { + "user_id": 112, + "restaurant_id": 1753 + }, + { + "user_id": 168, + "restaurant_id": 1342 + }, + { + "user_id": 429, + "restaurant_id": 1895 + }, + { + "user_id": 748, + "restaurant_id": 1415 + }, + { + "user_id": 987, + "restaurant_id": 737 + }, + { + "user_id": 86, + "restaurant_id": 794 + }, + { + "user_id": 325, + "restaurant_id": 2201 + }, + { + "user_id": 770, + "restaurant_id": 785 + }, + { + "user_id": 340, + "restaurant_id": 1501 + }, + { + "user_id": 752, + "restaurant_id": 2062 + }, + { + "user_id": 749, + "restaurant_id": 1615 + }, + { + "user_id": 161, + "restaurant_id": 2066 + }, + { + "user_id": 196, + "restaurant_id": 1790 + }, + { + "user_id": 169, + "restaurant_id": 1816 + }, + { + "user_id": 277, + "restaurant_id": 31 + }, + { + "user_id": 638, + "restaurant_id": 1716 + }, + { + "user_id": 345, + "restaurant_id": 2022 + }, + { + "user_id": 807, + "restaurant_id": 1802 + }, + { + "user_id": 191, + "restaurant_id": 130 + }, + { + "user_id": 383, + "restaurant_id": 1520 + }, + { + "user_id": 428, + "restaurant_id": 2144 + }, + { + "user_id": 100, + "restaurant_id": 1561 + }, + { + "user_id": 406, + "restaurant_id": 720 + }, + { + "user_id": 977, + "restaurant_id": 267 + }, + { + "user_id": 738, + "restaurant_id": 724 + }, + { + "user_id": 218, + "restaurant_id": 1931 + }, + { + "user_id": 104, + "restaurant_id": 1769 + }, + { + "user_id": 763, + "restaurant_id": 1351 + }, + { + "user_id": 673, + "restaurant_id": 1822 + }, + { + "user_id": 833, + "restaurant_id": 738 + }, + { + "user_id": 989, + "restaurant_id": 1507 + }, + { + "user_id": 652, + "restaurant_id": 1362 + }, + { + "user_id": 282, + "restaurant_id": 711 + }, + { + "user_id": 10, + "restaurant_id": 1385 + }, + { + "user_id": 669, + "restaurant_id": 258 + }, + { + "user_id": 878, + "restaurant_id": 2143 + }, + { + "user_id": 390, + "restaurant_id": 309 + }, + { + "user_id": 298, + "restaurant_id": 1429 + }, + { + "user_id": 754, + "restaurant_id": 544 + }, + { + "user_id": 738, + "restaurant_id": 576 + }, + { + "user_id": 229, + "restaurant_id": 943 + }, + { + "user_id": 93, + "restaurant_id": 529 + }, + { + "user_id": 896, + "restaurant_id": 1045 + }, + { + "user_id": 452, + "restaurant_id": 37 + }, + { + "user_id": 974, + "restaurant_id": 1624 + }, + { + "user_id": 593, + "restaurant_id": 117 + }, + { + "user_id": 593, + "restaurant_id": 1368 + }, + { + "user_id": 272, + "restaurant_id": 34 + }, + { + "user_id": 758, + "restaurant_id": 1549 + }, + { + "user_id": 520, + "restaurant_id": 2127 + }, + { + "user_id": 291, + "restaurant_id": 204 + }, + { + "user_id": 936, + "restaurant_id": 2072 + }, + { + "user_id": 697, + "restaurant_id": 1901 + }, + { + "user_id": 675, + "restaurant_id": 1347 + }, + { + "user_id": 693, + "restaurant_id": 230 + }, + { + "user_id": 815, + "restaurant_id": 732 + }, + { + "user_id": 848, + "restaurant_id": 1636 + }, + { + "user_id": 140, + "restaurant_id": 2023 + }, + { + "user_id": 100, + "restaurant_id": 679 + }, + { + "user_id": 196, + "restaurant_id": 1999 + }, + { + "user_id": 51, + "restaurant_id": 529 + }, + { + "user_id": 39, + "restaurant_id": 379 + }, + { + "user_id": 200, + "restaurant_id": 614 + }, + { + "user_id": 868, + "restaurant_id": 1370 + }, + { + "user_id": 461, + "restaurant_id": 1766 + }, + { + "user_id": 151, + "restaurant_id": 1331 + }, + { + "user_id": 600, + "restaurant_id": 1187 + }, + { + "user_id": 504, + "restaurant_id": 440 + }, + { + "user_id": 546, + "restaurant_id": 1196 + }, + { + "user_id": 60, + "restaurant_id": 352 + }, + { + "user_id": 702, + "restaurant_id": 690 + }, + { + "user_id": 28, + "restaurant_id": 660 + }, + { + "user_id": 767, + "restaurant_id": 2034 + }, + { + "user_id": 920, + "restaurant_id": 982 + }, + { + "user_id": 768, + "restaurant_id": 1624 + }, + { + "user_id": 856, + "restaurant_id": 544 + }, + { + "user_id": 891, + "restaurant_id": 288 + }, + { + "user_id": 856, + "restaurant_id": 2042 + }, + { + "user_id": 950, + "restaurant_id": 857 + }, + { + "user_id": 549, + "restaurant_id": 1777 + }, + { + "user_id": 37, + "restaurant_id": 1090 + }, + { + "user_id": 903, + "restaurant_id": 1080 + }, + { + "user_id": 184, + "restaurant_id": 1902 + }, + { + "user_id": 411, + "restaurant_id": 315 + }, + { + "user_id": 280, + "restaurant_id": 1339 + }, + { + "user_id": 454, + "restaurant_id": 2128 + }, + { + "user_id": 605, + "restaurant_id": 1201 + }, + { + "user_id": 63, + "restaurant_id": 1528 + }, + { + "user_id": 85, + "restaurant_id": 1307 + }, + { + "user_id": 217, + "restaurant_id": 2138 + }, + { + "user_id": 665, + "restaurant_id": 334 + }, + { + "user_id": 171, + "restaurant_id": 455 + }, + { + "user_id": 307, + "restaurant_id": 2181 + }, + { + "user_id": 127, + "restaurant_id": 711 + }, + { + "user_id": 655, + "restaurant_id": 350 + }, + { + "user_id": 748, + "restaurant_id": 1373 + }, + { + "user_id": 956, + "restaurant_id": 1941 + }, + { + "user_id": 357, + "restaurant_id": 484 + }, + { + "user_id": 824, + "restaurant_id": 1933 + }, + { + "user_id": 956, + "restaurant_id": 1727 + }, + { + "user_id": 311, + "restaurant_id": 1682 + }, + { + "user_id": 755, + "restaurant_id": 1252 + }, + { + "user_id": 902, + "restaurant_id": 623 + }, + { + "user_id": 628, + "restaurant_id": 1610 + }, + { + "user_id": 194, + "restaurant_id": 424 + }, + { + "user_id": 203, + "restaurant_id": 564 + }, + { + "user_id": 697, + "restaurant_id": 134 + }, + { + "user_id": 198, + "restaurant_id": 1905 + }, + { + "user_id": 94, + "restaurant_id": 1196 + }, + { + "user_id": 374, + "restaurant_id": 172 + }, + { + "user_id": 485, + "restaurant_id": 1910 + }, + { + "user_id": 343, + "restaurant_id": 70 + }, + { + "user_id": 717, + "restaurant_id": 1045 + }, + { + "user_id": 226, + "restaurant_id": 1993 + }, + { + "user_id": 826, + "restaurant_id": 1138 + }, + { + "user_id": 707, + "restaurant_id": 1105 + }, + { + "user_id": 345, + "restaurant_id": 368 + }, + { + "user_id": 172, + "restaurant_id": 1177 + }, + { + "user_id": 174, + "restaurant_id": 975 + }, + { + "user_id": 143, + "restaurant_id": 989 + }, + { + "user_id": 411, + "restaurant_id": 1867 + }, + { + "user_id": 229, + "restaurant_id": 46 + }, + { + "user_id": 566, + "restaurant_id": 2123 + }, + { + "user_id": 109, + "restaurant_id": 706 + }, + { + "user_id": 567, + "restaurant_id": 669 + }, + { + "user_id": 729, + "restaurant_id": 877 + }, + { + "user_id": 445, + "restaurant_id": 1551 + }, + { + "user_id": 466, + "restaurant_id": 808 + }, + { + "user_id": 20, + "restaurant_id": 2063 + }, + { + "user_id": 681, + "restaurant_id": 998 + }, + { + "user_id": 84, + "restaurant_id": 2213 + }, + { + "user_id": 266, + "restaurant_id": 94 + }, + { + "user_id": 204, + "restaurant_id": 181 + }, + { + "user_id": 735, + "restaurant_id": 1489 + }, + { + "user_id": 663, + "restaurant_id": 635 + }, + { + "user_id": 720, + "restaurant_id": 1034 + }, + { + "user_id": 553, + "restaurant_id": 723 + }, + { + "user_id": 395, + "restaurant_id": 1724 + }, + { + "user_id": 742, + "restaurant_id": 1059 + }, + { + "user_id": 157, + "restaurant_id": 597 + }, + { + "user_id": 534, + "restaurant_id": 343 + }, + { + "user_id": 109, + "restaurant_id": 704 + }, + { + "user_id": 958, + "restaurant_id": 1165 + }, + { + "user_id": 987, + "restaurant_id": 933 + }, + { + "user_id": 587, + "restaurant_id": 1445 + }, + { + "user_id": 649, + "restaurant_id": 886 + }, + { + "user_id": 782, + "restaurant_id": 587 + }, + { + "user_id": 707, + "restaurant_id": 1343 + }, + { + "user_id": 340, + "restaurant_id": 1475 + }, + { + "user_id": 844, + "restaurant_id": 876 + }, + { + "user_id": 1, + "restaurant_id": 985 + }, + { + "user_id": 612, + "restaurant_id": 2054 + }, + { + "user_id": 153, + "restaurant_id": 1514 + }, + { + "user_id": 631, + "restaurant_id": 642 + }, + { + "user_id": 154, + "restaurant_id": 1738 + }, + { + "user_id": 910, + "restaurant_id": 1642 + }, + { + "user_id": 562, + "restaurant_id": 542 + }, + { + "user_id": 783, + "restaurant_id": 1014 + }, + { + "user_id": 199, + "restaurant_id": 102 + }, + { + "user_id": 373, + "restaurant_id": 1479 + }, + { + "user_id": 97, + "restaurant_id": 1210 + }, + { + "user_id": 990, + "restaurant_id": 811 + }, + { + "user_id": 211, + "restaurant_id": 2137 + }, + { + "user_id": 27, + "restaurant_id": 2079 + }, + { + "user_id": 851, + "restaurant_id": 430 + }, + { + "user_id": 615, + "restaurant_id": 95 + }, + { + "user_id": 691, + "restaurant_id": 263 + }, + { + "user_id": 294, + "restaurant_id": 1904 + }, + { + "user_id": 214, + "restaurant_id": 1176 + }, + { + "user_id": 27, + "restaurant_id": 1994 + }, + { + "user_id": 419, + "restaurant_id": 330 + }, + { + "user_id": 600, + "restaurant_id": 1953 + }, + { + "user_id": 415, + "restaurant_id": 2026 + }, + { + "user_id": 466, + "restaurant_id": 552 + }, + { + "user_id": 880, + "restaurant_id": 1832 + }, + { + "user_id": 818, + "restaurant_id": 618 + }, + { + "user_id": 224, + "restaurant_id": 970 + }, + { + "user_id": 144, + "restaurant_id": 1936 + }, + { + "user_id": 462, + "restaurant_id": 1019 + }, + { + "user_id": 444, + "restaurant_id": 384 + }, + { + "user_id": 281, + "restaurant_id": 649 + }, + { + "user_id": 270, + "restaurant_id": 273 + }, + { + "user_id": 231, + "restaurant_id": 1102 + }, + { + "user_id": 194, + "restaurant_id": 349 + }, + { + "user_id": 162, + "restaurant_id": 1997 + }, + { + "user_id": 147, + "restaurant_id": 601 + }, + { + "user_id": 790, + "restaurant_id": 1075 + }, + { + "user_id": 408, + "restaurant_id": 1523 + }, + { + "user_id": 330, + "restaurant_id": 1497 + }, + { + "user_id": 33, + "restaurant_id": 2055 + }, + { + "user_id": 291, + "restaurant_id": 1401 + }, + { + "user_id": 23, + "restaurant_id": 1451 + }, + { + "user_id": 458, + "restaurant_id": 818 + }, + { + "user_id": 111, + "restaurant_id": 240 + }, + { + "user_id": 353, + "restaurant_id": 982 + }, + { + "user_id": 208, + "restaurant_id": 1019 + }, + { + "user_id": 233, + "restaurant_id": 220 + }, + { + "user_id": 426, + "restaurant_id": 312 + }, + { + "user_id": 867, + "restaurant_id": 507 + }, + { + "user_id": 367, + "restaurant_id": 1634 + }, + { + "user_id": 857, + "restaurant_id": 7 + }, + { + "user_id": 851, + "restaurant_id": 85 + }, + { + "user_id": 693, + "restaurant_id": 1479 + }, + { + "user_id": 190, + "restaurant_id": 480 + }, + { + "user_id": 509, + "restaurant_id": 2139 + }, + { + "user_id": 984, + "restaurant_id": 1040 + }, + { + "user_id": 288, + "restaurant_id": 1590 + }, + { + "user_id": 462, + "restaurant_id": 718 + }, + { + "user_id": 470, + "restaurant_id": 324 + }, + { + "user_id": 354, + "restaurant_id": 783 + }, + { + "user_id": 946, + "restaurant_id": 2125 + }, + { + "user_id": 624, + "restaurant_id": 1445 + }, + { + "user_id": 483, + "restaurant_id": 1996 + }, + { + "user_id": 872, + "restaurant_id": 1094 + }, + { + "user_id": 538, + "restaurant_id": 1872 + }, + { + "user_id": 568, + "restaurant_id": 366 + }, + { + "user_id": 642, + "restaurant_id": 1310 + }, + { + "user_id": 227, + "restaurant_id": 1936 + }, + { + "user_id": 956, + "restaurant_id": 805 + }, + { + "user_id": 147, + "restaurant_id": 320 + }, + { + "user_id": 117, + "restaurant_id": 2195 + }, + { + "user_id": 371, + "restaurant_id": 1716 + }, + { + "user_id": 792, + "restaurant_id": 1645 + }, + { + "user_id": 655, + "restaurant_id": 1535 + }, + { + "user_id": 1, + "restaurant_id": 1598 + }, + { + "user_id": 46, + "restaurant_id": 1381 + }, + { + "user_id": 932, + "restaurant_id": 1347 + }, + { + "user_id": 749, + "restaurant_id": 1785 + }, + { + "user_id": 597, + "restaurant_id": 759 + }, + { + "user_id": 591, + "restaurant_id": 1821 + }, + { + "user_id": 482, + "restaurant_id": 680 + }, + { + "user_id": 775, + "restaurant_id": 868 + }, + { + "user_id": 7, + "restaurant_id": 1053 + }, + { + "user_id": 401, + "restaurant_id": 864 + }, + { + "user_id": 45, + "restaurant_id": 107 + }, + { + "user_id": 758, + "restaurant_id": 19 + }, + { + "user_id": 422, + "restaurant_id": 902 + }, + { + "user_id": 228, + "restaurant_id": 141 + }, + { + "user_id": 53, + "restaurant_id": 875 + }, + { + "user_id": 200, + "restaurant_id": 1192 + }, + { + "user_id": 59, + "restaurant_id": 1994 + }, + { + "user_id": 102, + "restaurant_id": 1443 + }, + { + "user_id": 437, + "restaurant_id": 91 + }, + { + "user_id": 718, + "restaurant_id": 1260 + }, + { + "user_id": 602, + "restaurant_id": 2084 + }, + { + "user_id": 500, + "restaurant_id": 2155 + }, + { + "user_id": 590, + "restaurant_id": 1108 + }, + { + "user_id": 44, + "restaurant_id": 1815 + }, + { + "user_id": 90, + "restaurant_id": 54 + }, + { + "user_id": 742, + "restaurant_id": 1615 + }, + { + "user_id": 987, + "restaurant_id": 693 + }, + { + "user_id": 119, + "restaurant_id": 2122 + }, + { + "user_id": 435, + "restaurant_id": 2158 + }, + { + "user_id": 43, + "restaurant_id": 1988 + }, + { + "user_id": 230, + "restaurant_id": 1711 + }, + { + "user_id": 63, + "restaurant_id": 1617 + }, + { + "user_id": 504, + "restaurant_id": 2105 + }, + { + "user_id": 271, + "restaurant_id": 1597 + }, + { + "user_id": 27, + "restaurant_id": 2048 + }, + { + "user_id": 26, + "restaurant_id": 1615 + }, + { + "user_id": 192, + "restaurant_id": 130 + }, + { + "user_id": 28, + "restaurant_id": 1651 + }, + { + "user_id": 890, + "restaurant_id": 381 + }, + { + "user_id": 445, + "restaurant_id": 1976 + }, + { + "user_id": 786, + "restaurant_id": 588 + }, + { + "user_id": 374, + "restaurant_id": 1786 + }, + { + "user_id": 610, + "restaurant_id": 943 + }, + { + "user_id": 324, + "restaurant_id": 1683 + }, + { + "user_id": 585, + "restaurant_id": 2003 + }, + { + "user_id": 474, + "restaurant_id": 1737 + }, + { + "user_id": 960, + "restaurant_id": 1066 + }, + { + "user_id": 366, + "restaurant_id": 1175 + }, + { + "user_id": 835, + "restaurant_id": 410 + }, + { + "user_id": 138, + "restaurant_id": 1579 + }, + { + "user_id": 8, + "restaurant_id": 1667 + }, + { + "user_id": 438, + "restaurant_id": 1466 + }, + { + "user_id": 315, + "restaurant_id": 1231 + }, + { + "user_id": 721, + "restaurant_id": 1981 + }, + { + "user_id": 919, + "restaurant_id": 1425 + }, + { + "user_id": 914, + "restaurant_id": 1983 + }, + { + "user_id": 370, + "restaurant_id": 325 + }, + { + "user_id": 471, + "restaurant_id": 1882 + }, + { + "user_id": 243, + "restaurant_id": 1181 + }, + { + "user_id": 136, + "restaurant_id": 1010 + }, + { + "user_id": 224, + "restaurant_id": 201 + }, + { + "user_id": 211, + "restaurant_id": 629 + }, + { + "user_id": 303, + "restaurant_id": 1914 + }, + { + "user_id": 337, + "restaurant_id": 451 + }, + { + "user_id": 482, + "restaurant_id": 756 + }, + { + "user_id": 11, + "restaurant_id": 330 + }, + { + "user_id": 715, + "restaurant_id": 2078 + }, + { + "user_id": 940, + "restaurant_id": 4 + }, + { + "user_id": 750, + "restaurant_id": 1680 + }, + { + "user_id": 305, + "restaurant_id": 350 + }, + { + "user_id": 640, + "restaurant_id": 1853 + }, + { + "user_id": 56, + "restaurant_id": 1773 + }, + { + "user_id": 192, + "restaurant_id": 1146 + }, + { + "user_id": 808, + "restaurant_id": 342 + }, + { + "user_id": 309, + "restaurant_id": 1761 + }, + { + "user_id": 954, + "restaurant_id": 1565 + }, + { + "user_id": 89, + "restaurant_id": 372 + }, + { + "user_id": 910, + "restaurant_id": 177 + }, + { + "user_id": 829, + "restaurant_id": 1381 + }, + { + "user_id": 288, + "restaurant_id": 1758 + }, + { + "user_id": 444, + "restaurant_id": 1127 + }, + { + "user_id": 308, + "restaurant_id": 1332 + }, + { + "user_id": 373, + "restaurant_id": 1545 + }, + { + "user_id": 639, + "restaurant_id": 1352 + }, + { + "user_id": 534, + "restaurant_id": 1932 + }, + { + "user_id": 752, + "restaurant_id": 1813 + }, + { + "user_id": 948, + "restaurant_id": 1484 + }, + { + "user_id": 548, + "restaurant_id": 891 + }, + { + "user_id": 88, + "restaurant_id": 500 + }, + { + "user_id": 642, + "restaurant_id": 1529 + }, + { + "user_id": 382, + "restaurant_id": 1949 + }, + { + "user_id": 684, + "restaurant_id": 1324 + }, + { + "user_id": 135, + "restaurant_id": 89 + }, + { + "user_id": 707, + "restaurant_id": 2206 + }, + { + "user_id": 607, + "restaurant_id": 662 + }, + { + "user_id": 713, + "restaurant_id": 544 + }, + { + "user_id": 838, + "restaurant_id": 1393 + }, + { + "user_id": 889, + "restaurant_id": 1192 + }, + { + "user_id": 821, + "restaurant_id": 1133 + }, + { + "user_id": 587, + "restaurant_id": 1174 + }, + { + "user_id": 610, + "restaurant_id": 345 + }, + { + "user_id": 626, + "restaurant_id": 900 + }, + { + "user_id": 800, + "restaurant_id": 152 + }, + { + "user_id": 783, + "restaurant_id": 1053 + }, + { + "user_id": 986, + "restaurant_id": 1285 + }, + { + "user_id": 432, + "restaurant_id": 2113 + }, + { + "user_id": 450, + "restaurant_id": 101 + }, + { + "user_id": 145, + "restaurant_id": 250 + }, + { + "user_id": 809, + "restaurant_id": 1649 + }, + { + "user_id": 916, + "restaurant_id": 219 + }, + { + "user_id": 78, + "restaurant_id": 1014 + }, + { + "user_id": 349, + "restaurant_id": 1489 + }, + { + "user_id": 278, + "restaurant_id": 1252 + }, + { + "user_id": 200, + "restaurant_id": 439 + }, + { + "user_id": 67, + "restaurant_id": 931 + }, + { + "user_id": 198, + "restaurant_id": 1539 + }, + { + "user_id": 483, + "restaurant_id": 1227 + }, + { + "user_id": 611, + "restaurant_id": 240 + }, + { + "user_id": 166, + "restaurant_id": 402 + }, + { + "user_id": 346, + "restaurant_id": 1839 + }, + { + "user_id": 7, + "restaurant_id": 1999 + }, + { + "user_id": 513, + "restaurant_id": 40 + }, + { + "user_id": 671, + "restaurant_id": 2150 + }, + { + "user_id": 860, + "restaurant_id": 480 + }, + { + "user_id": 862, + "restaurant_id": 1949 + }, + { + "user_id": 622, + "restaurant_id": 468 + }, + { + "user_id": 710, + "restaurant_id": 272 + }, + { + "user_id": 203, + "restaurant_id": 397 + }, + { + "user_id": 226, + "restaurant_id": 940 + }, + { + "user_id": 194, + "restaurant_id": 1635 + }, + { + "user_id": 701, + "restaurant_id": 1761 + }, + { + "user_id": 541, + "restaurant_id": 1289 + }, + { + "user_id": 198, + "restaurant_id": 71 + }, + { + "user_id": 814, + "restaurant_id": 1193 + }, + { + "user_id": 558, + "restaurant_id": 1437 + }, + { + "user_id": 384, + "restaurant_id": 391 + }, + { + "user_id": 372, + "restaurant_id": 1940 + }, + { + "user_id": 665, + "restaurant_id": 891 + }, + { + "user_id": 129, + "restaurant_id": 901 + }, + { + "user_id": 2, + "restaurant_id": 1296 + }, + { + "user_id": 732, + "restaurant_id": 2211 + }, + { + "user_id": 483, + "restaurant_id": 809 + }, + { + "user_id": 796, + "restaurant_id": 1400 + }, + { + "user_id": 606, + "restaurant_id": 2180 + }, + { + "user_id": 699, + "restaurant_id": 2174 + }, + { + "user_id": 558, + "restaurant_id": 751 + }, + { + "user_id": 670, + "restaurant_id": 2145 + }, + { + "user_id": 328, + "restaurant_id": 516 + }, + { + "user_id": 203, + "restaurant_id": 334 + }, + { + "user_id": 201, + "restaurant_id": 593 + }, + { + "user_id": 916, + "restaurant_id": 1370 + }, + { + "user_id": 692, + "restaurant_id": 1541 + }, + { + "user_id": 860, + "restaurant_id": 417 + }, + { + "user_id": 523, + "restaurant_id": 1106 + }, + { + "user_id": 72, + "restaurant_id": 851 + }, + { + "user_id": 641, + "restaurant_id": 1022 + }, + { + "user_id": 650, + "restaurant_id": 1600 + }, + { + "user_id": 802, + "restaurant_id": 1692 + }, + { + "user_id": 778, + "restaurant_id": 1446 + }, + { + "user_id": 664, + "restaurant_id": 1647 + }, + { + "user_id": 26, + "restaurant_id": 2106 + }, + { + "user_id": 669, + "restaurant_id": 520 + }, + { + "user_id": 664, + "restaurant_id": 1683 + }, + { + "user_id": 154, + "restaurant_id": 2209 + }, + { + "user_id": 378, + "restaurant_id": 1611 + }, + { + "user_id": 668, + "restaurant_id": 9 + }, + { + "user_id": 592, + "restaurant_id": 1517 + }, + { + "user_id": 592, + "restaurant_id": 1103 + }, + { + "user_id": 22, + "restaurant_id": 1504 + }, + { + "user_id": 53, + "restaurant_id": 1804 + }, + { + "user_id": 534, + "restaurant_id": 1288 + }, + { + "user_id": 190, + "restaurant_id": 678 + }, + { + "user_id": 240, + "restaurant_id": 1191 + }, + { + "user_id": 172, + "restaurant_id": 1676 + }, + { + "user_id": 828, + "restaurant_id": 572 + }, + { + "user_id": 439, + "restaurant_id": 1188 + }, + { + "user_id": 504, + "restaurant_id": 1159 + }, + { + "user_id": 926, + "restaurant_id": 622 + }, + { + "user_id": 161, + "restaurant_id": 2150 + }, + { + "user_id": 132, + "restaurant_id": 1383 + }, + { + "user_id": 379, + "restaurant_id": 505 + }, + { + "user_id": 957, + "restaurant_id": 726 + }, + { + "user_id": 933, + "restaurant_id": 2178 + }, + { + "user_id": 324, + "restaurant_id": 1223 + }, + { + "user_id": 133, + "restaurant_id": 1734 + }, + { + "user_id": 204, + "restaurant_id": 937 + }, + { + "user_id": 74, + "restaurant_id": 1418 + }, + { + "user_id": 927, + "restaurant_id": 633 + }, + { + "user_id": 574, + "restaurant_id": 1577 + }, + { + "user_id": 133, + "restaurant_id": 1632 + }, + { + "user_id": 389, + "restaurant_id": 2128 + }, + { + "user_id": 417, + "restaurant_id": 476 + }, + { + "user_id": 661, + "restaurant_id": 1445 + }, + { + "user_id": 397, + "restaurant_id": 2068 + }, + { + "user_id": 900, + "restaurant_id": 1010 + }, + { + "user_id": 804, + "restaurant_id": 204 + }, + { + "user_id": 470, + "restaurant_id": 1442 + }, + { + "user_id": 842, + "restaurant_id": 897 + }, + { + "user_id": 122, + "restaurant_id": 1121 + }, + { + "user_id": 798, + "restaurant_id": 1837 + }, + { + "user_id": 16, + "restaurant_id": 588 + }, + { + "user_id": 951, + "restaurant_id": 224 + }, + { + "user_id": 565, + "restaurant_id": 2218 + }, + { + "user_id": 186, + "restaurant_id": 469 + }, + { + "user_id": 258, + "restaurant_id": 1334 + }, + { + "user_id": 742, + "restaurant_id": 2111 + }, + { + "user_id": 233, + "restaurant_id": 1008 + }, + { + "user_id": 794, + "restaurant_id": 2079 + }, + { + "user_id": 60, + "restaurant_id": 1010 + }, + { + "user_id": 404, + "restaurant_id": 1801 + }, + { + "user_id": 510, + "restaurant_id": 1901 + }, + { + "user_id": 925, + "restaurant_id": 47 + }, + { + "user_id": 767, + "restaurant_id": 755 + }, + { + "user_id": 520, + "restaurant_id": 2064 + }, + { + "user_id": 499, + "restaurant_id": 1208 + }, + { + "user_id": 190, + "restaurant_id": 1903 + }, + { + "user_id": 842, + "restaurant_id": 1578 + }, + { + "user_id": 554, + "restaurant_id": 1816 + }, + { + "user_id": 15, + "restaurant_id": 1515 + }, + { + "user_id": 960, + "restaurant_id": 572 + }, + { + "user_id": 748, + "restaurant_id": 201 + }, + { + "user_id": 854, + "restaurant_id": 2010 + }, + { + "user_id": 199, + "restaurant_id": 1583 + }, + { + "user_id": 184, + "restaurant_id": 1788 + }, + { + "user_id": 329, + "restaurant_id": 107 + }, + { + "user_id": 772, + "restaurant_id": 521 + }, + { + "user_id": 404, + "restaurant_id": 1402 + }, + { + "user_id": 666, + "restaurant_id": 973 + }, + { + "user_id": 396, + "restaurant_id": 624 + }, + { + "user_id": 573, + "restaurant_id": 1018 + }, + { + "user_id": 53, + "restaurant_id": 1898 + }, + { + "user_id": 153, + "restaurant_id": 834 + }, + { + "user_id": 733, + "restaurant_id": 1264 + }, + { + "user_id": 109, + "restaurant_id": 2254 + }, + { + "user_id": 602, + "restaurant_id": 819 + }, + { + "user_id": 898, + "restaurant_id": 1135 + }, + { + "user_id": 800, + "restaurant_id": 850 + }, + { + "user_id": 493, + "restaurant_id": 514 + }, + { + "user_id": 400, + "restaurant_id": 1351 + }, + { + "user_id": 493, + "restaurant_id": 115 + }, + { + "user_id": 972, + "restaurant_id": 1762 + }, + { + "user_id": 963, + "restaurant_id": 517 + }, + { + "user_id": 440, + "restaurant_id": 2065 + }, + { + "user_id": 250, + "restaurant_id": 1156 + }, + { + "user_id": 391, + "restaurant_id": 2090 + }, + { + "user_id": 147, + "restaurant_id": 1978 + }, + { + "user_id": 940, + "restaurant_id": 581 + }, + { + "user_id": 334, + "restaurant_id": 1198 + }, + { + "user_id": 360, + "restaurant_id": 492 + }, + { + "user_id": 136, + "restaurant_id": 1760 + }, + { + "user_id": 351, + "restaurant_id": 2212 + }, + { + "user_id": 147, + "restaurant_id": 467 + }, + { + "user_id": 137, + "restaurant_id": 939 + }, + { + "user_id": 552, + "restaurant_id": 1766 + }, + { + "user_id": 335, + "restaurant_id": 1316 + }, + { + "user_id": 540, + "restaurant_id": 1534 + }, + { + "user_id": 205, + "restaurant_id": 1753 + }, + { + "user_id": 109, + "restaurant_id": 2043 + }, + { + "user_id": 537, + "restaurant_id": 1196 + }, + { + "user_id": 473, + "restaurant_id": 234 + }, + { + "user_id": 643, + "restaurant_id": 475 + }, + { + "user_id": 258, + "restaurant_id": 796 + }, + { + "user_id": 921, + "restaurant_id": 1339 + }, + { + "user_id": 523, + "restaurant_id": 614 + }, + { + "user_id": 474, + "restaurant_id": 429 + }, + { + "user_id": 759, + "restaurant_id": 2074 + }, + { + "user_id": 802, + "restaurant_id": 1708 + }, + { + "user_id": 853, + "restaurant_id": 2104 + }, + { + "user_id": 885, + "restaurant_id": 1970 + }, + { + "user_id": 863, + "restaurant_id": 2104 + }, + { + "user_id": 102, + "restaurant_id": 770 + }, + { + "user_id": 84, + "restaurant_id": 1317 + }, + { + "user_id": 542, + "restaurant_id": 109 + }, + { + "user_id": 700, + "restaurant_id": 208 + }, + { + "user_id": 986, + "restaurant_id": 298 + }, + { + "user_id": 681, + "restaurant_id": 1483 + }, + { + "user_id": 605, + "restaurant_id": 74 + }, + { + "user_id": 990, + "restaurant_id": 1469 + }, + { + "user_id": 125, + "restaurant_id": 1090 + }, + { + "user_id": 285, + "restaurant_id": 1437 + }, + { + "user_id": 183, + "restaurant_id": 1381 + }, + { + "user_id": 866, + "restaurant_id": 990 + }, + { + "user_id": 920, + "restaurant_id": 1146 + }, + { + "user_id": 806, + "restaurant_id": 686 + }, + { + "user_id": 806, + "restaurant_id": 205 + }, + { + "user_id": 693, + "restaurant_id": 2234 + }, + { + "user_id": 141, + "restaurant_id": 606 + }, + { + "user_id": 485, + "restaurant_id": 1380 + }, + { + "user_id": 197, + "restaurant_id": 93 + }, + { + "user_id": 644, + "restaurant_id": 1166 + }, + { + "user_id": 790, + "restaurant_id": 2017 + }, + { + "user_id": 328, + "restaurant_id": 1357 + }, + { + "user_id": 393, + "restaurant_id": 122 + }, + { + "user_id": 275, + "restaurant_id": 230 + }, + { + "user_id": 55, + "restaurant_id": 1799 + }, + { + "user_id": 625, + "restaurant_id": 1380 + }, + { + "user_id": 780, + "restaurant_id": 1803 + }, + { + "user_id": 632, + "restaurant_id": 1434 + }, + { + "user_id": 28, + "restaurant_id": 1950 + }, + { + "user_id": 770, + "restaurant_id": 2004 + }, + { + "user_id": 622, + "restaurant_id": 21 + }, + { + "user_id": 544, + "restaurant_id": 658 + }, + { + "user_id": 802, + "restaurant_id": 2233 + }, + { + "user_id": 967, + "restaurant_id": 996 + }, + { + "user_id": 414, + "restaurant_id": 2032 + }, + { + "user_id": 819, + "restaurant_id": 746 + }, + { + "user_id": 301, + "restaurant_id": 1056 + }, + { + "user_id": 248, + "restaurant_id": 333 + }, + { + "user_id": 1000, + "restaurant_id": 2179 + }, + { + "user_id": 348, + "restaurant_id": 1374 + }, + { + "user_id": 437, + "restaurant_id": 879 + }, + { + "user_id": 859, + "restaurant_id": 306 + }, + { + "user_id": 304, + "restaurant_id": 443 + }, + { + "user_id": 194, + "restaurant_id": 837 + }, + { + "user_id": 628, + "restaurant_id": 552 + }, + { + "user_id": 951, + "restaurant_id": 440 + }, + { + "user_id": 759, + "restaurant_id": 723 + }, + { + "user_id": 876, + "restaurant_id": 1074 + }, + { + "user_id": 397, + "restaurant_id": 1432 + }, + { + "user_id": 716, + "restaurant_id": 553 + }, + { + "user_id": 347, + "restaurant_id": 1176 + }, + { + "user_id": 908, + "restaurant_id": 1483 + }, + { + "user_id": 190, + "restaurant_id": 60 + }, + { + "user_id": 563, + "restaurant_id": 1110 + }, + { + "user_id": 422, + "restaurant_id": 2015 + }, + { + "user_id": 727, + "restaurant_id": 1931 + }, + { + "user_id": 603, + "restaurant_id": 166 + }, + { + "user_id": 38, + "restaurant_id": 1852 + }, + { + "user_id": 181, + "restaurant_id": 114 + }, + { + "user_id": 679, + "restaurant_id": 1711 + }, + { + "user_id": 179, + "restaurant_id": 1546 + }, + { + "user_id": 705, + "restaurant_id": 9 + }, + { + "user_id": 526, + "restaurant_id": 1772 + }, + { + "user_id": 710, + "restaurant_id": 1156 + }, + { + "user_id": 326, + "restaurant_id": 811 + }, + { + "user_id": 469, + "restaurant_id": 1464 + }, + { + "user_id": 859, + "restaurant_id": 1638 + }, + { + "user_id": 424, + "restaurant_id": 365 + }, + { + "user_id": 873, + "restaurant_id": 1888 + }, + { + "user_id": 392, + "restaurant_id": 1224 + }, + { + "user_id": 630, + "restaurant_id": 349 + }, + { + "user_id": 739, + "restaurant_id": 453 + }, + { + "user_id": 225, + "restaurant_id": 652 + }, + { + "user_id": 259, + "restaurant_id": 2091 + }, + { + "user_id": 164, + "restaurant_id": 796 + }, + { + "user_id": 35, + "restaurant_id": 748 + }, + { + "user_id": 786, + "restaurant_id": 1277 + }, + { + "user_id": 717, + "restaurant_id": 554 + }, + { + "user_id": 963, + "restaurant_id": 1379 + }, + { + "user_id": 484, + "restaurant_id": 1329 + }, + { + "user_id": 370, + "restaurant_id": 544 + }, + { + "user_id": 257, + "restaurant_id": 533 + }, + { + "user_id": 999, + "restaurant_id": 1549 + }, + { + "user_id": 10, + "restaurant_id": 674 + }, + { + "user_id": 222, + "restaurant_id": 670 + }, + { + "user_id": 657, + "restaurant_id": 689 + }, + { + "user_id": 13, + "restaurant_id": 119 + }, + { + "user_id": 729, + "restaurant_id": 1298 + }, + { + "user_id": 825, + "restaurant_id": 1966 + }, + { + "user_id": 999, + "restaurant_id": 2175 + }, + { + "user_id": 175, + "restaurant_id": 2100 + }, + { + "user_id": 701, + "restaurant_id": 743 + }, + { + "user_id": 793, + "restaurant_id": 2108 + }, + { + "user_id": 264, + "restaurant_id": 1615 + }, + { + "user_id": 617, + "restaurant_id": 1861 + }, + { + "user_id": 598, + "restaurant_id": 1896 + }, + { + "user_id": 227, + "restaurant_id": 770 + }, + { + "user_id": 760, + "restaurant_id": 1420 + }, + { + "user_id": 821, + "restaurant_id": 207 + }, + { + "user_id": 657, + "restaurant_id": 249 + }, + { + "user_id": 829, + "restaurant_id": 564 + }, + { + "user_id": 427, + "restaurant_id": 1054 + }, + { + "user_id": 990, + "restaurant_id": 1800 + }, + { + "user_id": 532, + "restaurant_id": 794 + }, + { + "user_id": 109, + "restaurant_id": 262 + }, + { + "user_id": 917, + "restaurant_id": 284 + }, + { + "user_id": 913, + "restaurant_id": 220 + }, + { + "user_id": 638, + "restaurant_id": 42 + }, + { + "user_id": 406, + "restaurant_id": 2033 + }, + { + "user_id": 719, + "restaurant_id": 1725 + }, + { + "user_id": 819, + "restaurant_id": 1772 + }, + { + "user_id": 419, + "restaurant_id": 879 + }, + { + "user_id": 714, + "restaurant_id": 249 + }, + { + "user_id": 96, + "restaurant_id": 951 + }, + { + "user_id": 817, + "restaurant_id": 1701 + }, + { + "user_id": 72, + "restaurant_id": 1575 + }, + { + "user_id": 752, + "restaurant_id": 1954 + }, + { + "user_id": 460, + "restaurant_id": 1274 + }, + { + "user_id": 716, + "restaurant_id": 1062 + }, + { + "user_id": 58, + "restaurant_id": 1193 + }, + { + "user_id": 54, + "restaurant_id": 155 + }, + { + "user_id": 165, + "restaurant_id": 2182 + }, + { + "user_id": 701, + "restaurant_id": 988 + }, + { + "user_id": 731, + "restaurant_id": 1101 + }, + { + "user_id": 294, + "restaurant_id": 570 + }, + { + "user_id": 223, + "restaurant_id": 1055 + }, + { + "user_id": 986, + "restaurant_id": 974 + }, + { + "user_id": 916, + "restaurant_id": 1636 + }, + { + "user_id": 716, + "restaurant_id": 2199 + }, + { + "user_id": 965, + "restaurant_id": 166 + }, + { + "user_id": 948, + "restaurant_id": 2076 + }, + { + "user_id": 119, + "restaurant_id": 798 + }, + { + "user_id": 490, + "restaurant_id": 1624 + }, + { + "user_id": 423, + "restaurant_id": 1216 + }, + { + "user_id": 615, + "restaurant_id": 1636 + }, + { + "user_id": 713, + "restaurant_id": 57 + }, + { + "user_id": 694, + "restaurant_id": 2225 + }, + { + "user_id": 890, + "restaurant_id": 1164 + }, + { + "user_id": 819, + "restaurant_id": 679 + }, + { + "user_id": 756, + "restaurant_id": 2130 + }, + { + "user_id": 946, + "restaurant_id": 1782 + }, + { + "user_id": 614, + "restaurant_id": 246 + }, + { + "user_id": 574, + "restaurant_id": 274 + }, + { + "user_id": 591, + "restaurant_id": 2030 + }, + { + "user_id": 899, + "restaurant_id": 673 + }, + { + "user_id": 126, + "restaurant_id": 31 + }, + { + "user_id": 342, + "restaurant_id": 772 + }, + { + "user_id": 594, + "restaurant_id": 424 + }, + { + "user_id": 350, + "restaurant_id": 1156 + }, + { + "user_id": 334, + "restaurant_id": 2157 + }, + { + "user_id": 576, + "restaurant_id": 1093 + }, + { + "user_id": 647, + "restaurant_id": 2184 + }, + { + "user_id": 613, + "restaurant_id": 1073 + }, + { + "user_id": 123, + "restaurant_id": 1145 + }, + { + "user_id": 653, + "restaurant_id": 501 + }, + { + "user_id": 875, + "restaurant_id": 2097 + }, + { + "user_id": 533, + "restaurant_id": 2242 + }, + { + "user_id": 490, + "restaurant_id": 376 + }, + { + "user_id": 190, + "restaurant_id": 1737 + }, + { + "user_id": 81, + "restaurant_id": 10 + }, + { + "user_id": 80, + "restaurant_id": 1522 + }, + { + "user_id": 196, + "restaurant_id": 386 + }, + { + "user_id": 103, + "restaurant_id": 1029 + }, + { + "user_id": 754, + "restaurant_id": 1877 + }, + { + "user_id": 234, + "restaurant_id": 501 + }, + { + "user_id": 680, + "restaurant_id": 1192 + }, + { + "user_id": 235, + "restaurant_id": 1292 + }, + { + "user_id": 54, + "restaurant_id": 513 + }, + { + "user_id": 29, + "restaurant_id": 69 + }, + { + "user_id": 447, + "restaurant_id": 1954 + }, + { + "user_id": 297, + "restaurant_id": 285 + }, + { + "user_id": 825, + "restaurant_id": 315 + }, + { + "user_id": 444, + "restaurant_id": 89 + }, + { + "user_id": 686, + "restaurant_id": 1752 + }, + { + "user_id": 711, + "restaurant_id": 575 + }, + { + "user_id": 574, + "restaurant_id": 721 + }, + { + "user_id": 110, + "restaurant_id": 373 + }, + { + "user_id": 695, + "restaurant_id": 1103 + }, + { + "user_id": 438, + "restaurant_id": 106 + }, + { + "user_id": 952, + "restaurant_id": 1818 + }, + { + "user_id": 793, + "restaurant_id": 738 + }, + { + "user_id": 85, + "restaurant_id": 604 + }, + { + "user_id": 996, + "restaurant_id": 1059 + }, + { + "user_id": 593, + "restaurant_id": 317 + }, + { + "user_id": 375, + "restaurant_id": 1593 + }, + { + "user_id": 290, + "restaurant_id": 128 + }, + { + "user_id": 35, + "restaurant_id": 956 + }, + { + "user_id": 613, + "restaurant_id": 830 + }, + { + "user_id": 519, + "restaurant_id": 829 + }, + { + "user_id": 57, + "restaurant_id": 1463 + }, + { + "user_id": 850, + "restaurant_id": 229 + }, + { + "user_id": 588, + "restaurant_id": 1833 + }, + { + "user_id": 172, + "restaurant_id": 1325 + }, + { + "user_id": 524, + "restaurant_id": 279 + }, + { + "user_id": 64, + "restaurant_id": 2028 + }, + { + "user_id": 793, + "restaurant_id": 1440 + }, + { + "user_id": 685, + "restaurant_id": 1637 + }, + { + "user_id": 130, + "restaurant_id": 1825 + }, + { + "user_id": 829, + "restaurant_id": 801 + }, + { + "user_id": 559, + "restaurant_id": 1218 + }, + { + "user_id": 44, + "restaurant_id": 641 + }, + { + "user_id": 907, + "restaurant_id": 557 + }, + { + "user_id": 561, + "restaurant_id": 109 + }, + { + "user_id": 199, + "restaurant_id": 133 + }, + { + "user_id": 191, + "restaurant_id": 1645 + }, + { + "user_id": 81, + "restaurant_id": 1613 + }, + { + "user_id": 542, + "restaurant_id": 1485 + }, + { + "user_id": 909, + "restaurant_id": 1110 + }, + { + "user_id": 16, + "restaurant_id": 2069 + }, + { + "user_id": 685, + "restaurant_id": 2013 + }, + { + "user_id": 710, + "restaurant_id": 231 + }, + { + "user_id": 309, + "restaurant_id": 1734 + }, + { + "user_id": 282, + "restaurant_id": 1161 + }, + { + "user_id": 965, + "restaurant_id": 857 + }, + { + "user_id": 240, + "restaurant_id": 465 + }, + { + "user_id": 571, + "restaurant_id": 1171 + }, + { + "user_id": 825, + "restaurant_id": 902 + }, + { + "user_id": 927, + "restaurant_id": 1540 + }, + { + "user_id": 31, + "restaurant_id": 1097 + }, + { + "user_id": 209, + "restaurant_id": 1991 + }, + { + "user_id": 156, + "restaurant_id": 2069 + }, + { + "user_id": 799, + "restaurant_id": 1765 + }, + { + "user_id": 127, + "restaurant_id": 932 + }, + { + "user_id": 74, + "restaurant_id": 1706 + }, + { + "user_id": 657, + "restaurant_id": 1143 + }, + { + "user_id": 123, + "restaurant_id": 1761 + }, + { + "user_id": 866, + "restaurant_id": 1504 + }, + { + "user_id": 335, + "restaurant_id": 1144 + }, + { + "user_id": 366, + "restaurant_id": 645 + }, + { + "user_id": 328, + "restaurant_id": 1849 + }, + { + "user_id": 426, + "restaurant_id": 175 + }, + { + "user_id": 66, + "restaurant_id": 769 + }, + { + "user_id": 172, + "restaurant_id": 1894 + }, + { + "user_id": 282, + "restaurant_id": 42 + }, + { + "user_id": 197, + "restaurant_id": 1593 + }, + { + "user_id": 709, + "restaurant_id": 2071 + }, + { + "user_id": 899, + "restaurant_id": 1694 + }, + { + "user_id": 290, + "restaurant_id": 998 + }, + { + "user_id": 548, + "restaurant_id": 772 + }, + { + "user_id": 816, + "restaurant_id": 74 + }, + { + "user_id": 737, + "restaurant_id": 1074 + }, + { + "user_id": 764, + "restaurant_id": 404 + }, + { + "user_id": 393, + "restaurant_id": 1653 + }, + { + "user_id": 13, + "restaurant_id": 523 + }, + { + "user_id": 731, + "restaurant_id": 605 + }, + { + "user_id": 519, + "restaurant_id": 521 + }, + { + "user_id": 357, + "restaurant_id": 1848 + }, + { + "user_id": 505, + "restaurant_id": 213 + }, + { + "user_id": 1, + "restaurant_id": 560 + }, + { + "user_id": 932, + "restaurant_id": 1094 + }, + { + "user_id": 260, + "restaurant_id": 757 + }, + { + "user_id": 639, + "restaurant_id": 2159 + }, + { + "user_id": 196, + "restaurant_id": 568 + }, + { + "user_id": 889, + "restaurant_id": 190 + }, + { + "user_id": 202, + "restaurant_id": 139 + }, + { + "user_id": 560, + "restaurant_id": 416 + }, + { + "user_id": 959, + "restaurant_id": 655 + }, + { + "user_id": 385, + "restaurant_id": 1261 + }, + { + "user_id": 300, + "restaurant_id": 633 + }, + { + "user_id": 454, + "restaurant_id": 921 + }, + { + "user_id": 765, + "restaurant_id": 1623 + }, + { + "user_id": 904, + "restaurant_id": 210 + }, + { + "user_id": 817, + "restaurant_id": 1746 + }, + { + "user_id": 341, + "restaurant_id": 2160 + }, + { + "user_id": 961, + "restaurant_id": 1153 + }, + { + "user_id": 104, + "restaurant_id": 45 + }, + { + "user_id": 987, + "restaurant_id": 476 + }, + { + "user_id": 460, + "restaurant_id": 170 + }, + { + "user_id": 810, + "restaurant_id": 1456 + }, + { + "user_id": 789, + "restaurant_id": 699 + }, + { + "user_id": 876, + "restaurant_id": 1789 + }, + { + "user_id": 217, + "restaurant_id": 358 + }, + { + "user_id": 916, + "restaurant_id": 809 + }, + { + "user_id": 237, + "restaurant_id": 883 + }, + { + "user_id": 622, + "restaurant_id": 1169 + }, + { + "user_id": 74, + "restaurant_id": 1925 + }, + { + "user_id": 321, + "restaurant_id": 2219 + }, + { + "user_id": 579, + "restaurant_id": 1329 + }, + { + "user_id": 429, + "restaurant_id": 174 + }, + { + "user_id": 319, + "restaurant_id": 1528 + }, + { + "user_id": 441, + "restaurant_id": 1864 + }, + { + "user_id": 613, + "restaurant_id": 1592 + }, + { + "user_id": 712, + "restaurant_id": 2155 + }, + { + "user_id": 563, + "restaurant_id": 293 + }, + { + "user_id": 451, + "restaurant_id": 1214 + }, + { + "user_id": 854, + "restaurant_id": 341 + }, + { + "user_id": 737, + "restaurant_id": 632 + }, + { + "user_id": 745, + "restaurant_id": 602 + }, + { + "user_id": 288, + "restaurant_id": 1680 + }, + { + "user_id": 406, + "restaurant_id": 1948 + }, + { + "user_id": 141, + "restaurant_id": 1773 + }, + { + "user_id": 802, + "restaurant_id": 1790 + }, + { + "user_id": 930, + "restaurant_id": 918 + }, + { + "user_id": 840, + "restaurant_id": 226 + }, + { + "user_id": 31, + "restaurant_id": 1375 + }, + { + "user_id": 135, + "restaurant_id": 2024 + }, + { + "user_id": 28, + "restaurant_id": 608 + }, + { + "user_id": 481, + "restaurant_id": 522 + }, + { + "user_id": 64, + "restaurant_id": 569 + }, + { + "user_id": 705, + "restaurant_id": 146 + }, + { + "user_id": 762, + "restaurant_id": 1362 + }, + { + "user_id": 190, + "restaurant_id": 714 + }, + { + "user_id": 870, + "restaurant_id": 2244 + }, + { + "user_id": 338, + "restaurant_id": 570 + }, + { + "user_id": 112, + "restaurant_id": 1434 + }, + { + "user_id": 649, + "restaurant_id": 1899 + }, + { + "user_id": 655, + "restaurant_id": 521 + }, + { + "user_id": 491, + "restaurant_id": 438 + }, + { + "user_id": 150, + "restaurant_id": 1677 + }, + { + "user_id": 697, + "restaurant_id": 1415 + }, + { + "user_id": 60, + "restaurant_id": 1798 + }, + { + "user_id": 248, + "restaurant_id": 1845 + }, + { + "user_id": 203, + "restaurant_id": 1710 + }, + { + "user_id": 560, + "restaurant_id": 1362 + }, + { + "user_id": 163, + "restaurant_id": 766 + }, + { + "user_id": 835, + "restaurant_id": 937 + }, + { + "user_id": 410, + "restaurant_id": 2244 + }, + { + "user_id": 509, + "restaurant_id": 442 + }, + { + "user_id": 596, + "restaurant_id": 1953 + }, + { + "user_id": 893, + "restaurant_id": 463 + }, + { + "user_id": 528, + "restaurant_id": 859 + }, + { + "user_id": 38, + "restaurant_id": 1554 + }, + { + "user_id": 978, + "restaurant_id": 12 + }, + { + "user_id": 983, + "restaurant_id": 379 + }, + { + "user_id": 15, + "restaurant_id": 979 + }, + { + "user_id": 314, + "restaurant_id": 1562 + }, + { + "user_id": 928, + "restaurant_id": 1842 + }, + { + "user_id": 176, + "restaurant_id": 1939 + }, + { + "user_id": 831, + "restaurant_id": 1628 + }, + { + "user_id": 865, + "restaurant_id": 137 + }, + { + "user_id": 799, + "restaurant_id": 426 + }, + { + "user_id": 636, + "restaurant_id": 2046 + }, + { + "user_id": 884, + "restaurant_id": 119 + }, + { + "user_id": 477, + "restaurant_id": 480 + }, + { + "user_id": 317, + "restaurant_id": 1353 + }, + { + "user_id": 175, + "restaurant_id": 624 + }, + { + "user_id": 943, + "restaurant_id": 301 + }, + { + "user_id": 127, + "restaurant_id": 61 + }, + { + "user_id": 127, + "restaurant_id": 1763 + }, + { + "user_id": 314, + "restaurant_id": 1998 + }, + { + "user_id": 45, + "restaurant_id": 2156 + }, + { + "user_id": 593, + "restaurant_id": 992 + }, + { + "user_id": 641, + "restaurant_id": 1975 + }, + { + "user_id": 599, + "restaurant_id": 134 + }, + { + "user_id": 457, + "restaurant_id": 1567 + }, + { + "user_id": 819, + "restaurant_id": 555 + }, + { + "user_id": 267, + "restaurant_id": 2013 + }, + { + "user_id": 34, + "restaurant_id": 158 + }, + { + "user_id": 55, + "restaurant_id": 2016 + }, + { + "user_id": 980, + "restaurant_id": 1124 + }, + { + "user_id": 886, + "restaurant_id": 2038 + }, + { + "user_id": 359, + "restaurant_id": 24 + }, + { + "user_id": 859, + "restaurant_id": 241 + }, + { + "user_id": 116, + "restaurant_id": 2196 + }, + { + "user_id": 202, + "restaurant_id": 1877 + }, + { + "user_id": 543, + "restaurant_id": 1941 + }, + { + "user_id": 4, + "restaurant_id": 1105 + }, + { + "user_id": 653, + "restaurant_id": 459 + }, + { + "user_id": 494, + "restaurant_id": 435 + }, + { + "user_id": 697, + "restaurant_id": 788 + }, + { + "user_id": 314, + "restaurant_id": 322 + }, + { + "user_id": 736, + "restaurant_id": 2214 + }, + { + "user_id": 609, + "restaurant_id": 530 + }, + { + "user_id": 762, + "restaurant_id": 2025 + }, + { + "user_id": 281, + "restaurant_id": 2028 + }, + { + "user_id": 629, + "restaurant_id": 556 + }, + { + "user_id": 137, + "restaurant_id": 651 + }, + { + "user_id": 290, + "restaurant_id": 858 + }, + { + "user_id": 781, + "restaurant_id": 531 + }, + { + "user_id": 847, + "restaurant_id": 420 + }, + { + "user_id": 589, + "restaurant_id": 1711 + }, + { + "user_id": 798, + "restaurant_id": 545 + }, + { + "user_id": 639, + "restaurant_id": 238 + }, + { + "user_id": 23, + "restaurant_id": 111 + }, + { + "user_id": 887, + "restaurant_id": 1924 + }, + { + "user_id": 622, + "restaurant_id": 2133 + }, + { + "user_id": 620, + "restaurant_id": 1433 + }, + { + "user_id": 887, + "restaurant_id": 542 + }, + { + "user_id": 988, + "restaurant_id": 187 + }, + { + "user_id": 277, + "restaurant_id": 648 + }, + { + "user_id": 272, + "restaurant_id": 1451 + }, + { + "user_id": 498, + "restaurant_id": 919 + }, + { + "user_id": 197, + "restaurant_id": 269 + }, + { + "user_id": 42, + "restaurant_id": 1814 + }, + { + "user_id": 367, + "restaurant_id": 544 + }, + { + "user_id": 686, + "restaurant_id": 1454 + }, + { + "user_id": 472, + "restaurant_id": 1072 + }, + { + "user_id": 794, + "restaurant_id": 1064 + }, + { + "user_id": 851, + "restaurant_id": 1050 + }, + { + "user_id": 969, + "restaurant_id": 1138 + }, + { + "user_id": 782, + "restaurant_id": 1496 + }, + { + "user_id": 574, + "restaurant_id": 861 + }, + { + "user_id": 293, + "restaurant_id": 1794 + }, + { + "user_id": 215, + "restaurant_id": 1076 + }, + { + "user_id": 433, + "restaurant_id": 160 + }, + { + "user_id": 39, + "restaurant_id": 354 + }, + { + "user_id": 530, + "restaurant_id": 687 + }, + { + "user_id": 484, + "restaurant_id": 1480 + }, + { + "user_id": 727, + "restaurant_id": 912 + }, + { + "user_id": 682, + "restaurant_id": 138 + }, + { + "user_id": 924, + "restaurant_id": 32 + }, + { + "user_id": 58, + "restaurant_id": 1398 + }, + { + "user_id": 690, + "restaurant_id": 1766 + }, + { + "user_id": 700, + "restaurant_id": 605 + }, + { + "user_id": 53, + "restaurant_id": 1595 + }, + { + "user_id": 728, + "restaurant_id": 758 + }, + { + "user_id": 648, + "restaurant_id": 1229 + }, + { + "user_id": 524, + "restaurant_id": 1371 + }, + { + "user_id": 433, + "restaurant_id": 1833 + }, + { + "user_id": 537, + "restaurant_id": 426 + }, + { + "user_id": 711, + "restaurant_id": 1119 + }, + { + "user_id": 350, + "restaurant_id": 1875 + }, + { + "user_id": 799, + "restaurant_id": 1391 + }, + { + "user_id": 203, + "restaurant_id": 1912 + }, + { + "user_id": 665, + "restaurant_id": 493 + }, + { + "user_id": 151, + "restaurant_id": 362 + }, + { + "user_id": 137, + "restaurant_id": 288 + }, + { + "user_id": 314, + "restaurant_id": 218 + }, + { + "user_id": 472, + "restaurant_id": 47 + }, + { + "user_id": 643, + "restaurant_id": 635 + }, + { + "user_id": 168, + "restaurant_id": 942 + }, + { + "user_id": 561, + "restaurant_id": 686 + }, + { + "user_id": 949, + "restaurant_id": 2052 + }, + { + "user_id": 632, + "restaurant_id": 458 + }, + { + "user_id": 229, + "restaurant_id": 1831 + }, + { + "user_id": 704, + "restaurant_id": 1295 + }, + { + "user_id": 532, + "restaurant_id": 653 + }, + { + "user_id": 246, + "restaurant_id": 1984 + }, + { + "user_id": 768, + "restaurant_id": 964 + }, + { + "user_id": 426, + "restaurant_id": 1997 + }, + { + "user_id": 163, + "restaurant_id": 1517 + }, + { + "user_id": 978, + "restaurant_id": 1768 + }, + { + "user_id": 848, + "restaurant_id": 723 + }, + { + "user_id": 60, + "restaurant_id": 2221 + }, + { + "user_id": 755, + "restaurant_id": 2171 + }, + { + "user_id": 132, + "restaurant_id": 1474 + }, + { + "user_id": 822, + "restaurant_id": 232 + }, + { + "user_id": 184, + "restaurant_id": 1184 + }, + { + "user_id": 224, + "restaurant_id": 2160 + }, + { + "user_id": 28, + "restaurant_id": 703 + }, + { + "user_id": 197, + "restaurant_id": 1091 + }, + { + "user_id": 992, + "restaurant_id": 1062 + }, + { + "user_id": 436, + "restaurant_id": 2139 + }, + { + "user_id": 935, + "restaurant_id": 1890 + }, + { + "user_id": 998, + "restaurant_id": 104 + }, + { + "user_id": 594, + "restaurant_id": 480 + }, + { + "user_id": 961, + "restaurant_id": 1147 + }, + { + "user_id": 404, + "restaurant_id": 1361 + }, + { + "user_id": 862, + "restaurant_id": 1362 + }, + { + "user_id": 341, + "restaurant_id": 1014 + }, + { + "user_id": 996, + "restaurant_id": 1351 + }, + { + "user_id": 734, + "restaurant_id": 497 + }, + { + "user_id": 659, + "restaurant_id": 978 + }, + { + "user_id": 529, + "restaurant_id": 419 + }, + { + "user_id": 577, + "restaurant_id": 933 + }, + { + "user_id": 815, + "restaurant_id": 150 + }, + { + "user_id": 993, + "restaurant_id": 414 + }, + { + "user_id": 993, + "restaurant_id": 1553 + }, + { + "user_id": 596, + "restaurant_id": 858 + }, + { + "user_id": 607, + "restaurant_id": 1465 + }, + { + "user_id": 66, + "restaurant_id": 1926 + }, + { + "user_id": 933, + "restaurant_id": 1839 + }, + { + "user_id": 281, + "restaurant_id": 1548 + }, + { + "user_id": 891, + "restaurant_id": 525 + }, + { + "user_id": 731, + "restaurant_id": 1833 + }, + { + "user_id": 397, + "restaurant_id": 951 + }, + { + "user_id": 835, + "restaurant_id": 394 + }, + { + "user_id": 304, + "restaurant_id": 401 + }, + { + "user_id": 613, + "restaurant_id": 1651 + }, + { + "user_id": 55, + "restaurant_id": 661 + }, + { + "user_id": 345, + "restaurant_id": 37 + }, + { + "user_id": 369, + "restaurant_id": 104 + }, + { + "user_id": 349, + "restaurant_id": 1218 + }, + { + "user_id": 255, + "restaurant_id": 2015 + }, + { + "user_id": 414, + "restaurant_id": 730 + }, + { + "user_id": 115, + "restaurant_id": 1423 + }, + { + "user_id": 211, + "restaurant_id": 1343 + }, + { + "user_id": 20, + "restaurant_id": 1019 + }, + { + "user_id": 711, + "restaurant_id": 1492 + }, + { + "user_id": 425, + "restaurant_id": 862 + }, + { + "user_id": 892, + "restaurant_id": 29 + }, + { + "user_id": 304, + "restaurant_id": 1658 + }, + { + "user_id": 820, + "restaurant_id": 138 + }, + { + "user_id": 316, + "restaurant_id": 1998 + }, + { + "user_id": 402, + "restaurant_id": 1415 + }, + { + "user_id": 364, + "restaurant_id": 1919 + }, + { + "user_id": 448, + "restaurant_id": 2156 + }, + { + "user_id": 132, + "restaurant_id": 2134 + }, + { + "user_id": 755, + "restaurant_id": 502 + }, + { + "user_id": 263, + "restaurant_id": 763 + }, + { + "user_id": 656, + "restaurant_id": 2136 + }, + { + "user_id": 16, + "restaurant_id": 2095 + }, + { + "user_id": 605, + "restaurant_id": 391 + }, + { + "user_id": 754, + "restaurant_id": 1065 + }, + { + "user_id": 584, + "restaurant_id": 7 + }, + { + "user_id": 599, + "restaurant_id": 1938 + }, + { + "user_id": 653, + "restaurant_id": 2049 + }, + { + "user_id": 577, + "restaurant_id": 755 + }, + { + "user_id": 50, + "restaurant_id": 251 + }, + { + "user_id": 424, + "restaurant_id": 2200 + }, + { + "user_id": 367, + "restaurant_id": 1905 + }, + { + "user_id": 64, + "restaurant_id": 1709 + }, + { + "user_id": 32, + "restaurant_id": 759 + }, + { + "user_id": 829, + "restaurant_id": 641 + }, + { + "user_id": 490, + "restaurant_id": 483 + }, + { + "user_id": 835, + "restaurant_id": 1811 + }, + { + "user_id": 121, + "restaurant_id": 1610 + }, + { + "user_id": 161, + "restaurant_id": 287 + }, + { + "user_id": 279, + "restaurant_id": 654 + }, + { + "user_id": 140, + "restaurant_id": 559 + }, + { + "user_id": 951, + "restaurant_id": 537 + }, + { + "user_id": 393, + "restaurant_id": 2073 + }, + { + "user_id": 275, + "restaurant_id": 626 + }, + { + "user_id": 299, + "restaurant_id": 754 + }, + { + "user_id": 335, + "restaurant_id": 574 + }, + { + "user_id": 558, + "restaurant_id": 914 + }, + { + "user_id": 884, + "restaurant_id": 32 + }, + { + "user_id": 991, + "restaurant_id": 1819 + }, + { + "user_id": 498, + "restaurant_id": 529 + }, + { + "user_id": 317, + "restaurant_id": 379 + }, + { + "user_id": 53, + "restaurant_id": 722 + }, + { + "user_id": 315, + "restaurant_id": 1430 + }, + { + "user_id": 954, + "restaurant_id": 1175 + }, + { + "user_id": 811, + "restaurant_id": 1072 + }, + { + "user_id": 825, + "restaurant_id": 1036 + }, + { + "user_id": 386, + "restaurant_id": 1210 + }, + { + "user_id": 59, + "restaurant_id": 1193 + }, + { + "user_id": 847, + "restaurant_id": 972 + }, + { + "user_id": 787, + "restaurant_id": 951 + }, + { + "user_id": 114, + "restaurant_id": 168 + }, + { + "user_id": 955, + "restaurant_id": 1147 + }, + { + "user_id": 623, + "restaurant_id": 208 + }, + { + "user_id": 683, + "restaurant_id": 1175 + }, + { + "user_id": 844, + "restaurant_id": 1989 + }, + { + "user_id": 528, + "restaurant_id": 686 + }, + { + "user_id": 339, + "restaurant_id": 843 + }, + { + "user_id": 386, + "restaurant_id": 328 + }, + { + "user_id": 155, + "restaurant_id": 698 + }, + { + "user_id": 278, + "restaurant_id": 2186 + }, + { + "user_id": 388, + "restaurant_id": 1725 + }, + { + "user_id": 615, + "restaurant_id": 1977 + }, + { + "user_id": 686, + "restaurant_id": 1720 + }, + { + "user_id": 628, + "restaurant_id": 1976 + }, + { + "user_id": 143, + "restaurant_id": 1553 + }, + { + "user_id": 794, + "restaurant_id": 68 + }, + { + "user_id": 874, + "restaurant_id": 437 + }, + { + "user_id": 647, + "restaurant_id": 212 + }, + { + "user_id": 110, + "restaurant_id": 1400 + }, + { + "user_id": 57, + "restaurant_id": 1446 + }, + { + "user_id": 509, + "restaurant_id": 785 + }, + { + "user_id": 352, + "restaurant_id": 1959 + }, + { + "user_id": 254, + "restaurant_id": 1639 + }, + { + "user_id": 94, + "restaurant_id": 411 + }, + { + "user_id": 799, + "restaurant_id": 1153 + }, + { + "user_id": 370, + "restaurant_id": 1023 + }, + { + "user_id": 863, + "restaurant_id": 847 + }, + { + "user_id": 925, + "restaurant_id": 1006 + }, + { + "user_id": 500, + "restaurant_id": 1513 + }, + { + "user_id": 328, + "restaurant_id": 1243 + }, + { + "user_id": 830, + "restaurant_id": 1505 + }, + { + "user_id": 466, + "restaurant_id": 488 + }, + { + "user_id": 959, + "restaurant_id": 989 + }, + { + "user_id": 262, + "restaurant_id": 2028 + }, + { + "user_id": 212, + "restaurant_id": 1450 + }, + { + "user_id": 781, + "restaurant_id": 1758 + }, + { + "user_id": 374, + "restaurant_id": 561 + }, + { + "user_id": 361, + "restaurant_id": 1297 + }, + { + "user_id": 26, + "restaurant_id": 1939 + }, + { + "user_id": 20, + "restaurant_id": 1267 + }, + { + "user_id": 593, + "restaurant_id": 1777 + }, + { + "user_id": 732, + "restaurant_id": 511 + }, + { + "user_id": 604, + "restaurant_id": 388 + }, + { + "user_id": 259, + "restaurant_id": 2113 + }, + { + "user_id": 640, + "restaurant_id": 1181 + }, + { + "user_id": 775, + "restaurant_id": 2034 + }, + { + "user_id": 557, + "restaurant_id": 382 + }, + { + "user_id": 914, + "restaurant_id": 2227 + }, + { + "user_id": 493, + "restaurant_id": 1239 + }, + { + "user_id": 74, + "restaurant_id": 1341 + }, + { + "user_id": 199, + "restaurant_id": 1519 + }, + { + "user_id": 329, + "restaurant_id": 774 + }, + { + "user_id": 742, + "restaurant_id": 154 + }, + { + "user_id": 15, + "restaurant_id": 573 + }, + { + "user_id": 74, + "restaurant_id": 1571 + }, + { + "user_id": 625, + "restaurant_id": 937 + }, + { + "user_id": 629, + "restaurant_id": 1381 + }, + { + "user_id": 290, + "restaurant_id": 1025 + }, + { + "user_id": 448, + "restaurant_id": 1161 + }, + { + "user_id": 483, + "restaurant_id": 430 + }, + { + "user_id": 408, + "restaurant_id": 951 + }, + { + "user_id": 216, + "restaurant_id": 1476 + }, + { + "user_id": 179, + "restaurant_id": 1797 + }, + { + "user_id": 530, + "restaurant_id": 384 + }, + { + "user_id": 297, + "restaurant_id": 2139 + }, + { + "user_id": 562, + "restaurant_id": 106 + }, + { + "user_id": 53, + "restaurant_id": 1775 + }, + { + "user_id": 174, + "restaurant_id": 2252 + }, + { + "user_id": 961, + "restaurant_id": 1295 + }, + { + "user_id": 7, + "restaurant_id": 1613 + }, + { + "user_id": 964, + "restaurant_id": 1327 + }, + { + "user_id": 684, + "restaurant_id": 424 + }, + { + "user_id": 992, + "restaurant_id": 1023 + }, + { + "user_id": 275, + "restaurant_id": 2134 + }, + { + "user_id": 128, + "restaurant_id": 2173 + }, + { + "user_id": 985, + "restaurant_id": 462 + }, + { + "user_id": 835, + "restaurant_id": 1613 + }, + { + "user_id": 857, + "restaurant_id": 631 + }, + { + "user_id": 31, + "restaurant_id": 1425 + }, + { + "user_id": 485, + "restaurant_id": 512 + }, + { + "user_id": 333, + "restaurant_id": 216 + }, + { + "user_id": 28, + "restaurant_id": 312 + }, + { + "user_id": 418, + "restaurant_id": 399 + }, + { + "user_id": 50, + "restaurant_id": 1043 + }, + { + "user_id": 806, + "restaurant_id": 548 + }, + { + "user_id": 346, + "restaurant_id": 1007 + }, + { + "user_id": 587, + "restaurant_id": 163 + }, + { + "user_id": 564, + "restaurant_id": 1634 + }, + { + "user_id": 185, + "restaurant_id": 343 + }, + { + "user_id": 686, + "restaurant_id": 1805 + }, + { + "user_id": 725, + "restaurant_id": 1226 + }, + { + "user_id": 490, + "restaurant_id": 623 + }, + { + "user_id": 390, + "restaurant_id": 1446 + }, + { + "user_id": 892, + "restaurant_id": 955 + }, + { + "user_id": 395, + "restaurant_id": 485 + }, + { + "user_id": 713, + "restaurant_id": 1659 + }, + { + "user_id": 5, + "restaurant_id": 1374 + }, + { + "user_id": 701, + "restaurant_id": 1241 + }, + { + "user_id": 193, + "restaurant_id": 44 + }, + { + "user_id": 342, + "restaurant_id": 1500 + }, + { + "user_id": 773, + "restaurant_id": 628 + }, + { + "user_id": 413, + "restaurant_id": 1441 + }, + { + "user_id": 437, + "restaurant_id": 1072 + }, + { + "user_id": 607, + "restaurant_id": 1787 + }, + { + "user_id": 77, + "restaurant_id": 595 + }, + { + "user_id": 916, + "restaurant_id": 2017 + }, + { + "user_id": 454, + "restaurant_id": 2057 + }, + { + "user_id": 278, + "restaurant_id": 1081 + }, + { + "user_id": 22, + "restaurant_id": 2030 + }, + { + "user_id": 960, + "restaurant_id": 2190 + }, + { + "user_id": 329, + "restaurant_id": 875 + }, + { + "user_id": 156, + "restaurant_id": 2101 + }, + { + "user_id": 920, + "restaurant_id": 2098 + }, + { + "user_id": 238, + "restaurant_id": 694 + }, + { + "user_id": 233, + "restaurant_id": 1139 + }, + { + "user_id": 116, + "restaurant_id": 9 + }, + { + "user_id": 284, + "restaurant_id": 53 + }, + { + "user_id": 999, + "restaurant_id": 1315 + }, + { + "user_id": 438, + "restaurant_id": 2005 + }, + { + "user_id": 834, + "restaurant_id": 1327 + }, + { + "user_id": 837, + "restaurant_id": 1953 + }, + { + "user_id": 398, + "restaurant_id": 1051 + }, + { + "user_id": 244, + "restaurant_id": 1234 + }, + { + "user_id": 446, + "restaurant_id": 1002 + }, + { + "user_id": 916, + "restaurant_id": 1659 + }, + { + "user_id": 825, + "restaurant_id": 245 + }, + { + "user_id": 440, + "restaurant_id": 559 + }, + { + "user_id": 654, + "restaurant_id": 459 + }, + { + "user_id": 144, + "restaurant_id": 81 + }, + { + "user_id": 849, + "restaurant_id": 1287 + }, + { + "user_id": 660, + "restaurant_id": 1090 + }, + { + "user_id": 271, + "restaurant_id": 1682 + }, + { + "user_id": 55, + "restaurant_id": 608 + }, + { + "user_id": 179, + "restaurant_id": 1142 + }, + { + "user_id": 172, + "restaurant_id": 1786 + }, + { + "user_id": 516, + "restaurant_id": 1353 + }, + { + "user_id": 429, + "restaurant_id": 83 + }, + { + "user_id": 123, + "restaurant_id": 744 + }, + { + "user_id": 801, + "restaurant_id": 66 + }, + { + "user_id": 710, + "restaurant_id": 803 + }, + { + "user_id": 471, + "restaurant_id": 1546 + }, + { + "user_id": 831, + "restaurant_id": 134 + }, + { + "user_id": 542, + "restaurant_id": 465 + }, + { + "user_id": 300, + "restaurant_id": 1568 + }, + { + "user_id": 765, + "restaurant_id": 1887 + }, + { + "user_id": 396, + "restaurant_id": 1339 + }, + { + "user_id": 926, + "restaurant_id": 2156 + }, + { + "user_id": 244, + "restaurant_id": 2152 + }, + { + "user_id": 360, + "restaurant_id": 1374 + }, + { + "user_id": 818, + "restaurant_id": 253 + }, + { + "user_id": 832, + "restaurant_id": 1048 + }, + { + "user_id": 177, + "restaurant_id": 1643 + }, + { + "user_id": 691, + "restaurant_id": 1907 + }, + { + "user_id": 414, + "restaurant_id": 1940 + }, + { + "user_id": 722, + "restaurant_id": 1192 + }, + { + "user_id": 715, + "restaurant_id": 1130 + }, + { + "user_id": 558, + "restaurant_id": 916 + }, + { + "user_id": 160, + "restaurant_id": 2254 + }, + { + "user_id": 30, + "restaurant_id": 899 + }, + { + "user_id": 475, + "restaurant_id": 1582 + }, + { + "user_id": 785, + "restaurant_id": 1512 + }, + { + "user_id": 200, + "restaurant_id": 426 + }, + { + "user_id": 673, + "restaurant_id": 200 + }, + { + "user_id": 665, + "restaurant_id": 2074 + }, + { + "user_id": 558, + "restaurant_id": 1819 + }, + { + "user_id": 638, + "restaurant_id": 919 + }, + { + "user_id": 852, + "restaurant_id": 1282 + }, + { + "user_id": 601, + "restaurant_id": 1263 + }, + { + "user_id": 264, + "restaurant_id": 1396 + }, + { + "user_id": 290, + "restaurant_id": 968 + }, + { + "user_id": 334, + "restaurant_id": 456 + }, + { + "user_id": 516, + "restaurant_id": 1503 + }, + { + "user_id": 358, + "restaurant_id": 690 + }, + { + "user_id": 238, + "restaurant_id": 781 + }, + { + "user_id": 698, + "restaurant_id": 697 + }, + { + "user_id": 660, + "restaurant_id": 610 + }, + { + "user_id": 550, + "restaurant_id": 996 + }, + { + "user_id": 538, + "restaurant_id": 1444 + }, + { + "user_id": 806, + "restaurant_id": 984 + }, + { + "user_id": 24, + "restaurant_id": 1554 + }, + { + "user_id": 92, + "restaurant_id": 331 + }, + { + "user_id": 418, + "restaurant_id": 1805 + }, + { + "user_id": 765, + "restaurant_id": 562 + }, + { + "user_id": 557, + "restaurant_id": 1631 + }, + { + "user_id": 897, + "restaurant_id": 298 + }, + { + "user_id": 496, + "restaurant_id": 18 + }, + { + "user_id": 774, + "restaurant_id": 1248 + }, + { + "user_id": 890, + "restaurant_id": 1724 + }, + { + "user_id": 420, + "restaurant_id": 1102 + }, + { + "user_id": 984, + "restaurant_id": 748 + }, + { + "user_id": 760, + "restaurant_id": 1403 + }, + { + "user_id": 277, + "restaurant_id": 1005 + }, + { + "user_id": 348, + "restaurant_id": 174 + }, + { + "user_id": 970, + "restaurant_id": 1171 + }, + { + "user_id": 837, + "restaurant_id": 2033 + }, + { + "user_id": 79, + "restaurant_id": 1410 + }, + { + "user_id": 453, + "restaurant_id": 2173 + }, + { + "user_id": 768, + "restaurant_id": 165 + }, + { + "user_id": 7, + "restaurant_id": 1085 + }, + { + "user_id": 188, + "restaurant_id": 1745 + }, + { + "user_id": 826, + "restaurant_id": 302 + }, + { + "user_id": 411, + "restaurant_id": 334 + }, + { + "user_id": 858, + "restaurant_id": 9 + }, + { + "user_id": 48, + "restaurant_id": 188 + }, + { + "user_id": 661, + "restaurant_id": 702 + }, + { + "user_id": 807, + "restaurant_id": 981 + }, + { + "user_id": 255, + "restaurant_id": 2112 + }, + { + "user_id": 506, + "restaurant_id": 228 + }, + { + "user_id": 32, + "restaurant_id": 1108 + }, + { + "user_id": 18, + "restaurant_id": 100 + }, + { + "user_id": 583, + "restaurant_id": 969 + }, + { + "user_id": 318, + "restaurant_id": 1266 + }, + { + "user_id": 967, + "restaurant_id": 347 + }, + { + "user_id": 447, + "restaurant_id": 557 + }, + { + "user_id": 873, + "restaurant_id": 361 + }, + { + "user_id": 829, + "restaurant_id": 1185 + }, + { + "user_id": 66, + "restaurant_id": 1529 + }, + { + "user_id": 591, + "restaurant_id": 1622 + }, + { + "user_id": 610, + "restaurant_id": 52 + }, + { + "user_id": 587, + "restaurant_id": 1122 + }, + { + "user_id": 117, + "restaurant_id": 2124 + }, + { + "user_id": 336, + "restaurant_id": 65 + }, + { + "user_id": 308, + "restaurant_id": 1179 + }, + { + "user_id": 194, + "restaurant_id": 1197 + }, + { + "user_id": 734, + "restaurant_id": 1514 + }, + { + "user_id": 13, + "restaurant_id": 1967 + }, + { + "user_id": 390, + "restaurant_id": 886 + }, + { + "user_id": 585, + "restaurant_id": 1300 + }, + { + "user_id": 473, + "restaurant_id": 1166 + }, + { + "user_id": 649, + "restaurant_id": 1795 + }, + { + "user_id": 760, + "restaurant_id": 1717 + }, + { + "user_id": 228, + "restaurant_id": 423 + }, + { + "user_id": 238, + "restaurant_id": 1660 + }, + { + "user_id": 526, + "restaurant_id": 1595 + }, + { + "user_id": 405, + "restaurant_id": 1352 + }, + { + "user_id": 86, + "restaurant_id": 740 + }, + { + "user_id": 648, + "restaurant_id": 160 + }, + { + "user_id": 591, + "restaurant_id": 1287 + }, + { + "user_id": 763, + "restaurant_id": 2115 + }, + { + "user_id": 879, + "restaurant_id": 419 + }, + { + "user_id": 60, + "restaurant_id": 263 + }, + { + "user_id": 839, + "restaurant_id": 1124 + }, + { + "user_id": 455, + "restaurant_id": 583 + }, + { + "user_id": 355, + "restaurant_id": 1139 + }, + { + "user_id": 246, + "restaurant_id": 1951 + }, + { + "user_id": 798, + "restaurant_id": 2157 + }, + { + "user_id": 156, + "restaurant_id": 1612 + }, + { + "user_id": 153, + "restaurant_id": 2021 + }, + { + "user_id": 111, + "restaurant_id": 1405 + }, + { + "user_id": 335, + "restaurant_id": 1833 + }, + { + "user_id": 198, + "restaurant_id": 625 + }, + { + "user_id": 413, + "restaurant_id": 812 + }, + { + "user_id": 61, + "restaurant_id": 1371 + }, + { + "user_id": 656, + "restaurant_id": 1248 + }, + { + "user_id": 965, + "restaurant_id": 2108 + }, + { + "user_id": 377, + "restaurant_id": 2124 + }, + { + "user_id": 774, + "restaurant_id": 1186 + }, + { + "user_id": 430, + "restaurant_id": 1750 + }, + { + "user_id": 972, + "restaurant_id": 1154 + }, + { + "user_id": 562, + "restaurant_id": 1028 + }, + { + "user_id": 146, + "restaurant_id": 1626 + }, + { + "user_id": 61, + "restaurant_id": 1685 + }, + { + "user_id": 73, + "restaurant_id": 1394 + }, + { + "user_id": 992, + "restaurant_id": 78 + }, + { + "user_id": 91, + "restaurant_id": 841 + }, + { + "user_id": 609, + "restaurant_id": 971 + }, + { + "user_id": 914, + "restaurant_id": 506 + }, + { + "user_id": 229, + "restaurant_id": 2060 + }, + { + "user_id": 342, + "restaurant_id": 1929 + }, + { + "user_id": 492, + "restaurant_id": 917 + }, + { + "user_id": 483, + "restaurant_id": 1412 + }, + { + "user_id": 513, + "restaurant_id": 271 + }, + { + "user_id": 732, + "restaurant_id": 82 + }, + { + "user_id": 621, + "restaurant_id": 876 + }, + { + "user_id": 979, + "restaurant_id": 1677 + }, + { + "user_id": 576, + "restaurant_id": 1452 + }, + { + "user_id": 345, + "restaurant_id": 1188 + }, + { + "user_id": 131, + "restaurant_id": 2167 + }, + { + "user_id": 174, + "restaurant_id": 1731 + }, + { + "user_id": 637, + "restaurant_id": 1937 + }, + { + "user_id": 567, + "restaurant_id": 1511 + }, + { + "user_id": 232, + "restaurant_id": 256 + }, + { + "user_id": 302, + "restaurant_id": 1878 + }, + { + "user_id": 585, + "restaurant_id": 1380 + }, + { + "user_id": 812, + "restaurant_id": 818 + }, + { + "user_id": 348, + "restaurant_id": 395 + }, + { + "user_id": 958, + "restaurant_id": 2251 + }, + { + "user_id": 343, + "restaurant_id": 664 + }, + { + "user_id": 878, + "restaurant_id": 1309 + }, + { + "user_id": 603, + "restaurant_id": 444 + }, + { + "user_id": 923, + "restaurant_id": 593 + }, + { + "user_id": 508, + "restaurant_id": 1963 + }, + { + "user_id": 1000, + "restaurant_id": 218 + }, + { + "user_id": 509, + "restaurant_id": 237 + }, + { + "user_id": 402, + "restaurant_id": 2023 + }, + { + "user_id": 562, + "restaurant_id": 460 + }, + { + "user_id": 564, + "restaurant_id": 2208 + }, + { + "user_id": 160, + "restaurant_id": 2056 + }, + { + "user_id": 527, + "restaurant_id": 43 + }, + { + "user_id": 2, + "restaurant_id": 1537 + }, + { + "user_id": 15, + "restaurant_id": 1739 + }, + { + "user_id": 57, + "restaurant_id": 1136 + }, + { + "user_id": 487, + "restaurant_id": 54 + }, + { + "user_id": 39, + "restaurant_id": 596 + }, + { + "user_id": 165, + "restaurant_id": 1839 + }, + { + "user_id": 857, + "restaurant_id": 1289 + }, + { + "user_id": 82, + "restaurant_id": 1181 + }, + { + "user_id": 962, + "restaurant_id": 891 + }, + { + "user_id": 699, + "restaurant_id": 907 + }, + { + "user_id": 830, + "restaurant_id": 303 + }, + { + "user_id": 134, + "restaurant_id": 171 + }, + { + "user_id": 670, + "restaurant_id": 1619 + }, + { + "user_id": 855, + "restaurant_id": 1466 + }, + { + "user_id": 638, + "restaurant_id": 108 + }, + { + "user_id": 208, + "restaurant_id": 968 + }, + { + "user_id": 286, + "restaurant_id": 752 + }, + { + "user_id": 154, + "restaurant_id": 728 + }, + { + "user_id": 186, + "restaurant_id": 998 + }, + { + "user_id": 102, + "restaurant_id": 498 + }, + { + "user_id": 746, + "restaurant_id": 1270 + }, + { + "user_id": 18, + "restaurant_id": 2199 + }, + { + "user_id": 64, + "restaurant_id": 2071 + }, + { + "user_id": 242, + "restaurant_id": 1403 + }, + { + "user_id": 31, + "restaurant_id": 936 + }, + { + "user_id": 422, + "restaurant_id": 784 + }, + { + "user_id": 363, + "restaurant_id": 1571 + }, + { + "user_id": 522, + "restaurant_id": 469 + }, + { + "user_id": 379, + "restaurant_id": 575 + }, + { + "user_id": 283, + "restaurant_id": 1709 + }, + { + "user_id": 450, + "restaurant_id": 1664 + }, + { + "user_id": 391, + "restaurant_id": 95 + }, + { + "user_id": 555, + "restaurant_id": 511 + }, + { + "user_id": 566, + "restaurant_id": 661 + }, + { + "user_id": 676, + "restaurant_id": 1716 + }, + { + "user_id": 221, + "restaurant_id": 1706 + }, + { + "user_id": 586, + "restaurant_id": 1644 + }, + { + "user_id": 529, + "restaurant_id": 46 + }, + { + "user_id": 769, + "restaurant_id": 182 + }, + { + "user_id": 816, + "restaurant_id": 367 + }, + { + "user_id": 362, + "restaurant_id": 90 + }, + { + "user_id": 720, + "restaurant_id": 1989 + }, + { + "user_id": 20, + "restaurant_id": 1149 + }, + { + "user_id": 277, + "restaurant_id": 636 + }, + { + "user_id": 551, + "restaurant_id": 1352 + }, + { + "user_id": 78, + "restaurant_id": 1349 + }, + { + "user_id": 893, + "restaurant_id": 518 + }, + { + "user_id": 965, + "restaurant_id": 1439 + }, + { + "user_id": 424, + "restaurant_id": 65 + }, + { + "user_id": 932, + "restaurant_id": 1754 + }, + { + "user_id": 784, + "restaurant_id": 708 + }, + { + "user_id": 23, + "restaurant_id": 2221 + }, + { + "user_id": 582, + "restaurant_id": 1794 + }, + { + "user_id": 856, + "restaurant_id": 1771 + }, + { + "user_id": 192, + "restaurant_id": 1608 + }, + { + "user_id": 701, + "restaurant_id": 772 + }, + { + "user_id": 56, + "restaurant_id": 293 + }, + { + "user_id": 382, + "restaurant_id": 726 + }, + { + "user_id": 61, + "restaurant_id": 127 + }, + { + "user_id": 269, + "restaurant_id": 420 + }, + { + "user_id": 831, + "restaurant_id": 1977 + }, + { + "user_id": 534, + "restaurant_id": 1312 + }, + { + "user_id": 157, + "restaurant_id": 2231 + }, + { + "user_id": 845, + "restaurant_id": 28 + }, + { + "user_id": 141, + "restaurant_id": 95 + }, + { + "user_id": 733, + "restaurant_id": 1216 + }, + { + "user_id": 206, + "restaurant_id": 800 + }, + { + "user_id": 373, + "restaurant_id": 1058 + }, + { + "user_id": 469, + "restaurant_id": 62 + }, + { + "user_id": 780, + "restaurant_id": 950 + }, + { + "user_id": 709, + "restaurant_id": 1787 + }, + { + "user_id": 546, + "restaurant_id": 2073 + }, + { + "user_id": 965, + "restaurant_id": 2245 + }, + { + "user_id": 22, + "restaurant_id": 2180 + }, + { + "user_id": 922, + "restaurant_id": 1199 + }, + { + "user_id": 761, + "restaurant_id": 1001 + }, + { + "user_id": 182, + "restaurant_id": 1094 + }, + { + "user_id": 155, + "restaurant_id": 1723 + }, + { + "user_id": 19, + "restaurant_id": 900 + }, + { + "user_id": 70, + "restaurant_id": 2130 + }, + { + "user_id": 506, + "restaurant_id": 1017 + }, + { + "user_id": 972, + "restaurant_id": 2019 + }, + { + "user_id": 340, + "restaurant_id": 2207 + }, + { + "user_id": 960, + "restaurant_id": 1664 + }, + { + "user_id": 893, + "restaurant_id": 1171 + }, + { + "user_id": 936, + "restaurant_id": 1595 + }, + { + "user_id": 92, + "restaurant_id": 1924 + }, + { + "user_id": 786, + "restaurant_id": 1924 + }, + { + "user_id": 648, + "restaurant_id": 1279 + }, + { + "user_id": 884, + "restaurant_id": 700 + }, + { + "user_id": 461, + "restaurant_id": 227 + }, + { + "user_id": 740, + "restaurant_id": 56 + }, + { + "user_id": 332, + "restaurant_id": 1756 + }, + { + "user_id": 413, + "restaurant_id": 1602 + }, + { + "user_id": 893, + "restaurant_id": 1280 + }, + { + "user_id": 308, + "restaurant_id": 975 + }, + { + "user_id": 58, + "restaurant_id": 466 + }, + { + "user_id": 385, + "restaurant_id": 766 + }, + { + "user_id": 612, + "restaurant_id": 908 + }, + { + "user_id": 93, + "restaurant_id": 1741 + }, + { + "user_id": 371, + "restaurant_id": 1458 + }, + { + "user_id": 103, + "restaurant_id": 738 + }, + { + "user_id": 568, + "restaurant_id": 1233 + }, + { + "user_id": 247, + "restaurant_id": 1437 + }, + { + "user_id": 888, + "restaurant_id": 1779 + }, + { + "user_id": 447, + "restaurant_id": 2060 + }, + { + "user_id": 935, + "restaurant_id": 1263 + }, + { + "user_id": 142, + "restaurant_id": 130 + }, + { + "user_id": 430, + "restaurant_id": 1017 + }, + { + "user_id": 889, + "restaurant_id": 575 + }, + { + "user_id": 331, + "restaurant_id": 420 + }, + { + "user_id": 787, + "restaurant_id": 512 + }, + { + "user_id": 545, + "restaurant_id": 926 + }, + { + "user_id": 822, + "restaurant_id": 1295 + }, + { + "user_id": 554, + "restaurant_id": 651 + }, + { + "user_id": 133, + "restaurant_id": 553 + }, + { + "user_id": 738, + "restaurant_id": 1627 + }, + { + "user_id": 867, + "restaurant_id": 1536 + }, + { + "user_id": 196, + "restaurant_id": 740 + }, + { + "user_id": 568, + "restaurant_id": 1634 + }, + { + "user_id": 532, + "restaurant_id": 2136 + }, + { + "user_id": 465, + "restaurant_id": 918 + }, + { + "user_id": 295, + "restaurant_id": 1082 + }, + { + "user_id": 604, + "restaurant_id": 900 + }, + { + "user_id": 39, + "restaurant_id": 373 + }, + { + "user_id": 853, + "restaurant_id": 789 + }, + { + "user_id": 169, + "restaurant_id": 1795 + }, + { + "user_id": 96, + "restaurant_id": 1206 + }, + { + "user_id": 909, + "restaurant_id": 1474 + }, + { + "user_id": 220, + "restaurant_id": 1592 + }, + { + "user_id": 440, + "restaurant_id": 1896 + }, + { + "user_id": 315, + "restaurant_id": 2050 + }, + { + "user_id": 200, + "restaurant_id": 596 + }, + { + "user_id": 377, + "restaurant_id": 1715 + }, + { + "user_id": 28, + "restaurant_id": 2121 + }, + { + "user_id": 791, + "restaurant_id": 800 + }, + { + "user_id": 452, + "restaurant_id": 926 + }, + { + "user_id": 861, + "restaurant_id": 1203 + }, + { + "user_id": 615, + "restaurant_id": 1141 + }, + { + "user_id": 72, + "restaurant_id": 634 + }, + { + "user_id": 881, + "restaurant_id": 442 + }, + { + "user_id": 7, + "restaurant_id": 1360 + }, + { + "user_id": 479, + "restaurant_id": 1592 + }, + { + "user_id": 361, + "restaurant_id": 251 + }, + { + "user_id": 961, + "restaurant_id": 1548 + }, + { + "user_id": 314, + "restaurant_id": 599 + }, + { + "user_id": 782, + "restaurant_id": 305 + }, + { + "user_id": 325, + "restaurant_id": 578 + }, + { + "user_id": 390, + "restaurant_id": 679 + }, + { + "user_id": 203, + "restaurant_id": 1570 + }, + { + "user_id": 54, + "restaurant_id": 1553 + }, + { + "user_id": 958, + "restaurant_id": 645 + }, + { + "user_id": 576, + "restaurant_id": 2141 + }, + { + "user_id": 928, + "restaurant_id": 1922 + }, + { + "user_id": 314, + "restaurant_id": 702 + }, + { + "user_id": 883, + "restaurant_id": 979 + }, + { + "user_id": 320, + "restaurant_id": 1858 + }, + { + "user_id": 574, + "restaurant_id": 40 + }, + { + "user_id": 120, + "restaurant_id": 1695 + }, + { + "user_id": 225, + "restaurant_id": 1114 + }, + { + "user_id": 654, + "restaurant_id": 1412 + }, + { + "user_id": 316, + "restaurant_id": 902 + }, + { + "user_id": 904, + "restaurant_id": 1145 + }, + { + "user_id": 141, + "restaurant_id": 1807 + }, + { + "user_id": 349, + "restaurant_id": 1898 + }, + { + "user_id": 302, + "restaurant_id": 1633 + }, + { + "user_id": 28, + "restaurant_id": 1222 + }, + { + "user_id": 961, + "restaurant_id": 432 + }, + { + "user_id": 826, + "restaurant_id": 136 + }, + { + "user_id": 894, + "restaurant_id": 1873 + }, + { + "user_id": 427, + "restaurant_id": 1197 + }, + { + "user_id": 163, + "restaurant_id": 1460 + }, + { + "user_id": 685, + "restaurant_id": 1079 + }, + { + "user_id": 848, + "restaurant_id": 853 + }, + { + "user_id": 38, + "restaurant_id": 452 + }, + { + "user_id": 434, + "restaurant_id": 626 + }, + { + "user_id": 361, + "restaurant_id": 866 + }, + { + "user_id": 431, + "restaurant_id": 375 + }, + { + "user_id": 149, + "restaurant_id": 3 + }, + { + "user_id": 468, + "restaurant_id": 837 + }, + { + "user_id": 808, + "restaurant_id": 848 + }, + { + "user_id": 156, + "restaurant_id": 1011 + }, + { + "user_id": 904, + "restaurant_id": 954 + }, + { + "user_id": 255, + "restaurant_id": 313 + }, + { + "user_id": 600, + "restaurant_id": 10 + }, + { + "user_id": 346, + "restaurant_id": 544 + }, + { + "user_id": 388, + "restaurant_id": 1914 + }, + { + "user_id": 774, + "restaurant_id": 1347 + }, + { + "user_id": 941, + "restaurant_id": 897 + }, + { + "user_id": 630, + "restaurant_id": 402 + }, + { + "user_id": 112, + "restaurant_id": 946 + }, + { + "user_id": 30, + "restaurant_id": 1560 + }, + { + "user_id": 364, + "restaurant_id": 1508 + }, + { + "user_id": 936, + "restaurant_id": 1514 + }, + { + "user_id": 948, + "restaurant_id": 603 + }, + { + "user_id": 28, + "restaurant_id": 15 + }, + { + "user_id": 326, + "restaurant_id": 554 + }, + { + "user_id": 944, + "restaurant_id": 678 + }, + { + "user_id": 470, + "restaurant_id": 2052 + }, + { + "user_id": 184, + "restaurant_id": 204 + }, + { + "user_id": 581, + "restaurant_id": 783 + }, + { + "user_id": 493, + "restaurant_id": 1667 + }, + { + "user_id": 693, + "restaurant_id": 1491 + }, + { + "user_id": 576, + "restaurant_id": 1269 + }, + { + "user_id": 236, + "restaurant_id": 1091 + }, + { + "user_id": 411, + "restaurant_id": 1791 + }, + { + "user_id": 165, + "restaurant_id": 1203 + }, + { + "user_id": 907, + "restaurant_id": 1655 + }, + { + "user_id": 304, + "restaurant_id": 1325 + }, + { + "user_id": 856, + "restaurant_id": 326 + }, + { + "user_id": 192, + "restaurant_id": 917 + }, + { + "user_id": 877, + "restaurant_id": 800 + }, + { + "user_id": 383, + "restaurant_id": 661 + }, + { + "user_id": 407, + "restaurant_id": 6 + }, + { + "user_id": 743, + "restaurant_id": 2114 + }, + { + "user_id": 863, + "restaurant_id": 88 + }, + { + "user_id": 423, + "restaurant_id": 2119 + }, + { + "user_id": 94, + "restaurant_id": 1992 + }, + { + "user_id": 379, + "restaurant_id": 48 + }, + { + "user_id": 508, + "restaurant_id": 1994 + }, + { + "user_id": 868, + "restaurant_id": 480 + }, + { + "user_id": 454, + "restaurant_id": 1711 + }, + { + "user_id": 638, + "restaurant_id": 363 + }, + { + "user_id": 176, + "restaurant_id": 425 + }, + { + "user_id": 609, + "restaurant_id": 2100 + }, + { + "user_id": 21, + "restaurant_id": 112 + }, + { + "user_id": 480, + "restaurant_id": 1257 + }, + { + "user_id": 702, + "restaurant_id": 414 + }, + { + "user_id": 660, + "restaurant_id": 1285 + }, + { + "user_id": 986, + "restaurant_id": 762 + }, + { + "user_id": 378, + "restaurant_id": 390 + }, + { + "user_id": 512, + "restaurant_id": 377 + }, + { + "user_id": 789, + "restaurant_id": 577 + }, + { + "user_id": 818, + "restaurant_id": 102 + }, + { + "user_id": 650, + "restaurant_id": 1624 + }, + { + "user_id": 306, + "restaurant_id": 1095 + }, + { + "user_id": 119, + "restaurant_id": 1072 + }, + { + "user_id": 996, + "restaurant_id": 370 + }, + { + "user_id": 759, + "restaurant_id": 641 + }, + { + "user_id": 741, + "restaurant_id": 1798 + }, + { + "user_id": 993, + "restaurant_id": 544 + }, + { + "user_id": 569, + "restaurant_id": 1492 + }, + { + "user_id": 136, + "restaurant_id": 663 + }, + { + "user_id": 717, + "restaurant_id": 2128 + }, + { + "user_id": 694, + "restaurant_id": 625 + }, + { + "user_id": 317, + "restaurant_id": 1346 + }, + { + "user_id": 588, + "restaurant_id": 1013 + }, + { + "user_id": 862, + "restaurant_id": 1407 + }, + { + "user_id": 111, + "restaurant_id": 1480 + }, + { + "user_id": 749, + "restaurant_id": 542 + }, + { + "user_id": 553, + "restaurant_id": 1943 + }, + { + "user_id": 739, + "restaurant_id": 2054 + }, + { + "user_id": 124, + "restaurant_id": 814 + }, + { + "user_id": 421, + "restaurant_id": 25 + }, + { + "user_id": 929, + "restaurant_id": 47 + }, + { + "user_id": 446, + "restaurant_id": 788 + }, + { + "user_id": 317, + "restaurant_id": 1406 + }, + { + "user_id": 692, + "restaurant_id": 916 + }, + { + "user_id": 984, + "restaurant_id": 87 + }, + { + "user_id": 622, + "restaurant_id": 1320 + }, + { + "user_id": 256, + "restaurant_id": 2129 + }, + { + "user_id": 113, + "restaurant_id": 1851 + }, + { + "user_id": 532, + "restaurant_id": 1950 + }, + { + "user_id": 752, + "restaurant_id": 599 + }, + { + "user_id": 480, + "restaurant_id": 711 + }, + { + "user_id": 658, + "restaurant_id": 1725 + }, + { + "user_id": 810, + "restaurant_id": 1952 + }, + { + "user_id": 721, + "restaurant_id": 44 + }, + { + "user_id": 912, + "restaurant_id": 326 + }, + { + "user_id": 602, + "restaurant_id": 1233 + }, + { + "user_id": 960, + "restaurant_id": 1002 + }, + { + "user_id": 266, + "restaurant_id": 1245 + }, + { + "user_id": 162, + "restaurant_id": 1114 + }, + { + "user_id": 483, + "restaurant_id": 1623 + }, + { + "user_id": 254, + "restaurant_id": 362 + }, + { + "user_id": 937, + "restaurant_id": 1582 + }, + { + "user_id": 405, + "restaurant_id": 46 + }, + { + "user_id": 213, + "restaurant_id": 551 + }, + { + "user_id": 742, + "restaurant_id": 1057 + }, + { + "user_id": 630, + "restaurant_id": 1807 + }, + { + "user_id": 128, + "restaurant_id": 2024 + }, + { + "user_id": 635, + "restaurant_id": 2012 + }, + { + "user_id": 529, + "restaurant_id": 303 + }, + { + "user_id": 802, + "restaurant_id": 452 + }, + { + "user_id": 573, + "restaurant_id": 460 + }, + { + "user_id": 643, + "restaurant_id": 150 + }, + { + "user_id": 545, + "restaurant_id": 1353 + }, + { + "user_id": 574, + "restaurant_id": 2236 + }, + { + "user_id": 423, + "restaurant_id": 2212 + }, + { + "user_id": 941, + "restaurant_id": 1998 + }, + { + "user_id": 532, + "restaurant_id": 2097 + }, + { + "user_id": 706, + "restaurant_id": 390 + }, + { + "user_id": 585, + "restaurant_id": 893 + }, + { + "user_id": 994, + "restaurant_id": 1184 + }, + { + "user_id": 567, + "restaurant_id": 585 + }, + { + "user_id": 465, + "restaurant_id": 212 + }, + { + "user_id": 593, + "restaurant_id": 994 + }, + { + "user_id": 662, + "restaurant_id": 306 + }, + { + "user_id": 439, + "restaurant_id": 277 + }, + { + "user_id": 173, + "restaurant_id": 477 + }, + { + "user_id": 398, + "restaurant_id": 1165 + }, + { + "user_id": 541, + "restaurant_id": 42 + }, + { + "user_id": 555, + "restaurant_id": 1000 + }, + { + "user_id": 969, + "restaurant_id": 580 + }, + { + "user_id": 935, + "restaurant_id": 1271 + }, + { + "user_id": 648, + "restaurant_id": 2070 + }, + { + "user_id": 956, + "restaurant_id": 420 + }, + { + "user_id": 877, + "restaurant_id": 332 + }, + { + "user_id": 589, + "restaurant_id": 1408 + }, + { + "user_id": 288, + "restaurant_id": 618 + }, + { + "user_id": 548, + "restaurant_id": 1535 + }, + { + "user_id": 300, + "restaurant_id": 1054 + }, + { + "user_id": 857, + "restaurant_id": 2203 + }, + { + "user_id": 182, + "restaurant_id": 32 + }, + { + "user_id": 403, + "restaurant_id": 635 + }, + { + "user_id": 56, + "restaurant_id": 55 + }, + { + "user_id": 785, + "restaurant_id": 2238 + }, + { + "user_id": 488, + "restaurant_id": 2067 + }, + { + "user_id": 286, + "restaurant_id": 777 + }, + { + "user_id": 993, + "restaurant_id": 19 + }, + { + "user_id": 122, + "restaurant_id": 1475 + }, + { + "user_id": 615, + "restaurant_id": 922 + }, + { + "user_id": 853, + "restaurant_id": 1660 + }, + { + "user_id": 843, + "restaurant_id": 1035 + }, + { + "user_id": 537, + "restaurant_id": 1003 + }, + { + "user_id": 361, + "restaurant_id": 2033 + }, + { + "user_id": 915, + "restaurant_id": 1737 + }, + { + "user_id": 772, + "restaurant_id": 916 + }, + { + "user_id": 892, + "restaurant_id": 865 + }, + { + "user_id": 651, + "restaurant_id": 1264 + }, + { + "user_id": 878, + "restaurant_id": 1282 + }, + { + "user_id": 53, + "restaurant_id": 1541 + }, + { + "user_id": 28, + "restaurant_id": 1670 + }, + { + "user_id": 829, + "restaurant_id": 1438 + }, + { + "user_id": 486, + "restaurant_id": 1232 + }, + { + "user_id": 293, + "restaurant_id": 348 + }, + { + "user_id": 515, + "restaurant_id": 2188 + }, + { + "user_id": 356, + "restaurant_id": 914 + }, + { + "user_id": 435, + "restaurant_id": 58 + }, + { + "user_id": 714, + "restaurant_id": 486 + }, + { + "user_id": 954, + "restaurant_id": 1153 + }, + { + "user_id": 576, + "restaurant_id": 1958 + }, + { + "user_id": 302, + "restaurant_id": 1582 + }, + { + "user_id": 746, + "restaurant_id": 1689 + }, + { + "user_id": 302, + "restaurant_id": 702 + }, + { + "user_id": 390, + "restaurant_id": 670 + }, + { + "user_id": 723, + "restaurant_id": 1178 + } +] \ No newline at end of file diff --git a/storage/input_json/user/preprocessed_user_features.csv b/storage/input_json/user/preprocessed_user_features.csv new file mode 100644 index 0000000..2a62b1d --- /dev/null +++ b/storage/input_json/user/preprocessed_user_features.csv @@ -0,0 +1,2 @@ +user_id,max_price,category_1,category_2,category_3,category_4,category_5,category_6,category_7,category_8,category_9,category_10,category_11,category_12,completed_reservations,total_likes,like_to_reservation_ratio,reservation_completion_rate +unknown_-4580132172815479701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0,0 diff --git a/storage/input_json/user/recsys_data_20250330_212302.json b/storage/input_json/user/recsys_data_20250330_212302.json new file mode 100644 index 0000000..91b1566 --- /dev/null +++ b/storage/input_json/user/recsys_data_20250330_212302.json @@ -0,0 +1,59438 @@ +[ + { + "user_info": { + "user_id": 1, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 1, + "min_price": 183646, + "max_price": 286141, + "preferred_categories": [ + 2, + 3, + 11 + ], + "_id": "67e92bc2785211cbd5ff982d" + }, + "reservations": [ + { + "user_id": 1, + "restaurant_id": 912, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 1, + "restaurant_id": 1528, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 1, + "restaurant_id": 941, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 1, + "restaurant_id": 2155, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 1, + "restaurant_id": 985 + }, + { + "user_id": 1, + "restaurant_id": 1598 + }, + { + "user_id": 1, + "restaurant_id": 560 + } + ], + "updated_at": "2025-03-30T11:32:18.948000" + }, + { + "user_info": { + "user_id": 2, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 2, + "min_price": 170838, + "max_price": 444065, + "preferred_categories": [ + 6, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff982e" + }, + "reservations": [ + { + "user_id": 2, + "restaurant_id": 1222, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 2, + "restaurant_id": 1516, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 2, + "restaurant_id": 633 + }, + { + "user_id": 2, + "restaurant_id": 1296 + }, + { + "user_id": 2, + "restaurant_id": 1537 + } + ], + "updated_at": "2025-03-30T11:32:18.951000" + }, + { + "user_info": { + "user_id": 3, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 3, + "min_price": 79971, + "max_price": 395779, + "preferred_categories": [ + 3, + 4, + 7 + ], + "_id": "67e92bc2785211cbd5ff982f" + }, + "reservations": [ + { + "user_id": 3, + "restaurant_id": 1689, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 3, + "restaurant_id": 2101 + }, + { + "user_id": 3, + "restaurant_id": 349 + } + ], + "updated_at": "2025-03-30T11:32:18.955000" + }, + { + "user_info": { + "user_id": 4, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 4, + "min_price": 82759, + "max_price": 200419, + "preferred_categories": [ + 1, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9830" + }, + "reservations": [ + { + "user_id": 4, + "restaurant_id": 534, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 4, + "restaurant_id": 1509, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 4, + "restaurant_id": 1682, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 4, + "restaurant_id": 815, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 4, + "restaurant_id": 721 + }, + { + "user_id": 4, + "restaurant_id": 718 + }, + { + "user_id": 4, + "restaurant_id": 1105 + } + ], + "updated_at": "2025-03-30T11:32:18.958000" + }, + { + "user_info": { + "user_id": 5, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 5, + "min_price": 147700, + "max_price": 341399, + "preferred_categories": [ + 3, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9831" + }, + "reservations": [ + { + "user_id": 5, + "restaurant_id": 2014, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 5, + "restaurant_id": 1359 + }, + { + "user_id": 5, + "restaurant_id": 1374 + } + ], + "updated_at": "2025-03-30T11:32:18.968000" + }, + { + "user_info": { + "user_id": 6, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 6, + "min_price": 159625, + "max_price": 304138, + "preferred_categories": [ + 2, + 3, + 5 + ], + "_id": "67e92bc2785211cbd5ff9832" + }, + "reservations": [ + { + "user_id": 6, + "restaurant_id": 2182, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 6, + "restaurant_id": 2107, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 6, + "restaurant_id": 1037, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 6, + "restaurant_id": 641, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 6, + "restaurant_id": 1074, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:18.973000" + }, + { + "user_info": { + "user_id": 7, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 7, + "min_price": 151460, + "max_price": 338378, + "preferred_categories": [ + 1, + 6, + 12 + ], + "_id": "67e92bc2785211cbd5ff9833" + }, + "reservations": [ + { + "user_id": 7, + "restaurant_id": 2163, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 7, + "restaurant_id": 1326 + }, + { + "user_id": 7, + "restaurant_id": 1053 + }, + { + "user_id": 7, + "restaurant_id": 1999 + }, + { + "user_id": 7, + "restaurant_id": 1613 + }, + { + "user_id": 7, + "restaurant_id": 1085 + }, + { + "user_id": 7, + "restaurant_id": 1360 + } + ], + "updated_at": "2025-03-30T11:32:18.976000" + }, + { + "user_info": { + "user_id": 8, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 8, + "min_price": 66889, + "max_price": 376584, + "preferred_categories": [ + 7, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9834" + }, + "reservations": [ + { + "user_id": 8, + "restaurant_id": 180, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 8, + "restaurant_id": 2184, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 8, + "restaurant_id": 1667 + } + ], + "updated_at": "2025-03-30T11:32:18.979000" + }, + { + "user_info": { + "user_id": 9, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 9, + "min_price": 91158, + "max_price": 393014, + "preferred_categories": [ + 4, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9835" + }, + "reservations": [ + { + "user_id": 9, + "restaurant_id": 2139, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 9, + "restaurant_id": 741 + }, + { + "user_id": 9, + "restaurant_id": 335 + } + ], + "updated_at": "2025-03-30T11:32:18.981000" + }, + { + "user_info": { + "user_id": 10, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 10, + "min_price": 170163, + "max_price": 267487, + "preferred_categories": [ + 3, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff9836" + }, + "reservations": [], + "likes": [ + { + "user_id": 10, + "restaurant_id": 125 + }, + { + "user_id": 10, + "restaurant_id": 353 + }, + { + "user_id": 10, + "restaurant_id": 1385 + }, + { + "user_id": 10, + "restaurant_id": 674 + } + ], + "updated_at": "2025-03-30T11:32:18.985000" + }, + { + "user_info": { + "user_id": 11, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 11, + "min_price": 29163, + "max_price": 470524, + "preferred_categories": [ + 1, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9837" + }, + "reservations": [ + { + "user_id": 11, + "restaurant_id": 1441, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 11, + "restaurant_id": 618, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 11, + "restaurant_id": 1979, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 11, + "restaurant_id": 1073 + }, + { + "user_id": 11, + "restaurant_id": 330 + } + ], + "updated_at": "2025-03-30T11:32:18.988000" + }, + { + "user_info": { + "user_id": 12, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 12, + "min_price": 142652, + "max_price": 446869, + "preferred_categories": [ + 2, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9838" + }, + "reservations": [ + { + "user_id": 12, + "restaurant_id": 2097, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 12, + "restaurant_id": 2096, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 12, + "restaurant_id": 649, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 12, + "restaurant_id": 1914 + }, + { + "user_id": 12, + "restaurant_id": 336 + } + ], + "updated_at": "2025-03-30T11:32:18.992000" + }, + { + "user_info": { + "user_id": 13, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 13, + "min_price": 185816, + "max_price": 351840, + "preferred_categories": [ + 2, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff9839" + }, + "reservations": [ + { + "user_id": 13, + "restaurant_id": 1666, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 13, + "restaurant_id": 96, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 13, + "restaurant_id": 601, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 13, + "restaurant_id": 270, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 13, + "restaurant_id": 119 + }, + { + "user_id": 13, + "restaurant_id": 523 + }, + { + "user_id": 13, + "restaurant_id": 1967 + } + ], + "updated_at": "2025-03-30T11:32:18.997000" + }, + { + "user_info": { + "user_id": 14, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 14, + "min_price": 38329, + "max_price": 332509, + "preferred_categories": [ + 7, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff983a" + }, + "reservations": [ + { + "user_id": 14, + "restaurant_id": 1663, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 14, + "restaurant_id": 2145 + }, + { + "user_id": 14, + "restaurant_id": 801 + }, + { + "user_id": 14, + "restaurant_id": 1849 + } + ], + "updated_at": "2025-03-30T11:32:19.001000" + }, + { + "user_info": { + "user_id": 15, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 15, + "min_price": 59156, + "max_price": 266941, + "preferred_categories": [ + 2, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff983b" + }, + "reservations": [ + { + "user_id": 15, + "restaurant_id": 1757, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 15, + "restaurant_id": 676, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 15, + "restaurant_id": 561, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 15, + "restaurant_id": 1852, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 15, + "restaurant_id": 1158, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 15, + "restaurant_id": 2202, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 15, + "restaurant_id": 1350 + }, + { + "user_id": 15, + "restaurant_id": 1515 + }, + { + "user_id": 15, + "restaurant_id": 979 + }, + { + "user_id": 15, + "restaurant_id": 573 + }, + { + "user_id": 15, + "restaurant_id": 1739 + } + ], + "updated_at": "2025-03-30T11:32:19.007000" + }, + { + "user_info": { + "user_id": 16, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 16, + "min_price": 194701, + "max_price": 337197, + "preferred_categories": [ + 1, + 2, + 9 + ], + "_id": "67e92bc2785211cbd5ff983c" + }, + "reservations": [ + { + "user_id": 16, + "restaurant_id": 1563, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 16, + "restaurant_id": 1461 + }, + { + "user_id": 16, + "restaurant_id": 588 + }, + { + "user_id": 16, + "restaurant_id": 2069 + }, + { + "user_id": 16, + "restaurant_id": 2095 + } + ], + "updated_at": "2025-03-30T11:32:19.011000" + }, + { + "user_info": { + "user_id": 17, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 17, + "min_price": 85248, + "max_price": 481858, + "preferred_categories": [ + 3, + 4, + 10 + ], + "_id": "67e92bc2785211cbd5ff983d" + }, + "reservations": [ + { + "user_id": 17, + "restaurant_id": 784, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 17, + "restaurant_id": 1182 + }, + { + "user_id": 17, + "restaurant_id": 700 + }, + { + "user_id": 17, + "restaurant_id": 1090 + } + ], + "updated_at": "2025-03-30T11:32:19.015000" + }, + { + "user_info": { + "user_id": 18, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 18, + "min_price": 36257, + "max_price": 282926, + "preferred_categories": [ + 1, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff983e" + }, + "reservations": [ + { + "user_id": 18, + "restaurant_id": 1587, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 18, + "restaurant_id": 754 + }, + { + "user_id": 18, + "restaurant_id": 1372 + }, + { + "user_id": 18, + "restaurant_id": 133 + }, + { + "user_id": 18, + "restaurant_id": 100 + }, + { + "user_id": 18, + "restaurant_id": 2199 + } + ], + "updated_at": "2025-03-30T11:32:19.020000" + }, + { + "user_info": { + "user_id": 19, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 19, + "min_price": 197901, + "max_price": 327603, + "preferred_categories": [ + 1, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff983f" + }, + "reservations": [ + { + "user_id": 19, + "restaurant_id": 118, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 19, + "restaurant_id": 677, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 19, + "restaurant_id": 369, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 19, + "restaurant_id": 1768, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 19, + "restaurant_id": 1359 + }, + { + "user_id": 19, + "restaurant_id": 900 + } + ], + "updated_at": "2025-03-30T11:32:19.027000" + }, + { + "user_info": { + "user_id": 20, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 20, + "min_price": 166283, + "max_price": 292092, + "preferred_categories": [ + 2, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9840" + }, + "reservations": [ + { + "user_id": 20, + "restaurant_id": 1362, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 20, + "restaurant_id": 1933, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 20, + "restaurant_id": 1661, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 20, + "restaurant_id": 2192, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 20, + "restaurant_id": 82, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 20, + "restaurant_id": 2063 + }, + { + "user_id": 20, + "restaurant_id": 1019 + }, + { + "user_id": 20, + "restaurant_id": 1267 + }, + { + "user_id": 20, + "restaurant_id": 1149 + } + ], + "updated_at": "2025-03-30T11:32:19.032000" + }, + { + "user_info": { + "user_id": 21, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 21, + "min_price": 28934, + "max_price": 353557, + "preferred_categories": [ + 3, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9841" + }, + "reservations": [ + { + "user_id": 21, + "restaurant_id": 961, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 21, + "restaurant_id": 112 + } + ], + "updated_at": "2025-03-30T11:32:19.036000" + }, + { + "user_info": { + "user_id": 22, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 22, + "min_price": 167451, + "max_price": 319083, + "preferred_categories": [ + 2, + 3, + 10 + ], + "_id": "67e92bc2785211cbd5ff9842" + }, + "reservations": [ + { + "user_id": 22, + "restaurant_id": 1067, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 22, + "restaurant_id": 2141, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 22, + "restaurant_id": 2013, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 22, + "restaurant_id": 1457 + }, + { + "user_id": 22, + "restaurant_id": 1504 + }, + { + "user_id": 22, + "restaurant_id": 2030 + }, + { + "user_id": 22, + "restaurant_id": 2180 + } + ], + "updated_at": "2025-03-30T11:32:19.039000" + }, + { + "user_info": { + "user_id": 23, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 23, + "min_price": 72379, + "max_price": 295629, + "preferred_categories": [ + 3, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9843" + }, + "reservations": [ + { + "user_id": 23, + "restaurant_id": 1839, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 23, + "restaurant_id": 682 + }, + { + "user_id": 23, + "restaurant_id": 1451 + }, + { + "user_id": 23, + "restaurant_id": 111 + }, + { + "user_id": 23, + "restaurant_id": 2221 + } + ], + "updated_at": "2025-03-30T11:32:19.042000" + }, + { + "user_info": { + "user_id": 24, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 24, + "min_price": 95305, + "max_price": 279131, + "preferred_categories": [ + 4, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9844" + }, + "reservations": [ + { + "user_id": 24, + "restaurant_id": 781, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 24, + "restaurant_id": 340, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 24, + "restaurant_id": 1232 + }, + { + "user_id": 24, + "restaurant_id": 1048 + }, + { + "user_id": 24, + "restaurant_id": 1054 + }, + { + "user_id": 24, + "restaurant_id": 1448 + }, + { + "user_id": 24, + "restaurant_id": 968 + }, + { + "user_id": 24, + "restaurant_id": 1430 + }, + { + "user_id": 24, + "restaurant_id": 738 + }, + { + "user_id": 24, + "restaurant_id": 1554 + } + ], + "updated_at": "2025-03-30T11:32:19.045000" + }, + { + "user_info": { + "user_id": 25, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 25, + "min_price": 106565, + "max_price": 233947, + "preferred_categories": [ + 3, + 6, + 12 + ], + "_id": "67e92bc2785211cbd5ff9845" + }, + "reservations": [ + { + "user_id": 25, + "restaurant_id": 180, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 25, + "restaurant_id": 728, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 25, + "restaurant_id": 1537, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 25, + "restaurant_id": 956 + }, + { + "user_id": 25, + "restaurant_id": 1386 + } + ], + "updated_at": "2025-03-30T11:32:19.048000" + }, + { + "user_info": { + "user_id": 26, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 26, + "min_price": 180902, + "max_price": 288981, + "preferred_categories": [ + 1, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9846" + }, + "reservations": [ + { + "user_id": 26, + "restaurant_id": 1313, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 26, + "restaurant_id": 1615 + }, + { + "user_id": 26, + "restaurant_id": 2106 + }, + { + "user_id": 26, + "restaurant_id": 1939 + } + ], + "updated_at": "2025-03-30T11:32:19.053000" + }, + { + "user_info": { + "user_id": 27, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 27, + "min_price": 187129, + "max_price": 254815, + "preferred_categories": [ + 1, + 2, + 9 + ], + "_id": "67e92bc2785211cbd5ff9847" + }, + "reservations": [ + { + "user_id": 27, + "restaurant_id": 1860, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 27, + "restaurant_id": 1349 + }, + { + "user_id": 27, + "restaurant_id": 2079 + }, + { + "user_id": 27, + "restaurant_id": 1994 + }, + { + "user_id": 27, + "restaurant_id": 2048 + } + ], + "updated_at": "2025-03-30T11:32:19.056000" + }, + { + "user_info": { + "user_id": 28, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 28, + "min_price": 169312, + "max_price": 403490, + "preferred_categories": [ + 4, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9848" + }, + "reservations": [ + { + "user_id": 28, + "restaurant_id": 446, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 28, + "restaurant_id": 890, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 28, + "restaurant_id": 1519, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 28, + "restaurant_id": 2057, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 28, + "restaurant_id": 1383, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 28, + "restaurant_id": 1977 + }, + { + "user_id": 28, + "restaurant_id": 1014 + }, + { + "user_id": 28, + "restaurant_id": 443 + }, + { + "user_id": 28, + "restaurant_id": 660 + }, + { + "user_id": 28, + "restaurant_id": 1651 + }, + { + "user_id": 28, + "restaurant_id": 1950 + }, + { + "user_id": 28, + "restaurant_id": 608 + }, + { + "user_id": 28, + "restaurant_id": 703 + }, + { + "user_id": 28, + "restaurant_id": 312 + }, + { + "user_id": 28, + "restaurant_id": 2121 + }, + { + "user_id": 28, + "restaurant_id": 1222 + }, + { + "user_id": 28, + "restaurant_id": 15 + }, + { + "user_id": 28, + "restaurant_id": 1670 + } + ], + "updated_at": "2025-03-30T11:32:19.058000" + }, + { + "user_info": { + "user_id": 29, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 29, + "min_price": 151914, + "max_price": 403053, + "preferred_categories": [ + 7, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9849" + }, + "reservations": [ + { + "user_id": 29, + "restaurant_id": 318, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 29, + "restaurant_id": 1570, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 29, + "restaurant_id": 642 + }, + { + "user_id": 29, + "restaurant_id": 579 + }, + { + "user_id": 29, + "restaurant_id": 69 + } + ], + "updated_at": "2025-03-30T11:32:19.061000" + }, + { + "user_info": { + "user_id": 30, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 30, + "min_price": 133174, + "max_price": 227881, + "preferred_categories": [ + 4, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff984a" + }, + "reservations": [ + { + "user_id": 30, + "restaurant_id": 152, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 30, + "restaurant_id": 1166, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 30, + "restaurant_id": 502, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 30, + "restaurant_id": 899 + }, + { + "user_id": 30, + "restaurant_id": 1560 + } + ], + "updated_at": "2025-03-30T11:32:19.067000" + }, + { + "user_info": { + "user_id": 31, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 31, + "min_price": 88090, + "max_price": 207906, + "preferred_categories": [ + 3, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff984b" + }, + "reservations": [ + { + "user_id": 31, + "restaurant_id": 1779, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 31, + "restaurant_id": 1171 + }, + { + "user_id": 31, + "restaurant_id": 1097 + }, + { + "user_id": 31, + "restaurant_id": 1375 + }, + { + "user_id": 31, + "restaurant_id": 1425 + }, + { + "user_id": 31, + "restaurant_id": 936 + } + ], + "updated_at": "2025-03-30T11:32:19.070000" + }, + { + "user_info": { + "user_id": 32, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 32, + "min_price": 97183, + "max_price": 270292, + "preferred_categories": [ + 2, + 3, + 10 + ], + "_id": "67e92bc2785211cbd5ff984c" + }, + "reservations": [ + { + "user_id": 32, + "restaurant_id": 446, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 32, + "restaurant_id": 2199, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 32, + "restaurant_id": 278 + }, + { + "user_id": 32, + "restaurant_id": 759 + }, + { + "user_id": 32, + "restaurant_id": 1108 + } + ], + "updated_at": "2025-03-30T11:32:19.077000" + }, + { + "user_info": { + "user_id": 33, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 33, + "min_price": 89280, + "max_price": 403876, + "preferred_categories": [ + 8, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff984d" + }, + "reservations": [ + { + "user_id": 33, + "restaurant_id": 2078, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 33, + "restaurant_id": 1633, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 33, + "restaurant_id": 1747, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 33, + "restaurant_id": 868 + }, + { + "user_id": 33, + "restaurant_id": 2055 + } + ], + "updated_at": "2025-03-30T11:32:19.080000" + }, + { + "user_info": { + "user_id": 34, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 34, + "min_price": 61746, + "max_price": 312422, + "preferred_categories": [ + 3, + 4, + 10 + ], + "_id": "67e92bc2785211cbd5ff984e" + }, + "reservations": [ + { + "user_id": 34, + "restaurant_id": 920, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 34, + "restaurant_id": 1068, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 34, + "restaurant_id": 744, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 34, + "restaurant_id": 1028 + }, + { + "user_id": 34, + "restaurant_id": 526 + }, + { + "user_id": 34, + "restaurant_id": 1471 + }, + { + "user_id": 34, + "restaurant_id": 158 + } + ], + "updated_at": "2025-03-30T11:32:19.082000" + }, + { + "user_info": { + "user_id": 35, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 35, + "min_price": 109942, + "max_price": 369064, + "preferred_categories": [ + 6, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff984f" + }, + "reservations": [ + { + "user_id": 35, + "restaurant_id": 1786, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 35, + "restaurant_id": 301, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 35, + "restaurant_id": 481, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 35, + "restaurant_id": 1877 + }, + { + "user_id": 35, + "restaurant_id": 1066 + }, + { + "user_id": 35, + "restaurant_id": 748 + }, + { + "user_id": 35, + "restaurant_id": 956 + } + ], + "updated_at": "2025-03-30T11:32:19.086000" + }, + { + "user_info": { + "user_id": 36, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 36, + "min_price": 110323, + "max_price": 493736, + "preferred_categories": [ + 2, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff9850" + }, + "reservations": [ + { + "user_id": 36, + "restaurant_id": 25, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 36, + "restaurant_id": 1888 + } + ], + "updated_at": "2025-03-30T11:32:19.089000" + }, + { + "user_info": { + "user_id": 37, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 37, + "min_price": 35055, + "max_price": 469280, + "preferred_categories": [ + 1, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9851" + }, + "reservations": [ + { + "user_id": 37, + "restaurant_id": 44, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 37, + "restaurant_id": 741 + }, + { + "user_id": 37, + "restaurant_id": 1090 + } + ], + "updated_at": "2025-03-30T11:32:19.092000" + }, + { + "user_info": { + "user_id": 38, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 38, + "min_price": 61187, + "max_price": 484502, + "preferred_categories": [ + 1, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9852" + }, + "reservations": [ + { + "user_id": 38, + "restaurant_id": 375, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 38, + "restaurant_id": 1101, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 38, + "restaurant_id": 395 + }, + { + "user_id": 38, + "restaurant_id": 1852 + }, + { + "user_id": 38, + "restaurant_id": 1554 + }, + { + "user_id": 38, + "restaurant_id": 452 + } + ], + "updated_at": "2025-03-30T11:32:19.095000" + }, + { + "user_info": { + "user_id": 39, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 39, + "min_price": 164628, + "max_price": 311737, + "preferred_categories": [ + 4, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9853" + }, + "reservations": [ + { + "user_id": 39, + "restaurant_id": 790, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 39, + "restaurant_id": 437 + }, + { + "user_id": 39, + "restaurant_id": 267 + }, + { + "user_id": 39, + "restaurant_id": 379 + }, + { + "user_id": 39, + "restaurant_id": 354 + }, + { + "user_id": 39, + "restaurant_id": 596 + }, + { + "user_id": 39, + "restaurant_id": 373 + } + ], + "updated_at": "2025-03-30T11:32:19.099000" + }, + { + "user_info": { + "user_id": 40, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 40, + "min_price": 199747, + "max_price": 238578, + "preferred_categories": [ + 4, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9854" + }, + "reservations": [ + { + "user_id": 40, + "restaurant_id": 1048, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 40, + "restaurant_id": 1963, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 40, + "restaurant_id": 1815, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 40, + "restaurant_id": 420, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:19.102000" + }, + { + "user_info": { + "user_id": 41, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 41, + "min_price": 124228, + "max_price": 492507, + "preferred_categories": [ + 4, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9855" + }, + "reservations": [ + { + "user_id": 41, + "restaurant_id": 307, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 41, + "restaurant_id": 676, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 41, + "restaurant_id": 631, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 41, + "restaurant_id": 280, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 41, + "restaurant_id": 1507, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 41, + "restaurant_id": 1319, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 41, + "restaurant_id": 2032, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 41, + "restaurant_id": 1923 + }, + { + "user_id": 41, + "restaurant_id": 1103 + } + ], + "updated_at": "2025-03-30T11:32:19.105000" + }, + { + "user_info": { + "user_id": 42, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 42, + "min_price": 87199, + "max_price": 274639, + "preferred_categories": [ + 2, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9856" + }, + "reservations": [ + { + "user_id": 42, + "restaurant_id": 1770, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 42, + "restaurant_id": 151, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 42, + "restaurant_id": 134, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 42, + "restaurant_id": 2134 + }, + { + "user_id": 42, + "restaurant_id": 1411 + }, + { + "user_id": 42, + "restaurant_id": 717 + }, + { + "user_id": 42, + "restaurant_id": 1814 + } + ], + "updated_at": "2025-03-30T11:32:19.108000" + }, + { + "user_info": { + "user_id": 43, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 43, + "min_price": 35046, + "max_price": 380147, + "preferred_categories": [ + 4, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9857" + }, + "reservations": [ + { + "user_id": 43, + "restaurant_id": 1235, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 43, + "restaurant_id": 401, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 43, + "restaurant_id": 178 + }, + { + "user_id": 43, + "restaurant_id": 1399 + }, + { + "user_id": 43, + "restaurant_id": 1188 + }, + { + "user_id": 43, + "restaurant_id": 1988 + } + ], + "updated_at": "2025-03-30T11:32:19.119000" + }, + { + "user_info": { + "user_id": 44, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 44, + "min_price": 141179, + "max_price": 422839, + "preferred_categories": [ + 8, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9858" + }, + "reservations": [ + { + "user_id": 44, + "restaurant_id": 699, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 44, + "restaurant_id": 686, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 44, + "restaurant_id": 1815 + }, + { + "user_id": 44, + "restaurant_id": 641 + } + ], + "updated_at": "2025-03-30T11:32:19.127000" + }, + { + "user_info": { + "user_id": 45, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 45, + "min_price": 131248, + "max_price": 473654, + "preferred_categories": [ + 4, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9859" + }, + "reservations": [ + { + "user_id": 45, + "restaurant_id": 617, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 45, + "restaurant_id": 1258, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 45, + "restaurant_id": 982 + }, + { + "user_id": 45, + "restaurant_id": 1705 + }, + { + "user_id": 45, + "restaurant_id": 107 + }, + { + "user_id": 45, + "restaurant_id": 2156 + } + ], + "updated_at": "2025-03-30T11:32:19.144000" + }, + { + "user_info": { + "user_id": 46, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 46, + "min_price": 54614, + "max_price": 410500, + "preferred_categories": [ + 4, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff985a" + }, + "reservations": [], + "likes": [ + { + "user_id": 46, + "restaurant_id": 224 + }, + { + "user_id": 46, + "restaurant_id": 1854 + }, + { + "user_id": 46, + "restaurant_id": 878 + }, + { + "user_id": 46, + "restaurant_id": 1381 + } + ], + "updated_at": "2025-03-30T11:32:19.151000" + }, + { + "user_info": { + "user_id": 47, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 47, + "min_price": 96377, + "max_price": 406337, + "preferred_categories": [ + 3, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff985b" + }, + "reservations": [ + { + "user_id": 47, + "restaurant_id": 798, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 47, + "restaurant_id": 2038 + } + ], + "updated_at": "2025-03-30T11:32:19.157000" + }, + { + "user_info": { + "user_id": 48, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 48, + "min_price": 173326, + "max_price": 489105, + "preferred_categories": [ + 3, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff985c" + }, + "reservations": [ + { + "user_id": 48, + "restaurant_id": 745, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 48, + "restaurant_id": 1709, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 48, + "restaurant_id": 1976, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 48, + "restaurant_id": 362, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 48, + "restaurant_id": 2246, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 48, + "restaurant_id": 340 + }, + { + "user_id": 48, + "restaurant_id": 58 + }, + { + "user_id": 48, + "restaurant_id": 2128 + }, + { + "user_id": 48, + "restaurant_id": 188 + } + ], + "updated_at": "2025-03-30T11:32:19.165000" + }, + { + "user_info": { + "user_id": 49, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 49, + "min_price": 48247, + "max_price": 459629, + "preferred_categories": [ + 3, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff985d" + }, + "reservations": [ + { + "user_id": 49, + "restaurant_id": 229, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 49, + "restaurant_id": 296, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 49, + "restaurant_id": 1967, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 49, + "restaurant_id": 1320, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 49, + "restaurant_id": 1006, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 49, + "restaurant_id": 5 + }, + { + "user_id": 49, + "restaurant_id": 675 + } + ], + "updated_at": "2025-03-30T11:32:19.172000" + }, + { + "user_info": { + "user_id": 50, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 50, + "min_price": 174482, + "max_price": 364108, + "preferred_categories": [ + 3, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff985e" + }, + "reservations": [ + { + "user_id": 50, + "restaurant_id": 1918, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 50, + "restaurant_id": 1212, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 50, + "restaurant_id": 274 + }, + { + "user_id": 50, + "restaurant_id": 251 + }, + { + "user_id": 50, + "restaurant_id": 1043 + } + ], + "updated_at": "2025-03-30T11:32:19.175000" + }, + { + "user_info": { + "user_id": 51, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 51, + "min_price": 89491, + "max_price": 259108, + "preferred_categories": [ + 2, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff985f" + }, + "reservations": [ + { + "user_id": 51, + "restaurant_id": 1290, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 51, + "restaurant_id": 1079 + }, + { + "user_id": 51, + "restaurant_id": 529 + } + ], + "updated_at": "2025-03-30T11:32:19.178000" + }, + { + "user_info": { + "user_id": 52, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 52, + "min_price": 105429, + "max_price": 200179, + "preferred_categories": [ + 2, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9860" + }, + "reservations": [ + { + "user_id": 52, + "restaurant_id": 104, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 52, + "restaurant_id": 1806, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 52, + "restaurant_id": 1041 + } + ], + "updated_at": "2025-03-30T11:32:19.180000" + }, + { + "user_info": { + "user_id": 53, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 53, + "min_price": 108492, + "max_price": 236409, + "preferred_categories": [ + 3, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9861" + }, + "reservations": [ + { + "user_id": 53, + "restaurant_id": 2014, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 53, + "restaurant_id": 481, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 53, + "restaurant_id": 875 + }, + { + "user_id": 53, + "restaurant_id": 1804 + }, + { + "user_id": 53, + "restaurant_id": 1898 + }, + { + "user_id": 53, + "restaurant_id": 1595 + }, + { + "user_id": 53, + "restaurant_id": 722 + }, + { + "user_id": 53, + "restaurant_id": 1775 + }, + { + "user_id": 53, + "restaurant_id": 1541 + } + ], + "updated_at": "2025-03-30T11:32:19.183000" + }, + { + "user_info": { + "user_id": 54, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 54, + "min_price": 81914, + "max_price": 422377, + "preferred_categories": [ + 1, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9862" + }, + "reservations": [ + { + "user_id": 54, + "restaurant_id": 1083, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 54, + "restaurant_id": 2254, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 54, + "restaurant_id": 273, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 54, + "restaurant_id": 2085 + }, + { + "user_id": 54, + "restaurant_id": 2091 + }, + { + "user_id": 54, + "restaurant_id": 155 + }, + { + "user_id": 54, + "restaurant_id": 513 + }, + { + "user_id": 54, + "restaurant_id": 1553 + } + ], + "updated_at": "2025-03-30T11:32:19.188000" + }, + { + "user_info": { + "user_id": 55, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 55, + "min_price": 16187, + "max_price": 388247, + "preferred_categories": [ + 3, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9863" + }, + "reservations": [ + { + "user_id": 55, + "restaurant_id": 1728, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 55, + "restaurant_id": 1799 + }, + { + "user_id": 55, + "restaurant_id": 2016 + }, + { + "user_id": 55, + "restaurant_id": 661 + }, + { + "user_id": 55, + "restaurant_id": 608 + } + ], + "updated_at": "2025-03-30T11:32:19.190000" + }, + { + "user_info": { + "user_id": 56, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 56, + "min_price": 67266, + "max_price": 309257, + "preferred_categories": [ + 3, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9864" + }, + "reservations": [ + { + "user_id": 56, + "restaurant_id": 1207, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 56, + "restaurant_id": 463 + }, + { + "user_id": 56, + "restaurant_id": 1315 + }, + { + "user_id": 56, + "restaurant_id": 1773 + }, + { + "user_id": 56, + "restaurant_id": 293 + }, + { + "user_id": 56, + "restaurant_id": 55 + } + ], + "updated_at": "2025-03-30T11:32:19.193000" + }, + { + "user_info": { + "user_id": 57, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 57, + "min_price": 55275, + "max_price": 203384, + "preferred_categories": [ + 1, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9865" + }, + "reservations": [ + { + "user_id": 57, + "restaurant_id": 1684, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 57, + "restaurant_id": 1080, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 57, + "restaurant_id": 805, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 57, + "restaurant_id": 1141, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 57, + "restaurant_id": 1144, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 57, + "restaurant_id": 1463 + }, + { + "user_id": 57, + "restaurant_id": 1446 + }, + { + "user_id": 57, + "restaurant_id": 1136 + } + ], + "updated_at": "2025-03-30T11:32:19.195000" + }, + { + "user_info": { + "user_id": 58, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 58, + "min_price": 83254, + "max_price": 329780, + "preferred_categories": [ + 3, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9866" + }, + "reservations": [], + "likes": [ + { + "user_id": 58, + "restaurant_id": 301 + }, + { + "user_id": 58, + "restaurant_id": 1193 + }, + { + "user_id": 58, + "restaurant_id": 1398 + }, + { + "user_id": 58, + "restaurant_id": 466 + } + ], + "updated_at": "2025-03-30T11:32:19.198000" + }, + { + "user_info": { + "user_id": 59, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 59, + "min_price": 129489, + "max_price": 401574, + "preferred_categories": [ + 3, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9867" + }, + "reservations": [ + { + "user_id": 59, + "restaurant_id": 1189, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 59, + "restaurant_id": 1092 + }, + { + "user_id": 59, + "restaurant_id": 1261 + }, + { + "user_id": 59, + "restaurant_id": 1654 + }, + { + "user_id": 59, + "restaurant_id": 1994 + }, + { + "user_id": 59, + "restaurant_id": 1193 + } + ], + "updated_at": "2025-03-30T11:32:19.201000" + }, + { + "user_info": { + "user_id": 60, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 60, + "min_price": 43058, + "max_price": 271891, + "preferred_categories": [ + 6, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9868" + }, + "reservations": [ + { + "user_id": 60, + "restaurant_id": 1772, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 60, + "restaurant_id": 969, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 60, + "restaurant_id": 583, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 60, + "restaurant_id": 1859, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 60, + "restaurant_id": 1057, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 60, + "restaurant_id": 1225, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 60, + "restaurant_id": 1865 + }, + { + "user_id": 60, + "restaurant_id": 2056 + }, + { + "user_id": 60, + "restaurant_id": 154 + }, + { + "user_id": 60, + "restaurant_id": 352 + }, + { + "user_id": 60, + "restaurant_id": 1010 + }, + { + "user_id": 60, + "restaurant_id": 1798 + }, + { + "user_id": 60, + "restaurant_id": 2221 + }, + { + "user_id": 60, + "restaurant_id": 263 + } + ], + "updated_at": "2025-03-30T11:32:19.204000" + }, + { + "user_info": { + "user_id": 61, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 61, + "min_price": 187570, + "max_price": 256791, + "preferred_categories": [ + 1, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff9869" + }, + "reservations": [ + { + "user_id": 61, + "restaurant_id": 33, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 61, + "restaurant_id": 401, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 61, + "restaurant_id": 258, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 61, + "restaurant_id": 1098, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 61, + "restaurant_id": 1211, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 61, + "restaurant_id": 671 + }, + { + "user_id": 61, + "restaurant_id": 1409 + }, + { + "user_id": 61, + "restaurant_id": 1371 + }, + { + "user_id": 61, + "restaurant_id": 1685 + }, + { + "user_id": 61, + "restaurant_id": 127 + } + ], + "updated_at": "2025-03-30T11:32:19.207000" + }, + { + "user_info": { + "user_id": 62, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 62, + "min_price": 21516, + "max_price": 419351, + "preferred_categories": [ + 9, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff986a" + }, + "reservations": [ + { + "user_id": 62, + "restaurant_id": 1567, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 62, + "restaurant_id": 1887, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 62, + "restaurant_id": 1162, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 62, + "restaurant_id": 1291, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 62, + "restaurant_id": 2220 + }, + { + "user_id": 62, + "restaurant_id": 212 + } + ], + "updated_at": "2025-03-30T11:32:19.218000" + }, + { + "user_info": { + "user_id": 63, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 63, + "min_price": 92464, + "max_price": 235396, + "preferred_categories": [ + 3, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff986b" + }, + "reservations": [ + { + "user_id": 63, + "restaurant_id": 1971, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 63, + "restaurant_id": 1382, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 63, + "restaurant_id": 1547, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 63, + "restaurant_id": 1106, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 63, + "restaurant_id": 2185 + }, + { + "user_id": 63, + "restaurant_id": 1178 + }, + { + "user_id": 63, + "restaurant_id": 1528 + }, + { + "user_id": 63, + "restaurant_id": 1617 + } + ], + "updated_at": "2025-03-30T11:32:19.221000" + }, + { + "user_info": { + "user_id": 64, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 64, + "min_price": 150863, + "max_price": 246214, + "preferred_categories": [ + 4, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff986c" + }, + "reservations": [ + { + "user_id": 64, + "restaurant_id": 1878, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 64, + "restaurant_id": 687, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 64, + "restaurant_id": 1356, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 64, + "restaurant_id": 1964 + }, + { + "user_id": 64, + "restaurant_id": 2028 + }, + { + "user_id": 64, + "restaurant_id": 569 + }, + { + "user_id": 64, + "restaurant_id": 1709 + }, + { + "user_id": 64, + "restaurant_id": 2071 + } + ], + "updated_at": "2025-03-30T11:32:19.224000" + }, + { + "user_info": { + "user_id": 65, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 65, + "min_price": 155450, + "max_price": 485892, + "preferred_categories": [ + 4, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff986d" + }, + "reservations": [ + { + "user_id": 65, + "restaurant_id": 1497, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 65, + "restaurant_id": 684 + } + ], + "updated_at": "2025-03-30T11:32:19.229000" + }, + { + "user_info": { + "user_id": 66, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 66, + "min_price": 79818, + "max_price": 234185, + "preferred_categories": [ + 4, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff986e" + }, + "reservations": [ + { + "user_id": 66, + "restaurant_id": 578, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 66, + "restaurant_id": 41, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 66, + "restaurant_id": 1926, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 66, + "restaurant_id": 1821, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 66, + "restaurant_id": 557, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 66, + "restaurant_id": 1653 + }, + { + "user_id": 66, + "restaurant_id": 769 + }, + { + "user_id": 66, + "restaurant_id": 1926 + }, + { + "user_id": 66, + "restaurant_id": 1529 + } + ], + "updated_at": "2025-03-30T11:32:19.232000" + }, + { + "user_info": { + "user_id": 67, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 67, + "min_price": 181198, + "max_price": 472937, + "preferred_categories": [ + 7, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff986f" + }, + "reservations": [ + { + "user_id": 67, + "restaurant_id": 896, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 67, + "restaurant_id": 1630, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 67, + "restaurant_id": 489, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 67, + "restaurant_id": 645 + }, + { + "user_id": 67, + "restaurant_id": 931 + } + ], + "updated_at": "2025-03-30T11:32:19.236000" + }, + { + "user_info": { + "user_id": 68, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 68, + "min_price": 121572, + "max_price": 401695, + "preferred_categories": [ + 2, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff9870" + }, + "reservations": [ + { + "user_id": 68, + "restaurant_id": 1741, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 68, + "restaurant_id": 902 + }, + { + "user_id": 68, + "restaurant_id": 1152 + } + ], + "updated_at": "2025-03-30T11:32:19.239000" + }, + { + "user_info": { + "user_id": 69, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 69, + "min_price": 53616, + "max_price": 492640, + "preferred_categories": [ + 2, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9871" + }, + "reservations": [ + { + "user_id": 69, + "restaurant_id": 1048, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 69, + "restaurant_id": 2229, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 69, + "restaurant_id": 1658, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 69, + "restaurant_id": 1075 + } + ], + "updated_at": "2025-03-30T11:32:19.243000" + }, + { + "user_info": { + "user_id": 70, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 70, + "min_price": 119576, + "max_price": 375454, + "preferred_categories": [ + 3, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9872" + }, + "reservations": [ + { + "user_id": 70, + "restaurant_id": 1338, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 70, + "restaurant_id": 549, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 70, + "restaurant_id": 9, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 70, + "restaurant_id": 1123, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 70, + "restaurant_id": 1117, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 70, + "restaurant_id": 1960 + }, + { + "user_id": 70, + "restaurant_id": 2130 + } + ], + "updated_at": "2025-03-30T11:32:19.246000" + }, + { + "user_info": { + "user_id": 71, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 71, + "min_price": 13768, + "max_price": 354216, + "preferred_categories": [ + 2, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9873" + }, + "reservations": [ + { + "user_id": 71, + "restaurant_id": 47, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 71, + "restaurant_id": 470 + } + ], + "updated_at": "2025-03-30T11:32:19.249000" + }, + { + "user_info": { + "user_id": 72, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 72, + "min_price": 97033, + "max_price": 424256, + "preferred_categories": [ + 2, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9874" + }, + "reservations": [ + { + "user_id": 72, + "restaurant_id": 1666, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 72, + "restaurant_id": 1375 + }, + { + "user_id": 72, + "restaurant_id": 720 + }, + { + "user_id": 72, + "restaurant_id": 851 + }, + { + "user_id": 72, + "restaurant_id": 1575 + }, + { + "user_id": 72, + "restaurant_id": 634 + } + ], + "updated_at": "2025-03-30T11:32:19.252000" + }, + { + "user_info": { + "user_id": 73, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 73, + "min_price": 58444, + "max_price": 345640, + "preferred_categories": [ + 3, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9875" + }, + "reservations": [ + { + "user_id": 73, + "restaurant_id": 2254, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 73, + "restaurant_id": 748, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 73, + "restaurant_id": 302, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 73, + "restaurant_id": 2182, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 73, + "restaurant_id": 1026, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 73, + "restaurant_id": 1394 + } + ], + "updated_at": "2025-03-30T11:32:19.255000" + }, + { + "user_info": { + "user_id": 74, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 74, + "min_price": 120737, + "max_price": 248236, + "preferred_categories": [ + 1, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9876" + }, + "reservations": [], + "likes": [ + { + "user_id": 74, + "restaurant_id": 127 + }, + { + "user_id": 74, + "restaurant_id": 1418 + }, + { + "user_id": 74, + "restaurant_id": 1706 + }, + { + "user_id": 74, + "restaurant_id": 1925 + }, + { + "user_id": 74, + "restaurant_id": 1341 + }, + { + "user_id": 74, + "restaurant_id": 1571 + } + ], + "updated_at": "2025-03-30T11:32:19.257000" + }, + { + "user_info": { + "user_id": 75, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 75, + "min_price": 123521, + "max_price": 267707, + "preferred_categories": [ + 2, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff9877" + }, + "reservations": [ + { + "user_id": 75, + "restaurant_id": 1655, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 75, + "restaurant_id": 478, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 75, + "restaurant_id": 741 + } + ], + "updated_at": "2025-03-30T11:32:19.260000" + }, + { + "user_info": { + "user_id": 76, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 76, + "min_price": 172019, + "max_price": 470071, + "preferred_categories": [ + 6, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9878" + }, + "reservations": [ + { + "user_id": 76, + "restaurant_id": 1405, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 76, + "restaurant_id": 396 + } + ], + "updated_at": "2025-03-30T11:32:19.262000" + }, + { + "user_info": { + "user_id": 77, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 77, + "min_price": 90198, + "max_price": 399068, + "preferred_categories": [ + 6, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9879" + }, + "reservations": [ + { + "user_id": 77, + "restaurant_id": 1560, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 77, + "restaurant_id": 7, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 77, + "restaurant_id": 675, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 77, + "restaurant_id": 1474, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 77, + "restaurant_id": 671 + }, + { + "user_id": 77, + "restaurant_id": 595 + } + ], + "updated_at": "2025-03-30T11:32:19.265000" + }, + { + "user_info": { + "user_id": 78, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 78, + "min_price": 65073, + "max_price": 308313, + "preferred_categories": [ + 3, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff987a" + }, + "reservations": [ + { + "user_id": 78, + "restaurant_id": 2187, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 78, + "restaurant_id": 1159, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 78, + "restaurant_id": 238 + }, + { + "user_id": 78, + "restaurant_id": 1014 + }, + { + "user_id": 78, + "restaurant_id": 1349 + } + ], + "updated_at": "2025-03-30T11:32:19.268000" + }, + { + "user_info": { + "user_id": 79, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 79, + "min_price": 149171, + "max_price": 234246, + "preferred_categories": [ + 5, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff987b" + }, + "reservations": [ + { + "user_id": 79, + "restaurant_id": 2047, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 79, + "restaurant_id": 775, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 79, + "restaurant_id": 2235 + }, + { + "user_id": 79, + "restaurant_id": 898 + }, + { + "user_id": 79, + "restaurant_id": 1732 + }, + { + "user_id": 79, + "restaurant_id": 1522 + }, + { + "user_id": 79, + "restaurant_id": 1410 + } + ], + "updated_at": "2025-03-30T11:32:19.274000" + }, + { + "user_info": { + "user_id": 80, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 80, + "min_price": 79665, + "max_price": 267787, + "preferred_categories": [ + 1, + 2, + 7 + ], + "_id": "67e92bc2785211cbd5ff987c" + }, + "reservations": [ + { + "user_id": 80, + "restaurant_id": 1933, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 80, + "restaurant_id": 73, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 80, + "restaurant_id": 699 + }, + { + "user_id": 80, + "restaurant_id": 1522 + } + ], + "updated_at": "2025-03-30T11:32:19.278000" + }, + { + "user_info": { + "user_id": 81, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 81, + "min_price": 22004, + "max_price": 393826, + "preferred_categories": [ + 3, + 4, + 10 + ], + "_id": "67e92bc2785211cbd5ff987d" + }, + "reservations": [ + { + "user_id": 81, + "restaurant_id": 2145, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 81, + "restaurant_id": 2210, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 81, + "restaurant_id": 887 + }, + { + "user_id": 81, + "restaurant_id": 10 + }, + { + "user_id": 81, + "restaurant_id": 1613 + } + ], + "updated_at": "2025-03-30T11:32:19.281000" + }, + { + "user_info": { + "user_id": 82, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 82, + "min_price": 94945, + "max_price": 229961, + "preferred_categories": [ + 8, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff987e" + }, + "reservations": [ + { + "user_id": 82, + "restaurant_id": 1647, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 82, + "restaurant_id": 1512, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 82, + "restaurant_id": 1084, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 82, + "restaurant_id": 1327, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 82, + "restaurant_id": 2086 + }, + { + "user_id": 82, + "restaurant_id": 1181 + } + ], + "updated_at": "2025-03-30T11:32:19.284000" + }, + { + "user_info": { + "user_id": 83, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 83, + "min_price": 167915, + "max_price": 444105, + "preferred_categories": [ + 2, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff987f" + }, + "reservations": [ + { + "user_id": 83, + "restaurant_id": 2248, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 83, + "restaurant_id": 1213, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 83, + "restaurant_id": 2008, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 83, + "restaurant_id": 1313, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 83, + "restaurant_id": 475 + }, + { + "user_id": 83, + "restaurant_id": 1292 + } + ], + "updated_at": "2025-03-30T11:32:19.300000" + }, + { + "user_info": { + "user_id": 84, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 84, + "min_price": 132551, + "max_price": 382730, + "preferred_categories": [ + 4, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9880" + }, + "reservations": [ + { + "user_id": 84, + "restaurant_id": 1183, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 84, + "restaurant_id": 750, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 84, + "restaurant_id": 950 + }, + { + "user_id": 84, + "restaurant_id": 2213 + }, + { + "user_id": 84, + "restaurant_id": 1317 + } + ], + "updated_at": "2025-03-30T11:32:19.313000" + }, + { + "user_info": { + "user_id": 85, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 85, + "min_price": 46979, + "max_price": 205497, + "preferred_categories": [ + 1, + 2, + 4 + ], + "_id": "67e92bc2785211cbd5ff9881" + }, + "reservations": [], + "likes": [ + { + "user_id": 85, + "restaurant_id": 683 + }, + { + "user_id": 85, + "restaurant_id": 1307 + }, + { + "user_id": 85, + "restaurant_id": 604 + } + ], + "updated_at": "2025-03-30T11:32:19.322000" + }, + { + "user_info": { + "user_id": 86, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 86, + "min_price": 185050, + "max_price": 398628, + "preferred_categories": [ + 2, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9882" + }, + "reservations": [ + { + "user_id": 86, + "restaurant_id": 2017, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 86, + "restaurant_id": 1962, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 86, + "restaurant_id": 1410, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 86, + "restaurant_id": 963, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 86, + "restaurant_id": 794 + }, + { + "user_id": 86, + "restaurant_id": 740 + } + ], + "updated_at": "2025-03-30T11:32:19.326000" + }, + { + "user_info": { + "user_id": 87, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 87, + "min_price": 135979, + "max_price": 378633, + "preferred_categories": [ + 2, + 4, + 5 + ], + "_id": "67e92bc2785211cbd5ff9883" + }, + "reservations": [ + { + "user_id": 87, + "restaurant_id": 892, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 87, + "restaurant_id": 2181, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 87, + "restaurant_id": 320 + } + ], + "updated_at": "2025-03-30T11:32:19.329000" + }, + { + "user_info": { + "user_id": 88, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 88, + "min_price": 148192, + "max_price": 470318, + "preferred_categories": [ + 4, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff9884" + }, + "reservations": [ + { + "user_id": 88, + "restaurant_id": 815, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 88, + "restaurant_id": 522, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 88, + "restaurant_id": 1417, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 88, + "restaurant_id": 1323 + }, + { + "user_id": 88, + "restaurant_id": 2210 + }, + { + "user_id": 88, + "restaurant_id": 1397 + }, + { + "user_id": 88, + "restaurant_id": 709 + }, + { + "user_id": 88, + "restaurant_id": 500 + } + ], + "updated_at": "2025-03-30T11:32:19.333000" + }, + { + "user_info": { + "user_id": 89, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 89, + "min_price": 185320, + "max_price": 238334, + "preferred_categories": [ + 8, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9885" + }, + "reservations": [ + { + "user_id": 89, + "restaurant_id": 1432, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 89, + "restaurant_id": 825, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 89, + "restaurant_id": 1672, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 89, + "restaurant_id": 784, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 89, + "restaurant_id": 617, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 89, + "restaurant_id": 675, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 89, + "restaurant_id": 1321 + }, + { + "user_id": 89, + "restaurant_id": 1474 + }, + { + "user_id": 89, + "restaurant_id": 372 + } + ], + "updated_at": "2025-03-30T11:32:19.337000" + }, + { + "user_info": { + "user_id": 90, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 90, + "min_price": 26856, + "max_price": 421438, + "preferred_categories": [ + 2, + 4, + 6 + ], + "_id": "67e92bc2785211cbd5ff9886" + }, + "reservations": [ + { + "user_id": 90, + "restaurant_id": 2233, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 90, + "restaurant_id": 2189 + }, + { + "user_id": 90, + "restaurant_id": 54 + } + ], + "updated_at": "2025-03-30T11:32:19.340000" + }, + { + "user_info": { + "user_id": 91, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 91, + "min_price": 50526, + "max_price": 486531, + "preferred_categories": [ + 3, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9887" + }, + "reservations": [ + { + "user_id": 91, + "restaurant_id": 2217, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 91, + "restaurant_id": 1624, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 91, + "restaurant_id": 2086 + }, + { + "user_id": 91, + "restaurant_id": 126 + }, + { + "user_id": 91, + "restaurant_id": 841 + } + ], + "updated_at": "2025-03-30T11:32:19.343000" + }, + { + "user_info": { + "user_id": 92, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 92, + "min_price": 82141, + "max_price": 364554, + "preferred_categories": [ + 6, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9888" + }, + "reservations": [ + { + "user_id": 92, + "restaurant_id": 2237, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 92, + "restaurant_id": 999, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 92, + "restaurant_id": 1583, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 92, + "restaurant_id": 331 + }, + { + "user_id": 92, + "restaurant_id": 1924 + } + ], + "updated_at": "2025-03-30T11:32:19.346000" + }, + { + "user_info": { + "user_id": 93, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 93, + "min_price": 66823, + "max_price": 345162, + "preferred_categories": [ + 5, + 6, + 12 + ], + "_id": "67e92bc2785211cbd5ff9889" + }, + "reservations": [ + { + "user_id": 93, + "restaurant_id": 1798, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 93, + "restaurant_id": 1572 + }, + { + "user_id": 93, + "restaurant_id": 1535 + }, + { + "user_id": 93, + "restaurant_id": 1222 + }, + { + "user_id": 93, + "restaurant_id": 785 + }, + { + "user_id": 93, + "restaurant_id": 529 + }, + { + "user_id": 93, + "restaurant_id": 1741 + } + ], + "updated_at": "2025-03-30T11:32:19.353000" + }, + { + "user_info": { + "user_id": 94, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 94, + "min_price": 85499, + "max_price": 401582, + "preferred_categories": [ + 1, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff988a" + }, + "reservations": [ + { + "user_id": 94, + "restaurant_id": 2223, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 94, + "restaurant_id": 26, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 94, + "restaurant_id": 558, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 94, + "restaurant_id": 1196 + }, + { + "user_id": 94, + "restaurant_id": 411 + }, + { + "user_id": 94, + "restaurant_id": 1992 + } + ], + "updated_at": "2025-03-30T11:32:19.367000" + }, + { + "user_info": { + "user_id": 95, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 95, + "min_price": 96497, + "max_price": 231653, + "preferred_categories": [ + 4, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff988b" + }, + "reservations": [ + { + "user_id": 95, + "restaurant_id": 1998, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 95, + "restaurant_id": 948, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 95, + "restaurant_id": 1707, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 95, + "restaurant_id": 532, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 95, + "restaurant_id": 2221, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 95, + "restaurant_id": 852 + }, + { + "user_id": 95, + "restaurant_id": 1305 + } + ], + "updated_at": "2025-03-30T11:32:19.375000" + }, + { + "user_info": { + "user_id": 96, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 96, + "min_price": 29299, + "max_price": 452322, + "preferred_categories": [ + 1, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff988c" + }, + "reservations": [ + { + "user_id": 96, + "restaurant_id": 2118, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 96, + "restaurant_id": 255, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 96, + "restaurant_id": 1955 + }, + { + "user_id": 96, + "restaurant_id": 351 + }, + { + "user_id": 96, + "restaurant_id": 951 + }, + { + "user_id": 96, + "restaurant_id": 1206 + } + ], + "updated_at": "2025-03-30T11:32:19.379000" + }, + { + "user_info": { + "user_id": 97, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 97, + "min_price": 27202, + "max_price": 246133, + "preferred_categories": [ + 1, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff988d" + }, + "reservations": [ + { + "user_id": 97, + "restaurant_id": 464, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 97, + "restaurant_id": 754, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 97, + "restaurant_id": 1210 + } + ], + "updated_at": "2025-03-30T11:32:19.382000" + }, + { + "user_info": { + "user_id": 98, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 98, + "min_price": 129763, + "max_price": 330349, + "preferred_categories": [ + 3, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff988e" + }, + "reservations": [ + { + "user_id": 98, + "restaurant_id": 1359, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 98, + "restaurant_id": 1281, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 98, + "restaurant_id": 2066, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 98, + "restaurant_id": 168, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 98, + "restaurant_id": 509 + } + ], + "updated_at": "2025-03-30T11:32:19.386000" + }, + { + "user_info": { + "user_id": 99, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 99, + "min_price": 93365, + "max_price": 303372, + "preferred_categories": [ + 5, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff988f" + }, + "reservations": [ + { + "user_id": 99, + "restaurant_id": 1129, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 99, + "restaurant_id": 1627, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:19.389000" + }, + { + "user_info": { + "user_id": 100, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 100, + "min_price": 79353, + "max_price": 437106, + "preferred_categories": [ + 1, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff9890" + }, + "reservations": [ + { + "user_id": 100, + "restaurant_id": 291, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 100, + "restaurant_id": 75, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 100, + "restaurant_id": 111 + }, + { + "user_id": 100, + "restaurant_id": 1561 + }, + { + "user_id": 100, + "restaurant_id": 679 + } + ], + "updated_at": "2025-03-30T11:32:19.401000" + }, + { + "user_info": { + "user_id": 101, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 101, + "min_price": 140727, + "max_price": 223500, + "preferred_categories": [ + 7, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9891" + }, + "reservations": [ + { + "user_id": 101, + "restaurant_id": 1174, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:19.413000" + }, + { + "user_info": { + "user_id": 102, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 102, + "min_price": 126610, + "max_price": 354243, + "preferred_categories": [ + 9, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9892" + }, + "reservations": [ + { + "user_id": 102, + "restaurant_id": 115, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 102, + "restaurant_id": 1114, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 102, + "restaurant_id": 842, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 102, + "restaurant_id": 1051, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 102, + "restaurant_id": 1752, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 102, + "restaurant_id": 1738, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 102, + "restaurant_id": 627 + }, + { + "user_id": 102, + "restaurant_id": 1443 + }, + { + "user_id": 102, + "restaurant_id": 770 + }, + { + "user_id": 102, + "restaurant_id": 498 + } + ], + "updated_at": "2025-03-30T11:32:19.417000" + }, + { + "user_info": { + "user_id": 103, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 103, + "min_price": 12059, + "max_price": 426530, + "preferred_categories": [ + 3, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9893" + }, + "reservations": [], + "likes": [ + { + "user_id": 103, + "restaurant_id": 2176 + }, + { + "user_id": 103, + "restaurant_id": 1029 + }, + { + "user_id": 103, + "restaurant_id": 738 + } + ], + "updated_at": "2025-03-30T11:32:19.421000" + }, + { + "user_info": { + "user_id": 104, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 104, + "min_price": 132141, + "max_price": 332202, + "preferred_categories": [ + 4, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9894" + }, + "reservations": [], + "likes": [ + { + "user_id": 104, + "restaurant_id": 1136 + }, + { + "user_id": 104, + "restaurant_id": 1334 + }, + { + "user_id": 104, + "restaurant_id": 1313 + }, + { + "user_id": 104, + "restaurant_id": 1769 + }, + { + "user_id": 104, + "restaurant_id": 45 + } + ], + "updated_at": "2025-03-30T11:32:19.424000" + }, + { + "user_info": { + "user_id": 105, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 105, + "min_price": 37922, + "max_price": 499973, + "preferred_categories": [ + 3, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9895" + }, + "reservations": [], + "likes": [ + { + "user_id": 105, + "restaurant_id": 274 + }, + { + "user_id": 105, + "restaurant_id": 1720 + }, + { + "user_id": 105, + "restaurant_id": 560 + } + ], + "updated_at": "2025-03-30T11:32:19.427000" + }, + { + "user_info": { + "user_id": 106, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 106, + "min_price": 64249, + "max_price": 230682, + "preferred_categories": [ + 5, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9896" + }, + "reservations": [ + { + "user_id": 106, + "restaurant_id": 433, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 106, + "restaurant_id": 1045, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 106, + "restaurant_id": 1659, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 106, + "restaurant_id": 1986, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 106, + "restaurant_id": 255, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 106, + "restaurant_id": 883 + }, + { + "user_id": 106, + "restaurant_id": 1145 + } + ], + "updated_at": "2025-03-30T11:32:19.430000" + }, + { + "user_info": { + "user_id": 107, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 107, + "min_price": 65313, + "max_price": 467101, + "preferred_categories": [ + 5, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9897" + }, + "reservations": [ + { + "user_id": 107, + "restaurant_id": 1476, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 107, + "restaurant_id": 1310, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 107, + "restaurant_id": 743, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 107, + "restaurant_id": 454, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:19.433000" + }, + { + "user_info": { + "user_id": 108, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 108, + "min_price": 169377, + "max_price": 244275, + "preferred_categories": [ + 3, + 4, + 11 + ], + "_id": "67e92bc2785211cbd5ff9898" + }, + "reservations": [ + { + "user_id": 108, + "restaurant_id": 1833, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 108, + "restaurant_id": 1608, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 108, + "restaurant_id": 1390, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 108, + "restaurant_id": 1447, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:19.436000" + }, + { + "user_info": { + "user_id": 109, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 109, + "min_price": 15342, + "max_price": 258548, + "preferred_categories": [ + 4, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9899" + }, + "reservations": [ + { + "user_id": 109, + "restaurant_id": 1841, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 109, + "restaurant_id": 1858, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 109, + "restaurant_id": 1550, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 109, + "restaurant_id": 192, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 109, + "restaurant_id": 621, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 109, + "restaurant_id": 400 + }, + { + "user_id": 109, + "restaurant_id": 706 + }, + { + "user_id": 109, + "restaurant_id": 704 + }, + { + "user_id": 109, + "restaurant_id": 2254 + }, + { + "user_id": 109, + "restaurant_id": 2043 + }, + { + "user_id": 109, + "restaurant_id": 262 + } + ], + "updated_at": "2025-03-30T11:32:19.439000" + }, + { + "user_info": { + "user_id": 110, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 110, + "min_price": 97494, + "max_price": 355408, + "preferred_categories": [ + 5, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff989a" + }, + "reservations": [ + { + "user_id": 110, + "restaurant_id": 1057, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 110, + "restaurant_id": 1177, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 110, + "restaurant_id": 333, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 110, + "restaurant_id": 1742 + }, + { + "user_id": 110, + "restaurant_id": 373 + }, + { + "user_id": 110, + "restaurant_id": 1400 + } + ], + "updated_at": "2025-03-30T11:32:19.442000" + }, + { + "user_info": { + "user_id": 111, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 111, + "min_price": 36258, + "max_price": 490070, + "preferred_categories": [ + 3, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff989b" + }, + "reservations": [], + "likes": [ + { + "user_id": 111, + "restaurant_id": 493 + }, + { + "user_id": 111, + "restaurant_id": 240 + }, + { + "user_id": 111, + "restaurant_id": 1405 + }, + { + "user_id": 111, + "restaurant_id": 1480 + } + ], + "updated_at": "2025-03-30T11:32:19.446000" + }, + { + "user_info": { + "user_id": 112, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 112, + "min_price": 115332, + "max_price": 263578, + "preferred_categories": [ + 2, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff989c" + }, + "reservations": [ + { + "user_id": 112, + "restaurant_id": 1999, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 112, + "restaurant_id": 1088, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 112, + "restaurant_id": 177, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 112, + "restaurant_id": 1055 + }, + { + "user_id": 112, + "restaurant_id": 1387 + }, + { + "user_id": 112, + "restaurant_id": 1753 + }, + { + "user_id": 112, + "restaurant_id": 1434 + }, + { + "user_id": 112, + "restaurant_id": 946 + } + ], + "updated_at": "2025-03-30T11:32:19.449000" + }, + { + "user_info": { + "user_id": 113, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 113, + "min_price": 127054, + "max_price": 312245, + "preferred_categories": [ + 4, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff989d" + }, + "reservations": [ + { + "user_id": 113, + "restaurant_id": 49, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 113, + "restaurant_id": 463, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 113, + "restaurant_id": 302 + }, + { + "user_id": 113, + "restaurant_id": 1776 + }, + { + "user_id": 113, + "restaurant_id": 1872 + }, + { + "user_id": 113, + "restaurant_id": 1851 + } + ], + "updated_at": "2025-03-30T11:32:19.451000" + }, + { + "user_info": { + "user_id": 114, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 114, + "min_price": 166239, + "max_price": 327001, + "preferred_categories": [ + 3, + 4, + 5 + ], + "_id": "67e92bc2785211cbd5ff989e" + }, + "reservations": [ + { + "user_id": 114, + "restaurant_id": 2060, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 114, + "restaurant_id": 1773, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 114, + "restaurant_id": 168 + } + ], + "updated_at": "2025-03-30T11:32:19.454000" + }, + { + "user_info": { + "user_id": 115, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 115, + "min_price": 113164, + "max_price": 285426, + "preferred_categories": [ + 7, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff989f" + }, + "reservations": [ + { + "user_id": 115, + "restaurant_id": 262, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 115, + "restaurant_id": 320, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 115, + "restaurant_id": 929, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 115, + "restaurant_id": 756, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 115, + "restaurant_id": 1948 + }, + { + "user_id": 115, + "restaurant_id": 1071 + }, + { + "user_id": 115, + "restaurant_id": 580 + }, + { + "user_id": 115, + "restaurant_id": 1423 + } + ], + "updated_at": "2025-03-30T11:32:19.459000" + }, + { + "user_info": { + "user_id": 116, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 116, + "min_price": 127969, + "max_price": 294168, + "preferred_categories": [ + 2, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff98a0" + }, + "reservations": [ + { + "user_id": 116, + "restaurant_id": 1138, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 116, + "restaurant_id": 117, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 116, + "restaurant_id": 2196 + }, + { + "user_id": 116, + "restaurant_id": 9 + } + ], + "updated_at": "2025-03-30T11:32:19.464000" + }, + { + "user_info": { + "user_id": 117, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 117, + "min_price": 176237, + "max_price": 391158, + "preferred_categories": [ + 1, + 4, + 9 + ], + "_id": "67e92bc2785211cbd5ff98a1" + }, + "reservations": [ + { + "user_id": 117, + "restaurant_id": 2228, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 117, + "restaurant_id": 299, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 117, + "restaurant_id": 314 + }, + { + "user_id": 117, + "restaurant_id": 2195 + }, + { + "user_id": 117, + "restaurant_id": 2124 + } + ], + "updated_at": "2025-03-30T11:32:19.467000" + }, + { + "user_info": { + "user_id": 118, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 118, + "min_price": 71949, + "max_price": 407527, + "preferred_categories": [ + 6, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff98a2" + }, + "reservations": [ + { + "user_id": 118, + "restaurant_id": 431, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 118, + "restaurant_id": 1119, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:19.470000" + }, + { + "user_info": { + "user_id": 119, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 119, + "min_price": 67831, + "max_price": 357736, + "preferred_categories": [ + 5, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff98a3" + }, + "reservations": [ + { + "user_id": 119, + "restaurant_id": 1112, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 119, + "restaurant_id": 553, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 119, + "restaurant_id": 1691, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 119, + "restaurant_id": 1111, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 119, + "restaurant_id": 2122 + }, + { + "user_id": 119, + "restaurant_id": 798 + }, + { + "user_id": 119, + "restaurant_id": 1072 + } + ], + "updated_at": "2025-03-30T11:32:19.473000" + }, + { + "user_info": { + "user_id": 120, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 120, + "min_price": 144428, + "max_price": 404101, + "preferred_categories": [ + 1, + 4, + 6 + ], + "_id": "67e92bc2785211cbd5ff98a4" + }, + "reservations": [ + { + "user_id": 120, + "restaurant_id": 1088, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 120, + "restaurant_id": 1011, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 120, + "restaurant_id": 747 + }, + { + "user_id": 120, + "restaurant_id": 758 + }, + { + "user_id": 120, + "restaurant_id": 1695 + } + ], + "updated_at": "2025-03-30T11:32:19.476000" + }, + { + "user_info": { + "user_id": 121, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 121, + "min_price": 41318, + "max_price": 219612, + "preferred_categories": [ + 4, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff98a5" + }, + "reservations": [ + { + "user_id": 121, + "restaurant_id": 869, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 121, + "restaurant_id": 302, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 121, + "restaurant_id": 2109, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 121, + "restaurant_id": 1587, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 121, + "restaurant_id": 995 + }, + { + "user_id": 121, + "restaurant_id": 1610 + } + ], + "updated_at": "2025-03-30T11:32:19.479000" + }, + { + "user_info": { + "user_id": 122, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 122, + "min_price": 30258, + "max_price": 318302, + "preferred_categories": [ + 3, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff98a6" + }, + "reservations": [ + { + "user_id": 122, + "restaurant_id": 929, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 122, + "restaurant_id": 863, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 122, + "restaurant_id": 1750 + }, + { + "user_id": 122, + "restaurant_id": 903 + }, + { + "user_id": 122, + "restaurant_id": 1121 + }, + { + "user_id": 122, + "restaurant_id": 1475 + } + ], + "updated_at": "2025-03-30T11:32:19.481000" + }, + { + "user_info": { + "user_id": 123, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 123, + "min_price": 44469, + "max_price": 288533, + "preferred_categories": [ + 4, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff98a7" + }, + "reservations": [ + { + "user_id": 123, + "restaurant_id": 158, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 123, + "restaurant_id": 451, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 123, + "restaurant_id": 769, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 123, + "restaurant_id": 1199, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 123, + "restaurant_id": 1254, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 123, + "restaurant_id": 1867 + }, + { + "user_id": 123, + "restaurant_id": 587 + }, + { + "user_id": 123, + "restaurant_id": 1145 + }, + { + "user_id": 123, + "restaurant_id": 1761 + }, + { + "user_id": 123, + "restaurant_id": 744 + } + ], + "updated_at": "2025-03-30T11:32:19.485000" + }, + { + "user_info": { + "user_id": 124, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 124, + "min_price": 75965, + "max_price": 207023, + "preferred_categories": [ + 1, + 4, + 6 + ], + "_id": "67e92bc2785211cbd5ff98a8" + }, + "reservations": [ + { + "user_id": 124, + "restaurant_id": 1912, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 124, + "restaurant_id": 814 + } + ], + "updated_at": "2025-03-30T11:32:19.487000" + }, + { + "user_info": { + "user_id": 125, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 125, + "min_price": 87887, + "max_price": 429278, + "preferred_categories": [ + 1, + 2, + 10 + ], + "_id": "67e92bc2785211cbd5ff98a9" + }, + "reservations": [ + { + "user_id": 125, + "restaurant_id": 1785, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 125, + "restaurant_id": 2001, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 125, + "restaurant_id": 1090 + } + ], + "updated_at": "2025-03-30T11:32:19.491000" + }, + { + "user_info": { + "user_id": 126, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 126, + "min_price": 121431, + "max_price": 409992, + "preferred_categories": [ + 1, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff98aa" + }, + "reservations": [ + { + "user_id": 126, + "restaurant_id": 593, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 126, + "restaurant_id": 1503, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 126, + "restaurant_id": 1194, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 126, + "restaurant_id": 2087, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 126, + "restaurant_id": 31 + } + ], + "updated_at": "2025-03-30T11:32:19.494000" + }, + { + "user_info": { + "user_id": 127, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 127, + "min_price": 137504, + "max_price": 451142, + "preferred_categories": [ + 4, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff98ab" + }, + "reservations": [ + { + "user_id": 127, + "restaurant_id": 2235, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 127, + "restaurant_id": 1165, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 127, + "restaurant_id": 495, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 127, + "restaurant_id": 1929, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 127, + "restaurant_id": 1556, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 127, + "restaurant_id": 2092 + }, + { + "user_id": 127, + "restaurant_id": 1883 + }, + { + "user_id": 127, + "restaurant_id": 711 + }, + { + "user_id": 127, + "restaurant_id": 932 + }, + { + "user_id": 127, + "restaurant_id": 61 + }, + { + "user_id": 127, + "restaurant_id": 1763 + } + ], + "updated_at": "2025-03-30T11:32:19.498000" + }, + { + "user_info": { + "user_id": 128, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 128, + "min_price": 105166, + "max_price": 375827, + "preferred_categories": [ + 2, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff98ac" + }, + "reservations": [], + "likes": [ + { + "user_id": 128, + "restaurant_id": 323 + }, + { + "user_id": 128, + "restaurant_id": 2071 + }, + { + "user_id": 128, + "restaurant_id": 739 + }, + { + "user_id": 128, + "restaurant_id": 2173 + }, + { + "user_id": 128, + "restaurant_id": 2024 + } + ], + "updated_at": "2025-03-30T11:32:19.501000" + }, + { + "user_info": { + "user_id": 129, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 129, + "min_price": 120288, + "max_price": 495343, + "preferred_categories": [ + 2, + 3, + 6 + ], + "_id": "67e92bc2785211cbd5ff98ad" + }, + "reservations": [ + { + "user_id": 129, + "restaurant_id": 1841, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 129, + "restaurant_id": 919, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 129, + "restaurant_id": 1012, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 129, + "restaurant_id": 1525 + }, + { + "user_id": 129, + "restaurant_id": 220 + }, + { + "user_id": 129, + "restaurant_id": 901 + } + ], + "updated_at": "2025-03-30T11:32:19.503000" + }, + { + "user_info": { + "user_id": 130, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 130, + "min_price": 20029, + "max_price": 328338, + "preferred_categories": [ + 5, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff98ae" + }, + "reservations": [ + { + "user_id": 130, + "restaurant_id": 2025, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 130, + "restaurant_id": 327, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 130, + "restaurant_id": 1990, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 130, + "restaurant_id": 1730 + }, + { + "user_id": 130, + "restaurant_id": 2086 + }, + { + "user_id": 130, + "restaurant_id": 1825 + } + ], + "updated_at": "2025-03-30T11:32:19.506000" + }, + { + "user_info": { + "user_id": 131, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 131, + "min_price": 168222, + "max_price": 299643, + "preferred_categories": [ + 7, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff98af" + }, + "reservations": [ + { + "user_id": 131, + "restaurant_id": 345, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 131, + "restaurant_id": 1296, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 131, + "restaurant_id": 863, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 131, + "restaurant_id": 586 + }, + { + "user_id": 131, + "restaurant_id": 2167 + } + ], + "updated_at": "2025-03-30T11:32:19.509000" + }, + { + "user_info": { + "user_id": 132, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 132, + "min_price": 27774, + "max_price": 366391, + "preferred_categories": [ + 3, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff98b0" + }, + "reservations": [ + { + "user_id": 132, + "restaurant_id": 333, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 132, + "restaurant_id": 1286, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 132, + "restaurant_id": 1255, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 132, + "restaurant_id": 1500, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 132, + "restaurant_id": 689 + }, + { + "user_id": 132, + "restaurant_id": 1383 + }, + { + "user_id": 132, + "restaurant_id": 1474 + }, + { + "user_id": 132, + "restaurant_id": 2134 + } + ], + "updated_at": "2025-03-30T11:32:19.511000" + }, + { + "user_info": { + "user_id": 133, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 133, + "min_price": 53942, + "max_price": 433053, + "preferred_categories": [ + 3, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff98b1" + }, + "reservations": [ + { + "user_id": 133, + "restaurant_id": 1967, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 133, + "restaurant_id": 917 + }, + { + "user_id": 133, + "restaurant_id": 874 + }, + { + "user_id": 133, + "restaurant_id": 1734 + }, + { + "user_id": 133, + "restaurant_id": 1632 + }, + { + "user_id": 133, + "restaurant_id": 553 + } + ], + "updated_at": "2025-03-30T11:32:19.514000" + }, + { + "user_info": { + "user_id": 134, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 134, + "min_price": 94983, + "max_price": 275331, + "preferred_categories": [ + 7, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff98b2" + }, + "reservations": [ + { + "user_id": 134, + "restaurant_id": 1568, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 134, + "restaurant_id": 345 + }, + { + "user_id": 134, + "restaurant_id": 1712 + }, + { + "user_id": 134, + "restaurant_id": 988 + }, + { + "user_id": 134, + "restaurant_id": 171 + } + ], + "updated_at": "2025-03-30T11:32:19.521000" + }, + { + "user_info": { + "user_id": 135, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 135, + "min_price": 11980, + "max_price": 379968, + "preferred_categories": [ + 5, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff98b3" + }, + "reservations": [ + { + "user_id": 135, + "restaurant_id": 849, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 135, + "restaurant_id": 1704, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 135, + "restaurant_id": 1235 + }, + { + "user_id": 135, + "restaurant_id": 89 + }, + { + "user_id": 135, + "restaurant_id": 2024 + } + ], + "updated_at": "2025-03-30T11:32:19.529000" + }, + { + "user_info": { + "user_id": 136, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 136, + "min_price": 160707, + "max_price": 349473, + "preferred_categories": [ + 5, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff98b4" + }, + "reservations": [ + { + "user_id": 136, + "restaurant_id": 1546, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 136, + "restaurant_id": 108, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 136, + "restaurant_id": 150 + }, + { + "user_id": 136, + "restaurant_id": 1010 + }, + { + "user_id": 136, + "restaurant_id": 1760 + }, + { + "user_id": 136, + "restaurant_id": 663 + } + ], + "updated_at": "2025-03-30T11:32:19.532000" + }, + { + "user_info": { + "user_id": 137, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 137, + "min_price": 84683, + "max_price": 464334, + "preferred_categories": [ + 7, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff98b5" + }, + "reservations": [ + { + "user_id": 137, + "restaurant_id": 1294, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 137, + "restaurant_id": 1801, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 137, + "restaurant_id": 464, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 137, + "restaurant_id": 780 + }, + { + "user_id": 137, + "restaurant_id": 2207 + }, + { + "user_id": 137, + "restaurant_id": 939 + }, + { + "user_id": 137, + "restaurant_id": 651 + }, + { + "user_id": 137, + "restaurant_id": 288 + } + ], + "updated_at": "2025-03-30T11:32:19.535000" + }, + { + "user_info": { + "user_id": 138, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 138, + "min_price": 18420, + "max_price": 359174, + "preferred_categories": [ + 5, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff98b6" + }, + "reservations": [ + { + "user_id": 138, + "restaurant_id": 68, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 138, + "restaurant_id": 1579 + } + ], + "updated_at": "2025-03-30T11:32:19.538000" + }, + { + "user_info": { + "user_id": 139, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 139, + "min_price": 50259, + "max_price": 479372, + "preferred_categories": [ + 3, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff98b7" + }, + "reservations": [ + { + "user_id": 139, + "restaurant_id": 490, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 139, + "restaurant_id": 142, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 139, + "restaurant_id": 989 + }, + { + "user_id": 139, + "restaurant_id": 1974 + } + ], + "updated_at": "2025-03-30T11:32:19.541000" + }, + { + "user_info": { + "user_id": 140, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 140, + "min_price": 164299, + "max_price": 276422, + "preferred_categories": [ + 5, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff98b8" + }, + "reservations": [ + { + "user_id": 140, + "restaurant_id": 174, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 140, + "restaurant_id": 125, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 140, + "restaurant_id": 1932, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 140, + "restaurant_id": 1175, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 140, + "restaurant_id": 2030 + }, + { + "user_id": 140, + "restaurant_id": 171 + }, + { + "user_id": 140, + "restaurant_id": 1511 + }, + { + "user_id": 140, + "restaurant_id": 2023 + }, + { + "user_id": 140, + "restaurant_id": 559 + } + ], + "updated_at": "2025-03-30T11:32:19.543000" + }, + { + "user_info": { + "user_id": 141, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 141, + "min_price": 176375, + "max_price": 268704, + "preferred_categories": [ + 1, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff98b9" + }, + "reservations": [ + { + "user_id": 141, + "restaurant_id": 2207, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 141, + "restaurant_id": 1036, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 141, + "restaurant_id": 383, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 141, + "restaurant_id": 843, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 141, + "restaurant_id": 1205 + }, + { + "user_id": 141, + "restaurant_id": 245 + }, + { + "user_id": 141, + "restaurant_id": 606 + }, + { + "user_id": 141, + "restaurant_id": 1773 + }, + { + "user_id": 141, + "restaurant_id": 95 + }, + { + "user_id": 141, + "restaurant_id": 1807 + } + ], + "updated_at": "2025-03-30T11:32:19.546000" + }, + { + "user_info": { + "user_id": 142, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 142, + "min_price": 196059, + "max_price": 321766, + "preferred_categories": [ + 1, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff98ba" + }, + "reservations": [ + { + "user_id": 142, + "restaurant_id": 2024, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 142, + "restaurant_id": 2098, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 142, + "restaurant_id": 1123, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 142, + "restaurant_id": 1827 + }, + { + "user_id": 142, + "restaurant_id": 1336 + }, + { + "user_id": 142, + "restaurant_id": 130 + } + ], + "updated_at": "2025-03-30T11:32:19.550000" + }, + { + "user_info": { + "user_id": 143, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 143, + "min_price": 182013, + "max_price": 244480, + "preferred_categories": [ + 3, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff98bb" + }, + "reservations": [ + { + "user_id": 143, + "restaurant_id": 1969, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 143, + "restaurant_id": 989 + }, + { + "user_id": 143, + "restaurant_id": 1553 + } + ], + "updated_at": "2025-03-30T11:32:19.552000" + }, + { + "user_info": { + "user_id": 144, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 144, + "min_price": 45546, + "max_price": 491347, + "preferred_categories": [ + 3, + 4, + 10 + ], + "_id": "67e92bc2785211cbd5ff98bc" + }, + "reservations": [ + { + "user_id": 144, + "restaurant_id": 200, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 144, + "restaurant_id": 2081, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 144, + "restaurant_id": 1285 + }, + { + "user_id": 144, + "restaurant_id": 1936 + }, + { + "user_id": 144, + "restaurant_id": 81 + } + ], + "updated_at": "2025-03-30T11:32:19.556000" + }, + { + "user_info": { + "user_id": 145, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 145, + "min_price": 31723, + "max_price": 479164, + "preferred_categories": [ + 3, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff98bd" + }, + "reservations": [ + { + "user_id": 145, + "restaurant_id": 1055, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 145, + "restaurant_id": 866, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 145, + "restaurant_id": 1494 + }, + { + "user_id": 145, + "restaurant_id": 490 + }, + { + "user_id": 145, + "restaurant_id": 250 + } + ], + "updated_at": "2025-03-30T11:32:19.558000" + }, + { + "user_info": { + "user_id": 146, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 146, + "min_price": 180807, + "max_price": 450496, + "preferred_categories": [ + 6, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff98be" + }, + "reservations": [ + { + "user_id": 146, + "restaurant_id": 19, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 146, + "restaurant_id": 792, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 146, + "restaurant_id": 1626 + } + ], + "updated_at": "2025-03-30T11:32:19.561000" + }, + { + "user_info": { + "user_id": 147, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 147, + "min_price": 178811, + "max_price": 473203, + "preferred_categories": [ + 5, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff98bf" + }, + "reservations": [ + { + "user_id": 147, + "restaurant_id": 372, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 147, + "restaurant_id": 2075, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 147, + "restaurant_id": 2107, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 147, + "restaurant_id": 2010, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 147, + "restaurant_id": 1659 + }, + { + "user_id": 147, + "restaurant_id": 688 + }, + { + "user_id": 147, + "restaurant_id": 601 + }, + { + "user_id": 147, + "restaurant_id": 320 + }, + { + "user_id": 147, + "restaurant_id": 1978 + }, + { + "user_id": 147, + "restaurant_id": 467 + } + ], + "updated_at": "2025-03-30T11:32:19.564000" + }, + { + "user_info": { + "user_id": 148, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 148, + "min_price": 139834, + "max_price": 379234, + "preferred_categories": [ + 2, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff98c0" + }, + "reservations": [ + { + "user_id": 148, + "restaurant_id": 1203, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 148, + "restaurant_id": 1694 + } + ], + "updated_at": "2025-03-30T11:32:19.567000" + }, + { + "user_info": { + "user_id": 149, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 149, + "min_price": 100745, + "max_price": 463183, + "preferred_categories": [ + 1, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff98c1" + }, + "reservations": [ + { + "user_id": 149, + "restaurant_id": 819, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 149, + "restaurant_id": 1630, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 149, + "restaurant_id": 827, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 149, + "restaurant_id": 801 + }, + { + "user_id": 149, + "restaurant_id": 357 + }, + { + "user_id": 149, + "restaurant_id": 1872 + }, + { + "user_id": 149, + "restaurant_id": 1924 + }, + { + "user_id": 149, + "restaurant_id": 3 + } + ], + "updated_at": "2025-03-30T11:32:19.570000" + }, + { + "user_info": { + "user_id": 150, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 150, + "min_price": 39040, + "max_price": 268605, + "preferred_categories": [ + 2, + 5, + 12 + ], + "_id": "67e92bc2785211cbd5ff98c2" + }, + "reservations": [ + { + "user_id": 150, + "restaurant_id": 2203, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 150, + "restaurant_id": 260 + }, + { + "user_id": 150, + "restaurant_id": 1677 + } + ], + "updated_at": "2025-03-30T11:32:19.572000" + }, + { + "user_info": { + "user_id": 151, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 151, + "min_price": 29406, + "max_price": 201272, + "preferred_categories": [ + 2, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff98c3" + }, + "reservations": [ + { + "user_id": 151, + "restaurant_id": 838, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 151, + "restaurant_id": 1478 + }, + { + "user_id": 151, + "restaurant_id": 1331 + }, + { + "user_id": 151, + "restaurant_id": 362 + } + ], + "updated_at": "2025-03-30T11:32:19.575000" + }, + { + "user_info": { + "user_id": 152, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 152, + "min_price": 123073, + "max_price": 260646, + "preferred_categories": [ + 4, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff98c4" + }, + "reservations": [ + { + "user_id": 152, + "restaurant_id": 1463, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 152, + "restaurant_id": 1277, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 152, + "restaurant_id": 981, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 152, + "restaurant_id": 2180, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 152, + "restaurant_id": 304 + }, + { + "user_id": 152, + "restaurant_id": 682 + }, + { + "user_id": 152, + "restaurant_id": 582 + } + ], + "updated_at": "2025-03-30T11:32:19.578000" + }, + { + "user_info": { + "user_id": 153, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 153, + "min_price": 168024, + "max_price": 432589, + "preferred_categories": [ + 4, + 5, + 12 + ], + "_id": "67e92bc2785211cbd5ff98c5" + }, + "reservations": [ + { + "user_id": 153, + "restaurant_id": 891, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 153, + "restaurant_id": 1155, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 153, + "restaurant_id": 2157, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 153, + "restaurant_id": 1652 + }, + { + "user_id": 153, + "restaurant_id": 1514 + }, + { + "user_id": 153, + "restaurant_id": 834 + }, + { + "user_id": 153, + "restaurant_id": 2021 + } + ], + "updated_at": "2025-03-30T11:32:19.581000" + }, + { + "user_info": { + "user_id": 154, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 154, + "min_price": 167510, + "max_price": 441903, + "preferred_categories": [ + 1, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff98c6" + }, + "reservations": [ + { + "user_id": 154, + "restaurant_id": 1564, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 154, + "restaurant_id": 743 + }, + { + "user_id": 154, + "restaurant_id": 188 + }, + { + "user_id": 154, + "restaurant_id": 365 + }, + { + "user_id": 154, + "restaurant_id": 1738 + }, + { + "user_id": 154, + "restaurant_id": 2209 + }, + { + "user_id": 154, + "restaurant_id": 728 + } + ], + "updated_at": "2025-03-30T11:32:19.583000" + }, + { + "user_info": { + "user_id": 155, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 155, + "min_price": 40023, + "max_price": 407162, + "preferred_categories": [ + 1, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff98c7" + }, + "reservations": [ + { + "user_id": 155, + "restaurant_id": 657, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 155, + "restaurant_id": 449, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 155, + "restaurant_id": 1823, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 155, + "restaurant_id": 2127, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 155, + "restaurant_id": 1635 + }, + { + "user_id": 155, + "restaurant_id": 2115 + }, + { + "user_id": 155, + "restaurant_id": 1562 + }, + { + "user_id": 155, + "restaurant_id": 698 + }, + { + "user_id": 155, + "restaurant_id": 1723 + } + ], + "updated_at": "2025-03-30T11:32:19.585000" + }, + { + "user_info": { + "user_id": 156, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 156, + "min_price": 159091, + "max_price": 277219, + "preferred_categories": [ + 3, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff98c8" + }, + "reservations": [ + { + "user_id": 156, + "restaurant_id": 86, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 156, + "restaurant_id": 304 + }, + { + "user_id": 156, + "restaurant_id": 1870 + }, + { + "user_id": 156, + "restaurant_id": 503 + }, + { + "user_id": 156, + "restaurant_id": 2069 + }, + { + "user_id": 156, + "restaurant_id": 2101 + }, + { + "user_id": 156, + "restaurant_id": 1612 + }, + { + "user_id": 156, + "restaurant_id": 1011 + } + ], + "updated_at": "2025-03-30T11:32:19.589000" + }, + { + "user_info": { + "user_id": 157, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 157, + "min_price": 48399, + "max_price": 434645, + "preferred_categories": [ + 8, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff98c9" + }, + "reservations": [ + { + "user_id": 157, + "restaurant_id": 944, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 157, + "restaurant_id": 164, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 157, + "restaurant_id": 1768, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 157, + "restaurant_id": 199, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 157, + "restaurant_id": 1943 + }, + { + "user_id": 157, + "restaurant_id": 597 + }, + { + "user_id": 157, + "restaurant_id": 2231 + } + ], + "updated_at": "2025-03-30T11:32:19.593000" + }, + { + "user_info": { + "user_id": 158, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 158, + "min_price": 144690, + "max_price": 330608, + "preferred_categories": [ + 3, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff98ca" + }, + "reservations": [ + { + "user_id": 158, + "restaurant_id": 1848, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 158, + "restaurant_id": 1843 + } + ], + "updated_at": "2025-03-30T11:32:19.597000" + }, + { + "user_info": { + "user_id": 159, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 159, + "min_price": 90552, + "max_price": 301470, + "preferred_categories": [ + 8, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff98cb" + }, + "reservations": [ + { + "user_id": 159, + "restaurant_id": 1423, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 159, + "restaurant_id": 377 + }, + { + "user_id": 159, + "restaurant_id": 135 + } + ], + "updated_at": "2025-03-30T11:32:19.600000" + }, + { + "user_info": { + "user_id": 160, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 160, + "min_price": 32498, + "max_price": 231090, + "preferred_categories": [ + 2, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff98cc" + }, + "reservations": [ + { + "user_id": 160, + "restaurant_id": 988, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 160, + "restaurant_id": 662, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 160, + "restaurant_id": 253, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 160, + "restaurant_id": 980 + }, + { + "user_id": 160, + "restaurant_id": 1797 + }, + { + "user_id": 160, + "restaurant_id": 1473 + }, + { + "user_id": 160, + "restaurant_id": 2254 + }, + { + "user_id": 160, + "restaurant_id": 2056 + } + ], + "updated_at": "2025-03-30T11:32:19.603000" + }, + { + "user_info": { + "user_id": 161, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 161, + "min_price": 159215, + "max_price": 230042, + "preferred_categories": [ + 3, + 4, + 6 + ], + "_id": "67e92bc2785211cbd5ff98cd" + }, + "reservations": [ + { + "user_id": 161, + "restaurant_id": 799, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 161, + "restaurant_id": 725, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 161, + "restaurant_id": 1513, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 161, + "restaurant_id": 507, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 161, + "restaurant_id": 2033, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 161, + "restaurant_id": 1197 + }, + { + "user_id": 161, + "restaurant_id": 1954 + }, + { + "user_id": 161, + "restaurant_id": 2066 + }, + { + "user_id": 161, + "restaurant_id": 2150 + }, + { + "user_id": 161, + "restaurant_id": 287 + } + ], + "updated_at": "2025-03-30T11:32:19.606000" + }, + { + "user_info": { + "user_id": 162, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 162, + "min_price": 149189, + "max_price": 335301, + "preferred_categories": [ + 4, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff98ce" + }, + "reservations": [ + { + "user_id": 162, + "restaurant_id": 759, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 162, + "restaurant_id": 1997 + }, + { + "user_id": 162, + "restaurant_id": 1114 + } + ], + "updated_at": "2025-03-30T11:32:19.609000" + }, + { + "user_info": { + "user_id": 163, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 163, + "min_price": 85454, + "max_price": 268901, + "preferred_categories": [ + 1, + 3, + 10 + ], + "_id": "67e92bc2785211cbd5ff98cf" + }, + "reservations": [ + { + "user_id": 163, + "restaurant_id": 426, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 163, + "restaurant_id": 1194, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 163, + "restaurant_id": 595, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 163, + "restaurant_id": 1856 + }, + { + "user_id": 163, + "restaurant_id": 1953 + }, + { + "user_id": 163, + "restaurant_id": 829 + }, + { + "user_id": 163, + "restaurant_id": 766 + }, + { + "user_id": 163, + "restaurant_id": 1517 + }, + { + "user_id": 163, + "restaurant_id": 1460 + } + ], + "updated_at": "2025-03-30T11:32:19.612000" + }, + { + "user_info": { + "user_id": 164, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 164, + "min_price": 31263, + "max_price": 431844, + "preferred_categories": [ + 3, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff98d0" + }, + "reservations": [], + "likes": [ + { + "user_id": 164, + "restaurant_id": 1071 + }, + { + "user_id": 164, + "restaurant_id": 2135 + }, + { + "user_id": 164, + "restaurant_id": 796 + } + ], + "updated_at": "2025-03-30T11:32:19.614000" + }, + { + "user_info": { + "user_id": 165, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 165, + "min_price": 66125, + "max_price": 305315, + "preferred_categories": [ + 5, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff98d1" + }, + "reservations": [ + { + "user_id": 165, + "restaurant_id": 400, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 165, + "restaurant_id": 971, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 165, + "restaurant_id": 1564, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 165, + "restaurant_id": 1917, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 165, + "restaurant_id": 1467 + }, + { + "user_id": 165, + "restaurant_id": 2182 + }, + { + "user_id": 165, + "restaurant_id": 1839 + }, + { + "user_id": 165, + "restaurant_id": 1203 + } + ], + "updated_at": "2025-03-30T11:32:19.619000" + }, + { + "user_info": { + "user_id": 166, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 166, + "min_price": 158451, + "max_price": 461726, + "preferred_categories": [ + 1, + 3, + 6 + ], + "_id": "67e92bc2785211cbd5ff98d2" + }, + "reservations": [ + { + "user_id": 166, + "restaurant_id": 2165, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 166, + "restaurant_id": 871, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 166, + "restaurant_id": 1130, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 166, + "restaurant_id": 1339, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 166, + "restaurant_id": 402 + } + ], + "updated_at": "2025-03-30T11:32:19.622000" + }, + { + "user_info": { + "user_id": 167, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 167, + "min_price": 19032, + "max_price": 291481, + "preferred_categories": [ + 1, + 3, + 10 + ], + "_id": "67e92bc2785211cbd5ff98d3" + }, + "reservations": [ + { + "user_id": 167, + "restaurant_id": 110, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 167, + "restaurant_id": 1050, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 167, + "restaurant_id": 2220, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:19.625000" + }, + { + "user_info": { + "user_id": 168, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 168, + "min_price": 78571, + "max_price": 345816, + "preferred_categories": [ + 1, + 2, + 4 + ], + "_id": "67e92bc2785211cbd5ff98d4" + }, + "reservations": [ + { + "user_id": 168, + "restaurant_id": 1328, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 168, + "restaurant_id": 2226, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 168, + "restaurant_id": 1184 + }, + { + "user_id": 168, + "restaurant_id": 1342 + }, + { + "user_id": 168, + "restaurant_id": 942 + } + ], + "updated_at": "2025-03-30T11:32:19.628000" + }, + { + "user_info": { + "user_id": 169, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 169, + "min_price": 198909, + "max_price": 309393, + "preferred_categories": [ + 1, + 4, + 9 + ], + "_id": "67e92bc2785211cbd5ff98d5" + }, + "reservations": [], + "likes": [ + { + "user_id": 169, + "restaurant_id": 79 + }, + { + "user_id": 169, + "restaurant_id": 439 + }, + { + "user_id": 169, + "restaurant_id": 1816 + }, + { + "user_id": 169, + "restaurant_id": 1795 + } + ], + "updated_at": "2025-03-30T11:32:19.630000" + }, + { + "user_info": { + "user_id": 170, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 170, + "min_price": 94505, + "max_price": 260505, + "preferred_categories": [ + 2, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff98d6" + }, + "reservations": [ + { + "user_id": 170, + "restaurant_id": 434, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 170, + "restaurant_id": 878 + } + ], + "updated_at": "2025-03-30T11:32:19.633000" + }, + { + "user_info": { + "user_id": 171, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 171, + "min_price": 74242, + "max_price": 278640, + "preferred_categories": [ + 1, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff98d7" + }, + "reservations": [ + { + "user_id": 171, + "restaurant_id": 283, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 171, + "restaurant_id": 216 + }, + { + "user_id": 171, + "restaurant_id": 455 + } + ], + "updated_at": "2025-03-30T11:32:19.635000" + }, + { + "user_info": { + "user_id": 172, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 172, + "min_price": 59574, + "max_price": 448128, + "preferred_categories": [ + 1, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff98d8" + }, + "reservations": [ + { + "user_id": 172, + "restaurant_id": 243, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 172, + "restaurant_id": 1824, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 172, + "restaurant_id": 1851, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 172, + "restaurant_id": 359, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 172, + "restaurant_id": 1406 + }, + { + "user_id": 172, + "restaurant_id": 386 + }, + { + "user_id": 172, + "restaurant_id": 765 + }, + { + "user_id": 172, + "restaurant_id": 1177 + }, + { + "user_id": 172, + "restaurant_id": 1676 + }, + { + "user_id": 172, + "restaurant_id": 1325 + }, + { + "user_id": 172, + "restaurant_id": 1894 + }, + { + "user_id": 172, + "restaurant_id": 1786 + } + ], + "updated_at": "2025-03-30T11:32:19.638000" + }, + { + "user_info": { + "user_id": 173, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 173, + "min_price": 146506, + "max_price": 431000, + "preferred_categories": [ + 4, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff98d9" + }, + "reservations": [ + { + "user_id": 173, + "restaurant_id": 950, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 173, + "restaurant_id": 1443, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 173, + "restaurant_id": 477 + } + ], + "updated_at": "2025-03-30T11:32:19.642000" + }, + { + "user_info": { + "user_id": 174, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 174, + "min_price": 61310, + "max_price": 364180, + "preferred_categories": [ + 1, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff98da" + }, + "reservations": [ + { + "user_id": 174, + "restaurant_id": 279, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 174, + "restaurant_id": 2124, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 174, + "restaurant_id": 539, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 174, + "restaurant_id": 2091 + }, + { + "user_id": 174, + "restaurant_id": 975 + }, + { + "user_id": 174, + "restaurant_id": 2252 + }, + { + "user_id": 174, + "restaurant_id": 1731 + } + ], + "updated_at": "2025-03-30T11:32:19.645000" + }, + { + "user_info": { + "user_id": 175, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 175, + "min_price": 41448, + "max_price": 356124, + "preferred_categories": [ + 3, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff98db" + }, + "reservations": [ + { + "user_id": 175, + "restaurant_id": 976, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 175, + "restaurant_id": 2111 + }, + { + "user_id": 175, + "restaurant_id": 2100 + }, + { + "user_id": 175, + "restaurant_id": 624 + } + ], + "updated_at": "2025-03-30T11:32:19.648000" + }, + { + "user_info": { + "user_id": 176, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 176, + "min_price": 162622, + "max_price": 468564, + "preferred_categories": [ + 4, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff98dc" + }, + "reservations": [ + { + "user_id": 176, + "restaurant_id": 1243, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 176, + "restaurant_id": 1626 + }, + { + "user_id": 176, + "restaurant_id": 1939 + }, + { + "user_id": 176, + "restaurant_id": 425 + } + ], + "updated_at": "2025-03-30T11:32:19.652000" + }, + { + "user_info": { + "user_id": 177, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 177, + "min_price": 107493, + "max_price": 220994, + "preferred_categories": [ + 1, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff98dd" + }, + "reservations": [ + { + "user_id": 177, + "restaurant_id": 1691, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 177, + "restaurant_id": 951, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 177, + "restaurant_id": 170, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 177, + "restaurant_id": 749, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 177, + "restaurant_id": 2218, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 177, + "restaurant_id": 1465, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 177, + "restaurant_id": 8 + }, + { + "user_id": 177, + "restaurant_id": 952 + }, + { + "user_id": 177, + "restaurant_id": 1643 + } + ], + "updated_at": "2025-03-30T11:32:19.657000" + }, + { + "user_info": { + "user_id": 178, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 178, + "min_price": 196399, + "max_price": 290759, + "preferred_categories": [ + 2, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff98de" + }, + "reservations": [], + "likes": [ + { + "user_id": 178, + "restaurant_id": 1159 + }, + { + "user_id": 178, + "restaurant_id": 1438 + }, + { + "user_id": 178, + "restaurant_id": 55 + } + ], + "updated_at": "2025-03-30T11:32:19.662000" + }, + { + "user_info": { + "user_id": 179, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 179, + "min_price": 193715, + "max_price": 400526, + "preferred_categories": [ + 1, + 3, + 5 + ], + "_id": "67e92bc2785211cbd5ff98df" + }, + "reservations": [ + { + "user_id": 179, + "restaurant_id": 1778, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 179, + "restaurant_id": 1496 + }, + { + "user_id": 179, + "restaurant_id": 1132 + }, + { + "user_id": 179, + "restaurant_id": 1880 + }, + { + "user_id": 179, + "restaurant_id": 1930 + }, + { + "user_id": 179, + "restaurant_id": 26 + }, + { + "user_id": 179, + "restaurant_id": 1546 + }, + { + "user_id": 179, + "restaurant_id": 1797 + }, + { + "user_id": 179, + "restaurant_id": 1142 + } + ], + "updated_at": "2025-03-30T11:32:19.669000" + }, + { + "user_info": { + "user_id": 180, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 180, + "min_price": 79311, + "max_price": 413880, + "preferred_categories": [ + 2, + 4, + 5 + ], + "_id": "67e92bc2785211cbd5ff98e0" + }, + "reservations": [ + { + "user_id": 180, + "restaurant_id": 483, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 180, + "restaurant_id": 1729, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 180, + "restaurant_id": 648, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 180, + "restaurant_id": 811 + } + ], + "updated_at": "2025-03-30T11:32:19.676000" + }, + { + "user_info": { + "user_id": 181, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 181, + "min_price": 11008, + "max_price": 321989, + "preferred_categories": [ + 1, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff98e1" + }, + "reservations": [ + { + "user_id": 181, + "restaurant_id": 2081, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 181, + "restaurant_id": 447, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 181, + "restaurant_id": 153, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 181, + "restaurant_id": 1474, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 181, + "restaurant_id": 1360, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 181, + "restaurant_id": 1338 + }, + { + "user_id": 181, + "restaurant_id": 114 + } + ], + "updated_at": "2025-03-30T11:32:19.680000" + }, + { + "user_info": { + "user_id": 182, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 182, + "min_price": 170913, + "max_price": 345544, + "preferred_categories": [ + 4, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff98e2" + }, + "reservations": [ + { + "user_id": 182, + "restaurant_id": 1676, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 182, + "restaurant_id": 1754, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 182, + "restaurant_id": 317, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 182, + "restaurant_id": 230, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 182, + "restaurant_id": 1094 + }, + { + "user_id": 182, + "restaurant_id": 32 + } + ], + "updated_at": "2025-03-30T11:32:19.684000" + }, + { + "user_info": { + "user_id": 183, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 183, + "min_price": 183937, + "max_price": 221962, + "preferred_categories": [ + 1, + 2, + 9 + ], + "_id": "67e92bc2785211cbd5ff98e3" + }, + "reservations": [ + { + "user_id": 183, + "restaurant_id": 1377, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 183, + "restaurant_id": 763, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 183, + "restaurant_id": 1289, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 183, + "restaurant_id": 451 + }, + { + "user_id": 183, + "restaurant_id": 1970 + }, + { + "user_id": 183, + "restaurant_id": 1381 + } + ], + "updated_at": "2025-03-30T11:32:19.687000" + }, + { + "user_info": { + "user_id": 184, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 184, + "min_price": 161327, + "max_price": 311028, + "preferred_categories": [ + 1, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff98e4" + }, + "reservations": [ + { + "user_id": 184, + "restaurant_id": 240, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 184, + "restaurant_id": 2236, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 184, + "restaurant_id": 1427, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 184, + "restaurant_id": 1284, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 184, + "restaurant_id": 1566, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 184, + "restaurant_id": 827 + }, + { + "user_id": 184, + "restaurant_id": 1902 + }, + { + "user_id": 184, + "restaurant_id": 1788 + }, + { + "user_id": 184, + "restaurant_id": 1184 + }, + { + "user_id": 184, + "restaurant_id": 204 + } + ], + "updated_at": "2025-03-30T11:32:19.690000" + }, + { + "user_info": { + "user_id": 185, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 185, + "min_price": 183519, + "max_price": 248252, + "preferred_categories": [ + 1, + 3, + 11 + ], + "_id": "67e92bc2785211cbd5ff98e5" + }, + "reservations": [ + { + "user_id": 185, + "restaurant_id": 958, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 185, + "restaurant_id": 343 + } + ], + "updated_at": "2025-03-30T11:32:19.695000" + }, + { + "user_info": { + "user_id": 186, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 186, + "min_price": 122923, + "max_price": 451106, + "preferred_categories": [ + 7, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff98e6" + }, + "reservations": [ + { + "user_id": 186, + "restaurant_id": 909, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 186, + "restaurant_id": 1394 + }, + { + "user_id": 186, + "restaurant_id": 1372 + }, + { + "user_id": 186, + "restaurant_id": 338 + }, + { + "user_id": 186, + "restaurant_id": 469 + }, + { + "user_id": 186, + "restaurant_id": 998 + } + ], + "updated_at": "2025-03-30T11:32:19.699000" + }, + { + "user_info": { + "user_id": 187, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 187, + "min_price": 147113, + "max_price": 405380, + "preferred_categories": [ + 1, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff98e7" + }, + "reservations": [ + { + "user_id": 187, + "restaurant_id": 58, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 187, + "restaurant_id": 165, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 187, + "restaurant_id": 288, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 187, + "restaurant_id": 233, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 187, + "restaurant_id": 187, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 187, + "restaurant_id": 1737, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 187, + "restaurant_id": 1465 + } + ], + "updated_at": "2025-03-30T11:32:19.702000" + }, + { + "user_info": { + "user_id": 188, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 188, + "min_price": 28523, + "max_price": 203839, + "preferred_categories": [ + 2, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff98e8" + }, + "reservations": [ + { + "user_id": 188, + "restaurant_id": 465, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 188, + "restaurant_id": 1982, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 188, + "restaurant_id": 1109, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 188, + "restaurant_id": 720 + }, + { + "user_id": 188, + "restaurant_id": 1745 + } + ], + "updated_at": "2025-03-30T11:32:19.705000" + }, + { + "user_info": { + "user_id": 189, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 189, + "min_price": 76186, + "max_price": 333806, + "preferred_categories": [ + 3, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff98e9" + }, + "reservations": [ + { + "user_id": 189, + "restaurant_id": 1985, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 189, + "restaurant_id": 2042, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 189, + "restaurant_id": 810 + }, + { + "user_id": 189, + "restaurant_id": 2236 + } + ], + "updated_at": "2025-03-30T11:32:19.708000" + }, + { + "user_info": { + "user_id": 190, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 190, + "min_price": 92873, + "max_price": 432627, + "preferred_categories": [ + 5, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff98ea" + }, + "reservations": [ + { + "user_id": 190, + "restaurant_id": 180, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 190, + "restaurant_id": 1516, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 190, + "restaurant_id": 1344, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 190, + "restaurant_id": 1375 + }, + { + "user_id": 190, + "restaurant_id": 1620 + }, + { + "user_id": 190, + "restaurant_id": 2136 + }, + { + "user_id": 190, + "restaurant_id": 480 + }, + { + "user_id": 190, + "restaurant_id": 678 + }, + { + "user_id": 190, + "restaurant_id": 1903 + }, + { + "user_id": 190, + "restaurant_id": 60 + }, + { + "user_id": 190, + "restaurant_id": 1737 + }, + { + "user_id": 190, + "restaurant_id": 714 + } + ], + "updated_at": "2025-03-30T11:32:19.720000" + }, + { + "user_info": { + "user_id": 191, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 191, + "min_price": 95798, + "max_price": 215347, + "preferred_categories": [ + 1, + 4, + 11 + ], + "_id": "67e92bc2785211cbd5ff98eb" + }, + "reservations": [ + { + "user_id": 191, + "restaurant_id": 946, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 191, + "restaurant_id": 1703, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 191, + "restaurant_id": 2011 + }, + { + "user_id": 191, + "restaurant_id": 130 + }, + { + "user_id": 191, + "restaurant_id": 1645 + } + ], + "updated_at": "2025-03-30T11:32:19.724000" + }, + { + "user_info": { + "user_id": 192, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 192, + "min_price": 118625, + "max_price": 404671, + "preferred_categories": [ + 4, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff98ec" + }, + "reservations": [ + { + "user_id": 192, + "restaurant_id": 916, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 192, + "restaurant_id": 354 + }, + { + "user_id": 192, + "restaurant_id": 2106 + }, + { + "user_id": 192, + "restaurant_id": 130 + }, + { + "user_id": 192, + "restaurant_id": 1146 + }, + { + "user_id": 192, + "restaurant_id": 1608 + }, + { + "user_id": 192, + "restaurant_id": 917 + } + ], + "updated_at": "2025-03-30T11:32:19.727000" + }, + { + "user_info": { + "user_id": 193, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 193, + "min_price": 82141, + "max_price": 363349, + "preferred_categories": [ + 1, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff98ed" + }, + "reservations": [ + { + "user_id": 193, + "restaurant_id": 2007, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 193, + "restaurant_id": 1314, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 193, + "restaurant_id": 1472, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 193, + "restaurant_id": 44 + } + ], + "updated_at": "2025-03-30T11:32:19.730000" + }, + { + "user_info": { + "user_id": 194, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 194, + "min_price": 176609, + "max_price": 278162, + "preferred_categories": [ + 2, + 3, + 6 + ], + "_id": "67e92bc2785211cbd5ff98ee" + }, + "reservations": [ + { + "user_id": 194, + "restaurant_id": 1174, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 194, + "restaurant_id": 424 + }, + { + "user_id": 194, + "restaurant_id": 349 + }, + { + "user_id": 194, + "restaurant_id": 1635 + }, + { + "user_id": 194, + "restaurant_id": 837 + }, + { + "user_id": 194, + "restaurant_id": 1197 + } + ], + "updated_at": "2025-03-30T11:32:19.733000" + }, + { + "user_info": { + "user_id": 195, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 195, + "min_price": 89445, + "max_price": 384349, + "preferred_categories": [ + 3, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff98ef" + }, + "reservations": [ + { + "user_id": 195, + "restaurant_id": 808, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 195, + "restaurant_id": 1366, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 195, + "restaurant_id": 2190, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:19.736000" + }, + { + "user_info": { + "user_id": 196, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 196, + "min_price": 69355, + "max_price": 422863, + "preferred_categories": [ + 7, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff98f0" + }, + "reservations": [ + { + "user_id": 196, + "restaurant_id": 826, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 196, + "restaurant_id": 1677, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 196, + "restaurant_id": 1847 + }, + { + "user_id": 196, + "restaurant_id": 1790 + }, + { + "user_id": 196, + "restaurant_id": 1999 + }, + { + "user_id": 196, + "restaurant_id": 386 + }, + { + "user_id": 196, + "restaurant_id": 568 + }, + { + "user_id": 196, + "restaurant_id": 740 + } + ], + "updated_at": "2025-03-30T11:32:19.739000" + }, + { + "user_info": { + "user_id": 197, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 197, + "min_price": 149506, + "max_price": 203902, + "preferred_categories": [ + 1, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff98f1" + }, + "reservations": [ + { + "user_id": 197, + "restaurant_id": 1339, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 197, + "restaurant_id": 1147 + }, + { + "user_id": 197, + "restaurant_id": 1131 + }, + { + "user_id": 197, + "restaurant_id": 1887 + }, + { + "user_id": 197, + "restaurant_id": 93 + }, + { + "user_id": 197, + "restaurant_id": 1593 + }, + { + "user_id": 197, + "restaurant_id": 269 + }, + { + "user_id": 197, + "restaurant_id": 1091 + } + ], + "updated_at": "2025-03-30T11:32:19.742000" + }, + { + "user_info": { + "user_id": 198, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 198, + "min_price": 51413, + "max_price": 474910, + "preferred_categories": [ + 3, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff98f2" + }, + "reservations": [], + "likes": [ + { + "user_id": 198, + "restaurant_id": 1287 + }, + { + "user_id": 198, + "restaurant_id": 1026 + }, + { + "user_id": 198, + "restaurant_id": 1905 + }, + { + "user_id": 198, + "restaurant_id": 1539 + }, + { + "user_id": 198, + "restaurant_id": 71 + }, + { + "user_id": 198, + "restaurant_id": 625 + } + ], + "updated_at": "2025-03-30T11:32:19.745000" + }, + { + "user_info": { + "user_id": 199, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 199, + "min_price": 79957, + "max_price": 476345, + "preferred_categories": [ + 1, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff98f3" + }, + "reservations": [ + { + "user_id": 199, + "restaurant_id": 1353, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 199, + "restaurant_id": 2187, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 199, + "restaurant_id": 330, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 199, + "restaurant_id": 1455 + }, + { + "user_id": 199, + "restaurant_id": 2256 + }, + { + "user_id": 199, + "restaurant_id": 102 + }, + { + "user_id": 199, + "restaurant_id": 1583 + }, + { + "user_id": 199, + "restaurant_id": 133 + }, + { + "user_id": 199, + "restaurant_id": 1519 + } + ], + "updated_at": "2025-03-30T11:32:19.747000" + }, + { + "user_info": { + "user_id": 200, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 200, + "min_price": 15234, + "max_price": 220967, + "preferred_categories": [ + 5, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff98f4" + }, + "reservations": [ + { + "user_id": 200, + "restaurant_id": 316, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 200, + "restaurant_id": 2025, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 200, + "restaurant_id": 24 + }, + { + "user_id": 200, + "restaurant_id": 614 + }, + { + "user_id": 200, + "restaurant_id": 1192 + }, + { + "user_id": 200, + "restaurant_id": 439 + }, + { + "user_id": 200, + "restaurant_id": 426 + }, + { + "user_id": 200, + "restaurant_id": 596 + } + ], + "updated_at": "2025-03-30T11:32:19.750000" + }, + { + "user_info": { + "user_id": 201, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 201, + "min_price": 72795, + "max_price": 355305, + "preferred_categories": [ + 2, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff98f5" + }, + "reservations": [ + { + "user_id": 201, + "restaurant_id": 598, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 201, + "restaurant_id": 1378, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 201, + "restaurant_id": 647, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 201, + "restaurant_id": 2091 + }, + { + "user_id": 201, + "restaurant_id": 1123 + }, + { + "user_id": 201, + "restaurant_id": 593 + } + ], + "updated_at": "2025-03-30T11:32:19.753000" + }, + { + "user_info": { + "user_id": 202, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 202, + "min_price": 44532, + "max_price": 374021, + "preferred_categories": [ + 2, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff98f6" + }, + "reservations": [ + { + "user_id": 202, + "restaurant_id": 958, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 202, + "restaurant_id": 1050, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 202, + "restaurant_id": 1524, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 202, + "restaurant_id": 139 + }, + { + "user_id": 202, + "restaurant_id": 1877 + } + ], + "updated_at": "2025-03-30T11:32:19.756000" + }, + { + "user_info": { + "user_id": 203, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 203, + "min_price": 51617, + "max_price": 279504, + "preferred_categories": [ + 4, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff98f7" + }, + "reservations": [ + { + "user_id": 203, + "restaurant_id": 45, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 203, + "restaurant_id": 1157, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 203, + "restaurant_id": 2078, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 203, + "restaurant_id": 564 + }, + { + "user_id": 203, + "restaurant_id": 397 + }, + { + "user_id": 203, + "restaurant_id": 334 + }, + { + "user_id": 203, + "restaurant_id": 1710 + }, + { + "user_id": 203, + "restaurant_id": 1912 + }, + { + "user_id": 203, + "restaurant_id": 1570 + } + ], + "updated_at": "2025-03-30T11:32:19.759000" + }, + { + "user_info": { + "user_id": 204, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 204, + "min_price": 160288, + "max_price": 443296, + "preferred_categories": [ + 2, + 3, + 5 + ], + "_id": "67e92bc2785211cbd5ff98f8" + }, + "reservations": [ + { + "user_id": 204, + "restaurant_id": 175, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 204, + "restaurant_id": 181 + }, + { + "user_id": 204, + "restaurant_id": 937 + } + ], + "updated_at": "2025-03-30T11:32:19.761000" + }, + { + "user_info": { + "user_id": 205, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 205, + "min_price": 180085, + "max_price": 375556, + "preferred_categories": [ + 2, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff98f9" + }, + "reservations": [ + { + "user_id": 205, + "restaurant_id": 986, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 205, + "restaurant_id": 485, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 205, + "restaurant_id": 870 + }, + { + "user_id": 205, + "restaurant_id": 1242 + }, + { + "user_id": 205, + "restaurant_id": 1753 + } + ], + "updated_at": "2025-03-30T11:32:19.763000" + }, + { + "user_info": { + "user_id": 206, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 206, + "min_price": 176851, + "max_price": 251345, + "preferred_categories": [ + 4, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff98fa" + }, + "reservations": [ + { + "user_id": 206, + "restaurant_id": 807, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 206, + "restaurant_id": 723, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 206, + "restaurant_id": 830 + }, + { + "user_id": 206, + "restaurant_id": 2005 + }, + { + "user_id": 206, + "restaurant_id": 800 + } + ], + "updated_at": "2025-03-30T11:32:19.767000" + }, + { + "user_info": { + "user_id": 207, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 207, + "min_price": 172931, + "max_price": 494189, + "preferred_categories": [ + 2, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff98fb" + }, + "reservations": [ + { + "user_id": 207, + "restaurant_id": 410, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 207, + "restaurant_id": 842, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 207, + "restaurant_id": 1596, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 207, + "restaurant_id": 1662, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 207, + "restaurant_id": 2249 + }, + { + "user_id": 207, + "restaurant_id": 713 + }, + { + "user_id": 207, + "restaurant_id": 721 + }, + { + "user_id": 207, + "restaurant_id": 1591 + } + ], + "updated_at": "2025-03-30T11:32:19.771000" + }, + { + "user_info": { + "user_id": 208, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 208, + "min_price": 94459, + "max_price": 380802, + "preferred_categories": [ + 4, + 5, + 12 + ], + "_id": "67e92bc2785211cbd5ff98fc" + }, + "reservations": [ + { + "user_id": 208, + "restaurant_id": 1607, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 208, + "restaurant_id": 936, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 208, + "restaurant_id": 1173, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 208, + "restaurant_id": 1648 + }, + { + "user_id": 208, + "restaurant_id": 1939 + }, + { + "user_id": 208, + "restaurant_id": 1019 + }, + { + "user_id": 208, + "restaurant_id": 968 + } + ], + "updated_at": "2025-03-30T11:32:19.774000" + }, + { + "user_info": { + "user_id": 209, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 209, + "min_price": 15499, + "max_price": 237485, + "preferred_categories": [ + 1, + 2, + 11 + ], + "_id": "67e92bc2785211cbd5ff98fd" + }, + "reservations": [ + { + "user_id": 209, + "restaurant_id": 783, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 209, + "restaurant_id": 854 + }, + { + "user_id": 209, + "restaurant_id": 1991 + } + ], + "updated_at": "2025-03-30T11:32:19.778000" + }, + { + "user_info": { + "user_id": 210, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 210, + "min_price": 74857, + "max_price": 389579, + "preferred_categories": [ + 4, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff98fe" + }, + "reservations": [ + { + "user_id": 210, + "restaurant_id": 404, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 210, + "restaurant_id": 1339, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 210, + "restaurant_id": 1014 + }, + { + "user_id": 210, + "restaurant_id": 1185 + } + ], + "updated_at": "2025-03-30T11:32:19.781000" + }, + { + "user_info": { + "user_id": 211, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 211, + "min_price": 92737, + "max_price": 360769, + "preferred_categories": [ + 4, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff98ff" + }, + "reservations": [ + { + "user_id": 211, + "restaurant_id": 231, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 211, + "restaurant_id": 2137 + }, + { + "user_id": 211, + "restaurant_id": 629 + }, + { + "user_id": 211, + "restaurant_id": 1343 + } + ], + "updated_at": "2025-03-30T11:32:19.784000" + }, + { + "user_info": { + "user_id": 212, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 212, + "min_price": 66872, + "max_price": 433681, + "preferred_categories": [ + 2, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff9900" + }, + "reservations": [ + { + "user_id": 212, + "restaurant_id": 1859, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 212, + "restaurant_id": 224, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 212, + "restaurant_id": 1895, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 212, + "restaurant_id": 537, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 212, + "restaurant_id": 2115, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 212, + "restaurant_id": 1450 + } + ], + "updated_at": "2025-03-30T11:32:19.786000" + }, + { + "user_info": { + "user_id": 213, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 213, + "min_price": 153773, + "max_price": 244503, + "preferred_categories": [ + 3, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9901" + }, + "reservations": [], + "likes": [ + { + "user_id": 213, + "restaurant_id": 1180 + }, + { + "user_id": 213, + "restaurant_id": 551 + } + ], + "updated_at": "2025-03-30T11:32:19.790000" + }, + { + "user_info": { + "user_id": 214, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 214, + "min_price": 138552, + "max_price": 282906, + "preferred_categories": [ + 2, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9902" + }, + "reservations": [ + { + "user_id": 214, + "restaurant_id": 402, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 214, + "restaurant_id": 690, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 214, + "restaurant_id": 740, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 214, + "restaurant_id": 1517 + }, + { + "user_id": 214, + "restaurant_id": 462 + }, + { + "user_id": 214, + "restaurant_id": 1176 + } + ], + "updated_at": "2025-03-30T11:32:19.793000" + }, + { + "user_info": { + "user_id": 215, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 215, + "min_price": 27015, + "max_price": 309651, + "preferred_categories": [ + 3, + 4, + 5 + ], + "_id": "67e92bc2785211cbd5ff9903" + }, + "reservations": [ + { + "user_id": 215, + "restaurant_id": 1252, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 215, + "restaurant_id": 614, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 215, + "restaurant_id": 1076 + } + ], + "updated_at": "2025-03-30T11:32:19.796000" + }, + { + "user_info": { + "user_id": 216, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 216, + "min_price": 35438, + "max_price": 235826, + "preferred_categories": [ + 6, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9904" + }, + "reservations": [ + { + "user_id": 216, + "restaurant_id": 348, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 216, + "restaurant_id": 2029, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 216, + "restaurant_id": 914, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 216, + "restaurant_id": 1590, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 216, + "restaurant_id": 84, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 216, + "restaurant_id": 664 + }, + { + "user_id": 216, + "restaurant_id": 1327 + }, + { + "user_id": 216, + "restaurant_id": 96 + }, + { + "user_id": 216, + "restaurant_id": 1476 + } + ], + "updated_at": "2025-03-30T11:32:19.799000" + }, + { + "user_info": { + "user_id": 217, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 217, + "min_price": 50165, + "max_price": 348160, + "preferred_categories": [ + 2, + 4, + 11 + ], + "_id": "67e92bc2785211cbd5ff9905" + }, + "reservations": [ + { + "user_id": 217, + "restaurant_id": 407, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 217, + "restaurant_id": 1261, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 217, + "restaurant_id": 247 + }, + { + "user_id": 217, + "restaurant_id": 361 + }, + { + "user_id": 217, + "restaurant_id": 711 + }, + { + "user_id": 217, + "restaurant_id": 2138 + }, + { + "user_id": 217, + "restaurant_id": 358 + } + ], + "updated_at": "2025-03-30T11:32:19.802000" + }, + { + "user_info": { + "user_id": 218, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 218, + "min_price": 37506, + "max_price": 252461, + "preferred_categories": [ + 1, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff9906" + }, + "reservations": [ + { + "user_id": 218, + "restaurant_id": 1082, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 218, + "restaurant_id": 1883, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 218, + "restaurant_id": 1232, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 218, + "restaurant_id": 146, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 218, + "restaurant_id": 841 + }, + { + "user_id": 218, + "restaurant_id": 658 + }, + { + "user_id": 218, + "restaurant_id": 693 + }, + { + "user_id": 218, + "restaurant_id": 49 + }, + { + "user_id": 218, + "restaurant_id": 1931 + } + ], + "updated_at": "2025-03-30T11:32:19.805000" + }, + { + "user_info": { + "user_id": 219, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 219, + "min_price": 120768, + "max_price": 425014, + "preferred_categories": [ + 2, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff9907" + }, + "reservations": [ + { + "user_id": 219, + "restaurant_id": 1559, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 219, + "restaurant_id": 262, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 219, + "restaurant_id": 2254, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 219, + "restaurant_id": 1383, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 219, + "restaurant_id": 986, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 219, + "restaurant_id": 1428, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 219, + "restaurant_id": 504 + }, + { + "user_id": 219, + "restaurant_id": 435 + } + ], + "updated_at": "2025-03-30T11:32:19.808000" + }, + { + "user_info": { + "user_id": 220, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 220, + "min_price": 54360, + "max_price": 484657, + "preferred_categories": [ + 5, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9908" + }, + "reservations": [ + { + "user_id": 220, + "restaurant_id": 1889, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 220, + "restaurant_id": 1169, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 220, + "restaurant_id": 1461, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 220, + "restaurant_id": 770 + }, + { + "user_id": 220, + "restaurant_id": 1592 + } + ], + "updated_at": "2025-03-30T11:32:19.810000" + }, + { + "user_info": { + "user_id": 221, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 221, + "min_price": 115437, + "max_price": 357157, + "preferred_categories": [ + 7, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9909" + }, + "reservations": [ + { + "user_id": 221, + "restaurant_id": 1373, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 221, + "restaurant_id": 866, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 221, + "restaurant_id": 1072, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 221, + "restaurant_id": 461, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 221, + "restaurant_id": 157, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 221, + "restaurant_id": 91, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 221, + "restaurant_id": 1706 + } + ], + "updated_at": "2025-03-30T11:32:19.813000" + }, + { + "user_info": { + "user_id": 222, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 222, + "min_price": 88353, + "max_price": 409313, + "preferred_categories": [ + 2, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff990a" + }, + "reservations": [ + { + "user_id": 222, + "restaurant_id": 504, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 222, + "restaurant_id": 27, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 222, + "restaurant_id": 1046 + }, + { + "user_id": 222, + "restaurant_id": 670 + } + ], + "updated_at": "2025-03-30T11:32:19.815000" + }, + { + "user_info": { + "user_id": 223, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 223, + "min_price": 179055, + "max_price": 295721, + "preferred_categories": [ + 1, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff990b" + }, + "reservations": [ + { + "user_id": 223, + "restaurant_id": 511, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 223, + "restaurant_id": 2233, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 223, + "restaurant_id": 1075, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 223, + "restaurant_id": 2126, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 223, + "restaurant_id": 2075, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 223, + "restaurant_id": 1557 + }, + { + "user_id": 223, + "restaurant_id": 764 + }, + { + "user_id": 223, + "restaurant_id": 2247 + }, + { + "user_id": 223, + "restaurant_id": 1055 + } + ], + "updated_at": "2025-03-30T11:32:19.819000" + }, + { + "user_info": { + "user_id": 224, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 224, + "min_price": 26505, + "max_price": 211633, + "preferred_categories": [ + 1, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff990c" + }, + "reservations": [ + { + "user_id": 224, + "restaurant_id": 152, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 224, + "restaurant_id": 301, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 224, + "restaurant_id": 11, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 224, + "restaurant_id": 2007, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 224, + "restaurant_id": 1279 + }, + { + "user_id": 224, + "restaurant_id": 970 + }, + { + "user_id": 224, + "restaurant_id": 201 + }, + { + "user_id": 224, + "restaurant_id": 2160 + } + ], + "updated_at": "2025-03-30T11:32:19.823000" + }, + { + "user_info": { + "user_id": 225, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 225, + "min_price": 99891, + "max_price": 301350, + "preferred_categories": [ + 5, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff990d" + }, + "reservations": [ + { + "user_id": 225, + "restaurant_id": 1920, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 225, + "restaurant_id": 747, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 225, + "restaurant_id": 1308, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 225, + "restaurant_id": 168 + }, + { + "user_id": 225, + "restaurant_id": 65 + }, + { + "user_id": 225, + "restaurant_id": 652 + }, + { + "user_id": 225, + "restaurant_id": 1114 + } + ], + "updated_at": "2025-03-30T11:32:19.828000" + }, + { + "user_info": { + "user_id": 226, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 226, + "min_price": 70481, + "max_price": 262495, + "preferred_categories": [ + 4, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff990e" + }, + "reservations": [ + { + "user_id": 226, + "restaurant_id": 1210, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 226, + "restaurant_id": 1872, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 226, + "restaurant_id": 1739, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 226, + "restaurant_id": 1506, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 226, + "restaurant_id": 1618, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 226, + "restaurant_id": 499 + }, + { + "user_id": 226, + "restaurant_id": 1993 + }, + { + "user_id": 226, + "restaurant_id": 940 + } + ], + "updated_at": "2025-03-30T11:32:19.831000" + }, + { + "user_info": { + "user_id": 227, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 227, + "min_price": 35595, + "max_price": 210992, + "preferred_categories": [ + 6, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff990f" + }, + "reservations": [ + { + "user_id": 227, + "restaurant_id": 755, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 227, + "restaurant_id": 1137, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 227, + "restaurant_id": 1936 + }, + { + "user_id": 227, + "restaurant_id": 770 + } + ], + "updated_at": "2025-03-30T11:32:19.835000" + }, + { + "user_info": { + "user_id": 228, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 228, + "min_price": 79859, + "max_price": 266644, + "preferred_categories": [ + 2, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff9910" + }, + "reservations": [ + { + "user_id": 228, + "restaurant_id": 1930, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 228, + "restaurant_id": 222, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 228, + "restaurant_id": 727, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 228, + "restaurant_id": 903, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 228, + "restaurant_id": 61 + }, + { + "user_id": 228, + "restaurant_id": 1065 + }, + { + "user_id": 228, + "restaurant_id": 141 + }, + { + "user_id": 228, + "restaurant_id": 423 + } + ], + "updated_at": "2025-03-30T11:32:19.838000" + }, + { + "user_info": { + "user_id": 229, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 229, + "min_price": 93433, + "max_price": 279378, + "preferred_categories": [ + 1, + 3, + 6 + ], + "_id": "67e92bc2785211cbd5ff9911" + }, + "reservations": [ + { + "user_id": 229, + "restaurant_id": 983, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 229, + "restaurant_id": 1665 + }, + { + "user_id": 229, + "restaurant_id": 943 + }, + { + "user_id": 229, + "restaurant_id": 46 + }, + { + "user_id": 229, + "restaurant_id": 1831 + }, + { + "user_id": 229, + "restaurant_id": 2060 + } + ], + "updated_at": "2025-03-30T11:32:19.841000" + }, + { + "user_info": { + "user_id": 230, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 230, + "min_price": 49661, + "max_price": 358083, + "preferred_categories": [ + 1, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff9912" + }, + "reservations": [ + { + "user_id": 230, + "restaurant_id": 1742, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 230, + "restaurant_id": 1901, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 230, + "restaurant_id": 1711 + } + ], + "updated_at": "2025-03-30T11:32:19.845000" + }, + { + "user_info": { + "user_id": 231, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 231, + "min_price": 196091, + "max_price": 417867, + "preferred_categories": [ + 2, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9913" + }, + "reservations": [ + { + "user_id": 231, + "restaurant_id": 570, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 231, + "restaurant_id": 1974, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 231, + "restaurant_id": 801, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 231, + "restaurant_id": 989 + }, + { + "user_id": 231, + "restaurant_id": 173 + }, + { + "user_id": 231, + "restaurant_id": 369 + }, + { + "user_id": 231, + "restaurant_id": 1102 + } + ], + "updated_at": "2025-03-30T11:32:19.848000" + }, + { + "user_info": { + "user_id": 232, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 232, + "min_price": 54841, + "max_price": 307433, + "preferred_categories": [ + 1, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff9914" + }, + "reservations": [ + { + "user_id": 232, + "restaurant_id": 1996, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 232, + "restaurant_id": 216, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 232, + "restaurant_id": 2116, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 232, + "restaurant_id": 2058, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 232, + "restaurant_id": 868 + }, + { + "user_id": 232, + "restaurant_id": 240 + }, + { + "user_id": 232, + "restaurant_id": 256 + } + ], + "updated_at": "2025-03-30T11:32:19.851000" + }, + { + "user_info": { + "user_id": 233, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 233, + "min_price": 171934, + "max_price": 266947, + "preferred_categories": [ + 5, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9915" + }, + "reservations": [ + { + "user_id": 233, + "restaurant_id": 254, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 233, + "restaurant_id": 418 + }, + { + "user_id": 233, + "restaurant_id": 1974 + }, + { + "user_id": 233, + "restaurant_id": 87 + }, + { + "user_id": 233, + "restaurant_id": 220 + }, + { + "user_id": 233, + "restaurant_id": 1008 + }, + { + "user_id": 233, + "restaurant_id": 1139 + } + ], + "updated_at": "2025-03-30T11:32:19.854000" + }, + { + "user_info": { + "user_id": 234, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 234, + "min_price": 121560, + "max_price": 444798, + "preferred_categories": [ + 2, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9916" + }, + "reservations": [ + { + "user_id": 234, + "restaurant_id": 587, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 234, + "restaurant_id": 501 + } + ], + "updated_at": "2025-03-30T11:32:19.857000" + }, + { + "user_info": { + "user_id": 235, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 235, + "min_price": 22034, + "max_price": 457960, + "preferred_categories": [ + 4, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9917" + }, + "reservations": [ + { + "user_id": 235, + "restaurant_id": 1779, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 235, + "restaurant_id": 1067, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 235, + "restaurant_id": 1182, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 235, + "restaurant_id": 1292 + } + ], + "updated_at": "2025-03-30T11:32:19.860000" + }, + { + "user_info": { + "user_id": 236, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 236, + "min_price": 185489, + "max_price": 213562, + "preferred_categories": [ + 2, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9918" + }, + "reservations": [ + { + "user_id": 236, + "restaurant_id": 1891, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 236, + "restaurant_id": 817 + }, + { + "user_id": 236, + "restaurant_id": 1091 + } + ], + "updated_at": "2025-03-30T11:32:19.862000" + }, + { + "user_info": { + "user_id": 237, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 237, + "min_price": 188625, + "max_price": 292293, + "preferred_categories": [ + 1, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9919" + }, + "reservations": [ + { + "user_id": 237, + "restaurant_id": 626, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 237, + "restaurant_id": 1667, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 237, + "restaurant_id": 883 + } + ], + "updated_at": "2025-03-30T11:32:19.866000" + }, + { + "user_info": { + "user_id": 238, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 238, + "min_price": 63185, + "max_price": 425475, + "preferred_categories": [ + 1, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff991a" + }, + "reservations": [ + { + "user_id": 238, + "restaurant_id": 431, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 238, + "restaurant_id": 694 + }, + { + "user_id": 238, + "restaurant_id": 781 + }, + { + "user_id": 238, + "restaurant_id": 1660 + } + ], + "updated_at": "2025-03-30T11:32:19.869000" + }, + { + "user_info": { + "user_id": 239, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 239, + "min_price": 160250, + "max_price": 299594, + "preferred_categories": [ + 7, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff991b" + }, + "reservations": [ + { + "user_id": 239, + "restaurant_id": 1607, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 239, + "restaurant_id": 358, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 239, + "restaurant_id": 726, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 239, + "restaurant_id": 1300 + } + ], + "updated_at": "2025-03-30T11:32:19.872000" + }, + { + "user_info": { + "user_id": 240, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 240, + "min_price": 97669, + "max_price": 499985, + "preferred_categories": [ + 2, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff991c" + }, + "reservations": [ + { + "user_id": 240, + "restaurant_id": 1371, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 240, + "restaurant_id": 1626, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 240, + "restaurant_id": 495, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 240, + "restaurant_id": 649 + }, + { + "user_id": 240, + "restaurant_id": 1191 + }, + { + "user_id": 240, + "restaurant_id": 465 + } + ], + "updated_at": "2025-03-30T11:32:19.875000" + }, + { + "user_info": { + "user_id": 241, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 241, + "min_price": 71172, + "max_price": 467802, + "preferred_categories": [ + 5, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff991d" + }, + "reservations": [ + { + "user_id": 241, + "restaurant_id": 2197, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 241, + "restaurant_id": 1951, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 241, + "restaurant_id": 40 + } + ], + "updated_at": "2025-03-30T11:32:19.878000" + }, + { + "user_info": { + "user_id": 242, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 242, + "min_price": 122809, + "max_price": 294060, + "preferred_categories": [ + 1, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff991e" + }, + "reservations": [ + { + "user_id": 242, + "restaurant_id": 1466, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 242, + "restaurant_id": 1367, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 242, + "restaurant_id": 1262, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 242, + "restaurant_id": 642, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 242, + "restaurant_id": 1105, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 242, + "restaurant_id": 1403 + } + ], + "updated_at": "2025-03-30T11:32:19.881000" + }, + { + "user_info": { + "user_id": 243, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 243, + "min_price": 97857, + "max_price": 295196, + "preferred_categories": [ + 5, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff991f" + }, + "reservations": [ + { + "user_id": 243, + "restaurant_id": 2026, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 243, + "restaurant_id": 42, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 243, + "restaurant_id": 501 + }, + { + "user_id": 243, + "restaurant_id": 1181 + } + ], + "updated_at": "2025-03-30T11:32:19.884000" + }, + { + "user_info": { + "user_id": 244, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 244, + "min_price": 162736, + "max_price": 341689, + "preferred_categories": [ + 4, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9920" + }, + "reservations": [ + { + "user_id": 244, + "restaurant_id": 1713, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 244, + "restaurant_id": 2035, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 244, + "restaurant_id": 629, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 244, + "restaurant_id": 1800 + }, + { + "user_id": 244, + "restaurant_id": 1234 + }, + { + "user_id": 244, + "restaurant_id": 2152 + } + ], + "updated_at": "2025-03-30T11:32:19.886000" + }, + { + "user_info": { + "user_id": 245, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 245, + "min_price": 42277, + "max_price": 446327, + "preferred_categories": [ + 4, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9921" + }, + "reservations": [ + { + "user_id": 245, + "restaurant_id": 830, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 245, + "restaurant_id": 1052, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 245, + "restaurant_id": 199 + }, + { + "user_id": 245, + "restaurant_id": 886 + } + ], + "updated_at": "2025-03-30T11:32:19.889000" + }, + { + "user_info": { + "user_id": 246, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 246, + "min_price": 85719, + "max_price": 362016, + "preferred_categories": [ + 4, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9922" + }, + "reservations": [ + { + "user_id": 246, + "restaurant_id": 406, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 246, + "restaurant_id": 770, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 246, + "restaurant_id": 552 + }, + { + "user_id": 246, + "restaurant_id": 593 + }, + { + "user_id": 246, + "restaurant_id": 1984 + }, + { + "user_id": 246, + "restaurant_id": 1951 + } + ], + "updated_at": "2025-03-30T11:32:19.893000" + }, + { + "user_info": { + "user_id": 247, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 247, + "min_price": 17470, + "max_price": 292418, + "preferred_categories": [ + 2, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9923" + }, + "reservations": [ + { + "user_id": 247, + "restaurant_id": 1997, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 247, + "restaurant_id": 1224, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 247, + "restaurant_id": 838, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 247, + "restaurant_id": 1986, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 247, + "restaurant_id": 1683 + }, + { + "user_id": 247, + "restaurant_id": 753 + }, + { + "user_id": 247, + "restaurant_id": 2018 + }, + { + "user_id": 247, + "restaurant_id": 1437 + } + ], + "updated_at": "2025-03-30T11:32:19.896000" + }, + { + "user_info": { + "user_id": 248, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 248, + "min_price": 28515, + "max_price": 402010, + "preferred_categories": [ + 2, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9924" + }, + "reservations": [], + "likes": [ + { + "user_id": 248, + "restaurant_id": 660 + }, + { + "user_id": 248, + "restaurant_id": 445 + }, + { + "user_id": 248, + "restaurant_id": 333 + }, + { + "user_id": 248, + "restaurant_id": 1845 + } + ], + "updated_at": "2025-03-30T11:32:19.899000" + }, + { + "user_info": { + "user_id": 249, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 249, + "min_price": 147497, + "max_price": 297665, + "preferred_categories": [ + 2, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9925" + }, + "reservations": [ + { + "user_id": 249, + "restaurant_id": 2053, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 249, + "restaurant_id": 531, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 249, + "restaurant_id": 1315, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:19.902000" + }, + { + "user_info": { + "user_id": 250, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 250, + "min_price": 169672, + "max_price": 344575, + "preferred_categories": [ + 2, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9926" + }, + "reservations": [ + { + "user_id": 250, + "restaurant_id": 1594, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 250, + "restaurant_id": 838, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 250, + "restaurant_id": 1284 + }, + { + "user_id": 250, + "restaurant_id": 1156 + } + ], + "updated_at": "2025-03-30T11:32:19.904000" + }, + { + "user_info": { + "user_id": 251, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 251, + "min_price": 34199, + "max_price": 494766, + "preferred_categories": [ + 4, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9927" + }, + "reservations": [ + { + "user_id": 251, + "restaurant_id": 441, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 251, + "restaurant_id": 1789, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 251, + "restaurant_id": 1020, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 251, + "restaurant_id": 741, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 251, + "restaurant_id": 255 + }, + { + "user_id": 251, + "restaurant_id": 2055 + } + ], + "updated_at": "2025-03-30T11:32:19.906000" + }, + { + "user_info": { + "user_id": 252, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 252, + "min_price": 99429, + "max_price": 455465, + "preferred_categories": [ + 4, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9928" + }, + "reservations": [ + { + "user_id": 252, + "restaurant_id": 1043, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 252, + "restaurant_id": 2076, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 252, + "restaurant_id": 233, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 252, + "restaurant_id": 142, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 252, + "restaurant_id": 36 + } + ], + "updated_at": "2025-03-30T11:32:19.909000" + }, + { + "user_info": { + "user_id": 253, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 253, + "min_price": 19544, + "max_price": 468129, + "preferred_categories": [ + 7, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9929" + }, + "reservations": [ + { + "user_id": 253, + "restaurant_id": 1292, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 253, + "restaurant_id": 1994 + } + ], + "updated_at": "2025-03-30T11:32:19.912000" + }, + { + "user_info": { + "user_id": 254, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 254, + "min_price": 168275, + "max_price": 285542, + "preferred_categories": [ + 3, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff992a" + }, + "reservations": [ + { + "user_id": 254, + "restaurant_id": 407, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 254, + "restaurant_id": 449, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 254, + "restaurant_id": 1203, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 254, + "restaurant_id": 1639 + }, + { + "user_id": 254, + "restaurant_id": 362 + } + ], + "updated_at": "2025-03-30T11:32:19.914000" + }, + { + "user_info": { + "user_id": 255, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 255, + "min_price": 92771, + "max_price": 401087, + "preferred_categories": [ + 7, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff992b" + }, + "reservations": [ + { + "user_id": 255, + "restaurant_id": 24, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 255, + "restaurant_id": 562, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 255, + "restaurant_id": 374, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 255, + "restaurant_id": 736 + }, + { + "user_id": 255, + "restaurant_id": 2015 + }, + { + "user_id": 255, + "restaurant_id": 2112 + }, + { + "user_id": 255, + "restaurant_id": 313 + } + ], + "updated_at": "2025-03-30T11:32:19.916000" + }, + { + "user_info": { + "user_id": 256, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 256, + "min_price": 182506, + "max_price": 300457, + "preferred_categories": [ + 4, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff992c" + }, + "reservations": [], + "likes": [ + { + "user_id": 256, + "restaurant_id": 2129 + } + ], + "updated_at": "2025-03-30T11:32:19.921000" + }, + { + "user_info": { + "user_id": 257, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 257, + "min_price": 127431, + "max_price": 225116, + "preferred_categories": [ + 1, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff992d" + }, + "reservations": [ + { + "user_id": 257, + "restaurant_id": 1392, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 257, + "restaurant_id": 468, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 257, + "restaurant_id": 1637, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 257, + "restaurant_id": 1957 + }, + { + "user_id": 257, + "restaurant_id": 1953 + }, + { + "user_id": 257, + "restaurant_id": 1859 + }, + { + "user_id": 257, + "restaurant_id": 533 + } + ], + "updated_at": "2025-03-30T11:32:19.926000" + }, + { + "user_info": { + "user_id": 258, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 258, + "min_price": 89645, + "max_price": 341865, + "preferred_categories": [ + 2, + 4, + 6 + ], + "_id": "67e92bc2785211cbd5ff992e" + }, + "reservations": [], + "likes": [ + { + "user_id": 258, + "restaurant_id": 1658 + }, + { + "user_id": 258, + "restaurant_id": 1334 + }, + { + "user_id": 258, + "restaurant_id": 796 + } + ], + "updated_at": "2025-03-30T11:32:19.928000" + }, + { + "user_info": { + "user_id": 259, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 259, + "min_price": 138901, + "max_price": 329782, + "preferred_categories": [ + 9, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff992f" + }, + "reservations": [], + "likes": [ + { + "user_id": 259, + "restaurant_id": 201 + }, + { + "user_id": 259, + "restaurant_id": 967 + }, + { + "user_id": 259, + "restaurant_id": 2091 + }, + { + "user_id": 259, + "restaurant_id": 2113 + } + ], + "updated_at": "2025-03-30T11:32:19.931000" + }, + { + "user_info": { + "user_id": 260, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 260, + "min_price": 199473, + "max_price": 260576, + "preferred_categories": [ + 6, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9930" + }, + "reservations": [ + { + "user_id": 260, + "restaurant_id": 837, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 260, + "restaurant_id": 1726, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 260, + "restaurant_id": 2248, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 260, + "restaurant_id": 1196 + }, + { + "user_id": 260, + "restaurant_id": 1315 + }, + { + "user_id": 260, + "restaurant_id": 757 + } + ], + "updated_at": "2025-03-30T11:32:19.935000" + }, + { + "user_info": { + "user_id": 261, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 261, + "min_price": 17795, + "max_price": 455435, + "preferred_categories": [ + 1, + 4, + 10 + ], + "_id": "67e92bc2785211cbd5ff9931" + }, + "reservations": [ + { + "user_id": 261, + "restaurant_id": 593, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 261, + "restaurant_id": 531 + }, + { + "user_id": 261, + "restaurant_id": 1869 + } + ], + "updated_at": "2025-03-30T11:32:19.938000" + }, + { + "user_info": { + "user_id": 262, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 262, + "min_price": 107041, + "max_price": 332828, + "preferred_categories": [ + 1, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9932" + }, + "reservations": [ + { + "user_id": 262, + "restaurant_id": 1734, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 262, + "restaurant_id": 1466, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 262, + "restaurant_id": 1730, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 262, + "restaurant_id": 2250, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 262, + "restaurant_id": 258 + }, + { + "user_id": 262, + "restaurant_id": 2028 + } + ], + "updated_at": "2025-03-30T11:32:19.946000" + }, + { + "user_info": { + "user_id": 263, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 263, + "min_price": 35945, + "max_price": 312057, + "preferred_categories": [ + 6, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9933" + }, + "reservations": [ + { + "user_id": 263, + "restaurant_id": 1816, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 263, + "restaurant_id": 1313, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 263, + "restaurant_id": 1109 + }, + { + "user_id": 263, + "restaurant_id": 763 + } + ], + "updated_at": "2025-03-30T11:32:19.949000" + }, + { + "user_info": { + "user_id": 264, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 264, + "min_price": 92096, + "max_price": 470692, + "preferred_categories": [ + 1, + 2, + 8 + ], + "_id": "67e92bc2785211cbd5ff9934" + }, + "reservations": [ + { + "user_id": 264, + "restaurant_id": 953, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 264, + "restaurant_id": 2041, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 264, + "restaurant_id": 815, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 264, + "restaurant_id": 1777, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 264, + "restaurant_id": 1444 + }, + { + "user_id": 264, + "restaurant_id": 1615 + }, + { + "user_id": 264, + "restaurant_id": 1396 + } + ], + "updated_at": "2025-03-30T11:32:19.951000" + }, + { + "user_info": { + "user_id": 265, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 265, + "min_price": 80257, + "max_price": 230964, + "preferred_categories": [ + 2, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9935" + }, + "reservations": [ + { + "user_id": 265, + "restaurant_id": 351, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 265, + "restaurant_id": 2073, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 265, + "restaurant_id": 2109, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 265, + "restaurant_id": 2090, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 265, + "restaurant_id": 53, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 265, + "restaurant_id": 336 + }, + { + "user_id": 265, + "restaurant_id": 1628 + }, + { + "user_id": 265, + "restaurant_id": 1053 + } + ], + "updated_at": "2025-03-30T11:32:19.954000" + }, + { + "user_info": { + "user_id": 266, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 266, + "min_price": 78904, + "max_price": 423501, + "preferred_categories": [ + 4, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff9936" + }, + "reservations": [ + { + "user_id": 266, + "restaurant_id": 1207, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 266, + "restaurant_id": 880, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 266, + "restaurant_id": 1458, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 266, + "restaurant_id": 679, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 266, + "restaurant_id": 2100, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 266, + "restaurant_id": 94 + }, + { + "user_id": 266, + "restaurant_id": 1245 + } + ], + "updated_at": "2025-03-30T11:32:19.957000" + }, + { + "user_info": { + "user_id": 267, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 267, + "min_price": 33338, + "max_price": 373241, + "preferred_categories": [ + 3, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9937" + }, + "reservations": [ + { + "user_id": 267, + "restaurant_id": 206, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 267, + "restaurant_id": 332, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 267, + "restaurant_id": 1157, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 267, + "restaurant_id": 2013 + } + ], + "updated_at": "2025-03-30T11:32:19.959000" + }, + { + "user_info": { + "user_id": 268, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 268, + "min_price": 101934, + "max_price": 476092, + "preferred_categories": [ + 1, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff9938" + }, + "reservations": [ + { + "user_id": 268, + "restaurant_id": 2152, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 268, + "restaurant_id": 1774, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 268, + "restaurant_id": 280, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 268, + "restaurant_id": 2075 + } + ], + "updated_at": "2025-03-30T11:32:19.963000" + }, + { + "user_info": { + "user_id": 269, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 269, + "min_price": 186835, + "max_price": 494248, + "preferred_categories": [ + 3, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9939" + }, + "reservations": [ + { + "user_id": 269, + "restaurant_id": 965, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 269, + "restaurant_id": 1839, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 269, + "restaurant_id": 846, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 269, + "restaurant_id": 1059 + }, + { + "user_id": 269, + "restaurant_id": 520 + }, + { + "user_id": 269, + "restaurant_id": 420 + } + ], + "updated_at": "2025-03-30T11:32:19.967000" + }, + { + "user_info": { + "user_id": 270, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 270, + "min_price": 194172, + "max_price": 426884, + "preferred_categories": [ + 8, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff993a" + }, + "reservations": [], + "likes": [ + { + "user_id": 270, + "restaurant_id": 273 + } + ], + "updated_at": "2025-03-30T11:32:19.969000" + }, + { + "user_info": { + "user_id": 271, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 271, + "min_price": 87671, + "max_price": 202738, + "preferred_categories": [ + 7, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff993b" + }, + "reservations": [ + { + "user_id": 271, + "restaurant_id": 1781, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 271, + "restaurant_id": 2071, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 271, + "restaurant_id": 40 + }, + { + "user_id": 271, + "restaurant_id": 1597 + }, + { + "user_id": 271, + "restaurant_id": 1682 + } + ], + "updated_at": "2025-03-30T11:32:19.973000" + }, + { + "user_info": { + "user_id": 272, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 272, + "min_price": 36585, + "max_price": 393215, + "preferred_categories": [ + 1, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff993c" + }, + "reservations": [ + { + "user_id": 272, + "restaurant_id": 1970, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 272, + "restaurant_id": 2163, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 272, + "restaurant_id": 77, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 272, + "restaurant_id": 1346, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 272, + "restaurant_id": 505 + }, + { + "user_id": 272, + "restaurant_id": 34 + }, + { + "user_id": 272, + "restaurant_id": 1451 + } + ], + "updated_at": "2025-03-30T11:32:19.975000" + }, + { + "user_info": { + "user_id": 273, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 273, + "min_price": 64387, + "max_price": 227536, + "preferred_categories": [ + 2, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff993d" + }, + "reservations": [ + { + "user_id": 273, + "restaurant_id": 1820, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 273, + "restaurant_id": 335, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 273, + "restaurant_id": 2199, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 273, + "restaurant_id": 260, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 273, + "restaurant_id": 1872, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 273, + "restaurant_id": 1902, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:19.978000" + }, + { + "user_info": { + "user_id": 274, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 274, + "min_price": 106251, + "max_price": 408448, + "preferred_categories": [ + 1, + 4, + 9 + ], + "_id": "67e92bc2785211cbd5ff993e" + }, + "reservations": [ + { + "user_id": 274, + "restaurant_id": 38, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 274, + "restaurant_id": 1191, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:19.981000" + }, + { + "user_info": { + "user_id": 275, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 275, + "min_price": 56350, + "max_price": 397164, + "preferred_categories": [ + 4, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff993f" + }, + "reservations": [], + "likes": [ + { + "user_id": 275, + "restaurant_id": 1473 + }, + { + "user_id": 275, + "restaurant_id": 230 + }, + { + "user_id": 275, + "restaurant_id": 626 + }, + { + "user_id": 275, + "restaurant_id": 2134 + } + ], + "updated_at": "2025-03-30T11:32:19.985000" + }, + { + "user_info": { + "user_id": 276, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 276, + "min_price": 190889, + "max_price": 401375, + "preferred_categories": [ + 2, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9940" + }, + "reservations": [ + { + "user_id": 276, + "restaurant_id": 130, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 276, + "restaurant_id": 2153, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 276, + "restaurant_id": 973, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 276, + "restaurant_id": 840 + }, + { + "user_id": 276, + "restaurant_id": 785 + } + ], + "updated_at": "2025-03-30T11:32:19.987000" + }, + { + "user_info": { + "user_id": 277, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 277, + "min_price": 52240, + "max_price": 243472, + "preferred_categories": [ + 7, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9941" + }, + "reservations": [ + { + "user_id": 277, + "restaurant_id": 295, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 277, + "restaurant_id": 999, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 277, + "restaurant_id": 1183, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 277, + "restaurant_id": 201, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 277, + "restaurant_id": 31 + }, + { + "user_id": 277, + "restaurant_id": 648 + }, + { + "user_id": 277, + "restaurant_id": 1005 + }, + { + "user_id": 277, + "restaurant_id": 636 + } + ], + "updated_at": "2025-03-30T11:32:19.990000" + }, + { + "user_info": { + "user_id": 278, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 278, + "min_price": 94391, + "max_price": 390850, + "preferred_categories": [ + 6, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9942" + }, + "reservations": [ + { + "user_id": 278, + "restaurant_id": 943, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 278, + "restaurant_id": 783 + }, + { + "user_id": 278, + "restaurant_id": 1252 + }, + { + "user_id": 278, + "restaurant_id": 2186 + }, + { + "user_id": 278, + "restaurant_id": 1081 + } + ], + "updated_at": "2025-03-30T11:32:19.994000" + }, + { + "user_info": { + "user_id": 279, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 279, + "min_price": 63673, + "max_price": 486146, + "preferred_categories": [ + 4, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9943" + }, + "reservations": [], + "likes": [ + { + "user_id": 279, + "restaurant_id": 654 + } + ], + "updated_at": "2025-03-30T11:32:19.996000" + }, + { + "user_info": { + "user_id": 280, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 280, + "min_price": 137715, + "max_price": 316122, + "preferred_categories": [ + 3, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9944" + }, + "reservations": [ + { + "user_id": 280, + "restaurant_id": 46, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 280, + "restaurant_id": 802, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 280, + "restaurant_id": 1561, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 280, + "restaurant_id": 2246 + }, + { + "user_id": 280, + "restaurant_id": 1835 + }, + { + "user_id": 280, + "restaurant_id": 1339 + } + ], + "updated_at": "2025-03-30T11:32:20" + }, + { + "user_info": { + "user_id": 281, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 281, + "min_price": 81087, + "max_price": 417758, + "preferred_categories": [ + 1, + 2, + 5 + ], + "_id": "67e92bc2785211cbd5ff9945" + }, + "reservations": [ + { + "user_id": 281, + "restaurant_id": 962, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 281, + "restaurant_id": 409, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 281, + "restaurant_id": 840, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 281, + "restaurant_id": 649 + }, + { + "user_id": 281, + "restaurant_id": 2028 + }, + { + "user_id": 281, + "restaurant_id": 1548 + } + ], + "updated_at": "2025-03-30T11:32:20.006000" + }, + { + "user_info": { + "user_id": 282, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 282, + "min_price": 52917, + "max_price": 200066, + "preferred_categories": [ + 8, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9946" + }, + "reservations": [ + { + "user_id": 282, + "restaurant_id": 2179, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 282, + "restaurant_id": 442, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 282, + "restaurant_id": 258, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 282, + "restaurant_id": 564, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 282, + "restaurant_id": 192, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 282, + "restaurant_id": 438 + }, + { + "user_id": 282, + "restaurant_id": 711 + }, + { + "user_id": 282, + "restaurant_id": 1161 + }, + { + "user_id": 282, + "restaurant_id": 42 + } + ], + "updated_at": "2025-03-30T11:32:20.010000" + }, + { + "user_info": { + "user_id": 283, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 283, + "min_price": 77291, + "max_price": 466157, + "preferred_categories": [ + 3, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9947" + }, + "reservations": [ + { + "user_id": 283, + "restaurant_id": 797, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 283, + "restaurant_id": 1944 + }, + { + "user_id": 283, + "restaurant_id": 1636 + }, + { + "user_id": 283, + "restaurant_id": 1709 + } + ], + "updated_at": "2025-03-30T11:32:20.013000" + }, + { + "user_info": { + "user_id": 284, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 284, + "min_price": 117818, + "max_price": 311745, + "preferred_categories": [ + 6, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9948" + }, + "reservations": [ + { + "user_id": 284, + "restaurant_id": 446, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 284, + "restaurant_id": 1466, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 284, + "restaurant_id": 849, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 284, + "restaurant_id": 53 + } + ], + "updated_at": "2025-03-30T11:32:20.016000" + }, + { + "user_info": { + "user_id": 285, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 285, + "min_price": 106468, + "max_price": 388810, + "preferred_categories": [ + 2, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9949" + }, + "reservations": [ + { + "user_id": 285, + "restaurant_id": 749, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 285, + "restaurant_id": 1477 + }, + { + "user_id": 285, + "restaurant_id": 243 + }, + { + "user_id": 285, + "restaurant_id": 1437 + } + ], + "updated_at": "2025-03-30T11:32:20.019000" + }, + { + "user_info": { + "user_id": 286, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 286, + "min_price": 96831, + "max_price": 295784, + "preferred_categories": [ + 2, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff994a" + }, + "reservations": [ + { + "user_id": 286, + "restaurant_id": 1890, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 286, + "restaurant_id": 752 + }, + { + "user_id": 286, + "restaurant_id": 777 + } + ], + "updated_at": "2025-03-30T11:32:20.021000" + }, + { + "user_info": { + "user_id": 287, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 287, + "min_price": 80359, + "max_price": 239957, + "preferred_categories": [ + 4, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff994b" + }, + "reservations": [ + { + "user_id": 287, + "restaurant_id": 820, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 287, + "restaurant_id": 1961, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 287, + "restaurant_id": 1069, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 287, + "restaurant_id": 1736 + }, + { + "user_id": 287, + "restaurant_id": 1619 + } + ], + "updated_at": "2025-03-30T11:32:20.024000" + }, + { + "user_info": { + "user_id": 288, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 288, + "min_price": 96779, + "max_price": 259571, + "preferred_categories": [ + 4, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff994c" + }, + "reservations": [], + "likes": [ + { + "user_id": 288, + "restaurant_id": 1590 + }, + { + "user_id": 288, + "restaurant_id": 1758 + }, + { + "user_id": 288, + "restaurant_id": 1680 + }, + { + "user_id": 288, + "restaurant_id": 618 + } + ], + "updated_at": "2025-03-30T11:32:20.027000" + }, + { + "user_info": { + "user_id": 289, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 289, + "min_price": 57685, + "max_price": 470592, + "preferred_categories": [ + 1, + 2, + 8 + ], + "_id": "67e92bc2785211cbd5ff994d" + }, + "reservations": [ + { + "user_id": 289, + "restaurant_id": 589, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 289, + "restaurant_id": 889, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.031000" + }, + { + "user_info": { + "user_id": 290, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 290, + "min_price": 92218, + "max_price": 360940, + "preferred_categories": [ + 2, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff994e" + }, + "reservations": [ + { + "user_id": 290, + "restaurant_id": 1141, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 290, + "restaurant_id": 1766, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 290, + "restaurant_id": 1289 + }, + { + "user_id": 290, + "restaurant_id": 125 + }, + { + "user_id": 290, + "restaurant_id": 549 + }, + { + "user_id": 290, + "restaurant_id": 128 + }, + { + "user_id": 290, + "restaurant_id": 998 + }, + { + "user_id": 290, + "restaurant_id": 858 + }, + { + "user_id": 290, + "restaurant_id": 1025 + }, + { + "user_id": 290, + "restaurant_id": 968 + } + ], + "updated_at": "2025-03-30T11:32:20.035000" + }, + { + "user_info": { + "user_id": 291, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 291, + "min_price": 78436, + "max_price": 459336, + "preferred_categories": [ + 1, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff994f" + }, + "reservations": [ + { + "user_id": 291, + "restaurant_id": 1473, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 291, + "restaurant_id": 2066, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 291, + "restaurant_id": 204 + }, + { + "user_id": 291, + "restaurant_id": 1401 + } + ], + "updated_at": "2025-03-30T11:32:20.039000" + }, + { + "user_info": { + "user_id": 292, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 292, + "min_price": 82822, + "max_price": 296446, + "preferred_categories": [ + 1, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff9950" + }, + "reservations": [ + { + "user_id": 292, + "restaurant_id": 1862, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 292, + "restaurant_id": 1659, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 292, + "restaurant_id": 2064, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.042000" + }, + { + "user_info": { + "user_id": 293, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 293, + "min_price": 67263, + "max_price": 285626, + "preferred_categories": [ + 2, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9951" + }, + "reservations": [], + "likes": [ + { + "user_id": 293, + "restaurant_id": 1794 + }, + { + "user_id": 293, + "restaurant_id": 348 + } + ], + "updated_at": "2025-03-30T11:32:20.045000" + }, + { + "user_info": { + "user_id": 294, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 294, + "min_price": 170208, + "max_price": 464099, + "preferred_categories": [ + 4, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9952" + }, + "reservations": [ + { + "user_id": 294, + "restaurant_id": 631, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 294, + "restaurant_id": 1975, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 294, + "restaurant_id": 601 + }, + { + "user_id": 294, + "restaurant_id": 1904 + }, + { + "user_id": 294, + "restaurant_id": 570 + } + ], + "updated_at": "2025-03-30T11:32:20.051000" + }, + { + "user_info": { + "user_id": 295, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 295, + "min_price": 164140, + "max_price": 263105, + "preferred_categories": [ + 1, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9953" + }, + "reservations": [ + { + "user_id": 295, + "restaurant_id": 1295, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 295, + "restaurant_id": 923, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 295, + "restaurant_id": 549, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 295, + "restaurant_id": 975 + }, + { + "user_id": 295, + "restaurant_id": 1082 + } + ], + "updated_at": "2025-03-30T11:32:20.055000" + }, + { + "user_info": { + "user_id": 296, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 296, + "min_price": 167473, + "max_price": 302474, + "preferred_categories": [ + 2, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9954" + }, + "reservations": [ + { + "user_id": 296, + "restaurant_id": 1059, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 296, + "restaurant_id": 1867 + }, + { + "user_id": 296, + "restaurant_id": 1738 + } + ], + "updated_at": "2025-03-30T11:32:20.058000" + }, + { + "user_info": { + "user_id": 297, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 297, + "min_price": 174677, + "max_price": 372056, + "preferred_categories": [ + 2, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff9955" + }, + "reservations": [ + { + "user_id": 297, + "restaurant_id": 719, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 297, + "restaurant_id": 889, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 297, + "restaurant_id": 1378, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 297, + "restaurant_id": 285 + }, + { + "user_id": 297, + "restaurant_id": 2139 + } + ], + "updated_at": "2025-03-30T11:32:20.062000" + }, + { + "user_info": { + "user_id": 298, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 298, + "min_price": 52010, + "max_price": 352449, + "preferred_categories": [ + 4, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9956" + }, + "reservations": [ + { + "user_id": 298, + "restaurant_id": 692, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 298, + "restaurant_id": 1350, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 298, + "restaurant_id": 907, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 298, + "restaurant_id": 968 + }, + { + "user_id": 298, + "restaurant_id": 1429 + } + ], + "updated_at": "2025-03-30T11:32:20.066000" + }, + { + "user_info": { + "user_id": 299, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 299, + "min_price": 171727, + "max_price": 419186, + "preferred_categories": [ + 5, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9957" + }, + "reservations": [ + { + "user_id": 299, + "restaurant_id": 943, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 299, + "restaurant_id": 1530, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 299, + "restaurant_id": 233, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 299, + "restaurant_id": 1335, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 299, + "restaurant_id": 1922, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 299, + "restaurant_id": 754 + } + ], + "updated_at": "2025-03-30T11:32:20.069000" + }, + { + "user_info": { + "user_id": 300, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 300, + "min_price": 82806, + "max_price": 336617, + "preferred_categories": [ + 1, + 2, + 9 + ], + "_id": "67e92bc2785211cbd5ff9958" + }, + "reservations": [ + { + "user_id": 300, + "restaurant_id": 92, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 300, + "restaurant_id": 913, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 300, + "restaurant_id": 1197 + }, + { + "user_id": 300, + "restaurant_id": 1527 + }, + { + "user_id": 300, + "restaurant_id": 633 + }, + { + "user_id": 300, + "restaurant_id": 1568 + }, + { + "user_id": 300, + "restaurant_id": 1054 + } + ], + "updated_at": "2025-03-30T11:32:20.073000" + }, + { + "user_info": { + "user_id": 301, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 301, + "min_price": 153139, + "max_price": 400878, + "preferred_categories": [ + 3, + 5, + 12 + ], + "_id": "67e92bc2785211cbd5ff9959" + }, + "reservations": [ + { + "user_id": 301, + "restaurant_id": 299, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 301, + "restaurant_id": 989, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 301, + "restaurant_id": 1687 + }, + { + "user_id": 301, + "restaurant_id": 1056 + } + ], + "updated_at": "2025-03-30T11:32:20.076000" + }, + { + "user_info": { + "user_id": 302, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 302, + "min_price": 58763, + "max_price": 376532, + "preferred_categories": [ + 4, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff995a" + }, + "reservations": [ + { + "user_id": 302, + "restaurant_id": 1306, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 302, + "restaurant_id": 1941, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 302, + "restaurant_id": 141 + }, + { + "user_id": 302, + "restaurant_id": 861 + }, + { + "user_id": 302, + "restaurant_id": 1878 + }, + { + "user_id": 302, + "restaurant_id": 1633 + }, + { + "user_id": 302, + "restaurant_id": 1582 + }, + { + "user_id": 302, + "restaurant_id": 702 + } + ], + "updated_at": "2025-03-30T11:32:20.079000" + }, + { + "user_info": { + "user_id": 303, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 303, + "min_price": 114816, + "max_price": 215966, + "preferred_categories": [ + 1, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff995b" + }, + "reservations": [ + { + "user_id": 303, + "restaurant_id": 255, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 303, + "restaurant_id": 1373, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 303, + "restaurant_id": 105 + }, + { + "user_id": 303, + "restaurant_id": 1914 + } + ], + "updated_at": "2025-03-30T11:32:20.084000" + }, + { + "user_info": { + "user_id": 304, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 304, + "min_price": 78236, + "max_price": 298739, + "preferred_categories": [ + 6, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff995c" + }, + "reservations": [ + { + "user_id": 304, + "restaurant_id": 1824, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 304, + "restaurant_id": 1509 + }, + { + "user_id": 304, + "restaurant_id": 443 + }, + { + "user_id": 304, + "restaurant_id": 401 + }, + { + "user_id": 304, + "restaurant_id": 1658 + }, + { + "user_id": 304, + "restaurant_id": 1325 + } + ], + "updated_at": "2025-03-30T11:32:20.086000" + }, + { + "user_info": { + "user_id": 305, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 305, + "min_price": 168504, + "max_price": 324152, + "preferred_categories": [ + 2, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff995d" + }, + "reservations": [ + { + "user_id": 305, + "restaurant_id": 697, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 305, + "restaurant_id": 1952, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 305, + "restaurant_id": 212, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 305, + "restaurant_id": 2130 + }, + { + "user_id": 305, + "restaurant_id": 350 + } + ], + "updated_at": "2025-03-30T11:32:20.089000" + }, + { + "user_info": { + "user_id": 306, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 306, + "min_price": 114959, + "max_price": 225832, + "preferred_categories": [ + 5, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff995e" + }, + "reservations": [ + { + "user_id": 306, + "restaurant_id": 69, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 306, + "restaurant_id": 1414 + }, + { + "user_id": 306, + "restaurant_id": 1535 + }, + { + "user_id": 306, + "restaurant_id": 303 + }, + { + "user_id": 306, + "restaurant_id": 1095 + } + ], + "updated_at": "2025-03-30T11:32:20.094000" + }, + { + "user_info": { + "user_id": 307, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 307, + "min_price": 97153, + "max_price": 218247, + "preferred_categories": [ + 3, + 4, + 11 + ], + "_id": "67e92bc2785211cbd5ff995f" + }, + "reservations": [ + { + "user_id": 307, + "restaurant_id": 1903, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 307, + "restaurant_id": 1121 + }, + { + "user_id": 307, + "restaurant_id": 2181 + } + ], + "updated_at": "2025-03-30T11:32:20.096000" + }, + { + "user_info": { + "user_id": 308, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 308, + "min_price": 186433, + "max_price": 442559, + "preferred_categories": [ + 3, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff9960" + }, + "reservations": [ + { + "user_id": 308, + "restaurant_id": 127, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 308, + "restaurant_id": 376, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 308, + "restaurant_id": 954 + }, + { + "user_id": 308, + "restaurant_id": 1332 + }, + { + "user_id": 308, + "restaurant_id": 1179 + }, + { + "user_id": 308, + "restaurant_id": 975 + } + ], + "updated_at": "2025-03-30T11:32:20.100000" + }, + { + "user_info": { + "user_id": 309, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 309, + "min_price": 29388, + "max_price": 400541, + "preferred_categories": [ + 5, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9961" + }, + "reservations": [ + { + "user_id": 309, + "restaurant_id": 341, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 309, + "restaurant_id": 1728, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 309, + "restaurant_id": 2039 + }, + { + "user_id": 309, + "restaurant_id": 1761 + }, + { + "user_id": 309, + "restaurant_id": 1734 + } + ], + "updated_at": "2025-03-30T11:32:20.103000" + }, + { + "user_info": { + "user_id": 310, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 310, + "min_price": 114911, + "max_price": 322029, + "preferred_categories": [ + 1, + 2, + 12 + ], + "_id": "67e92bc2785211cbd5ff9962" + }, + "reservations": [ + { + "user_id": 310, + "restaurant_id": 2121, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 310, + "restaurant_id": 1399, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.106000" + }, + { + "user_info": { + "user_id": 311, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 311, + "min_price": 162186, + "max_price": 233292, + "preferred_categories": [ + 2, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9963" + }, + "reservations": [ + { + "user_id": 311, + "restaurant_id": 1743, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 311, + "restaurant_id": 1682 + } + ], + "updated_at": "2025-03-30T11:32:20.108000" + }, + { + "user_info": { + "user_id": 312, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 312, + "min_price": 35635, + "max_price": 313899, + "preferred_categories": [ + 2, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9964" + }, + "reservations": [ + { + "user_id": 312, + "restaurant_id": 1185, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 312, + "restaurant_id": 551, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 312, + "restaurant_id": 818, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 312, + "restaurant_id": 1342, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 312, + "restaurant_id": 1313, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 312, + "restaurant_id": 731 + }, + { + "user_id": 312, + "restaurant_id": 2079 + }, + { + "user_id": 312, + "restaurant_id": 1371 + } + ], + "updated_at": "2025-03-30T11:32:20.112000" + }, + { + "user_info": { + "user_id": 313, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 313, + "min_price": 11492, + "max_price": 403970, + "preferred_categories": [ + 1, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9965" + }, + "reservations": [ + { + "user_id": 313, + "restaurant_id": 2018, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 313, + "restaurant_id": 441, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 313, + "restaurant_id": 2040, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.115000" + }, + { + "user_info": { + "user_id": 314, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 314, + "min_price": 147251, + "max_price": 292531, + "preferred_categories": [ + 2, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9966" + }, + "reservations": [ + { + "user_id": 314, + "restaurant_id": 2141, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 314, + "restaurant_id": 2117, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 314, + "restaurant_id": 482, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 314, + "restaurant_id": 1320, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 314, + "restaurant_id": 798 + }, + { + "user_id": 314, + "restaurant_id": 761 + }, + { + "user_id": 314, + "restaurant_id": 1562 + }, + { + "user_id": 314, + "restaurant_id": 1998 + }, + { + "user_id": 314, + "restaurant_id": 322 + }, + { + "user_id": 314, + "restaurant_id": 218 + }, + { + "user_id": 314, + "restaurant_id": 599 + }, + { + "user_id": 314, + "restaurant_id": 702 + } + ], + "updated_at": "2025-03-30T11:32:20.118000" + }, + { + "user_info": { + "user_id": 315, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 315, + "min_price": 65865, + "max_price": 499030, + "preferred_categories": [ + 2, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9967" + }, + "reservations": [ + { + "user_id": 315, + "restaurant_id": 14, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 315, + "restaurant_id": 634 + }, + { + "user_id": 315, + "restaurant_id": 1231 + }, + { + "user_id": 315, + "restaurant_id": 1430 + }, + { + "user_id": 315, + "restaurant_id": 2050 + } + ], + "updated_at": "2025-03-30T11:32:20.120000" + }, + { + "user_info": { + "user_id": 316, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 316, + "min_price": 25792, + "max_price": 345372, + "preferred_categories": [ + 5, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9968" + }, + "reservations": [ + { + "user_id": 316, + "restaurant_id": 1854, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 316, + "restaurant_id": 1779, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 316, + "restaurant_id": 739, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 316, + "restaurant_id": 649, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 316, + "restaurant_id": 2082 + }, + { + "user_id": 316, + "restaurant_id": 1998 + }, + { + "user_id": 316, + "restaurant_id": 902 + } + ], + "updated_at": "2025-03-30T11:32:20.134000" + }, + { + "user_info": { + "user_id": 317, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 317, + "min_price": 121179, + "max_price": 279212, + "preferred_categories": [ + 2, + 3, + 4 + ], + "_id": "67e92bc2785211cbd5ff9969" + }, + "reservations": [ + { + "user_id": 317, + "restaurant_id": 877, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 317, + "restaurant_id": 562, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 317, + "restaurant_id": 637, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 317, + "restaurant_id": 1305, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 317, + "restaurant_id": 1353 + }, + { + "user_id": 317, + "restaurant_id": 379 + }, + { + "user_id": 317, + "restaurant_id": 1346 + }, + { + "user_id": 317, + "restaurant_id": 1406 + } + ], + "updated_at": "2025-03-30T11:32:20.147000" + }, + { + "user_info": { + "user_id": 318, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 318, + "min_price": 169288, + "max_price": 434460, + "preferred_categories": [ + 9, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff996a" + }, + "reservations": [ + { + "user_id": 318, + "restaurant_id": 1613, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 318, + "restaurant_id": 1203, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 318, + "restaurant_id": 1266 + } + ], + "updated_at": "2025-03-30T11:32:20.149000" + }, + { + "user_info": { + "user_id": 319, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 319, + "min_price": 108275, + "max_price": 461196, + "preferred_categories": [ + 1, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff996b" + }, + "reservations": [], + "likes": [ + { + "user_id": 319, + "restaurant_id": 185 + }, + { + "user_id": 319, + "restaurant_id": 904 + }, + { + "user_id": 319, + "restaurant_id": 1528 + } + ], + "updated_at": "2025-03-30T11:32:20.155000" + }, + { + "user_info": { + "user_id": 320, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 320, + "min_price": 163733, + "max_price": 214434, + "preferred_categories": [ + 1, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff996c" + }, + "reservations": [ + { + "user_id": 320, + "restaurant_id": 1731, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 320, + "restaurant_id": 1510, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 320, + "restaurant_id": 154, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 320, + "restaurant_id": 1340, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 320, + "restaurant_id": 1858 + } + ], + "updated_at": "2025-03-30T11:32:20.168000" + }, + { + "user_info": { + "user_id": 321, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 321, + "min_price": 119490, + "max_price": 380690, + "preferred_categories": [ + 4, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff996d" + }, + "reservations": [ + { + "user_id": 321, + "restaurant_id": 188, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 321, + "restaurant_id": 2004 + }, + { + "user_id": 321, + "restaurant_id": 113 + }, + { + "user_id": 321, + "restaurant_id": 173 + }, + { + "user_id": 321, + "restaurant_id": 609 + }, + { + "user_id": 321, + "restaurant_id": 2219 + } + ], + "updated_at": "2025-03-30T11:32:20.178000" + }, + { + "user_info": { + "user_id": 322, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 322, + "min_price": 146046, + "max_price": 207430, + "preferred_categories": [ + 1, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff996e" + }, + "reservations": [ + { + "user_id": 322, + "restaurant_id": 1006, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 322, + "restaurant_id": 420, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 322, + "restaurant_id": 86, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 322, + "restaurant_id": 1760 + }, + { + "user_id": 322, + "restaurant_id": 1996 + } + ], + "updated_at": "2025-03-30T11:32:20.184000" + }, + { + "user_info": { + "user_id": 323, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 323, + "min_price": 197852, + "max_price": 291430, + "preferred_categories": [ + 2, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff996f" + }, + "reservations": [ + { + "user_id": 323, + "restaurant_id": 1517, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.188000" + }, + { + "user_info": { + "user_id": 324, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 324, + "min_price": 145993, + "max_price": 281509, + "preferred_categories": [ + 7, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9970" + }, + "reservations": [ + { + "user_id": 324, + "restaurant_id": 602, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 324, + "restaurant_id": 394, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 324, + "restaurant_id": 692 + }, + { + "user_id": 324, + "restaurant_id": 195 + }, + { + "user_id": 324, + "restaurant_id": 397 + }, + { + "user_id": 324, + "restaurant_id": 1683 + }, + { + "user_id": 324, + "restaurant_id": 1223 + } + ], + "updated_at": "2025-03-30T11:32:20.196000" + }, + { + "user_info": { + "user_id": 325, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 325, + "min_price": 105489, + "max_price": 450296, + "preferred_categories": [ + 4, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9971" + }, + "reservations": [ + { + "user_id": 325, + "restaurant_id": 1022, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 325, + "restaurant_id": 1203, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 325, + "restaurant_id": 1386, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 325, + "restaurant_id": 1762, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 325, + "restaurant_id": 2201 + }, + { + "user_id": 325, + "restaurant_id": 578 + } + ], + "updated_at": "2025-03-30T11:32:20.201000" + }, + { + "user_info": { + "user_id": 326, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 326, + "min_price": 130659, + "max_price": 304679, + "preferred_categories": [ + 1, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff9972" + }, + "reservations": [ + { + "user_id": 326, + "restaurant_id": 1371, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 326, + "restaurant_id": 369, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 326, + "restaurant_id": 1586, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 326, + "restaurant_id": 56, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 326, + "restaurant_id": 1373, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 326, + "restaurant_id": 116 + }, + { + "user_id": 326, + "restaurant_id": 1648 + }, + { + "user_id": 326, + "restaurant_id": 811 + }, + { + "user_id": 326, + "restaurant_id": 554 + } + ], + "updated_at": "2025-03-30T11:32:20.206000" + }, + { + "user_info": { + "user_id": 327, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 327, + "min_price": 138762, + "max_price": 383569, + "preferred_categories": [ + 2, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9973" + }, + "reservations": [ + { + "user_id": 327, + "restaurant_id": 1580, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 327, + "restaurant_id": 1300, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.209000" + }, + { + "user_info": { + "user_id": 328, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 328, + "min_price": 60651, + "max_price": 353518, + "preferred_categories": [ + 3, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff9974" + }, + "reservations": [ + { + "user_id": 328, + "restaurant_id": 596, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 328, + "restaurant_id": 1183, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 328, + "restaurant_id": 476, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 328, + "restaurant_id": 1421 + }, + { + "user_id": 328, + "restaurant_id": 516 + }, + { + "user_id": 328, + "restaurant_id": 1357 + }, + { + "user_id": 328, + "restaurant_id": 1849 + }, + { + "user_id": 328, + "restaurant_id": 1243 + } + ], + "updated_at": "2025-03-30T11:32:20.216000" + }, + { + "user_info": { + "user_id": 329, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 329, + "min_price": 155240, + "max_price": 274717, + "preferred_categories": [ + 4, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9975" + }, + "reservations": [], + "likes": [ + { + "user_id": 329, + "restaurant_id": 1447 + }, + { + "user_id": 329, + "restaurant_id": 107 + }, + { + "user_id": 329, + "restaurant_id": 774 + }, + { + "user_id": 329, + "restaurant_id": 875 + } + ], + "updated_at": "2025-03-30T11:32:20.225000" + }, + { + "user_info": { + "user_id": 330, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 330, + "min_price": 155236, + "max_price": 384499, + "preferred_categories": [ + 8, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9976" + }, + "reservations": [ + { + "user_id": 330, + "restaurant_id": 1852, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 330, + "restaurant_id": 2246, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 330, + "restaurant_id": 897, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 330, + "restaurant_id": 642 + }, + { + "user_id": 330, + "restaurant_id": 1497 + } + ], + "updated_at": "2025-03-30T11:32:20.229000" + }, + { + "user_info": { + "user_id": 331, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 331, + "min_price": 153987, + "max_price": 465116, + "preferred_categories": [ + 9, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9977" + }, + "reservations": [ + { + "user_id": 331, + "restaurant_id": 2046, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 331, + "restaurant_id": 699, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 331, + "restaurant_id": 523 + }, + { + "user_id": 331, + "restaurant_id": 420 + } + ], + "updated_at": "2025-03-30T11:32:20.233000" + }, + { + "user_info": { + "user_id": 332, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 332, + "min_price": 142253, + "max_price": 422611, + "preferred_categories": [ + 4, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9978" + }, + "reservations": [ + { + "user_id": 332, + "restaurant_id": 1478, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 332, + "restaurant_id": 1680 + }, + { + "user_id": 332, + "restaurant_id": 156 + }, + { + "user_id": 332, + "restaurant_id": 1756 + } + ], + "updated_at": "2025-03-30T11:32:20.236000" + }, + { + "user_info": { + "user_id": 333, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 333, + "min_price": 46673, + "max_price": 273142, + "preferred_categories": [ + 1, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff9979" + }, + "reservations": [ + { + "user_id": 333, + "restaurant_id": 2100, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 333, + "restaurant_id": 1468, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 333, + "restaurant_id": 818, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 333, + "restaurant_id": 2195 + }, + { + "user_id": 333, + "restaurant_id": 301 + }, + { + "user_id": 333, + "restaurant_id": 216 + } + ], + "updated_at": "2025-03-30T11:32:20.239000" + }, + { + "user_info": { + "user_id": 334, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 334, + "min_price": 53260, + "max_price": 276436, + "preferred_categories": [ + 2, + 4, + 10 + ], + "_id": "67e92bc2785211cbd5ff997a" + }, + "reservations": [ + { + "user_id": 334, + "restaurant_id": 866, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 334, + "restaurant_id": 875, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 334, + "restaurant_id": 2042, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 334, + "restaurant_id": 787, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 334, + "restaurant_id": 488, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 334, + "restaurant_id": 2146 + }, + { + "user_id": 334, + "restaurant_id": 837 + }, + { + "user_id": 334, + "restaurant_id": 2198 + }, + { + "user_id": 334, + "restaurant_id": 261 + }, + { + "user_id": 334, + "restaurant_id": 1198 + }, + { + "user_id": 334, + "restaurant_id": 2157 + }, + { + "user_id": 334, + "restaurant_id": 456 + } + ], + "updated_at": "2025-03-30T11:32:20.242000" + }, + { + "user_info": { + "user_id": 335, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 335, + "min_price": 38139, + "max_price": 202608, + "preferred_categories": [ + 1, + 3, + 5 + ], + "_id": "67e92bc2785211cbd5ff997b" + }, + "reservations": [ + { + "user_id": 335, + "restaurant_id": 426, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 335, + "restaurant_id": 1249, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 335, + "restaurant_id": 1388, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 335, + "restaurant_id": 1316 + }, + { + "user_id": 335, + "restaurant_id": 1144 + }, + { + "user_id": 335, + "restaurant_id": 574 + }, + { + "user_id": 335, + "restaurant_id": 1833 + } + ], + "updated_at": "2025-03-30T11:32:20.244000" + }, + { + "user_info": { + "user_id": 336, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 336, + "min_price": 179707, + "max_price": 243929, + "preferred_categories": [ + 7, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff997c" + }, + "reservations": [ + { + "user_id": 336, + "restaurant_id": 18, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 336, + "restaurant_id": 490 + }, + { + "user_id": 336, + "restaurant_id": 465 + }, + { + "user_id": 336, + "restaurant_id": 65 + } + ], + "updated_at": "2025-03-30T11:32:20.246000" + }, + { + "user_info": { + "user_id": 337, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 337, + "min_price": 141289, + "max_price": 258763, + "preferred_categories": [ + 1, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff997d" + }, + "reservations": [ + { + "user_id": 337, + "restaurant_id": 106, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 337, + "restaurant_id": 871, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 337, + "restaurant_id": 451 + } + ], + "updated_at": "2025-03-30T11:32:20.249000" + }, + { + "user_info": { + "user_id": 338, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 338, + "min_price": 58273, + "max_price": 322834, + "preferred_categories": [ + 2, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff997e" + }, + "reservations": [ + { + "user_id": 338, + "restaurant_id": 1990, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 338, + "restaurant_id": 149, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 338, + "restaurant_id": 2236, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 338, + "restaurant_id": 1813, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 338, + "restaurant_id": 682 + }, + { + "user_id": 338, + "restaurant_id": 557 + }, + { + "user_id": 338, + "restaurant_id": 1196 + }, + { + "user_id": 338, + "restaurant_id": 570 + } + ], + "updated_at": "2025-03-30T11:32:20.252000" + }, + { + "user_info": { + "user_id": 339, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 339, + "min_price": 151350, + "max_price": 211616, + "preferred_categories": [ + 2, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff997f" + }, + "reservations": [ + { + "user_id": 339, + "restaurant_id": 564, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 339, + "restaurant_id": 2053, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 339, + "restaurant_id": 1922, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 339, + "restaurant_id": 2018, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 339, + "restaurant_id": 2226 + }, + { + "user_id": 339, + "restaurant_id": 843 + } + ], + "updated_at": "2025-03-30T11:32:20.254000" + }, + { + "user_info": { + "user_id": 340, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 340, + "min_price": 43433, + "max_price": 417342, + "preferred_categories": [ + 3, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9980" + }, + "reservations": [ + { + "user_id": 340, + "restaurant_id": 100, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 340, + "restaurant_id": 231 + }, + { + "user_id": 340, + "restaurant_id": 207 + }, + { + "user_id": 340, + "restaurant_id": 1501 + }, + { + "user_id": 340, + "restaurant_id": 1475 + }, + { + "user_id": 340, + "restaurant_id": 2207 + } + ], + "updated_at": "2025-03-30T11:32:20.258000" + }, + { + "user_info": { + "user_id": 341, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 341, + "min_price": 53017, + "max_price": 333428, + "preferred_categories": [ + 6, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9981" + }, + "reservations": [ + { + "user_id": 341, + "restaurant_id": 565, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 341, + "restaurant_id": 2065, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 341, + "restaurant_id": 2251, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 341, + "restaurant_id": 1065 + }, + { + "user_id": 341, + "restaurant_id": 1522 + }, + { + "user_id": 341, + "restaurant_id": 1197 + }, + { + "user_id": 341, + "restaurant_id": 1325 + }, + { + "user_id": 341, + "restaurant_id": 2160 + }, + { + "user_id": 341, + "restaurant_id": 1014 + } + ], + "updated_at": "2025-03-30T11:32:20.260000" + }, + { + "user_info": { + "user_id": 342, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 342, + "min_price": 112882, + "max_price": 453483, + "preferred_categories": [ + 4, + 5, + 12 + ], + "_id": "67e92bc2785211cbd5ff9982" + }, + "reservations": [ + { + "user_id": 342, + "restaurant_id": 2022, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 342, + "restaurant_id": 1077, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 342, + "restaurant_id": 1655, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 342, + "restaurant_id": 1739 + }, + { + "user_id": 342, + "restaurant_id": 772 + }, + { + "user_id": 342, + "restaurant_id": 1500 + }, + { + "user_id": 342, + "restaurant_id": 1929 + } + ], + "updated_at": "2025-03-30T11:32:20.262000" + }, + { + "user_info": { + "user_id": 343, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 343, + "min_price": 108033, + "max_price": 266412, + "preferred_categories": [ + 1, + 2, + 8 + ], + "_id": "67e92bc2785211cbd5ff9983" + }, + "reservations": [], + "likes": [ + { + "user_id": 343, + "restaurant_id": 1757 + }, + { + "user_id": 343, + "restaurant_id": 70 + }, + { + "user_id": 343, + "restaurant_id": 664 + } + ], + "updated_at": "2025-03-30T11:32:20.265000" + }, + { + "user_info": { + "user_id": 344, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 344, + "min_price": 140955, + "max_price": 408051, + "preferred_categories": [ + 5, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9984" + }, + "reservations": [ + { + "user_id": 344, + "restaurant_id": 812, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 344, + "restaurant_id": 990, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 344, + "restaurant_id": 1259, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 344, + "restaurant_id": 432 + } + ], + "updated_at": "2025-03-30T11:32:20.268000" + }, + { + "user_info": { + "user_id": 345, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 345, + "min_price": 94717, + "max_price": 456345, + "preferred_categories": [ + 7, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9985" + }, + "reservations": [ + { + "user_id": 345, + "restaurant_id": 119, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 345, + "restaurant_id": 890, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 345, + "restaurant_id": 2250, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 345, + "restaurant_id": 1106, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 345, + "restaurant_id": 1816, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 345, + "restaurant_id": 2099 + }, + { + "user_id": 345, + "restaurant_id": 868 + }, + { + "user_id": 345, + "restaurant_id": 1884 + }, + { + "user_id": 345, + "restaurant_id": 2022 + }, + { + "user_id": 345, + "restaurant_id": 368 + }, + { + "user_id": 345, + "restaurant_id": 37 + }, + { + "user_id": 345, + "restaurant_id": 1188 + } + ], + "updated_at": "2025-03-30T11:32:20.271000" + }, + { + "user_info": { + "user_id": 346, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 346, + "min_price": 28648, + "max_price": 457822, + "preferred_categories": [ + 1, + 3, + 6 + ], + "_id": "67e92bc2785211cbd5ff9986" + }, + "reservations": [ + { + "user_id": 346, + "restaurant_id": 347, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 346, + "restaurant_id": 1612, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 346, + "restaurant_id": 1065, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 346, + "restaurant_id": 1332 + }, + { + "user_id": 346, + "restaurant_id": 551 + }, + { + "user_id": 346, + "restaurant_id": 1839 + }, + { + "user_id": 346, + "restaurant_id": 1007 + }, + { + "user_id": 346, + "restaurant_id": 544 + } + ], + "updated_at": "2025-03-30T11:32:20.273000" + }, + { + "user_info": { + "user_id": 347, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 347, + "min_price": 92725, + "max_price": 255709, + "preferred_categories": [ + 7, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9987" + }, + "reservations": [ + { + "user_id": 347, + "restaurant_id": 71, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 347, + "restaurant_id": 1785, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 347, + "restaurant_id": 632 + }, + { + "user_id": 347, + "restaurant_id": 1176 + } + ], + "updated_at": "2025-03-30T11:32:20.277000" + }, + { + "user_info": { + "user_id": 348, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 348, + "min_price": 192438, + "max_price": 451104, + "preferred_categories": [ + 1, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9988" + }, + "reservations": [ + { + "user_id": 348, + "restaurant_id": 222, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 348, + "restaurant_id": 438, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 348, + "restaurant_id": 555 + }, + { + "user_id": 348, + "restaurant_id": 443 + }, + { + "user_id": 348, + "restaurant_id": 1374 + }, + { + "user_id": 348, + "restaurant_id": 174 + }, + { + "user_id": 348, + "restaurant_id": 395 + } + ], + "updated_at": "2025-03-30T11:32:20.279000" + }, + { + "user_info": { + "user_id": 349, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 349, + "min_price": 79899, + "max_price": 420645, + "preferred_categories": [ + 1, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9989" + }, + "reservations": [ + { + "user_id": 349, + "restaurant_id": 1019, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 349, + "restaurant_id": 890, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 349, + "restaurant_id": 1600, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 349, + "restaurant_id": 133, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 349, + "restaurant_id": 1510, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 349, + "restaurant_id": 1489 + }, + { + "user_id": 349, + "restaurant_id": 1218 + }, + { + "user_id": 349, + "restaurant_id": 1898 + } + ], + "updated_at": "2025-03-30T11:32:20.282000" + }, + { + "user_info": { + "user_id": 350, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 350, + "min_price": 125863, + "max_price": 392445, + "preferred_categories": [ + 2, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff998a" + }, + "reservations": [ + { + "user_id": 350, + "restaurant_id": 966, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 350, + "restaurant_id": 846, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 350, + "restaurant_id": 181, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 350, + "restaurant_id": 211 + }, + { + "user_id": 350, + "restaurant_id": 1156 + }, + { + "user_id": 350, + "restaurant_id": 1875 + } + ], + "updated_at": "2025-03-30T11:32:20.286000" + }, + { + "user_info": { + "user_id": 351, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 351, + "min_price": 78961, + "max_price": 207515, + "preferred_categories": [ + 2, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff998b" + }, + "reservations": [ + { + "user_id": 351, + "restaurant_id": 1769, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 351, + "restaurant_id": 2165, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 351, + "restaurant_id": 680 + }, + { + "user_id": 351, + "restaurant_id": 2212 + } + ], + "updated_at": "2025-03-30T11:32:20.288000" + }, + { + "user_info": { + "user_id": 352, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 352, + "min_price": 53884, + "max_price": 317523, + "preferred_categories": [ + 2, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff998c" + }, + "reservations": [ + { + "user_id": 352, + "restaurant_id": 1982, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 352, + "restaurant_id": 135 + }, + { + "user_id": 352, + "restaurant_id": 1959 + } + ], + "updated_at": "2025-03-30T11:32:20.291000" + }, + { + "user_info": { + "user_id": 353, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 353, + "min_price": 197545, + "max_price": 444435, + "preferred_categories": [ + 4, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff998d" + }, + "reservations": [ + { + "user_id": 353, + "restaurant_id": 2037, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 353, + "restaurant_id": 1254, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 353, + "restaurant_id": 1710, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 353, + "restaurant_id": 2026, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 353, + "restaurant_id": 770, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 353, + "restaurant_id": 1915, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 353, + "restaurant_id": 1924, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 353, + "restaurant_id": 1905 + }, + { + "user_id": 353, + "restaurant_id": 193 + }, + { + "user_id": 353, + "restaurant_id": 982 + } + ], + "updated_at": "2025-03-30T11:32:20.294000" + }, + { + "user_info": { + "user_id": 354, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 354, + "min_price": 42407, + "max_price": 316633, + "preferred_categories": [ + 7, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff998e" + }, + "reservations": [ + { + "user_id": 354, + "restaurant_id": 1314, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 354, + "restaurant_id": 161, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 354, + "restaurant_id": 1903, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 354, + "restaurant_id": 729, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 354, + "restaurant_id": 1054, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 354, + "restaurant_id": 57, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 354, + "restaurant_id": 906, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 354, + "restaurant_id": 783 + } + ], + "updated_at": "2025-03-30T11:32:20.298000" + }, + { + "user_info": { + "user_id": 355, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 355, + "min_price": 173204, + "max_price": 258931, + "preferred_categories": [ + 5, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff998f" + }, + "reservations": [], + "likes": [ + { + "user_id": 355, + "restaurant_id": 1139 + } + ], + "updated_at": "2025-03-30T11:32:20.301000" + }, + { + "user_info": { + "user_id": 356, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 356, + "min_price": 190010, + "max_price": 372692, + "preferred_categories": [ + 2, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff9990" + }, + "reservations": [ + { + "user_id": 356, + "restaurant_id": 859, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 356, + "restaurant_id": 365 + }, + { + "user_id": 356, + "restaurant_id": 914 + } + ], + "updated_at": "2025-03-30T11:32:20.303000" + }, + { + "user_info": { + "user_id": 357, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 357, + "min_price": 37837, + "max_price": 343398, + "preferred_categories": [ + 3, + 4, + 11 + ], + "_id": "67e92bc2785211cbd5ff9991" + }, + "reservations": [ + { + "user_id": 357, + "restaurant_id": 1867, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 357, + "restaurant_id": 226 + }, + { + "user_id": 357, + "restaurant_id": 484 + }, + { + "user_id": 357, + "restaurant_id": 1848 + } + ], + "updated_at": "2025-03-30T11:32:20.306000" + }, + { + "user_info": { + "user_id": 358, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 358, + "min_price": 59623, + "max_price": 281317, + "preferred_categories": [ + 1, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff9992" + }, + "reservations": [ + { + "user_id": 358, + "restaurant_id": 1823, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 358, + "restaurant_id": 1719, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 358, + "restaurant_id": 1625, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 358, + "restaurant_id": 2037 + }, + { + "user_id": 358, + "restaurant_id": 1167 + }, + { + "user_id": 358, + "restaurant_id": 690 + } + ], + "updated_at": "2025-03-30T11:32:20.309000" + }, + { + "user_info": { + "user_id": 359, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 359, + "min_price": 26790, + "max_price": 332501, + "preferred_categories": [ + 4, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9993" + }, + "reservations": [ + { + "user_id": 359, + "restaurant_id": 1132, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 359, + "restaurant_id": 700, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 359, + "restaurant_id": 829, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 359, + "restaurant_id": 235, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 359, + "restaurant_id": 866 + }, + { + "user_id": 359, + "restaurant_id": 24 + } + ], + "updated_at": "2025-03-30T11:32:20.312000" + }, + { + "user_info": { + "user_id": 360, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 360, + "min_price": 158042, + "max_price": 384262, + "preferred_categories": [ + 1, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9994" + }, + "reservations": [ + { + "user_id": 360, + "restaurant_id": 337, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 360, + "restaurant_id": 748, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 360, + "restaurant_id": 914, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 360, + "restaurant_id": 13 + }, + { + "user_id": 360, + "restaurant_id": 492 + }, + { + "user_id": 360, + "restaurant_id": 1374 + } + ], + "updated_at": "2025-03-30T11:32:20.314000" + }, + { + "user_info": { + "user_id": 361, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 361, + "min_price": 93593, + "max_price": 428215, + "preferred_categories": [ + 1, + 3, + 9 + ], + "_id": "67e92bc2785211cbd5ff9995" + }, + "reservations": [ + { + "user_id": 361, + "restaurant_id": 971, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 361, + "restaurant_id": 1263, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 361, + "restaurant_id": 1764, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 361, + "restaurant_id": 66 + }, + { + "user_id": 361, + "restaurant_id": 1896 + }, + { + "user_id": 361, + "restaurant_id": 1192 + }, + { + "user_id": 361, + "restaurant_id": 1297 + }, + { + "user_id": 361, + "restaurant_id": 251 + }, + { + "user_id": 361, + "restaurant_id": 866 + }, + { + "user_id": 361, + "restaurant_id": 2033 + } + ], + "updated_at": "2025-03-30T11:32:20.317000" + }, + { + "user_info": { + "user_id": 362, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 362, + "min_price": 163969, + "max_price": 249481, + "preferred_categories": [ + 1, + 4, + 5 + ], + "_id": "67e92bc2785211cbd5ff9996" + }, + "reservations": [ + { + "user_id": 362, + "restaurant_id": 1253, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 362, + "restaurant_id": 932, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 362, + "restaurant_id": 644, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 362, + "restaurant_id": 1856 + }, + { + "user_id": 362, + "restaurant_id": 72 + }, + { + "user_id": 362, + "restaurant_id": 360 + }, + { + "user_id": 362, + "restaurant_id": 1354 + }, + { + "user_id": 362, + "restaurant_id": 90 + } + ], + "updated_at": "2025-03-30T11:32:20.319000" + }, + { + "user_info": { + "user_id": 363, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 363, + "min_price": 50161, + "max_price": 414483, + "preferred_categories": [ + 2, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9997" + }, + "reservations": [ + { + "user_id": 363, + "restaurant_id": 1187, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 363, + "restaurant_id": 1973, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 363, + "restaurant_id": 805, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 363, + "restaurant_id": 1194, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 363, + "restaurant_id": 2186 + }, + { + "user_id": 363, + "restaurant_id": 1571 + } + ], + "updated_at": "2025-03-30T11:32:20.322000" + }, + { + "user_info": { + "user_id": 364, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 364, + "min_price": 118855, + "max_price": 464670, + "preferred_categories": [ + 1, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9998" + }, + "reservations": [ + { + "user_id": 364, + "restaurant_id": 1736, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 364, + "restaurant_id": 1389, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 364, + "restaurant_id": 1075 + }, + { + "user_id": 364, + "restaurant_id": 1919 + }, + { + "user_id": 364, + "restaurant_id": 1508 + } + ], + "updated_at": "2025-03-30T11:32:20.325000" + }, + { + "user_info": { + "user_id": 365, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 365, + "min_price": 172110, + "max_price": 474311, + "preferred_categories": [ + 1, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9999" + }, + "reservations": [ + { + "user_id": 365, + "restaurant_id": 824, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.329000" + }, + { + "user_info": { + "user_id": 366, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 366, + "min_price": 114042, + "max_price": 348959, + "preferred_categories": [ + 9, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff999a" + }, + "reservations": [ + { + "user_id": 366, + "restaurant_id": 578, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 366, + "restaurant_id": 975, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 366, + "restaurant_id": 1620, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 366, + "restaurant_id": 565 + }, + { + "user_id": 366, + "restaurant_id": 1826 + }, + { + "user_id": 366, + "restaurant_id": 1175 + }, + { + "user_id": 366, + "restaurant_id": 645 + } + ], + "updated_at": "2025-03-30T11:32:20.333000" + }, + { + "user_info": { + "user_id": 367, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 367, + "min_price": 101587, + "max_price": 234548, + "preferred_categories": [ + 8, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff999b" + }, + "reservations": [ + { + "user_id": 367, + "restaurant_id": 1419, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 367, + "restaurant_id": 1889, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 367, + "restaurant_id": 1997 + }, + { + "user_id": 367, + "restaurant_id": 1934 + }, + { + "user_id": 367, + "restaurant_id": 1634 + }, + { + "user_id": 367, + "restaurant_id": 544 + }, + { + "user_id": 367, + "restaurant_id": 1905 + } + ], + "updated_at": "2025-03-30T11:32:20.340000" + }, + { + "user_info": { + "user_id": 368, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 368, + "min_price": 174151, + "max_price": 219163, + "preferred_categories": [ + 1, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff999c" + }, + "reservations": [ + { + "user_id": 368, + "restaurant_id": 458, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 368, + "restaurant_id": 155, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.343000" + }, + { + "user_info": { + "user_id": 369, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 369, + "min_price": 65234, + "max_price": 302195, + "preferred_categories": [ + 2, + 3, + 4 + ], + "_id": "67e92bc2785211cbd5ff999d" + }, + "reservations": [ + { + "user_id": 369, + "restaurant_id": 21, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 369, + "restaurant_id": 2217 + }, + { + "user_id": 369, + "restaurant_id": 112 + }, + { + "user_id": 369, + "restaurant_id": 1263 + }, + { + "user_id": 369, + "restaurant_id": 957 + }, + { + "user_id": 369, + "restaurant_id": 104 + } + ], + "updated_at": "2025-03-30T11:32:20.347000" + }, + { + "user_info": { + "user_id": 370, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 370, + "min_price": 147660, + "max_price": 422472, + "preferred_categories": [ + 6, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff999e" + }, + "reservations": [ + { + "user_id": 370, + "restaurant_id": 944, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 370, + "restaurant_id": 174, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 370, + "restaurant_id": 1595, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 370, + "restaurant_id": 1248, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 370, + "restaurant_id": 464 + }, + { + "user_id": 370, + "restaurant_id": 325 + }, + { + "user_id": 370, + "restaurant_id": 544 + }, + { + "user_id": 370, + "restaurant_id": 1023 + } + ], + "updated_at": "2025-03-30T11:32:20.350000" + }, + { + "user_info": { + "user_id": 371, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 371, + "min_price": 146399, + "max_price": 227784, + "preferred_categories": [ + 5, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff999f" + }, + "reservations": [ + { + "user_id": 371, + "restaurant_id": 921, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 371, + "restaurant_id": 1068 + }, + { + "user_id": 371, + "restaurant_id": 1716 + }, + { + "user_id": 371, + "restaurant_id": 1458 + } + ], + "updated_at": "2025-03-30T11:32:20.355000" + }, + { + "user_info": { + "user_id": 372, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 372, + "min_price": 171040, + "max_price": 498482, + "preferred_categories": [ + 4, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff99a0" + }, + "reservations": [ + { + "user_id": 372, + "restaurant_id": 1440, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 372, + "restaurant_id": 137, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 372, + "restaurant_id": 1717, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 372, + "restaurant_id": 711, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 372, + "restaurant_id": 1712 + }, + { + "user_id": 372, + "restaurant_id": 1940 + } + ], + "updated_at": "2025-03-30T11:32:20.360000" + }, + { + "user_info": { + "user_id": 373, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 373, + "min_price": 25938, + "max_price": 373709, + "preferred_categories": [ + 4, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff99a1" + }, + "reservations": [ + { + "user_id": 373, + "restaurant_id": 121, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 373, + "restaurant_id": 432, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 373, + "restaurant_id": 1185, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 373, + "restaurant_id": 485, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 373, + "restaurant_id": 1479 + }, + { + "user_id": 373, + "restaurant_id": 1545 + }, + { + "user_id": 373, + "restaurant_id": 1058 + } + ], + "updated_at": "2025-03-30T11:32:20.363000" + }, + { + "user_info": { + "user_id": 374, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 374, + "min_price": 35826, + "max_price": 470459, + "preferred_categories": [ + 1, + 3, + 6 + ], + "_id": "67e92bc2785211cbd5ff99a2" + }, + "reservations": [ + { + "user_id": 374, + "restaurant_id": 1308, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 374, + "restaurant_id": 577, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 374, + "restaurant_id": 1001, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 374, + "restaurant_id": 464, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 374, + "restaurant_id": 1255 + }, + { + "user_id": 374, + "restaurant_id": 1888 + }, + { + "user_id": 374, + "restaurant_id": 2104 + }, + { + "user_id": 374, + "restaurant_id": 172 + }, + { + "user_id": 374, + "restaurant_id": 1786 + }, + { + "user_id": 374, + "restaurant_id": 561 + } + ], + "updated_at": "2025-03-30T11:32:20.367000" + }, + { + "user_info": { + "user_id": 375, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 375, + "min_price": 120657, + "max_price": 354110, + "preferred_categories": [ + 7, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff99a3" + }, + "reservations": [ + { + "user_id": 375, + "restaurant_id": 1635, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 375, + "restaurant_id": 1471, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 375, + "restaurant_id": 820 + }, + { + "user_id": 375, + "restaurant_id": 306 + }, + { + "user_id": 375, + "restaurant_id": 336 + }, + { + "user_id": 375, + "restaurant_id": 345 + }, + { + "user_id": 375, + "restaurant_id": 1593 + } + ], + "updated_at": "2025-03-30T11:32:20.370000" + }, + { + "user_info": { + "user_id": 376, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 376, + "min_price": 117159, + "max_price": 206024, + "preferred_categories": [ + 4, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff99a4" + }, + "reservations": [ + { + "user_id": 376, + "restaurant_id": 2007, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 376, + "restaurant_id": 1392, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 376, + "restaurant_id": 636, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 376, + "restaurant_id": 2160, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 376, + "restaurant_id": 2253, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.374000" + }, + { + "user_info": { + "user_id": 377, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 377, + "min_price": 83301, + "max_price": 358946, + "preferred_categories": [ + 7, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff99a5" + }, + "reservations": [ + { + "user_id": 377, + "restaurant_id": 210, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 377, + "restaurant_id": 705, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 377, + "restaurant_id": 2124 + }, + { + "user_id": 377, + "restaurant_id": 1715 + } + ], + "updated_at": "2025-03-30T11:32:20.378000" + }, + { + "user_info": { + "user_id": 378, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 378, + "min_price": 59281, + "max_price": 308803, + "preferred_categories": [ + 1, + 2, + 9 + ], + "_id": "67e92bc2785211cbd5ff99a6" + }, + "reservations": [], + "likes": [ + { + "user_id": 378, + "restaurant_id": 1360 + }, + { + "user_id": 378, + "restaurant_id": 1611 + }, + { + "user_id": 378, + "restaurant_id": 390 + } + ], + "updated_at": "2025-03-30T11:32:20.381000" + }, + { + "user_info": { + "user_id": 379, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 379, + "min_price": 31884, + "max_price": 474517, + "preferred_categories": [ + 7, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff99a7" + }, + "reservations": [ + { + "user_id": 379, + "restaurant_id": 416, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 379, + "restaurant_id": 2016 + }, + { + "user_id": 379, + "restaurant_id": 505 + }, + { + "user_id": 379, + "restaurant_id": 575 + }, + { + "user_id": 379, + "restaurant_id": 48 + } + ], + "updated_at": "2025-03-30T11:32:20.384000" + }, + { + "user_info": { + "user_id": 380, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 380, + "min_price": 142871, + "max_price": 242390, + "preferred_categories": [ + 4, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff99a8" + }, + "reservations": [ + { + "user_id": 380, + "restaurant_id": 1212, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 380, + "restaurant_id": 1422, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.389000" + }, + { + "user_info": { + "user_id": 381, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 381, + "min_price": 187457, + "max_price": 340548, + "preferred_categories": [ + 4, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff99a9" + }, + "reservations": [ + { + "user_id": 381, + "restaurant_id": 2000, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 381, + "restaurant_id": 622, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 381, + "restaurant_id": 136, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 381, + "restaurant_id": 957 + } + ], + "updated_at": "2025-03-30T11:32:20.393000" + }, + { + "user_info": { + "user_id": 382, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 382, + "min_price": 177984, + "max_price": 299177, + "preferred_categories": [ + 2, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff99aa" + }, + "reservations": [ + { + "user_id": 382, + "restaurant_id": 379, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 382, + "restaurant_id": 1050, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 382, + "restaurant_id": 1311, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 382, + "restaurant_id": 93 + }, + { + "user_id": 382, + "restaurant_id": 1949 + }, + { + "user_id": 382, + "restaurant_id": 726 + } + ], + "updated_at": "2025-03-30T11:32:20.396000" + }, + { + "user_info": { + "user_id": 383, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 383, + "min_price": 82671, + "max_price": 270532, + "preferred_categories": [ + 1, + 2, + 3 + ], + "_id": "67e92bc2785211cbd5ff99ab" + }, + "reservations": [ + { + "user_id": 383, + "restaurant_id": 1223, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 383, + "restaurant_id": 2112, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 383, + "restaurant_id": 2254, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 383, + "restaurant_id": 2002, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 383, + "restaurant_id": 1311 + }, + { + "user_id": 383, + "restaurant_id": 1520 + }, + { + "user_id": 383, + "restaurant_id": 661 + } + ], + "updated_at": "2025-03-30T11:32:20.400000" + }, + { + "user_info": { + "user_id": 384, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 384, + "min_price": 88647, + "max_price": 268992, + "preferred_categories": [ + 8, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff99ac" + }, + "reservations": [ + { + "user_id": 384, + "restaurant_id": 320, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 384, + "restaurant_id": 1696, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 384, + "restaurant_id": 888, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 384, + "restaurant_id": 1504 + }, + { + "user_id": 384, + "restaurant_id": 87 + }, + { + "user_id": 384, + "restaurant_id": 391 + } + ], + "updated_at": "2025-03-30T11:32:20.402000" + }, + { + "user_info": { + "user_id": 385, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 385, + "min_price": 71976, + "max_price": 259627, + "preferred_categories": [ + 2, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff99ad" + }, + "reservations": [ + { + "user_id": 385, + "restaurant_id": 1777, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 385, + "restaurant_id": 1309 + }, + { + "user_id": 385, + "restaurant_id": 1261 + }, + { + "user_id": 385, + "restaurant_id": 766 + } + ], + "updated_at": "2025-03-30T11:32:20.405000" + }, + { + "user_info": { + "user_id": 386, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 386, + "min_price": 39850, + "max_price": 266860, + "preferred_categories": [ + 1, + 2, + 7 + ], + "_id": "67e92bc2785211cbd5ff99ae" + }, + "reservations": [ + { + "user_id": 386, + "restaurant_id": 1190, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 386, + "restaurant_id": 639, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 386, + "restaurant_id": 703, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 386, + "restaurant_id": 2079, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 386, + "restaurant_id": 68, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 386, + "restaurant_id": 2109, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 386, + "restaurant_id": 1938 + }, + { + "user_id": 386, + "restaurant_id": 885 + }, + { + "user_id": 386, + "restaurant_id": 1210 + }, + { + "user_id": 386, + "restaurant_id": 328 + } + ], + "updated_at": "2025-03-30T11:32:20.407000" + }, + { + "user_info": { + "user_id": 387, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 387, + "min_price": 112778, + "max_price": 202576, + "preferred_categories": [ + 2, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff99af" + }, + "reservations": [ + { + "user_id": 387, + "restaurant_id": 716, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 387, + "restaurant_id": 2219, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 387, + "restaurant_id": 1837, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 387, + "restaurant_id": 1933 + }, + { + "user_id": 387, + "restaurant_id": 1075 + } + ], + "updated_at": "2025-03-30T11:32:20.410000" + }, + { + "user_info": { + "user_id": 388, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 388, + "min_price": 148181, + "max_price": 289778, + "preferred_categories": [ + 4, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff99b0" + }, + "reservations": [ + { + "user_id": 388, + "restaurant_id": 1278, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 388, + "restaurant_id": 970, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 388, + "restaurant_id": 2246, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 388, + "restaurant_id": 270 + }, + { + "user_id": 388, + "restaurant_id": 1725 + }, + { + "user_id": 388, + "restaurant_id": 1914 + } + ], + "updated_at": "2025-03-30T11:32:20.412000" + }, + { + "user_info": { + "user_id": 389, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 389, + "min_price": 98397, + "max_price": 318503, + "preferred_categories": [ + 1, + 2, + 10 + ], + "_id": "67e92bc2785211cbd5ff99b1" + }, + "reservations": [ + { + "user_id": 389, + "restaurant_id": 1487, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 389, + "restaurant_id": 729, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 389, + "restaurant_id": 1616, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 389, + "restaurant_id": 1966, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 389, + "restaurant_id": 2094, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 389, + "restaurant_id": 2131, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 389, + "restaurant_id": 200 + }, + { + "user_id": 389, + "restaurant_id": 2128 + } + ], + "updated_at": "2025-03-30T11:32:20.414000" + }, + { + "user_info": { + "user_id": 390, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 390, + "min_price": 126264, + "max_price": 307917, + "preferred_categories": [ + 10, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff99b2" + }, + "reservations": [ + { + "user_id": 390, + "restaurant_id": 476, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 390, + "restaurant_id": 130, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 390, + "restaurant_id": 783, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 390, + "restaurant_id": 309 + }, + { + "user_id": 390, + "restaurant_id": 1446 + }, + { + "user_id": 390, + "restaurant_id": 886 + }, + { + "user_id": 390, + "restaurant_id": 679 + }, + { + "user_id": 390, + "restaurant_id": 670 + } + ], + "updated_at": "2025-03-30T11:32:20.417000" + }, + { + "user_info": { + "user_id": 391, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 391, + "min_price": 93056, + "max_price": 369358, + "preferred_categories": [ + 5, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff99b3" + }, + "reservations": [ + { + "user_id": 391, + "restaurant_id": 40, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 391, + "restaurant_id": 33, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 391, + "restaurant_id": 1437, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 391, + "restaurant_id": 2090 + }, + { + "user_id": 391, + "restaurant_id": 95 + } + ], + "updated_at": "2025-03-30T11:32:20.419000" + }, + { + "user_info": { + "user_id": 392, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 392, + "min_price": 59530, + "max_price": 373343, + "preferred_categories": [ + 6, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff99b4" + }, + "reservations": [ + { + "user_id": 392, + "restaurant_id": 1950, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 392, + "restaurant_id": 1945, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 392, + "restaurant_id": 1256, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 392, + "restaurant_id": 1169 + }, + { + "user_id": 392, + "restaurant_id": 1224 + } + ], + "updated_at": "2025-03-30T11:32:20.428000" + }, + { + "user_info": { + "user_id": 393, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 393, + "min_price": 191858, + "max_price": 278415, + "preferred_categories": [ + 7, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff99b5" + }, + "reservations": [ + { + "user_id": 393, + "restaurant_id": 1736, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 393, + "restaurant_id": 819, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 393, + "restaurant_id": 245, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 393, + "restaurant_id": 2179, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 393, + "restaurant_id": 2143 + }, + { + "user_id": 393, + "restaurant_id": 122 + }, + { + "user_id": 393, + "restaurant_id": 1653 + }, + { + "user_id": 393, + "restaurant_id": 2073 + } + ], + "updated_at": "2025-03-30T11:32:20.433000" + }, + { + "user_info": { + "user_id": 394, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 394, + "min_price": 78233, + "max_price": 254809, + "preferred_categories": [ + 2, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff99b6" + }, + "reservations": [ + { + "user_id": 394, + "restaurant_id": 192, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 394, + "restaurant_id": 271, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 394, + "restaurant_id": 1892, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 394, + "restaurant_id": 1680, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 394, + "restaurant_id": 759 + }, + { + "user_id": 394, + "restaurant_id": 1277 + }, + { + "user_id": 394, + "restaurant_id": 1008 + } + ], + "updated_at": "2025-03-30T11:32:20.437000" + }, + { + "user_info": { + "user_id": 395, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 395, + "min_price": 41600, + "max_price": 358742, + "preferred_categories": [ + 4, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff99b7" + }, + "reservations": [ + { + "user_id": 395, + "restaurant_id": 713, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 395, + "restaurant_id": 692, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 395, + "restaurant_id": 118, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 395, + "restaurant_id": 889, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 395, + "restaurant_id": 999 + }, + { + "user_id": 395, + "restaurant_id": 2024 + }, + { + "user_id": 395, + "restaurant_id": 413 + }, + { + "user_id": 395, + "restaurant_id": 1659 + }, + { + "user_id": 395, + "restaurant_id": 1272 + }, + { + "user_id": 395, + "restaurant_id": 1724 + }, + { + "user_id": 395, + "restaurant_id": 485 + } + ], + "updated_at": "2025-03-30T11:32:20.439000" + }, + { + "user_info": { + "user_id": 396, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 396, + "min_price": 136937, + "max_price": 435593, + "preferred_categories": [ + 2, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff99b8" + }, + "reservations": [ + { + "user_id": 396, + "restaurant_id": 359, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 396, + "restaurant_id": 1171, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 396, + "restaurant_id": 765, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 396, + "restaurant_id": 1463, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 396, + "restaurant_id": 150 + }, + { + "user_id": 396, + "restaurant_id": 768 + }, + { + "user_id": 396, + "restaurant_id": 624 + }, + { + "user_id": 396, + "restaurant_id": 1339 + } + ], + "updated_at": "2025-03-30T11:32:20.442000" + }, + { + "user_info": { + "user_id": 397, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 397, + "min_price": 79308, + "max_price": 444664, + "preferred_categories": [ + 2, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff99b9" + }, + "reservations": [ + { + "user_id": 397, + "restaurant_id": 1479, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 397, + "restaurant_id": 1777 + }, + { + "user_id": 397, + "restaurant_id": 2068 + }, + { + "user_id": 397, + "restaurant_id": 1432 + }, + { + "user_id": 397, + "restaurant_id": 951 + } + ], + "updated_at": "2025-03-30T11:32:20.444000" + }, + { + "user_info": { + "user_id": 398, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 398, + "min_price": 189799, + "max_price": 257040, + "preferred_categories": [ + 5, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff99ba" + }, + "reservations": [ + { + "user_id": 398, + "restaurant_id": 1358, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 398, + "restaurant_id": 428, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 398, + "restaurant_id": 1634 + }, + { + "user_id": 398, + "restaurant_id": 1051 + }, + { + "user_id": 398, + "restaurant_id": 1165 + } + ], + "updated_at": "2025-03-30T11:32:20.447000" + }, + { + "user_info": { + "user_id": 399, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 399, + "min_price": 107481, + "max_price": 471971, + "preferred_categories": [ + 2, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff99bb" + }, + "reservations": [ + { + "user_id": 399, + "restaurant_id": 975, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 399, + "restaurant_id": 786, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 399, + "restaurant_id": 559, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 399, + "restaurant_id": 586, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 399, + "restaurant_id": 1519 + }, + { + "user_id": 399, + "restaurant_id": 1149 + } + ], + "updated_at": "2025-03-30T11:32:20.450000" + }, + { + "user_info": { + "user_id": 400, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 400, + "min_price": 69440, + "max_price": 285534, + "preferred_categories": [ + 2, + 4, + 7 + ], + "_id": "67e92bc2785211cbd5ff99bc" + }, + "reservations": [ + { + "user_id": 400, + "restaurant_id": 1755, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 400, + "restaurant_id": 579, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 400, + "restaurant_id": 538 + }, + { + "user_id": 400, + "restaurant_id": 1509 + }, + { + "user_id": 400, + "restaurant_id": 2079 + }, + { + "user_id": 400, + "restaurant_id": 1351 + } + ], + "updated_at": "2025-03-30T11:32:20.453000" + }, + { + "user_info": { + "user_id": 401, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 401, + "min_price": 28851, + "max_price": 399355, + "preferred_categories": [ + 2, + 4, + 6 + ], + "_id": "67e92bc2785211cbd5ff99bd" + }, + "reservations": [ + { + "user_id": 401, + "restaurant_id": 1433, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 401, + "restaurant_id": 839 + }, + { + "user_id": 401, + "restaurant_id": 1655 + }, + { + "user_id": 401, + "restaurant_id": 864 + } + ], + "updated_at": "2025-03-30T11:32:20.455000" + }, + { + "user_info": { + "user_id": 402, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 402, + "min_price": 130354, + "max_price": 267282, + "preferred_categories": [ + 9, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff99be" + }, + "reservations": [ + { + "user_id": 402, + "restaurant_id": 2107, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 402, + "restaurant_id": 90, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 402, + "restaurant_id": 971 + }, + { + "user_id": 402, + "restaurant_id": 1104 + }, + { + "user_id": 402, + "restaurant_id": 561 + }, + { + "user_id": 402, + "restaurant_id": 1415 + }, + { + "user_id": 402, + "restaurant_id": 2023 + } + ], + "updated_at": "2025-03-30T11:32:20.458000" + }, + { + "user_info": { + "user_id": 403, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 403, + "min_price": 90246, + "max_price": 376411, + "preferred_categories": [ + 1, + 2, + 6 + ], + "_id": "67e92bc2785211cbd5ff99bf" + }, + "reservations": [ + { + "user_id": 403, + "restaurant_id": 1896, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 403, + "restaurant_id": 569, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 403, + "restaurant_id": 182, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 403, + "restaurant_id": 635 + } + ], + "updated_at": "2025-03-30T11:32:20.460000" + }, + { + "user_info": { + "user_id": 404, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 404, + "min_price": 68397, + "max_price": 417066, + "preferred_categories": [ + 3, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff99c0" + }, + "reservations": [ + { + "user_id": 404, + "restaurant_id": 800, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 404, + "restaurant_id": 1592, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 404, + "restaurant_id": 964, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 404, + "restaurant_id": 575, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 404, + "restaurant_id": 1801 + }, + { + "user_id": 404, + "restaurant_id": 1402 + }, + { + "user_id": 404, + "restaurant_id": 1361 + } + ], + "updated_at": "2025-03-30T11:32:20.467000" + }, + { + "user_info": { + "user_id": 405, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 405, + "min_price": 50643, + "max_price": 312499, + "preferred_categories": [ + 1, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff99c1" + }, + "reservations": [ + { + "user_id": 405, + "restaurant_id": 1292, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 405, + "restaurant_id": 1091, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 405, + "restaurant_id": 2051 + }, + { + "user_id": 405, + "restaurant_id": 1137 + }, + { + "user_id": 405, + "restaurant_id": 1352 + }, + { + "user_id": 405, + "restaurant_id": 46 + } + ], + "updated_at": "2025-03-30T11:32:20.470000" + }, + { + "user_info": { + "user_id": 406, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 406, + "min_price": 70706, + "max_price": 329969, + "preferred_categories": [ + 2, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff99c2" + }, + "reservations": [ + { + "user_id": 406, + "restaurant_id": 850, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 406, + "restaurant_id": 792, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 406, + "restaurant_id": 1863, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 406, + "restaurant_id": 189, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 406, + "restaurant_id": 2062 + }, + { + "user_id": 406, + "restaurant_id": 720 + }, + { + "user_id": 406, + "restaurant_id": 2033 + }, + { + "user_id": 406, + "restaurant_id": 1948 + } + ], + "updated_at": "2025-03-30T11:32:20.473000" + }, + { + "user_info": { + "user_id": 407, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 407, + "min_price": 70210, + "max_price": 468220, + "preferred_categories": [ + 3, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff99c3" + }, + "reservations": [ + { + "user_id": 407, + "restaurant_id": 1196, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 407, + "restaurant_id": 629 + }, + { + "user_id": 407, + "restaurant_id": 1924 + }, + { + "user_id": 407, + "restaurant_id": 1835 + }, + { + "user_id": 407, + "restaurant_id": 6 + } + ], + "updated_at": "2025-03-30T11:32:20.476000" + }, + { + "user_info": { + "user_id": 408, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 408, + "min_price": 162311, + "max_price": 414297, + "preferred_categories": [ + 1, + 2, + 5 + ], + "_id": "67e92bc2785211cbd5ff99c4" + }, + "reservations": [ + { + "user_id": 408, + "restaurant_id": 647, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 408, + "restaurant_id": 101, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 408, + "restaurant_id": 1274, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 408, + "restaurant_id": 339, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 408, + "restaurant_id": 703 + }, + { + "user_id": 408, + "restaurant_id": 1638 + }, + { + "user_id": 408, + "restaurant_id": 1523 + }, + { + "user_id": 408, + "restaurant_id": 951 + } + ], + "updated_at": "2025-03-30T11:32:20.479000" + }, + { + "user_info": { + "user_id": 409, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 409, + "min_price": 187847, + "max_price": 219953, + "preferred_categories": [ + 3, + 4, + 5 + ], + "_id": "67e92bc2785211cbd5ff99c5" + }, + "reservations": [ + { + "user_id": 409, + "restaurant_id": 1852, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 409, + "restaurant_id": 1753 + } + ], + "updated_at": "2025-03-30T11:32:20.481000" + }, + { + "user_info": { + "user_id": 410, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 410, + "min_price": 192908, + "max_price": 413257, + "preferred_categories": [ + 2, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff99c6" + }, + "reservations": [ + { + "user_id": 410, + "restaurant_id": 1613, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 410, + "restaurant_id": 1366, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 410, + "restaurant_id": 2244 + } + ], + "updated_at": "2025-03-30T11:32:20.484000" + }, + { + "user_info": { + "user_id": 411, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 411, + "min_price": 192762, + "max_price": 334666, + "preferred_categories": [ + 3, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff99c7" + }, + "reservations": [ + { + "user_id": 411, + "restaurant_id": 269, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 411, + "restaurant_id": 377, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 411, + "restaurant_id": 1583 + }, + { + "user_id": 411, + "restaurant_id": 315 + }, + { + "user_id": 411, + "restaurant_id": 1867 + }, + { + "user_id": 411, + "restaurant_id": 334 + }, + { + "user_id": 411, + "restaurant_id": 1791 + } + ], + "updated_at": "2025-03-30T11:32:20.487000" + }, + { + "user_info": { + "user_id": 412, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 412, + "min_price": 50456, + "max_price": 222514, + "preferred_categories": [ + 8, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff99c8" + }, + "reservations": [ + { + "user_id": 412, + "restaurant_id": 1050, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 412, + "restaurant_id": 662, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 412, + "restaurant_id": 754, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 412, + "restaurant_id": 171, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.489000" + }, + { + "user_info": { + "user_id": 413, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 413, + "min_price": 123579, + "max_price": 259408, + "preferred_categories": [ + 1, + 3, + 9 + ], + "_id": "67e92bc2785211cbd5ff99c9" + }, + "reservations": [ + { + "user_id": 413, + "restaurant_id": 769, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 413, + "restaurant_id": 72, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 413, + "restaurant_id": 2174, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 413, + "restaurant_id": 533, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 413, + "restaurant_id": 2177, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 413, + "restaurant_id": 1942, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 413, + "restaurant_id": 92, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 413, + "restaurant_id": 1441 + }, + { + "user_id": 413, + "restaurant_id": 812 + }, + { + "user_id": 413, + "restaurant_id": 1602 + } + ], + "updated_at": "2025-03-30T11:32:20.494000" + }, + { + "user_info": { + "user_id": 414, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 414, + "min_price": 16753, + "max_price": 319363, + "preferred_categories": [ + 2, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff99ca" + }, + "reservations": [ + { + "user_id": 414, + "restaurant_id": 1694, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 414, + "restaurant_id": 1778, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 414, + "restaurant_id": 2025 + }, + { + "user_id": 414, + "restaurant_id": 2032 + }, + { + "user_id": 414, + "restaurant_id": 730 + }, + { + "user_id": 414, + "restaurant_id": 1940 + } + ], + "updated_at": "2025-03-30T11:32:20.497000" + }, + { + "user_info": { + "user_id": 415, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 415, + "min_price": 95097, + "max_price": 398450, + "preferred_categories": [ + 3, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff99cb" + }, + "reservations": [ + { + "user_id": 415, + "restaurant_id": 1868, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 415, + "restaurant_id": 482, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 415, + "restaurant_id": 2182, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 415, + "restaurant_id": 2026 + } + ], + "updated_at": "2025-03-30T11:32:20.500000" + }, + { + "user_info": { + "user_id": 416, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 416, + "min_price": 107138, + "max_price": 388838, + "preferred_categories": [ + 3, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff99cc" + }, + "reservations": [ + { + "user_id": 416, + "restaurant_id": 566, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 416, + "restaurant_id": 1482 + } + ], + "updated_at": "2025-03-30T11:32:20.503000" + }, + { + "user_info": { + "user_id": 417, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 417, + "min_price": 19251, + "max_price": 256776, + "preferred_categories": [ + 2, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff99cd" + }, + "reservations": [ + { + "user_id": 417, + "restaurant_id": 730, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 417, + "restaurant_id": 1707 + }, + { + "user_id": 417, + "restaurant_id": 476 + } + ], + "updated_at": "2025-03-30T11:32:20.508000" + }, + { + "user_info": { + "user_id": 418, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 418, + "min_price": 82298, + "max_price": 383184, + "preferred_categories": [ + 6, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff99ce" + }, + "reservations": [ + { + "user_id": 418, + "restaurant_id": 1049, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 418, + "restaurant_id": 44, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 418, + "restaurant_id": 2078 + }, + { + "user_id": 418, + "restaurant_id": 399 + }, + { + "user_id": 418, + "restaurant_id": 1805 + } + ], + "updated_at": "2025-03-30T11:32:20.512000" + }, + { + "user_info": { + "user_id": 419, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 419, + "min_price": 77538, + "max_price": 262198, + "preferred_categories": [ + 2, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff99cf" + }, + "reservations": [ + { + "user_id": 419, + "restaurant_id": 1644, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 419, + "restaurant_id": 494, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 419, + "restaurant_id": 1137 + }, + { + "user_id": 419, + "restaurant_id": 1208 + }, + { + "user_id": 419, + "restaurant_id": 330 + }, + { + "user_id": 419, + "restaurant_id": 879 + } + ], + "updated_at": "2025-03-30T11:32:20.516000" + }, + { + "user_info": { + "user_id": 420, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 420, + "min_price": 139996, + "max_price": 276703, + "preferred_categories": [ + 1, + 2, + 5 + ], + "_id": "67e92bc2785211cbd5ff99d0" + }, + "reservations": [ + { + "user_id": 420, + "restaurant_id": 559, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 420, + "restaurant_id": 304, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 420, + "restaurant_id": 1272, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 420, + "restaurant_id": 1599, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 420, + "restaurant_id": 1102 + } + ], + "updated_at": "2025-03-30T11:32:20.519000" + }, + { + "user_info": { + "user_id": 421, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 421, + "min_price": 38350, + "max_price": 276962, + "preferred_categories": [ + 1, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff99d1" + }, + "reservations": [ + { + "user_id": 421, + "restaurant_id": 417, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 421, + "restaurant_id": 258, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 421, + "restaurant_id": 814, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 421, + "restaurant_id": 449, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 421, + "restaurant_id": 718, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 421, + "restaurant_id": 2235, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 421, + "restaurant_id": 1514, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 421, + "restaurant_id": 27 + }, + { + "user_id": 421, + "restaurant_id": 25 + } + ], + "updated_at": "2025-03-30T11:32:20.523000" + }, + { + "user_info": { + "user_id": 422, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 422, + "min_price": 140548, + "max_price": 461187, + "preferred_categories": [ + 4, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff99d2" + }, + "reservations": [ + { + "user_id": 422, + "restaurant_id": 2194, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 422, + "restaurant_id": 776, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 422, + "restaurant_id": 2108, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 422, + "restaurant_id": 1348, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 422, + "restaurant_id": 287, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 422, + "restaurant_id": 300, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 422, + "restaurant_id": 1527 + }, + { + "user_id": 422, + "restaurant_id": 126 + }, + { + "user_id": 422, + "restaurant_id": 902 + }, + { + "user_id": 422, + "restaurant_id": 2015 + }, + { + "user_id": 422, + "restaurant_id": 784 + } + ], + "updated_at": "2025-03-30T11:32:20.526000" + }, + { + "user_info": { + "user_id": 423, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 423, + "min_price": 45818, + "max_price": 480325, + "preferred_categories": [ + 2, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff99d3" + }, + "reservations": [ + { + "user_id": 423, + "restaurant_id": 450, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 423, + "restaurant_id": 698, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 423, + "restaurant_id": 1221, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 423, + "restaurant_id": 2251, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 423, + "restaurant_id": 892 + }, + { + "user_id": 423, + "restaurant_id": 426 + }, + { + "user_id": 423, + "restaurant_id": 1216 + }, + { + "user_id": 423, + "restaurant_id": 2119 + }, + { + "user_id": 423, + "restaurant_id": 2212 + } + ], + "updated_at": "2025-03-30T11:32:20.530000" + }, + { + "user_info": { + "user_id": 424, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 424, + "min_price": 83641, + "max_price": 394427, + "preferred_categories": [ + 3, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff99d4" + }, + "reservations": [ + { + "user_id": 424, + "restaurant_id": 2181, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 424, + "restaurant_id": 2080 + }, + { + "user_id": 424, + "restaurant_id": 365 + }, + { + "user_id": 424, + "restaurant_id": 2200 + }, + { + "user_id": 424, + "restaurant_id": 65 + } + ], + "updated_at": "2025-03-30T11:32:20.533000" + }, + { + "user_info": { + "user_id": 425, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 425, + "min_price": 99934, + "max_price": 435603, + "preferred_categories": [ + 3, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff99d5" + }, + "reservations": [ + { + "user_id": 425, + "restaurant_id": 1811, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 425, + "restaurant_id": 1510 + }, + { + "user_id": 425, + "restaurant_id": 1906 + }, + { + "user_id": 425, + "restaurant_id": 862 + } + ], + "updated_at": "2025-03-30T11:32:20.535000" + }, + { + "user_info": { + "user_id": 426, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 426, + "min_price": 67709, + "max_price": 279346, + "preferred_categories": [ + 4, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff99d6" + }, + "reservations": [], + "likes": [ + { + "user_id": 426, + "restaurant_id": 1109 + }, + { + "user_id": 426, + "restaurant_id": 577 + }, + { + "user_id": 426, + "restaurant_id": 1152 + }, + { + "user_id": 426, + "restaurant_id": 312 + }, + { + "user_id": 426, + "restaurant_id": 175 + }, + { + "user_id": 426, + "restaurant_id": 1997 + } + ], + "updated_at": "2025-03-30T11:32:20.538000" + }, + { + "user_info": { + "user_id": 427, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 427, + "min_price": 93222, + "max_price": 306633, + "preferred_categories": [ + 3, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff99d7" + }, + "reservations": [ + { + "user_id": 427, + "restaurant_id": 1948, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 427, + "restaurant_id": 1455, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 427, + "restaurant_id": 172, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 427, + "restaurant_id": 2204, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 427, + "restaurant_id": 620 + }, + { + "user_id": 427, + "restaurant_id": 1054 + }, + { + "user_id": 427, + "restaurant_id": 1197 + } + ], + "updated_at": "2025-03-30T11:32:20.543000" + }, + { + "user_info": { + "user_id": 428, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 428, + "min_price": 14466, + "max_price": 483980, + "preferred_categories": [ + 1, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff99d8" + }, + "reservations": [ + { + "user_id": 428, + "restaurant_id": 1652, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 428, + "restaurant_id": 1191, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 428, + "restaurant_id": 923 + }, + { + "user_id": 428, + "restaurant_id": 2144 + } + ], + "updated_at": "2025-03-30T11:32:20.547000" + }, + { + "user_info": { + "user_id": 429, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 429, + "min_price": 173055, + "max_price": 214878, + "preferred_categories": [ + 1, + 3, + 9 + ], + "_id": "67e92bc2785211cbd5ff99d9" + }, + "reservations": [ + { + "user_id": 429, + "restaurant_id": 642, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 429, + "restaurant_id": 1788, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 429, + "restaurant_id": 1895 + }, + { + "user_id": 429, + "restaurant_id": 174 + }, + { + "user_id": 429, + "restaurant_id": 83 + } + ], + "updated_at": "2025-03-30T11:32:20.550000" + }, + { + "user_info": { + "user_id": 430, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 430, + "min_price": 160431, + "max_price": 263423, + "preferred_categories": [ + 4, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff99da" + }, + "reservations": [ + { + "user_id": 430, + "restaurant_id": 1489, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 430, + "restaurant_id": 502, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 430, + "restaurant_id": 796, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 430, + "restaurant_id": 1111, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 430, + "restaurant_id": 493, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 430, + "restaurant_id": 2170 + }, + { + "user_id": 430, + "restaurant_id": 1750 + }, + { + "user_id": 430, + "restaurant_id": 1017 + } + ], + "updated_at": "2025-03-30T11:32:20.552000" + }, + { + "user_info": { + "user_id": 431, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 431, + "min_price": 194270, + "max_price": 396807, + "preferred_categories": [ + 5, + 6, + 12 + ], + "_id": "67e92bc2785211cbd5ff99db" + }, + "reservations": [ + { + "user_id": 431, + "restaurant_id": 1432, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 431, + "restaurant_id": 2140, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 431, + "restaurant_id": 587, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 431, + "restaurant_id": 2023, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 431, + "restaurant_id": 375 + } + ], + "updated_at": "2025-03-30T11:32:20.555000" + }, + { + "user_info": { + "user_id": 432, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 432, + "min_price": 139244, + "max_price": 468006, + "preferred_categories": [ + 5, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff99dc" + }, + "reservations": [ + { + "user_id": 432, + "restaurant_id": 906, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 432, + "restaurant_id": 466, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 432, + "restaurant_id": 800 + }, + { + "user_id": 432, + "restaurant_id": 2080 + }, + { + "user_id": 432, + "restaurant_id": 1254 + }, + { + "user_id": 432, + "restaurant_id": 2113 + } + ], + "updated_at": "2025-03-30T11:32:20.558000" + }, + { + "user_info": { + "user_id": 433, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 433, + "min_price": 54184, + "max_price": 386017, + "preferred_categories": [ + 4, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff99dd" + }, + "reservations": [ + { + "user_id": 433, + "restaurant_id": 1955, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 433, + "restaurant_id": 815, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 433, + "restaurant_id": 388, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 433, + "restaurant_id": 214, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 433, + "restaurant_id": 1699 + }, + { + "user_id": 433, + "restaurant_id": 160 + }, + { + "user_id": 433, + "restaurant_id": 1833 + } + ], + "updated_at": "2025-03-30T11:32:20.560000" + }, + { + "user_info": { + "user_id": 434, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 434, + "min_price": 115716, + "max_price": 237391, + "preferred_categories": [ + 3, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff99de" + }, + "reservations": [ + { + "user_id": 434, + "restaurant_id": 1534, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 434, + "restaurant_id": 275, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 434, + "restaurant_id": 1891, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 434, + "restaurant_id": 620, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 434, + "restaurant_id": 1876, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 434, + "restaurant_id": 759, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 434, + "restaurant_id": 2180 + }, + { + "user_id": 434, + "restaurant_id": 535 + }, + { + "user_id": 434, + "restaurant_id": 626 + } + ], + "updated_at": "2025-03-30T11:32:20.565000" + }, + { + "user_info": { + "user_id": 435, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 435, + "min_price": 29926, + "max_price": 415828, + "preferred_categories": [ + 8, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff99df" + }, + "reservations": [ + { + "user_id": 435, + "restaurant_id": 184, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 435, + "restaurant_id": 1764, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 435, + "restaurant_id": 2158 + }, + { + "user_id": 435, + "restaurant_id": 58 + } + ], + "updated_at": "2025-03-30T11:32:20.570000" + }, + { + "user_info": { + "user_id": 436, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 436, + "min_price": 56098, + "max_price": 208006, + "preferred_categories": [ + 4, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff99e0" + }, + "reservations": [ + { + "user_id": 436, + "restaurant_id": 1198, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 436, + "restaurant_id": 1291, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 436, + "restaurant_id": 1330, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 436, + "restaurant_id": 1377 + }, + { + "user_id": 436, + "restaurant_id": 2139 + } + ], + "updated_at": "2025-03-30T11:32:20.576000" + }, + { + "user_info": { + "user_id": 437, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 437, + "min_price": 92380, + "max_price": 282798, + "preferred_categories": [ + 7, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff99e1" + }, + "reservations": [ + { + "user_id": 437, + "restaurant_id": 828, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 437, + "restaurant_id": 1379, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 437, + "restaurant_id": 757, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 437, + "restaurant_id": 91, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 437, + "restaurant_id": 1806, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 437, + "restaurant_id": 1560 + }, + { + "user_id": 437, + "restaurant_id": 185 + }, + { + "user_id": 437, + "restaurant_id": 119 + }, + { + "user_id": 437, + "restaurant_id": 91 + }, + { + "user_id": 437, + "restaurant_id": 879 + }, + { + "user_id": 437, + "restaurant_id": 1072 + } + ], + "updated_at": "2025-03-30T11:32:20.580000" + }, + { + "user_info": { + "user_id": 438, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 438, + "min_price": 139215, + "max_price": 322382, + "preferred_categories": [ + 7, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff99e2" + }, + "reservations": [ + { + "user_id": 438, + "restaurant_id": 2240, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 438, + "restaurant_id": 1501, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 438, + "restaurant_id": 1871 + }, + { + "user_id": 438, + "restaurant_id": 2074 + }, + { + "user_id": 438, + "restaurant_id": 752 + }, + { + "user_id": 438, + "restaurant_id": 1466 + }, + { + "user_id": 438, + "restaurant_id": 106 + }, + { + "user_id": 438, + "restaurant_id": 2005 + } + ], + "updated_at": "2025-03-30T11:32:20.582000" + }, + { + "user_info": { + "user_id": 439, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 439, + "min_price": 24595, + "max_price": 495656, + "preferred_categories": [ + 5, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff99e3" + }, + "reservations": [ + { + "user_id": 439, + "restaurant_id": 614, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 439, + "restaurant_id": 583, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 439, + "restaurant_id": 1200, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 439, + "restaurant_id": 799 + }, + { + "user_id": 439, + "restaurant_id": 1569 + }, + { + "user_id": 439, + "restaurant_id": 1188 + }, + { + "user_id": 439, + "restaurant_id": 277 + } + ], + "updated_at": "2025-03-30T11:32:20.585000" + }, + { + "user_info": { + "user_id": 440, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 440, + "min_price": 156629, + "max_price": 487736, + "preferred_categories": [ + 4, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff99e4" + }, + "reservations": [ + { + "user_id": 440, + "restaurant_id": 192, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 440, + "restaurant_id": 1159, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 440, + "restaurant_id": 433, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 440, + "restaurant_id": 2065 + }, + { + "user_id": 440, + "restaurant_id": 559 + }, + { + "user_id": 440, + "restaurant_id": 1896 + } + ], + "updated_at": "2025-03-30T11:32:20.588000" + }, + { + "user_info": { + "user_id": 441, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 441, + "min_price": 162775, + "max_price": 348167, + "preferred_categories": [ + 2, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff99e5" + }, + "reservations": [ + { + "user_id": 441, + "restaurant_id": 486, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 441, + "restaurant_id": 1421, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 441, + "restaurant_id": 1060, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 441, + "restaurant_id": 481, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 441, + "restaurant_id": 1864 + } + ], + "updated_at": "2025-03-30T11:32:20.596000" + }, + { + "user_info": { + "user_id": 442, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 442, + "min_price": 160420, + "max_price": 413534, + "preferred_categories": [ + 2, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff99e6" + }, + "reservations": [ + { + "user_id": 442, + "restaurant_id": 235, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 442, + "restaurant_id": 1569, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 442, + "restaurant_id": 989 + }, + { + "user_id": 442, + "restaurant_id": 991 + } + ], + "updated_at": "2025-03-30T11:32:20.600000" + }, + { + "user_info": { + "user_id": 443, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 443, + "min_price": 155651, + "max_price": 292531, + "preferred_categories": [ + 1, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff99e7" + }, + "reservations": [ + { + "user_id": 443, + "restaurant_id": 99, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 443, + "restaurant_id": 1052, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 443, + "restaurant_id": 1822 + }, + { + "user_id": 443, + "restaurant_id": 172 + } + ], + "updated_at": "2025-03-30T11:32:20.604000" + }, + { + "user_info": { + "user_id": 444, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 444, + "min_price": 64763, + "max_price": 405225, + "preferred_categories": [ + 5, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff99e8" + }, + "reservations": [ + { + "user_id": 444, + "restaurant_id": 262, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 444, + "restaurant_id": 2148, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 444, + "restaurant_id": 618 + }, + { + "user_id": 444, + "restaurant_id": 1536 + }, + { + "user_id": 444, + "restaurant_id": 384 + }, + { + "user_id": 444, + "restaurant_id": 1127 + }, + { + "user_id": 444, + "restaurant_id": 89 + } + ], + "updated_at": "2025-03-30T11:32:20.609000" + }, + { + "user_info": { + "user_id": 445, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 445, + "min_price": 172721, + "max_price": 388734, + "preferred_categories": [ + 1, + 3, + 9 + ], + "_id": "67e92bc2785211cbd5ff99e9" + }, + "reservations": [ + { + "user_id": 445, + "restaurant_id": 2013, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 445, + "restaurant_id": 1774, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 445, + "restaurant_id": 2205, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 445, + "restaurant_id": 117, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 445, + "restaurant_id": 372 + }, + { + "user_id": 445, + "restaurant_id": 881 + }, + { + "user_id": 445, + "restaurant_id": 1433 + }, + { + "user_id": 445, + "restaurant_id": 1551 + }, + { + "user_id": 445, + "restaurant_id": 1976 + } + ], + "updated_at": "2025-03-30T11:32:20.613000" + }, + { + "user_info": { + "user_id": 446, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 446, + "min_price": 69617, + "max_price": 200028, + "preferred_categories": [ + 4, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff99ea" + }, + "reservations": [ + { + "user_id": 446, + "restaurant_id": 1877, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 446, + "restaurant_id": 2000, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 446, + "restaurant_id": 519, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 446, + "restaurant_id": 433, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 446, + "restaurant_id": 1002 + }, + { + "user_id": 446, + "restaurant_id": 788 + } + ], + "updated_at": "2025-03-30T11:32:20.617000" + }, + { + "user_info": { + "user_id": 447, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 447, + "min_price": 150465, + "max_price": 368086, + "preferred_categories": [ + 3, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff99eb" + }, + "reservations": [ + { + "user_id": 447, + "restaurant_id": 217, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 447, + "restaurant_id": 1346, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 447, + "restaurant_id": 2099, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 447, + "restaurant_id": 423, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 447, + "restaurant_id": 1867 + }, + { + "user_id": 447, + "restaurant_id": 1439 + }, + { + "user_id": 447, + "restaurant_id": 1954 + }, + { + "user_id": 447, + "restaurant_id": 557 + }, + { + "user_id": 447, + "restaurant_id": 2060 + } + ], + "updated_at": "2025-03-30T11:32:20.621000" + }, + { + "user_info": { + "user_id": 448, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 448, + "min_price": 88914, + "max_price": 453598, + "preferred_categories": [ + 5, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff99ec" + }, + "reservations": [ + { + "user_id": 448, + "restaurant_id": 2118, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 448, + "restaurant_id": 617, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 448, + "restaurant_id": 1445, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 448, + "restaurant_id": 1652, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 448, + "restaurant_id": 669 + }, + { + "user_id": 448, + "restaurant_id": 2156 + }, + { + "user_id": 448, + "restaurant_id": 1161 + } + ], + "updated_at": "2025-03-30T11:32:20.625000" + }, + { + "user_info": { + "user_id": 449, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 449, + "min_price": 13516, + "max_price": 490092, + "preferred_categories": [ + 3, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff99ed" + }, + "reservations": [ + { + "user_id": 449, + "restaurant_id": 1353, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 449, + "restaurant_id": 2098, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 449, + "restaurant_id": 717, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 449, + "restaurant_id": 906 + } + ], + "updated_at": "2025-03-30T11:32:20.628000" + }, + { + "user_info": { + "user_id": 450, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 450, + "min_price": 195083, + "max_price": 260490, + "preferred_categories": [ + 4, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff99ee" + }, + "reservations": [ + { + "user_id": 450, + "restaurant_id": 1287, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 450, + "restaurant_id": 532, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 450, + "restaurant_id": 689, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 450, + "restaurant_id": 1222 + }, + { + "user_id": 450, + "restaurant_id": 101 + }, + { + "user_id": 450, + "restaurant_id": 1664 + } + ], + "updated_at": "2025-03-30T11:32:20.631000" + }, + { + "user_info": { + "user_id": 451, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 451, + "min_price": 27274, + "max_price": 455598, + "preferred_categories": [ + 1, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff99ef" + }, + "reservations": [ + { + "user_id": 451, + "restaurant_id": 1087, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 451, + "restaurant_id": 35, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 451, + "restaurant_id": 540, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 451, + "restaurant_id": 1753, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 451, + "restaurant_id": 120, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 451, + "restaurant_id": 880 + }, + { + "user_id": 451, + "restaurant_id": 1214 + } + ], + "updated_at": "2025-03-30T11:32:20.634000" + }, + { + "user_info": { + "user_id": 452, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 452, + "min_price": 161982, + "max_price": 494976, + "preferred_categories": [ + 4, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff99f0" + }, + "reservations": [ + { + "user_id": 452, + "restaurant_id": 1159, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 452, + "restaurant_id": 1235, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 452, + "restaurant_id": 1064 + }, + { + "user_id": 452, + "restaurant_id": 794 + }, + { + "user_id": 452, + "restaurant_id": 37 + }, + { + "user_id": 452, + "restaurant_id": 926 + } + ], + "updated_at": "2025-03-30T11:32:20.638000" + }, + { + "user_info": { + "user_id": 453, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 453, + "min_price": 28764, + "max_price": 396066, + "preferred_categories": [ + 2, + 3, + 11 + ], + "_id": "67e92bc2785211cbd5ff99f1" + }, + "reservations": [ + { + "user_id": 453, + "restaurant_id": 754, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 453, + "restaurant_id": 1660, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 453, + "restaurant_id": 2167, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 453, + "restaurant_id": 965, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 453, + "restaurant_id": 317 + }, + { + "user_id": 453, + "restaurant_id": 2060 + }, + { + "user_id": 453, + "restaurant_id": 1440 + }, + { + "user_id": 453, + "restaurant_id": 2173 + } + ], + "updated_at": "2025-03-30T11:32:20.644000" + }, + { + "user_info": { + "user_id": 454, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 454, + "min_price": 88243, + "max_price": 455579, + "preferred_categories": [ + 2, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff99f2" + }, + "reservations": [], + "likes": [ + { + "user_id": 454, + "restaurant_id": 2128 + }, + { + "user_id": 454, + "restaurant_id": 921 + }, + { + "user_id": 454, + "restaurant_id": 2057 + }, + { + "user_id": 454, + "restaurant_id": 1711 + } + ], + "updated_at": "2025-03-30T11:32:20.647000" + }, + { + "user_info": { + "user_id": 455, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 455, + "min_price": 70502, + "max_price": 409085, + "preferred_categories": [ + 5, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff99f3" + }, + "reservations": [ + { + "user_id": 455, + "restaurant_id": 1988, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 455, + "restaurant_id": 1529, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 455, + "restaurant_id": 1362 + }, + { + "user_id": 455, + "restaurant_id": 1402 + }, + { + "user_id": 455, + "restaurant_id": 1001 + }, + { + "user_id": 455, + "restaurant_id": 583 + } + ], + "updated_at": "2025-03-30T11:32:20.650000" + }, + { + "user_info": { + "user_id": 456, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 456, + "min_price": 72053, + "max_price": 371029, + "preferred_categories": [ + 4, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff99f4" + }, + "reservations": [ + { + "user_id": 456, + "restaurant_id": 2247, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 456, + "restaurant_id": 2243, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 456, + "restaurant_id": 462 + } + ], + "updated_at": "2025-03-30T11:32:20.652000" + }, + { + "user_info": { + "user_id": 457, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 457, + "min_price": 196249, + "max_price": 295670, + "preferred_categories": [ + 1, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff99f5" + }, + "reservations": [ + { + "user_id": 457, + "restaurant_id": 1160, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 457, + "restaurant_id": 279, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 457, + "restaurant_id": 1667, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 457, + "restaurant_id": 1719, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 457, + "restaurant_id": 562, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 457, + "restaurant_id": 1567 + } + ], + "updated_at": "2025-03-30T11:32:20.656000" + }, + { + "user_info": { + "user_id": 458, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 458, + "min_price": 150430, + "max_price": 361928, + "preferred_categories": [ + 1, + 5, + 12 + ], + "_id": "67e92bc2785211cbd5ff99f6" + }, + "reservations": [ + { + "user_id": 458, + "restaurant_id": 1883, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 458, + "restaurant_id": 1399 + }, + { + "user_id": 458, + "restaurant_id": 1196 + }, + { + "user_id": 458, + "restaurant_id": 818 + } + ], + "updated_at": "2025-03-30T11:32:20.661000" + }, + { + "user_info": { + "user_id": 459, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 459, + "min_price": 173729, + "max_price": 451024, + "preferred_categories": [ + 1, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff99f7" + }, + "reservations": [ + { + "user_id": 459, + "restaurant_id": 1907, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 459, + "restaurant_id": 219, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 459, + "restaurant_id": 1962 + } + ], + "updated_at": "2025-03-30T11:32:20.665000" + }, + { + "user_info": { + "user_id": 460, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 460, + "min_price": 98179, + "max_price": 490748, + "preferred_categories": [ + 6, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff99f8" + }, + "reservations": [ + { + "user_id": 460, + "restaurant_id": 1786, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 460, + "restaurant_id": 1832, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 460, + "restaurant_id": 73, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 460, + "restaurant_id": 1274 + }, + { + "user_id": 460, + "restaurant_id": 170 + } + ], + "updated_at": "2025-03-30T11:32:20.668000" + }, + { + "user_info": { + "user_id": 461, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 461, + "min_price": 30336, + "max_price": 491945, + "preferred_categories": [ + 6, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff99f9" + }, + "reservations": [ + { + "user_id": 461, + "restaurant_id": 1170, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 461, + "restaurant_id": 1619, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 461, + "restaurant_id": 1471, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 461, + "restaurant_id": 2032 + }, + { + "user_id": 461, + "restaurant_id": 137 + }, + { + "user_id": 461, + "restaurant_id": 1766 + }, + { + "user_id": 461, + "restaurant_id": 227 + } + ], + "updated_at": "2025-03-30T11:32:20.675000" + }, + { + "user_info": { + "user_id": 462, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 462, + "min_price": 70420, + "max_price": 241640, + "preferred_categories": [ + 2, + 5, + 12 + ], + "_id": "67e92bc2785211cbd5ff99fa" + }, + "reservations": [ + { + "user_id": 462, + "restaurant_id": 1660, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 462, + "restaurant_id": 1442 + }, + { + "user_id": 462, + "restaurant_id": 532 + }, + { + "user_id": 462, + "restaurant_id": 1019 + }, + { + "user_id": 462, + "restaurant_id": 718 + } + ], + "updated_at": "2025-03-30T11:32:20.685000" + }, + { + "user_info": { + "user_id": 463, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 463, + "min_price": 35627, + "max_price": 223055, + "preferred_categories": [ + 3, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff99fb" + }, + "reservations": [ + { + "user_id": 463, + "restaurant_id": 184, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 463, + "restaurant_id": 2189 + }, + { + "user_id": 463, + "restaurant_id": 239 + } + ], + "updated_at": "2025-03-30T11:32:20.692000" + }, + { + "user_info": { + "user_id": 464, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 464, + "min_price": 172942, + "max_price": 467233, + "preferred_categories": [ + 6, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff99fc" + }, + "reservations": [ + { + "user_id": 464, + "restaurant_id": 712, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 464, + "restaurant_id": 1585, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 464, + "restaurant_id": 1518 + }, + { + "user_id": 464, + "restaurant_id": 543 + } + ], + "updated_at": "2025-03-30T11:32:20.700000" + }, + { + "user_info": { + "user_id": 465, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 465, + "min_price": 90757, + "max_price": 209404, + "preferred_categories": [ + 6, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff99fd" + }, + "reservations": [ + { + "user_id": 465, + "restaurant_id": 780, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 465, + "restaurant_id": 1338 + }, + { + "user_id": 465, + "restaurant_id": 918 + }, + { + "user_id": 465, + "restaurant_id": 212 + } + ], + "updated_at": "2025-03-30T11:32:20.705000" + }, + { + "user_info": { + "user_id": 466, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 466, + "min_price": 63309, + "max_price": 235052, + "preferred_categories": [ + 4, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff99fe" + }, + "reservations": [ + { + "user_id": 466, + "restaurant_id": 926, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 466, + "restaurant_id": 941, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 466, + "restaurant_id": 1342, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 466, + "restaurant_id": 1415, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 466, + "restaurant_id": 717 + }, + { + "user_id": 466, + "restaurant_id": 1017 + }, + { + "user_id": 466, + "restaurant_id": 808 + }, + { + "user_id": 466, + "restaurant_id": 552 + }, + { + "user_id": 466, + "restaurant_id": 488 + } + ], + "updated_at": "2025-03-30T11:32:20.724000" + }, + { + "user_info": { + "user_id": 467, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 467, + "min_price": 122542, + "max_price": 352043, + "preferred_categories": [ + 6, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff99ff" + }, + "reservations": [], + "likes": [ + { + "user_id": 467, + "restaurant_id": 328 + } + ], + "updated_at": "2025-03-30T11:32:20.735000" + }, + { + "user_info": { + "user_id": 468, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 468, + "min_price": 71188, + "max_price": 464655, + "preferred_categories": [ + 3, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a00" + }, + "reservations": [], + "likes": [ + { + "user_id": 468, + "restaurant_id": 1469 + }, + { + "user_id": 468, + "restaurant_id": 837 + } + ], + "updated_at": "2025-03-30T11:32:20.743000" + }, + { + "user_info": { + "user_id": 469, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 469, + "min_price": 99119, + "max_price": 452949, + "preferred_categories": [ + 4, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a01" + }, + "reservations": [ + { + "user_id": 469, + "restaurant_id": 2134, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 469, + "restaurant_id": 433, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 469, + "restaurant_id": 447, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 469, + "restaurant_id": 870 + }, + { + "user_id": 469, + "restaurant_id": 1464 + }, + { + "user_id": 469, + "restaurant_id": 62 + } + ], + "updated_at": "2025-03-30T11:32:20.747000" + }, + { + "user_info": { + "user_id": 470, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 470, + "min_price": 83280, + "max_price": 426276, + "preferred_categories": [ + 2, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a02" + }, + "reservations": [ + { + "user_id": 470, + "restaurant_id": 976, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 470, + "restaurant_id": 823, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 470, + "restaurant_id": 1228 + }, + { + "user_id": 470, + "restaurant_id": 465 + }, + { + "user_id": 470, + "restaurant_id": 324 + }, + { + "user_id": 470, + "restaurant_id": 1442 + }, + { + "user_id": 470, + "restaurant_id": 2052 + } + ], + "updated_at": "2025-03-30T11:32:20.753000" + }, + { + "user_info": { + "user_id": 471, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 471, + "min_price": 72177, + "max_price": 216417, + "preferred_categories": [ + 1, + 3, + 5 + ], + "_id": "67e92bc2785211cbd5ff9a03" + }, + "reservations": [ + { + "user_id": 471, + "restaurant_id": 1629, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 471, + "restaurant_id": 1965, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 471, + "restaurant_id": 2038, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 471, + "restaurant_id": 79, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 471, + "restaurant_id": 638 + }, + { + "user_id": 471, + "restaurant_id": 1882 + }, + { + "user_id": 471, + "restaurant_id": 1546 + } + ], + "updated_at": "2025-03-30T11:32:20.756000" + }, + { + "user_info": { + "user_id": 472, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 472, + "min_price": 71538, + "max_price": 475969, + "preferred_categories": [ + 2, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a04" + }, + "reservations": [ + { + "user_id": 472, + "restaurant_id": 1961, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 472, + "restaurant_id": 216, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 472, + "restaurant_id": 1320, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 472, + "restaurant_id": 1853, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 472, + "restaurant_id": 1837 + }, + { + "user_id": 472, + "restaurant_id": 455 + }, + { + "user_id": 472, + "restaurant_id": 1072 + }, + { + "user_id": 472, + "restaurant_id": 47 + } + ], + "updated_at": "2025-03-30T11:32:20.761000" + }, + { + "user_info": { + "user_id": 473, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 473, + "min_price": 16907, + "max_price": 470315, + "preferred_categories": [ + 2, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a05" + }, + "reservations": [ + { + "user_id": 473, + "restaurant_id": 686, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 473, + "restaurant_id": 916 + }, + { + "user_id": 473, + "restaurant_id": 1044 + }, + { + "user_id": 473, + "restaurant_id": 234 + }, + { + "user_id": 473, + "restaurant_id": 1166 + } + ], + "updated_at": "2025-03-30T11:32:20.765000" + }, + { + "user_info": { + "user_id": 474, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 474, + "min_price": 110948, + "max_price": 278020, + "preferred_categories": [ + 4, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a06" + }, + "reservations": [ + { + "user_id": 474, + "restaurant_id": 705, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 474, + "restaurant_id": 855, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 474, + "restaurant_id": 1057, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 474, + "restaurant_id": 1589, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 474, + "restaurant_id": 561, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 474, + "restaurant_id": 2083, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 474, + "restaurant_id": 817, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 474, + "restaurant_id": 720 + }, + { + "user_id": 474, + "restaurant_id": 743 + }, + { + "user_id": 474, + "restaurant_id": 1737 + }, + { + "user_id": 474, + "restaurant_id": 429 + } + ], + "updated_at": "2025-03-30T11:32:20.768000" + }, + { + "user_info": { + "user_id": 475, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 475, + "min_price": 30121, + "max_price": 440036, + "preferred_categories": [ + 6, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a07" + }, + "reservations": [ + { + "user_id": 475, + "restaurant_id": 652, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 475, + "restaurant_id": 1902 + }, + { + "user_id": 475, + "restaurant_id": 1582 + } + ], + "updated_at": "2025-03-30T11:32:20.771000" + }, + { + "user_info": { + "user_id": 476, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 476, + "min_price": 30943, + "max_price": 314142, + "preferred_categories": [ + 2, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a08" + }, + "reservations": [ + { + "user_id": 476, + "restaurant_id": 2202, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.774000" + }, + { + "user_info": { + "user_id": 477, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 477, + "min_price": 20699, + "max_price": 386746, + "preferred_categories": [ + 5, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a09" + }, + "reservations": [ + { + "user_id": 477, + "restaurant_id": 597, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 477, + "restaurant_id": 142, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 477, + "restaurant_id": 257 + }, + { + "user_id": 477, + "restaurant_id": 480 + } + ], + "updated_at": "2025-03-30T11:32:20.779000" + }, + { + "user_info": { + "user_id": 478, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 478, + "min_price": 14474, + "max_price": 261137, + "preferred_categories": [ + 1, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a0a" + }, + "reservations": [ + { + "user_id": 478, + "restaurant_id": 1217, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 478, + "restaurant_id": 1232, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.782000" + }, + { + "user_info": { + "user_id": 479, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 479, + "min_price": 39433, + "max_price": 331372, + "preferred_categories": [ + 2, + 4, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a0b" + }, + "reservations": [], + "likes": [ + { + "user_id": 479, + "restaurant_id": 1592 + } + ], + "updated_at": "2025-03-30T11:32:20.785000" + }, + { + "user_info": { + "user_id": 480, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 480, + "min_price": 32680, + "max_price": 405773, + "preferred_categories": [ + 8, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a0c" + }, + "reservations": [ + { + "user_id": 480, + "restaurant_id": 693, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 480, + "restaurant_id": 1667, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 480, + "restaurant_id": 1257 + }, + { + "user_id": 480, + "restaurant_id": 711 + } + ], + "updated_at": "2025-03-30T11:32:20.788000" + }, + { + "user_info": { + "user_id": 481, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 481, + "min_price": 132313, + "max_price": 429580, + "preferred_categories": [ + 2, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a0d" + }, + "reservations": [ + { + "user_id": 481, + "restaurant_id": 2130, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 481, + "restaurant_id": 522 + } + ], + "updated_at": "2025-03-30T11:32:20.794000" + }, + { + "user_info": { + "user_id": 482, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 482, + "min_price": 157741, + "max_price": 356059, + "preferred_categories": [ + 5, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a0e" + }, + "reservations": [], + "likes": [ + { + "user_id": 482, + "restaurant_id": 680 + }, + { + "user_id": 482, + "restaurant_id": 756 + } + ], + "updated_at": "2025-03-30T11:32:20.796000" + }, + { + "user_info": { + "user_id": 483, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 483, + "min_price": 55449, + "max_price": 271684, + "preferred_categories": [ + 5, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a0f" + }, + "reservations": [ + { + "user_id": 483, + "restaurant_id": 1212, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 483, + "restaurant_id": 1340, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 483, + "restaurant_id": 1780, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 483, + "restaurant_id": 1596, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 483, + "restaurant_id": 565, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 483, + "restaurant_id": 786 + }, + { + "user_id": 483, + "restaurant_id": 866 + }, + { + "user_id": 483, + "restaurant_id": 1996 + }, + { + "user_id": 483, + "restaurant_id": 1227 + }, + { + "user_id": 483, + "restaurant_id": 809 + }, + { + "user_id": 483, + "restaurant_id": 430 + }, + { + "user_id": 483, + "restaurant_id": 1412 + }, + { + "user_id": 483, + "restaurant_id": 1623 + } + ], + "updated_at": "2025-03-30T11:32:20.800000" + }, + { + "user_info": { + "user_id": 484, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 484, + "min_price": 95631, + "max_price": 347716, + "preferred_categories": [ + 5, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a10" + }, + "reservations": [ + { + "user_id": 484, + "restaurant_id": 487, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 484, + "restaurant_id": 441 + }, + { + "user_id": 484, + "restaurant_id": 1329 + }, + { + "user_id": 484, + "restaurant_id": 1480 + } + ], + "updated_at": "2025-03-30T11:32:20.808000" + }, + { + "user_info": { + "user_id": 485, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 485, + "min_price": 62933, + "max_price": 411171, + "preferred_categories": [ + 4, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a11" + }, + "reservations": [], + "likes": [ + { + "user_id": 485, + "restaurant_id": 568 + }, + { + "user_id": 485, + "restaurant_id": 1910 + }, + { + "user_id": 485, + "restaurant_id": 1380 + }, + { + "user_id": 485, + "restaurant_id": 512 + } + ], + "updated_at": "2025-03-30T11:32:20.812000" + }, + { + "user_info": { + "user_id": 486, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 486, + "min_price": 75683, + "max_price": 428977, + "preferred_categories": [ + 5, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a12" + }, + "reservations": [ + { + "user_id": 486, + "restaurant_id": 1353, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 486, + "restaurant_id": 181, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 486, + "restaurant_id": 2136 + }, + { + "user_id": 486, + "restaurant_id": 468 + }, + { + "user_id": 486, + "restaurant_id": 636 + }, + { + "user_id": 486, + "restaurant_id": 123 + }, + { + "user_id": 486, + "restaurant_id": 1978 + }, + { + "user_id": 486, + "restaurant_id": 543 + }, + { + "user_id": 486, + "restaurant_id": 1232 + } + ], + "updated_at": "2025-03-30T11:32:20.819000" + }, + { + "user_info": { + "user_id": 487, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 487, + "min_price": 187686, + "max_price": 466398, + "preferred_categories": [ + 3, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a13" + }, + "reservations": [ + { + "user_id": 487, + "restaurant_id": 1569, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 487, + "restaurant_id": 177, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 487, + "restaurant_id": 1434, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 487, + "restaurant_id": 1654, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 487, + "restaurant_id": 439 + }, + { + "user_id": 487, + "restaurant_id": 335 + }, + { + "user_id": 487, + "restaurant_id": 54 + } + ], + "updated_at": "2025-03-30T11:32:20.823000" + }, + { + "user_info": { + "user_id": 488, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 488, + "min_price": 33315, + "max_price": 270081, + "preferred_categories": [ + 9, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a14" + }, + "reservations": [ + { + "user_id": 488, + "restaurant_id": 2248, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 488, + "restaurant_id": 172, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 488, + "restaurant_id": 2255, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 488, + "restaurant_id": 557, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 488, + "restaurant_id": 1337, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 488, + "restaurant_id": 2247 + }, + { + "user_id": 488, + "restaurant_id": 1841 + }, + { + "user_id": 488, + "restaurant_id": 2067 + } + ], + "updated_at": "2025-03-30T11:32:20.827000" + }, + { + "user_info": { + "user_id": 489, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 489, + "min_price": 51880, + "max_price": 485029, + "preferred_categories": [ + 1, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a15" + }, + "reservations": [ + { + "user_id": 489, + "restaurant_id": 574, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 489, + "restaurant_id": 951, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 489, + "restaurant_id": 42, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 489, + "restaurant_id": 2201, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 489, + "restaurant_id": 2146 + }, + { + "user_id": 489, + "restaurant_id": 256 + }, + { + "user_id": 489, + "restaurant_id": 2161 + } + ], + "updated_at": "2025-03-30T11:32:20.830000" + }, + { + "user_info": { + "user_id": 490, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 490, + "min_price": 108198, + "max_price": 261276, + "preferred_categories": [ + 1, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a16" + }, + "reservations": [ + { + "user_id": 490, + "restaurant_id": 676, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 490, + "restaurant_id": 1371 + }, + { + "user_id": 490, + "restaurant_id": 1624 + }, + { + "user_id": 490, + "restaurant_id": 376 + }, + { + "user_id": 490, + "restaurant_id": 483 + }, + { + "user_id": 490, + "restaurant_id": 623 + } + ], + "updated_at": "2025-03-30T11:32:20.833000" + }, + { + "user_info": { + "user_id": 491, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 491, + "min_price": 92566, + "max_price": 407979, + "preferred_categories": [ + 1, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a17" + }, + "reservations": [ + { + "user_id": 491, + "restaurant_id": 1576, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 491, + "restaurant_id": 509, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 491, + "restaurant_id": 607, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 491, + "restaurant_id": 1497, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 491, + "restaurant_id": 2145 + }, + { + "user_id": 491, + "restaurant_id": 438 + } + ], + "updated_at": "2025-03-30T11:32:20.836000" + }, + { + "user_info": { + "user_id": 492, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 492, + "min_price": 173882, + "max_price": 243348, + "preferred_categories": [ + 4, + 6, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a18" + }, + "reservations": [ + { + "user_id": 492, + "restaurant_id": 160, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 492, + "restaurant_id": 2119, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 492, + "restaurant_id": 2093, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 492, + "restaurant_id": 97 + }, + { + "user_id": 492, + "restaurant_id": 1232 + }, + { + "user_id": 492, + "restaurant_id": 917 + } + ], + "updated_at": "2025-03-30T11:32:20.839000" + }, + { + "user_info": { + "user_id": 493, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 493, + "min_price": 174035, + "max_price": 411586, + "preferred_categories": [ + 5, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a19" + }, + "reservations": [ + { + "user_id": 493, + "restaurant_id": 952, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 493, + "restaurant_id": 2249, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 493, + "restaurant_id": 326, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 493, + "restaurant_id": 514 + }, + { + "user_id": 493, + "restaurant_id": 115 + }, + { + "user_id": 493, + "restaurant_id": 1239 + }, + { + "user_id": 493, + "restaurant_id": 1667 + } + ], + "updated_at": "2025-03-30T11:32:20.843000" + }, + { + "user_info": { + "user_id": 494, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 494, + "min_price": 144010, + "max_price": 297625, + "preferred_categories": [ + 1, + 4, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a1a" + }, + "reservations": [ + { + "user_id": 494, + "restaurant_id": 516, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 494, + "restaurant_id": 2210, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 494, + "restaurant_id": 2144, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 494, + "restaurant_id": 1052, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 494, + "restaurant_id": 470 + }, + { + "user_id": 494, + "restaurant_id": 1509 + }, + { + "user_id": 494, + "restaurant_id": 435 + } + ], + "updated_at": "2025-03-30T11:32:20.847000" + }, + { + "user_info": { + "user_id": 495, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 495, + "min_price": 92174, + "max_price": 402601, + "preferred_categories": [ + 7, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a1b" + }, + "reservations": [ + { + "user_id": 495, + "restaurant_id": 1328, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.852000" + }, + { + "user_info": { + "user_id": 496, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 496, + "min_price": 69504, + "max_price": 266498, + "preferred_categories": [ + 4, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a1c" + }, + "reservations": [ + { + "user_id": 496, + "restaurant_id": 1743, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 496, + "restaurant_id": 902, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 496, + "restaurant_id": 1845, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 496, + "restaurant_id": 1897, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 496, + "restaurant_id": 2137 + }, + { + "user_id": 496, + "restaurant_id": 18 + } + ], + "updated_at": "2025-03-30T11:32:20.856000" + }, + { + "user_info": { + "user_id": 497, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 497, + "min_price": 41341, + "max_price": 303917, + "preferred_categories": [ + 5, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a1d" + }, + "reservations": [ + { + "user_id": 497, + "restaurant_id": 588, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 497, + "restaurant_id": 690, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 497, + "restaurant_id": 730 + } + ], + "updated_at": "2025-03-30T11:32:20.860000" + }, + { + "user_info": { + "user_id": 498, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 498, + "min_price": 26146, + "max_price": 205307, + "preferred_categories": [ + 1, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a1e" + }, + "reservations": [ + { + "user_id": 498, + "restaurant_id": 1277, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 498, + "restaurant_id": 1254, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 498, + "restaurant_id": 2139, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 498, + "restaurant_id": 1483 + }, + { + "user_id": 498, + "restaurant_id": 919 + }, + { + "user_id": 498, + "restaurant_id": 529 + } + ], + "updated_at": "2025-03-30T11:32:20.866000" + }, + { + "user_info": { + "user_id": 499, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 499, + "min_price": 124691, + "max_price": 471466, + "preferred_categories": [ + 1, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a1f" + }, + "reservations": [ + { + "user_id": 499, + "restaurant_id": 1267, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 499, + "restaurant_id": 68, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 499, + "restaurant_id": 1916, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 499, + "restaurant_id": 287, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 499, + "restaurant_id": 724, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 499, + "restaurant_id": 2198 + }, + { + "user_id": 499, + "restaurant_id": 906 + }, + { + "user_id": 499, + "restaurant_id": 1208 + } + ], + "updated_at": "2025-03-30T11:32:20.869000" + }, + { + "user_info": { + "user_id": 500, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 500, + "min_price": 196676, + "max_price": 363805, + "preferred_categories": [ + 2, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a20" + }, + "reservations": [ + { + "user_id": 500, + "restaurant_id": 36, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 500, + "restaurant_id": 1332, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 500, + "restaurant_id": 2155 + }, + { + "user_id": 500, + "restaurant_id": 1513 + } + ], + "updated_at": "2025-03-30T11:32:20.873000" + }, + { + "user_info": { + "user_id": 501, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 501, + "min_price": 62536, + "max_price": 328308, + "preferred_categories": [ + 3, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a21" + }, + "reservations": [], + "likes": [ + { + "user_id": 501, + "restaurant_id": 334 + } + ], + "updated_at": "2025-03-30T11:32:20.875000" + }, + { + "user_info": { + "user_id": 502, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 502, + "min_price": 85770, + "max_price": 267523, + "preferred_categories": [ + 3, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a22" + }, + "reservations": [ + { + "user_id": 502, + "restaurant_id": 459, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 502, + "restaurant_id": 805, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 502, + "restaurant_id": 678, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 502, + "restaurant_id": 2123, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 502, + "restaurant_id": 1079 + }, + { + "user_id": 502, + "restaurant_id": 707 + } + ], + "updated_at": "2025-03-30T11:32:20.883000" + }, + { + "user_info": { + "user_id": 503, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 503, + "min_price": 84112, + "max_price": 332979, + "preferred_categories": [ + 1, + 3, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a23" + }, + "reservations": [ + { + "user_id": 503, + "restaurant_id": 851, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:20.888000" + }, + { + "user_info": { + "user_id": 504, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 504, + "min_price": 180538, + "max_price": 309464, + "preferred_categories": [ + 5, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a24" + }, + "reservations": [ + { + "user_id": 504, + "restaurant_id": 676, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 504, + "restaurant_id": 1700 + }, + { + "user_id": 504, + "restaurant_id": 440 + }, + { + "user_id": 504, + "restaurant_id": 2105 + }, + { + "user_id": 504, + "restaurant_id": 1159 + } + ], + "updated_at": "2025-03-30T11:32:20.893000" + }, + { + "user_info": { + "user_id": 505, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 505, + "min_price": 185347, + "max_price": 488292, + "preferred_categories": [ + 1, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a25" + }, + "reservations": [ + { + "user_id": 505, + "restaurant_id": 1437, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 505, + "restaurant_id": 72 + }, + { + "user_id": 505, + "restaurant_id": 213 + } + ], + "updated_at": "2025-03-30T11:32:20.896000" + }, + { + "user_info": { + "user_id": 506, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 506, + "min_price": 165007, + "max_price": 361471, + "preferred_categories": [ + 7, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a26" + }, + "reservations": [ + { + "user_id": 506, + "restaurant_id": 1490, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 506, + "restaurant_id": 583, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 506, + "restaurant_id": 1704, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 506, + "restaurant_id": 228 + }, + { + "user_id": 506, + "restaurant_id": 1017 + } + ], + "updated_at": "2025-03-30T11:32:20.901000" + }, + { + "user_info": { + "user_id": 507, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 507, + "min_price": 105248, + "max_price": 208687, + "preferred_categories": [ + 3, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a27" + }, + "reservations": [ + { + "user_id": 507, + "restaurant_id": 1852, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 507, + "restaurant_id": 1238, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 507, + "restaurant_id": 1379, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 507, + "restaurant_id": 339, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 507, + "restaurant_id": 1648 + }, + { + "user_id": 507, + "restaurant_id": 574 + } + ], + "updated_at": "2025-03-30T11:32:20.909000" + }, + { + "user_info": { + "user_id": 508, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 508, + "min_price": 161404, + "max_price": 232684, + "preferred_categories": [ + 2, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a28" + }, + "reservations": [ + { + "user_id": 508, + "restaurant_id": 1245, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 508, + "restaurant_id": 1152 + }, + { + "user_id": 508, + "restaurant_id": 1963 + }, + { + "user_id": 508, + "restaurant_id": 1994 + } + ], + "updated_at": "2025-03-30T11:32:20.914000" + }, + { + "user_info": { + "user_id": 509, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 509, + "min_price": 16172, + "max_price": 442554, + "preferred_categories": [ + 5, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a29" + }, + "reservations": [ + { + "user_id": 509, + "restaurant_id": 1263, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 509, + "restaurant_id": 85, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 509, + "restaurant_id": 39 + }, + { + "user_id": 509, + "restaurant_id": 591 + }, + { + "user_id": 509, + "restaurant_id": 2139 + }, + { + "user_id": 509, + "restaurant_id": 442 + }, + { + "user_id": 509, + "restaurant_id": 785 + }, + { + "user_id": 509, + "restaurant_id": 237 + } + ], + "updated_at": "2025-03-30T11:32:20.917000" + }, + { + "user_info": { + "user_id": 510, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 510, + "min_price": 170199, + "max_price": 204657, + "preferred_categories": [ + 3, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a2a" + }, + "reservations": [ + { + "user_id": 510, + "restaurant_id": 1526, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 510, + "restaurant_id": 1003 + }, + { + "user_id": 510, + "restaurant_id": 1901 + } + ], + "updated_at": "2025-03-30T11:32:20.921000" + }, + { + "user_info": { + "user_id": 511, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 511, + "min_price": 70377, + "max_price": 239389, + "preferred_categories": [ + 3, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a2b" + }, + "reservations": [ + { + "user_id": 511, + "restaurant_id": 2200, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 511, + "restaurant_id": 1754, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 511, + "restaurant_id": 1154, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 511, + "restaurant_id": 1899, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 511, + "restaurant_id": 1552, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 511, + "restaurant_id": 1306 + }, + { + "user_id": 511, + "restaurant_id": 589 + }, + { + "user_id": 511, + "restaurant_id": 1675 + } + ], + "updated_at": "2025-03-30T11:32:20.924000" + }, + { + "user_info": { + "user_id": 512, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 512, + "min_price": 101701, + "max_price": 218008, + "preferred_categories": [ + 1, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a2c" + }, + "reservations": [ + { + "user_id": 512, + "restaurant_id": 397, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 512, + "restaurant_id": 1272, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 512, + "restaurant_id": 2214 + }, + { + "user_id": 512, + "restaurant_id": 2104 + }, + { + "user_id": 512, + "restaurant_id": 1046 + }, + { + "user_id": 512, + "restaurant_id": 972 + }, + { + "user_id": 512, + "restaurant_id": 377 + } + ], + "updated_at": "2025-03-30T11:32:20.927000" + }, + { + "user_info": { + "user_id": 513, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 513, + "min_price": 194651, + "max_price": 383759, + "preferred_categories": [ + 3, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a2d" + }, + "reservations": [ + { + "user_id": 513, + "restaurant_id": 2169, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 513, + "restaurant_id": 792 + }, + { + "user_id": 513, + "restaurant_id": 40 + }, + { + "user_id": 513, + "restaurant_id": 271 + } + ], + "updated_at": "2025-03-30T11:32:20.931000" + }, + { + "user_info": { + "user_id": 514, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 514, + "min_price": 61447, + "max_price": 306213, + "preferred_categories": [ + 4, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a2e" + }, + "reservations": [ + { + "user_id": 514, + "restaurant_id": 762, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 514, + "restaurant_id": 490, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 514, + "restaurant_id": 557 + } + ], + "updated_at": "2025-03-30T11:32:20.935000" + }, + { + "user_info": { + "user_id": 515, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 515, + "min_price": 48279, + "max_price": 312123, + "preferred_categories": [ + 3, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a2f" + }, + "reservations": [ + { + "user_id": 515, + "restaurant_id": 900, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 515, + "restaurant_id": 722 + }, + { + "user_id": 515, + "restaurant_id": 2188 + } + ], + "updated_at": "2025-03-30T11:32:20.937000" + }, + { + "user_info": { + "user_id": 516, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 516, + "min_price": 116248, + "max_price": 361275, + "preferred_categories": [ + 4, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a30" + }, + "reservations": [], + "likes": [ + { + "user_id": 516, + "restaurant_id": 1854 + }, + { + "user_id": 516, + "restaurant_id": 1353 + }, + { + "user_id": 516, + "restaurant_id": 1503 + } + ], + "updated_at": "2025-03-30T11:32:20.945000" + }, + { + "user_info": { + "user_id": 517, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 517, + "min_price": 90908, + "max_price": 388396, + "preferred_categories": [ + 2, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a31" + }, + "reservations": [ + { + "user_id": 517, + "restaurant_id": 495, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 517, + "restaurant_id": 848 + }, + { + "user_id": 517, + "restaurant_id": 1231 + }, + { + "user_id": 517, + "restaurant_id": 285 + } + ], + "updated_at": "2025-03-30T11:32:20.972000" + }, + { + "user_info": { + "user_id": 518, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 518, + "min_price": 133729, + "max_price": 288128, + "preferred_categories": [ + 5, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a32" + }, + "reservations": [ + { + "user_id": 518, + "restaurant_id": 965, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 518, + "restaurant_id": 185, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 518, + "restaurant_id": 242 + }, + { + "user_id": 518, + "restaurant_id": 1193 + } + ], + "updated_at": "2025-03-30T11:32:20.984000" + }, + { + "user_info": { + "user_id": 519, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 519, + "min_price": 76334, + "max_price": 425896, + "preferred_categories": [ + 4, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a33" + }, + "reservations": [ + { + "user_id": 519, + "restaurant_id": 1610, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 519, + "restaurant_id": 1571 + }, + { + "user_id": 519, + "restaurant_id": 1284 + }, + { + "user_id": 519, + "restaurant_id": 495 + }, + { + "user_id": 519, + "restaurant_id": 78 + }, + { + "user_id": 519, + "restaurant_id": 829 + }, + { + "user_id": 519, + "restaurant_id": 521 + } + ], + "updated_at": "2025-03-30T11:32:20.989000" + }, + { + "user_info": { + "user_id": 520, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 520, + "min_price": 49234, + "max_price": 227571, + "preferred_categories": [ + 3, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a34" + }, + "reservations": [ + { + "user_id": 520, + "restaurant_id": 1686, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 520, + "restaurant_id": 1753, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 520, + "restaurant_id": 542 + }, + { + "user_id": 520, + "restaurant_id": 624 + }, + { + "user_id": 520, + "restaurant_id": 2127 + }, + { + "user_id": 520, + "restaurant_id": 2064 + } + ], + "updated_at": "2025-03-30T11:32:20.994000" + }, + { + "user_info": { + "user_id": 521, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 521, + "min_price": 137397, + "max_price": 479020, + "preferred_categories": [ + 5, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a35" + }, + "reservations": [ + { + "user_id": 521, + "restaurant_id": 534, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 521, + "restaurant_id": 1939 + }, + { + "user_id": 521, + "restaurant_id": 1073 + } + ], + "updated_at": "2025-03-30T11:32:20.998000" + }, + { + "user_info": { + "user_id": 522, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 522, + "min_price": 43095, + "max_price": 204399, + "preferred_categories": [ + 3, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a36" + }, + "reservations": [ + { + "user_id": 522, + "restaurant_id": 125, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 522, + "restaurant_id": 1201, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 522, + "restaurant_id": 1622, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 522, + "restaurant_id": 1631, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 522, + "restaurant_id": 1601 + }, + { + "user_id": 522, + "restaurant_id": 1095 + }, + { + "user_id": 522, + "restaurant_id": 663 + }, + { + "user_id": 522, + "restaurant_id": 1498 + }, + { + "user_id": 522, + "restaurant_id": 469 + } + ], + "updated_at": "2025-03-30T11:32:21.003000" + }, + { + "user_info": { + "user_id": 523, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 523, + "min_price": 154358, + "max_price": 338325, + "preferred_categories": [ + 4, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a37" + }, + "reservations": [ + { + "user_id": 523, + "restaurant_id": 814, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 523, + "restaurant_id": 1911, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 523, + "restaurant_id": 1985, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 523, + "restaurant_id": 2253, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 523, + "restaurant_id": 1106 + }, + { + "user_id": 523, + "restaurant_id": 614 + } + ], + "updated_at": "2025-03-30T11:32:21.012000" + }, + { + "user_info": { + "user_id": 524, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 524, + "min_price": 132921, + "max_price": 336982, + "preferred_categories": [ + 3, + 4, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a38" + }, + "reservations": [ + { + "user_id": 524, + "restaurant_id": 2024, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 524, + "restaurant_id": 1676, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 524, + "restaurant_id": 1773, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 524, + "restaurant_id": 1450, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 524, + "restaurant_id": 864, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 524, + "restaurant_id": 643, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 524, + "restaurant_id": 366, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 524, + "restaurant_id": 71 + }, + { + "user_id": 524, + "restaurant_id": 1153 + }, + { + "user_id": 524, + "restaurant_id": 279 + }, + { + "user_id": 524, + "restaurant_id": 1371 + } + ], + "updated_at": "2025-03-30T11:32:21.017000" + }, + { + "user_info": { + "user_id": 525, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 525, + "min_price": 91124, + "max_price": 341459, + "preferred_categories": [ + 3, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a39" + }, + "reservations": [ + { + "user_id": 525, + "restaurant_id": 583, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 525, + "restaurant_id": 570, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 525, + "restaurant_id": 1781, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 525, + "restaurant_id": 1952, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:21.020000" + }, + { + "user_info": { + "user_id": 526, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 526, + "min_price": 63478, + "max_price": 406510, + "preferred_categories": [ + 4, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a3a" + }, + "reservations": [ + { + "user_id": 526, + "restaurant_id": 653, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 526, + "restaurant_id": 915, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 526, + "restaurant_id": 1772 + }, + { + "user_id": 526, + "restaurant_id": 1595 + } + ], + "updated_at": "2025-03-30T11:32:21.024000" + }, + { + "user_info": { + "user_id": 527, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 527, + "min_price": 64958, + "max_price": 332700, + "preferred_categories": [ + 2, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a3b" + }, + "reservations": [ + { + "user_id": 527, + "restaurant_id": 119, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 527, + "restaurant_id": 2064, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 527, + "restaurant_id": 867, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 527, + "restaurant_id": 43 + } + ], + "updated_at": "2025-03-30T11:32:21.028000" + }, + { + "user_info": { + "user_id": 528, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 528, + "min_price": 86953, + "max_price": 254230, + "preferred_categories": [ + 3, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a3c" + }, + "reservations": [], + "likes": [ + { + "user_id": 528, + "restaurant_id": 681 + }, + { + "user_id": 528, + "restaurant_id": 859 + }, + { + "user_id": 528, + "restaurant_id": 686 + } + ], + "updated_at": "2025-03-30T11:32:21.030000" + }, + { + "user_info": { + "user_id": 529, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 529, + "min_price": 171859, + "max_price": 216574, + "preferred_categories": [ + 4, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a3d" + }, + "reservations": [ + { + "user_id": 529, + "restaurant_id": 348, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 529, + "restaurant_id": 869, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 529, + "restaurant_id": 419 + }, + { + "user_id": 529, + "restaurant_id": 46 + }, + { + "user_id": 529, + "restaurant_id": 303 + } + ], + "updated_at": "2025-03-30T11:32:21.034000" + }, + { + "user_info": { + "user_id": 530, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 530, + "min_price": 41795, + "max_price": 482990, + "preferred_categories": [ + 4, + 6, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a3e" + }, + "reservations": [ + { + "user_id": 530, + "restaurant_id": 1414, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 530, + "restaurant_id": 210, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 530, + "restaurant_id": 298, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 530, + "restaurant_id": 1118, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 530, + "restaurant_id": 572, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 530, + "restaurant_id": 253 + }, + { + "user_id": 530, + "restaurant_id": 687 + }, + { + "user_id": 530, + "restaurant_id": 384 + } + ], + "updated_at": "2025-03-30T11:32:21.037000" + }, + { + "user_info": { + "user_id": 531, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 531, + "min_price": 123832, + "max_price": 330133, + "preferred_categories": [ + 5, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a3f" + }, + "reservations": [], + "likes": [], + "updated_at": "2025-03-30T11:32:21.042000" + }, + { + "user_info": { + "user_id": 532, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 532, + "min_price": 53435, + "max_price": 395228, + "preferred_categories": [ + 1, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a40" + }, + "reservations": [ + { + "user_id": 532, + "restaurant_id": 831, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 532, + "restaurant_id": 1707, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 532, + "restaurant_id": 1224, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 532, + "restaurant_id": 769 + }, + { + "user_id": 532, + "restaurant_id": 1195 + }, + { + "user_id": 532, + "restaurant_id": 794 + }, + { + "user_id": 532, + "restaurant_id": 653 + }, + { + "user_id": 532, + "restaurant_id": 2136 + }, + { + "user_id": 532, + "restaurant_id": 1950 + }, + { + "user_id": 532, + "restaurant_id": 2097 + } + ], + "updated_at": "2025-03-30T11:32:21.045000" + }, + { + "user_info": { + "user_id": 533, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 533, + "min_price": 83245, + "max_price": 219301, + "preferred_categories": [ + 1, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a41" + }, + "reservations": [ + { + "user_id": 533, + "restaurant_id": 255, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 533, + "restaurant_id": 1894 + }, + { + "user_id": 533, + "restaurant_id": 2242 + } + ], + "updated_at": "2025-03-30T11:32:21.050000" + }, + { + "user_info": { + "user_id": 534, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 534, + "min_price": 116263, + "max_price": 241393, + "preferred_categories": [ + 2, + 4, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a42" + }, + "reservations": [ + { + "user_id": 534, + "restaurant_id": 1341, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 534, + "restaurant_id": 1779, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 534, + "restaurant_id": 1115, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 534, + "restaurant_id": 764 + }, + { + "user_id": 534, + "restaurant_id": 2047 + }, + { + "user_id": 534, + "restaurant_id": 343 + }, + { + "user_id": 534, + "restaurant_id": 1932 + }, + { + "user_id": 534, + "restaurant_id": 1288 + }, + { + "user_id": 534, + "restaurant_id": 1312 + } + ], + "updated_at": "2025-03-30T11:32:21.053000" + }, + { + "user_info": { + "user_id": 535, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 535, + "min_price": 50931, + "max_price": 209948, + "preferred_categories": [ + 4, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a43" + }, + "reservations": [ + { + "user_id": 535, + "restaurant_id": 786, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 535, + "restaurant_id": 588, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 535, + "restaurant_id": 1822, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 535, + "restaurant_id": 616, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 535, + "restaurant_id": 2220 + }, + { + "user_id": 535, + "restaurant_id": 1722 + } + ], + "updated_at": "2025-03-30T11:32:21.057000" + }, + { + "user_info": { + "user_id": 536, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 536, + "min_price": 63782, + "max_price": 434471, + "preferred_categories": [ + 1, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a44" + }, + "reservations": [ + { + "user_id": 536, + "restaurant_id": 2110, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 536, + "restaurant_id": 148, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 536, + "restaurant_id": 764 + }, + { + "user_id": 536, + "restaurant_id": 1953 + } + ], + "updated_at": "2025-03-30T11:32:21.059000" + }, + { + "user_info": { + "user_id": 537, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 537, + "min_price": 161904, + "max_price": 402834, + "preferred_categories": [ + 3, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff9a45" + }, + "reservations": [ + { + "user_id": 537, + "restaurant_id": 1692, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 537, + "restaurant_id": 355 + }, + { + "user_id": 537, + "restaurant_id": 1196 + }, + { + "user_id": 537, + "restaurant_id": 426 + }, + { + "user_id": 537, + "restaurant_id": 1003 + } + ], + "updated_at": "2025-03-30T11:32:21.063000" + }, + { + "user_info": { + "user_id": 538, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 538, + "min_price": 132616, + "max_price": 441114, + "preferred_categories": [ + 1, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a46" + }, + "reservations": [ + { + "user_id": 538, + "restaurant_id": 1651, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 538, + "restaurant_id": 411 + }, + { + "user_id": 538, + "restaurant_id": 733 + }, + { + "user_id": 538, + "restaurant_id": 207 + }, + { + "user_id": 538, + "restaurant_id": 1489 + }, + { + "user_id": 538, + "restaurant_id": 1872 + }, + { + "user_id": 538, + "restaurant_id": 1444 + } + ], + "updated_at": "2025-03-30T11:32:21.065000" + }, + { + "user_info": { + "user_id": 539, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 539, + "min_price": 31356, + "max_price": 467585, + "preferred_categories": [ + 2, + 4, + 5 + ], + "_id": "67e92bc2785211cbd5ff9a47" + }, + "reservations": [ + { + "user_id": 539, + "restaurant_id": 204, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 539, + "restaurant_id": 1022, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 539, + "restaurant_id": 1082, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 539, + "restaurant_id": 1773, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 539, + "restaurant_id": 885 + }, + { + "user_id": 539, + "restaurant_id": 588 + } + ], + "updated_at": "2025-03-30T11:32:21.070000" + }, + { + "user_info": { + "user_id": 540, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 540, + "min_price": 95495, + "max_price": 348008, + "preferred_categories": [ + 1, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a48" + }, + "reservations": [ + { + "user_id": 540, + "restaurant_id": 1078, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 540, + "restaurant_id": 2063, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 540, + "restaurant_id": 1410, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 540, + "restaurant_id": 549, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 540, + "restaurant_id": 1213, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 540, + "restaurant_id": 457 + }, + { + "user_id": 540, + "restaurant_id": 625 + }, + { + "user_id": 540, + "restaurant_id": 1534 + } + ], + "updated_at": "2025-03-30T11:32:21.073000" + }, + { + "user_info": { + "user_id": 541, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 541, + "min_price": 136281, + "max_price": 445390, + "preferred_categories": [ + 3, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a49" + }, + "reservations": [ + { + "user_id": 541, + "restaurant_id": 820, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 541, + "restaurant_id": 190, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 541, + "restaurant_id": 1705 + }, + { + "user_id": 541, + "restaurant_id": 640 + }, + { + "user_id": 541, + "restaurant_id": 1289 + }, + { + "user_id": 541, + "restaurant_id": 42 + } + ], + "updated_at": "2025-03-30T11:32:21.079000" + }, + { + "user_info": { + "user_id": 542, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 542, + "min_price": 25432, + "max_price": 323829, + "preferred_categories": [ + 3, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a4a" + }, + "reservations": [ + { + "user_id": 542, + "restaurant_id": 1308, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 542, + "restaurant_id": 498 + }, + { + "user_id": 542, + "restaurant_id": 261 + }, + { + "user_id": 542, + "restaurant_id": 1300 + }, + { + "user_id": 542, + "restaurant_id": 109 + }, + { + "user_id": 542, + "restaurant_id": 1485 + }, + { + "user_id": 542, + "restaurant_id": 465 + } + ], + "updated_at": "2025-03-30T11:32:21.084000" + }, + { + "user_info": { + "user_id": 543, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 543, + "min_price": 12607, + "max_price": 205185, + "preferred_categories": [ + 7, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a4b" + }, + "reservations": [ + { + "user_id": 543, + "restaurant_id": 1632, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 543, + "restaurant_id": 1876, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 543, + "restaurant_id": 434, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 543, + "restaurant_id": 1823, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 543, + "restaurant_id": 995 + }, + { + "user_id": 543, + "restaurant_id": 852 + }, + { + "user_id": 543, + "restaurant_id": 1941 + } + ], + "updated_at": "2025-03-30T11:32:21.087000" + }, + { + "user_info": { + "user_id": 544, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 544, + "min_price": 26420, + "max_price": 490248, + "preferred_categories": [ + 4, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a4c" + }, + "reservations": [ + { + "user_id": 544, + "restaurant_id": 834, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 544, + "restaurant_id": 941, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 544, + "restaurant_id": 2115 + }, + { + "user_id": 544, + "restaurant_id": 1762 + }, + { + "user_id": 544, + "restaurant_id": 10 + }, + { + "user_id": 544, + "restaurant_id": 658 + } + ], + "updated_at": "2025-03-30T11:32:21.090000" + }, + { + "user_info": { + "user_id": 545, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 545, + "min_price": 161027, + "max_price": 463292, + "preferred_categories": [ + 5, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a4d" + }, + "reservations": [ + { + "user_id": 545, + "restaurant_id": 314, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 545, + "restaurant_id": 907, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 545, + "restaurant_id": 1517 + }, + { + "user_id": 545, + "restaurant_id": 130 + }, + { + "user_id": 545, + "restaurant_id": 926 + }, + { + "user_id": 545, + "restaurant_id": 1353 + } + ], + "updated_at": "2025-03-30T11:32:21.093000" + }, + { + "user_info": { + "user_id": 546, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 546, + "min_price": 157829, + "max_price": 480943, + "preferred_categories": [ + 2, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a4e" + }, + "reservations": [ + { + "user_id": 546, + "restaurant_id": 1678, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 546, + "restaurant_id": 1376, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 546, + "restaurant_id": 1601, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 546, + "restaurant_id": 2189, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 546, + "restaurant_id": 1082 + }, + { + "user_id": 546, + "restaurant_id": 950 + }, + { + "user_id": 546, + "restaurant_id": 1196 + }, + { + "user_id": 546, + "restaurant_id": 2073 + } + ], + "updated_at": "2025-03-30T11:32:21.096000" + }, + { + "user_info": { + "user_id": 547, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 547, + "min_price": 29055, + "max_price": 347856, + "preferred_categories": [ + 1, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a4f" + }, + "reservations": [ + { + "user_id": 547, + "restaurant_id": 566, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 547, + "restaurant_id": 558, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 547, + "restaurant_id": 1740, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 547, + "restaurant_id": 1866, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 547, + "restaurant_id": 1290, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 547, + "restaurant_id": 2012, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:21.099000" + }, + { + "user_info": { + "user_id": 548, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 548, + "min_price": 96294, + "max_price": 239565, + "preferred_categories": [ + 2, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a50" + }, + "reservations": [ + { + "user_id": 548, + "restaurant_id": 1443, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 548, + "restaurant_id": 487, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 548, + "restaurant_id": 1732, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 548, + "restaurant_id": 2216 + }, + { + "user_id": 548, + "restaurant_id": 891 + }, + { + "user_id": 548, + "restaurant_id": 772 + }, + { + "user_id": 548, + "restaurant_id": 1535 + } + ], + "updated_at": "2025-03-30T11:32:21.102000" + }, + { + "user_info": { + "user_id": 549, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 549, + "min_price": 62437, + "max_price": 255734, + "preferred_categories": [ + 1, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a51" + }, + "reservations": [ + { + "user_id": 549, + "restaurant_id": 2153, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 549, + "restaurant_id": 2089, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 549, + "restaurant_id": 535, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 549, + "restaurant_id": 1504, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 549, + "restaurant_id": 693, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 549, + "restaurant_id": 681 + }, + { + "user_id": 549, + "restaurant_id": 1777 + } + ], + "updated_at": "2025-03-30T11:32:21.106000" + }, + { + "user_info": { + "user_id": 550, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 550, + "min_price": 183474, + "max_price": 242008, + "preferred_categories": [ + 2, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a52" + }, + "reservations": [ + { + "user_id": 550, + "restaurant_id": 1666, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 550, + "restaurant_id": 684, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 550, + "restaurant_id": 996 + } + ], + "updated_at": "2025-03-30T11:32:21.109000" + }, + { + "user_info": { + "user_id": 551, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 551, + "min_price": 28705, + "max_price": 278966, + "preferred_categories": [ + 2, + 4, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a53" + }, + "reservations": [ + { + "user_id": 551, + "restaurant_id": 914, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 551, + "restaurant_id": 57, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 551, + "restaurant_id": 1025, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 551, + "restaurant_id": 1023, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 551, + "restaurant_id": 368, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 551, + "restaurant_id": 1352 + } + ], + "updated_at": "2025-03-30T11:32:21.123000" + }, + { + "user_info": { + "user_id": 552, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 552, + "min_price": 17762, + "max_price": 266072, + "preferred_categories": [ + 3, + 4, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a54" + }, + "reservations": [ + { + "user_id": 552, + "restaurant_id": 828, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 552, + "restaurant_id": 1970, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 552, + "restaurant_id": 33, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 552, + "restaurant_id": 110 + }, + { + "user_id": 552, + "restaurant_id": 696 + }, + { + "user_id": 552, + "restaurant_id": 1164 + }, + { + "user_id": 552, + "restaurant_id": 1766 + } + ], + "updated_at": "2025-03-30T11:32:21.135000" + }, + { + "user_info": { + "user_id": 553, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 553, + "min_price": 37376, + "max_price": 380708, + "preferred_categories": [ + 4, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a55" + }, + "reservations": [ + { + "user_id": 553, + "restaurant_id": 773, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 553, + "restaurant_id": 216, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 553, + "restaurant_id": 723 + }, + { + "user_id": 553, + "restaurant_id": 1943 + } + ], + "updated_at": "2025-03-30T11:32:21.146000" + }, + { + "user_info": { + "user_id": 554, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 554, + "min_price": 109083, + "max_price": 207097, + "preferred_categories": [ + 2, + 4, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a56" + }, + "reservations": [ + { + "user_id": 554, + "restaurant_id": 1984, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 554, + "restaurant_id": 883, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 554, + "restaurant_id": 1609, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 554, + "restaurant_id": 616, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 554, + "restaurant_id": 1454, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 554, + "restaurant_id": 1763, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 554, + "restaurant_id": 259, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 554, + "restaurant_id": 1816 + }, + { + "user_id": 554, + "restaurant_id": 651 + } + ], + "updated_at": "2025-03-30T11:32:21.152000" + }, + { + "user_info": { + "user_id": 555, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 555, + "min_price": 167100, + "max_price": 220167, + "preferred_categories": [ + 2, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a57" + }, + "reservations": [ + { + "user_id": 555, + "restaurant_id": 1279, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 555, + "restaurant_id": 1385, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 555, + "restaurant_id": 547, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 555, + "restaurant_id": 32 + }, + { + "user_id": 555, + "restaurant_id": 9 + }, + { + "user_id": 555, + "restaurant_id": 511 + }, + { + "user_id": 555, + "restaurant_id": 1000 + } + ], + "updated_at": "2025-03-30T11:32:21.160000" + }, + { + "user_info": { + "user_id": 556, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 556, + "min_price": 185659, + "max_price": 328447, + "preferred_categories": [ + 7, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a58" + }, + "reservations": [], + "likes": [ + { + "user_id": 556, + "restaurant_id": 1052 + } + ], + "updated_at": "2025-03-30T11:32:21.168000" + }, + { + "user_info": { + "user_id": 557, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 557, + "min_price": 158856, + "max_price": 263123, + "preferred_categories": [ + 2, + 4, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a59" + }, + "reservations": [ + { + "user_id": 557, + "restaurant_id": 1963, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 557, + "restaurant_id": 1085, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 557, + "restaurant_id": 382 + }, + { + "user_id": 557, + "restaurant_id": 1631 + } + ], + "updated_at": "2025-03-30T11:32:21.173000" + }, + { + "user_info": { + "user_id": 558, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 558, + "min_price": 101011, + "max_price": 244123, + "preferred_categories": [ + 4, + 5, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a5a" + }, + "reservations": [ + { + "user_id": 558, + "restaurant_id": 1958, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 558, + "restaurant_id": 1956, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 558, + "restaurant_id": 835, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 558, + "restaurant_id": 1124, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 558, + "restaurant_id": 632, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 558, + "restaurant_id": 2237, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 558, + "restaurant_id": 407, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 558, + "restaurant_id": 1536 + }, + { + "user_id": 558, + "restaurant_id": 932 + }, + { + "user_id": 558, + "restaurant_id": 1437 + }, + { + "user_id": 558, + "restaurant_id": 751 + }, + { + "user_id": 558, + "restaurant_id": 914 + }, + { + "user_id": 558, + "restaurant_id": 916 + }, + { + "user_id": 558, + "restaurant_id": 1819 + } + ], + "updated_at": "2025-03-30T11:32:21.177000" + }, + { + "user_info": { + "user_id": 559, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 559, + "min_price": 197338, + "max_price": 212049, + "preferred_categories": [ + 1, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a5b" + }, + "reservations": [ + { + "user_id": 559, + "restaurant_id": 2232, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 559, + "restaurant_id": 273 + }, + { + "user_id": 559, + "restaurant_id": 803 + }, + { + "user_id": 559, + "restaurant_id": 1986 + }, + { + "user_id": 559, + "restaurant_id": 1218 + } + ], + "updated_at": "2025-03-30T11:32:21.186000" + }, + { + "user_info": { + "user_id": 560, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 560, + "min_price": 29596, + "max_price": 244946, + "preferred_categories": [ + 1, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a5c" + }, + "reservations": [ + { + "user_id": 560, + "restaurant_id": 1111, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 560, + "restaurant_id": 216, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 560, + "restaurant_id": 2173 + }, + { + "user_id": 560, + "restaurant_id": 416 + }, + { + "user_id": 560, + "restaurant_id": 1362 + } + ], + "updated_at": "2025-03-30T11:32:21.189000" + }, + { + "user_info": { + "user_id": 561, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 561, + "min_price": 45793, + "max_price": 358017, + "preferred_categories": [ + 6, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a5d" + }, + "reservations": [ + { + "user_id": 561, + "restaurant_id": 1026, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 561, + "restaurant_id": 2192, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 561, + "restaurant_id": 1205, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 561, + "restaurant_id": 2072, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 561, + "restaurant_id": 1062 + }, + { + "user_id": 561, + "restaurant_id": 1912 + }, + { + "user_id": 561, + "restaurant_id": 109 + }, + { + "user_id": 561, + "restaurant_id": 686 + } + ], + "updated_at": "2025-03-30T11:32:21.192000" + }, + { + "user_info": { + "user_id": 562, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 562, + "min_price": 132333, + "max_price": 344701, + "preferred_categories": [ + 1, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a5e" + }, + "reservations": [ + { + "user_id": 562, + "restaurant_id": 2215, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 562, + "restaurant_id": 331, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 562, + "restaurant_id": 1271, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 562, + "restaurant_id": 1424 + }, + { + "user_id": 562, + "restaurant_id": 947 + }, + { + "user_id": 562, + "restaurant_id": 542 + }, + { + "user_id": 562, + "restaurant_id": 106 + }, + { + "user_id": 562, + "restaurant_id": 1028 + }, + { + "user_id": 562, + "restaurant_id": 460 + } + ], + "updated_at": "2025-03-30T11:32:21.197000" + }, + { + "user_info": { + "user_id": 563, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 563, + "min_price": 180763, + "max_price": 411913, + "preferred_categories": [ + 5, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a5f" + }, + "reservations": [ + { + "user_id": 563, + "restaurant_id": 1208, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 563, + "restaurant_id": 1623, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 563, + "restaurant_id": 2087, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 563, + "restaurant_id": 1405, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 563, + "restaurant_id": 1265 + }, + { + "user_id": 563, + "restaurant_id": 1696 + }, + { + "user_id": 563, + "restaurant_id": 686 + }, + { + "user_id": 563, + "restaurant_id": 1110 + }, + { + "user_id": 563, + "restaurant_id": 293 + } + ], + "updated_at": "2025-03-30T11:32:21.201000" + }, + { + "user_info": { + "user_id": 564, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 564, + "min_price": 131493, + "max_price": 449587, + "preferred_categories": [ + 1, + 2, + 4 + ], + "_id": "67e92bc2785211cbd5ff9a60" + }, + "reservations": [ + { + "user_id": 564, + "restaurant_id": 2034, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 564, + "restaurant_id": 393, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 564, + "restaurant_id": 1010 + }, + { + "user_id": 564, + "restaurant_id": 1574 + }, + { + "user_id": 564, + "restaurant_id": 273 + }, + { + "user_id": 564, + "restaurant_id": 1634 + }, + { + "user_id": 564, + "restaurant_id": 2208 + } + ], + "updated_at": "2025-03-30T11:32:21.208000" + }, + { + "user_info": { + "user_id": 565, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 565, + "min_price": 50115, + "max_price": 486488, + "preferred_categories": [ + 4, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a61" + }, + "reservations": [ + { + "user_id": 565, + "restaurant_id": 2250, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 565, + "restaurant_id": 1093, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 565, + "restaurant_id": 1781, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 565, + "restaurant_id": 554, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 565, + "restaurant_id": 161, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 565, + "restaurant_id": 2048, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 565, + "restaurant_id": 2118, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 565, + "restaurant_id": 2101, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 565, + "restaurant_id": 1433 + }, + { + "user_id": 565, + "restaurant_id": 2218 + } + ], + "updated_at": "2025-03-30T11:32:21.212000" + }, + { + "user_info": { + "user_id": 566, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 566, + "min_price": 138975, + "max_price": 362731, + "preferred_categories": [ + 1, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a62" + }, + "reservations": [ + { + "user_id": 566, + "restaurant_id": 311, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 566, + "restaurant_id": 1394, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 566, + "restaurant_id": 2181, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 566, + "restaurant_id": 860, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 566, + "restaurant_id": 452, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 566, + "restaurant_id": 1685 + }, + { + "user_id": 566, + "restaurant_id": 1721 + }, + { + "user_id": 566, + "restaurant_id": 630 + }, + { + "user_id": 566, + "restaurant_id": 2123 + }, + { + "user_id": 566, + "restaurant_id": 661 + } + ], + "updated_at": "2025-03-30T11:32:21.217000" + }, + { + "user_info": { + "user_id": 567, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 567, + "min_price": 190331, + "max_price": 496717, + "preferred_categories": [ + 2, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a63" + }, + "reservations": [ + { + "user_id": 567, + "restaurant_id": 163, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 567, + "restaurant_id": 1234, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 567, + "restaurant_id": 1944, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 567, + "restaurant_id": 218, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 567, + "restaurant_id": 562, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 567, + "restaurant_id": 669 + }, + { + "user_id": 567, + "restaurant_id": 1511 + }, + { + "user_id": 567, + "restaurant_id": 585 + } + ], + "updated_at": "2025-03-30T11:32:21.223000" + }, + { + "user_info": { + "user_id": 568, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 568, + "min_price": 157754, + "max_price": 306057, + "preferred_categories": [ + 3, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a64" + }, + "reservations": [ + { + "user_id": 568, + "restaurant_id": 670, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 568, + "restaurant_id": 1413, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 568, + "restaurant_id": 366 + }, + { + "user_id": 568, + "restaurant_id": 1233 + }, + { + "user_id": 568, + "restaurant_id": 1634 + } + ], + "updated_at": "2025-03-30T11:32:21.231000" + }, + { + "user_info": { + "user_id": 569, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 569, + "min_price": 85126, + "max_price": 338709, + "preferred_categories": [ + 3, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a65" + }, + "reservations": [ + { + "user_id": 569, + "restaurant_id": 2230, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 569, + "restaurant_id": 2002, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 569, + "restaurant_id": 1055 + }, + { + "user_id": 569, + "restaurant_id": 1492 + } + ], + "updated_at": "2025-03-30T11:32:21.234000" + }, + { + "user_info": { + "user_id": 570, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 570, + "min_price": 143481, + "max_price": 200001, + "preferred_categories": [ + 4, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a66" + }, + "reservations": [ + { + "user_id": 570, + "restaurant_id": 1408, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:21.237000" + }, + { + "user_info": { + "user_id": 571, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 571, + "min_price": 100696, + "max_price": 223457, + "preferred_categories": [ + 4, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a67" + }, + "reservations": [ + { + "user_id": 571, + "restaurant_id": 1771, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 571, + "restaurant_id": 846, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 571, + "restaurant_id": 2246, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 571, + "restaurant_id": 1316, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 571, + "restaurant_id": 59 + }, + { + "user_id": 571, + "restaurant_id": 1923 + }, + { + "user_id": 571, + "restaurant_id": 952 + }, + { + "user_id": 571, + "restaurant_id": 1171 + } + ], + "updated_at": "2025-03-30T11:32:21.240000" + }, + { + "user_info": { + "user_id": 572, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 572, + "min_price": 25685, + "max_price": 441179, + "preferred_categories": [ + 3, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a68" + }, + "reservations": [ + { + "user_id": 572, + "restaurant_id": 956, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 572, + "restaurant_id": 754, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 572, + "restaurant_id": 1343, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 572, + "restaurant_id": 1442, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 572, + "restaurant_id": 1021, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 572, + "restaurant_id": 1780, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 572, + "restaurant_id": 1194 + }, + { + "user_id": 572, + "restaurant_id": 2123 + } + ], + "updated_at": "2025-03-30T11:32:21.242000" + }, + { + "user_info": { + "user_id": 573, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 573, + "min_price": 110800, + "max_price": 353594, + "preferred_categories": [ + 1, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a69" + }, + "reservations": [ + { + "user_id": 573, + "restaurant_id": 1038, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 573, + "restaurant_id": 2042, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 573, + "restaurant_id": 1376, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 573, + "restaurant_id": 421 + }, + { + "user_id": 573, + "restaurant_id": 1274 + }, + { + "user_id": 573, + "restaurant_id": 1018 + }, + { + "user_id": 573, + "restaurant_id": 460 + } + ], + "updated_at": "2025-03-30T11:32:21.246000" + }, + { + "user_info": { + "user_id": 574, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 574, + "min_price": 13674, + "max_price": 393614, + "preferred_categories": [ + 3, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a6a" + }, + "reservations": [ + { + "user_id": 574, + "restaurant_id": 1789, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 574, + "restaurant_id": 2211, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 574, + "restaurant_id": 1192 + }, + { + "user_id": 574, + "restaurant_id": 1030 + }, + { + "user_id": 574, + "restaurant_id": 1577 + }, + { + "user_id": 574, + "restaurant_id": 274 + }, + { + "user_id": 574, + "restaurant_id": 721 + }, + { + "user_id": 574, + "restaurant_id": 861 + }, + { + "user_id": 574, + "restaurant_id": 40 + }, + { + "user_id": 574, + "restaurant_id": 2236 + } + ], + "updated_at": "2025-03-30T11:32:21.249000" + }, + { + "user_info": { + "user_id": 575, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 575, + "min_price": 20528, + "max_price": 430394, + "preferred_categories": [ + 3, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a6b" + }, + "reservations": [ + { + "user_id": 575, + "restaurant_id": 1132, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 575, + "restaurant_id": 1624, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 575, + "restaurant_id": 52, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 575, + "restaurant_id": 2179, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 575, + "restaurant_id": 1367, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 575, + "restaurant_id": 1731 + } + ], + "updated_at": "2025-03-30T11:32:21.251000" + }, + { + "user_info": { + "user_id": 576, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 576, + "min_price": 152774, + "max_price": 331831, + "preferred_categories": [ + 1, + 4, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a6c" + }, + "reservations": [ + { + "user_id": 576, + "restaurant_id": 2196, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 576, + "restaurant_id": 1093 + }, + { + "user_id": 576, + "restaurant_id": 1452 + }, + { + "user_id": 576, + "restaurant_id": 2141 + }, + { + "user_id": 576, + "restaurant_id": 1269 + }, + { + "user_id": 576, + "restaurant_id": 1958 + } + ], + "updated_at": "2025-03-30T11:32:21.254000" + }, + { + "user_info": { + "user_id": 577, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 577, + "min_price": 120484, + "max_price": 398194, + "preferred_categories": [ + 6, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a6d" + }, + "reservations": [ + { + "user_id": 577, + "restaurant_id": 781, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 577, + "restaurant_id": 488, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 577, + "restaurant_id": 538, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 577, + "restaurant_id": 1981, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 577, + "restaurant_id": 1746 + }, + { + "user_id": 577, + "restaurant_id": 173 + }, + { + "user_id": 577, + "restaurant_id": 933 + }, + { + "user_id": 577, + "restaurant_id": 755 + } + ], + "updated_at": "2025-03-30T11:32:21.261000" + }, + { + "user_info": { + "user_id": 578, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 578, + "min_price": 176286, + "max_price": 276427, + "preferred_categories": [ + 1, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a6e" + }, + "reservations": [ + { + "user_id": 578, + "restaurant_id": 1674, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 578, + "restaurant_id": 799 + }, + { + "user_id": 578, + "restaurant_id": 1864 + }, + { + "user_id": 578, + "restaurant_id": 1769 + } + ], + "updated_at": "2025-03-30T11:32:21.267000" + }, + { + "user_info": { + "user_id": 579, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 579, + "min_price": 117675, + "max_price": 499987, + "preferred_categories": [ + 6, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a6f" + }, + "reservations": [ + { + "user_id": 579, + "restaurant_id": 987, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 579, + "restaurant_id": 540, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 579, + "restaurant_id": 1804, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 579, + "restaurant_id": 676, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 579, + "restaurant_id": 1016, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 579, + "restaurant_id": 357, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 579, + "restaurant_id": 1752 + }, + { + "user_id": 579, + "restaurant_id": 63 + }, + { + "user_id": 579, + "restaurant_id": 382 + }, + { + "user_id": 579, + "restaurant_id": 532 + }, + { + "user_id": 579, + "restaurant_id": 1232 + }, + { + "user_id": 579, + "restaurant_id": 1329 + } + ], + "updated_at": "2025-03-30T11:32:21.270000" + }, + { + "user_info": { + "user_id": 580, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 580, + "min_price": 113585, + "max_price": 290614, + "preferred_categories": [ + 3, + 4, + 5 + ], + "_id": "67e92bc2785211cbd5ff9a70" + }, + "reservations": [ + { + "user_id": 580, + "restaurant_id": 486, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 580, + "restaurant_id": 1811, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 580, + "restaurant_id": 1604, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 580, + "restaurant_id": 586 + } + ], + "updated_at": "2025-03-30T11:32:21.274000" + }, + { + "user_info": { + "user_id": 581, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 581, + "min_price": 195676, + "max_price": 478243, + "preferred_categories": [ + 3, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a71" + }, + "reservations": [ + { + "user_id": 581, + "restaurant_id": 432, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 581, + "restaurant_id": 1354 + }, + { + "user_id": 581, + "restaurant_id": 1680 + }, + { + "user_id": 581, + "restaurant_id": 1571 + }, + { + "user_id": 581, + "restaurant_id": 783 + } + ], + "updated_at": "2025-03-30T11:32:21.278000" + }, + { + "user_info": { + "user_id": 582, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 582, + "min_price": 128166, + "max_price": 402493, + "preferred_categories": [ + 6, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a72" + }, + "reservations": [ + { + "user_id": 582, + "restaurant_id": 1236, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 582, + "restaurant_id": 233, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 582, + "restaurant_id": 1159, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 582, + "restaurant_id": 295, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 582, + "restaurant_id": 408, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 582, + "restaurant_id": 1232, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 582, + "restaurant_id": 1633 + }, + { + "user_id": 582, + "restaurant_id": 2231 + }, + { + "user_id": 582, + "restaurant_id": 2032 + }, + { + "user_id": 582, + "restaurant_id": 1794 + } + ], + "updated_at": "2025-03-30T11:32:21.286000" + }, + { + "user_info": { + "user_id": 583, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 583, + "min_price": 143737, + "max_price": 393992, + "preferred_categories": [ + 4, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a73" + }, + "reservations": [ + { + "user_id": 583, + "restaurant_id": 469, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 583, + "restaurant_id": 660, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 583, + "restaurant_id": 1816, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 583, + "restaurant_id": 969 + } + ], + "updated_at": "2025-03-30T11:32:21.289000" + }, + { + "user_info": { + "user_id": 584, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 584, + "min_price": 88091, + "max_price": 327428, + "preferred_categories": [ + 2, + 3, + 6 + ], + "_id": "67e92bc2785211cbd5ff9a74" + }, + "reservations": [ + { + "user_id": 584, + "restaurant_id": 945, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 584, + "restaurant_id": 1020, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 584, + "restaurant_id": 2041, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 584, + "restaurant_id": 1789, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 584, + "restaurant_id": 1483 + }, + { + "user_id": 584, + "restaurant_id": 7 + } + ], + "updated_at": "2025-03-30T11:32:21.293000" + }, + { + "user_info": { + "user_id": 585, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 585, + "min_price": 164467, + "max_price": 462940, + "preferred_categories": [ + 6, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a75" + }, + "reservations": [ + { + "user_id": 585, + "restaurant_id": 1875, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 585, + "restaurant_id": 1678 + }, + { + "user_id": 585, + "restaurant_id": 1646 + }, + { + "user_id": 585, + "restaurant_id": 2003 + }, + { + "user_id": 585, + "restaurant_id": 1300 + }, + { + "user_id": 585, + "restaurant_id": 1380 + }, + { + "user_id": 585, + "restaurant_id": 893 + } + ], + "updated_at": "2025-03-30T11:32:21.296000" + }, + { + "user_info": { + "user_id": 586, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 586, + "min_price": 97582, + "max_price": 265145, + "preferred_categories": [ + 6, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a76" + }, + "reservations": [ + { + "user_id": 586, + "restaurant_id": 1760, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 586, + "restaurant_id": 494, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 586, + "restaurant_id": 1706 + }, + { + "user_id": 586, + "restaurant_id": 1644 + } + ], + "updated_at": "2025-03-30T11:32:21.299000" + }, + { + "user_info": { + "user_id": 587, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 587, + "min_price": 125764, + "max_price": 451884, + "preferred_categories": [ + 1, + 4, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a77" + }, + "reservations": [], + "likes": [ + { + "user_id": 587, + "restaurant_id": 585 + }, + { + "user_id": 587, + "restaurant_id": 1445 + }, + { + "user_id": 587, + "restaurant_id": 1174 + }, + { + "user_id": 587, + "restaurant_id": 163 + }, + { + "user_id": 587, + "restaurant_id": 1122 + } + ], + "updated_at": "2025-03-30T11:32:21.301000" + }, + { + "user_info": { + "user_id": 588, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 588, + "min_price": 123085, + "max_price": 470082, + "preferred_categories": [ + 4, + 5, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a78" + }, + "reservations": [ + { + "user_id": 588, + "restaurant_id": 1796, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 588, + "restaurant_id": 179, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 588, + "restaurant_id": 1833 + }, + { + "user_id": 588, + "restaurant_id": 1013 + } + ], + "updated_at": "2025-03-30T11:32:21.304000" + }, + { + "user_info": { + "user_id": 589, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 589, + "min_price": 55829, + "max_price": 302570, + "preferred_categories": [ + 2, + 4, + 6 + ], + "_id": "67e92bc2785211cbd5ff9a79" + }, + "reservations": [ + { + "user_id": 589, + "restaurant_id": 1292, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 589, + "restaurant_id": 479, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 589, + "restaurant_id": 842 + }, + { + "user_id": 589, + "restaurant_id": 1711 + }, + { + "user_id": 589, + "restaurant_id": 1408 + } + ], + "updated_at": "2025-03-30T11:32:21.307000" + }, + { + "user_info": { + "user_id": 590, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 590, + "min_price": 163049, + "max_price": 271350, + "preferred_categories": [ + 6, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a7a" + }, + "reservations": [ + { + "user_id": 590, + "restaurant_id": 397, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 590, + "restaurant_id": 1006, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 590, + "restaurant_id": 584, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 590, + "restaurant_id": 2011 + }, + { + "user_id": 590, + "restaurant_id": 1931 + }, + { + "user_id": 590, + "restaurant_id": 1751 + }, + { + "user_id": 590, + "restaurant_id": 1739 + }, + { + "user_id": 590, + "restaurant_id": 1108 + } + ], + "updated_at": "2025-03-30T11:32:21.311000" + }, + { + "user_info": { + "user_id": 591, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 591, + "min_price": 190070, + "max_price": 463176, + "preferred_categories": [ + 3, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a7b" + }, + "reservations": [ + { + "user_id": 591, + "restaurant_id": 1824, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 591, + "restaurant_id": 1217 + }, + { + "user_id": 591, + "restaurant_id": 1821 + }, + { + "user_id": 591, + "restaurant_id": 2030 + }, + { + "user_id": 591, + "restaurant_id": 1622 + }, + { + "user_id": 591, + "restaurant_id": 1287 + } + ], + "updated_at": "2025-03-30T11:32:21.313000" + }, + { + "user_info": { + "user_id": 592, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 592, + "min_price": 115358, + "max_price": 239269, + "preferred_categories": [ + 7, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a7c" + }, + "reservations": [ + { + "user_id": 592, + "restaurant_id": 122, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 592, + "restaurant_id": 1080 + }, + { + "user_id": 592, + "restaurant_id": 1942 + }, + { + "user_id": 592, + "restaurant_id": 1516 + }, + { + "user_id": 592, + "restaurant_id": 1517 + }, + { + "user_id": 592, + "restaurant_id": 1103 + } + ], + "updated_at": "2025-03-30T11:32:21.316000" + }, + { + "user_info": { + "user_id": 593, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 593, + "min_price": 80321, + "max_price": 492234, + "preferred_categories": [ + 6, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a7d" + }, + "reservations": [ + { + "user_id": 593, + "restaurant_id": 94, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 593, + "restaurant_id": 1714, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 593, + "restaurant_id": 1509, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 593, + "restaurant_id": 2038 + }, + { + "user_id": 593, + "restaurant_id": 117 + }, + { + "user_id": 593, + "restaurant_id": 1368 + }, + { + "user_id": 593, + "restaurant_id": 317 + }, + { + "user_id": 593, + "restaurant_id": 992 + }, + { + "user_id": 593, + "restaurant_id": 1777 + }, + { + "user_id": 593, + "restaurant_id": 994 + } + ], + "updated_at": "2025-03-30T11:32:21.324000" + }, + { + "user_info": { + "user_id": 594, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 594, + "min_price": 150300, + "max_price": 447098, + "preferred_categories": [ + 3, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a7e" + }, + "reservations": [], + "likes": [ + { + "user_id": 594, + "restaurant_id": 424 + }, + { + "user_id": 594, + "restaurant_id": 480 + } + ], + "updated_at": "2025-03-30T11:32:21.327000" + }, + { + "user_info": { + "user_id": 595, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 595, + "min_price": 191239, + "max_price": 289440, + "preferred_categories": [ + 2, + 4, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a7f" + }, + "reservations": [ + { + "user_id": 595, + "restaurant_id": 268, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 595, + "restaurant_id": 1187, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 595, + "restaurant_id": 2237 + }, + { + "user_id": 595, + "restaurant_id": 423 + } + ], + "updated_at": "2025-03-30T11:32:21.330000" + }, + { + "user_info": { + "user_id": 596, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 596, + "min_price": 181703, + "max_price": 395653, + "preferred_categories": [ + 6, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a80" + }, + "reservations": [ + { + "user_id": 596, + "restaurant_id": 1706, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 596, + "restaurant_id": 1877, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 596, + "restaurant_id": 203 + }, + { + "user_id": 596, + "restaurant_id": 1953 + }, + { + "user_id": 596, + "restaurant_id": 858 + } + ], + "updated_at": "2025-03-30T11:32:21.333000" + }, + { + "user_info": { + "user_id": 597, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 597, + "min_price": 39791, + "max_price": 413273, + "preferred_categories": [ + 4, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a81" + }, + "reservations": [], + "likes": [ + { + "user_id": 597, + "restaurant_id": 759 + } + ], + "updated_at": "2025-03-30T11:32:21.336000" + }, + { + "user_info": { + "user_id": 598, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 598, + "min_price": 56526, + "max_price": 225693, + "preferred_categories": [ + 2, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a82" + }, + "reservations": [ + { + "user_id": 598, + "restaurant_id": 968, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 598, + "restaurant_id": 1469, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 598, + "restaurant_id": 811, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 598, + "restaurant_id": 963, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 598, + "restaurant_id": 77, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 598, + "restaurant_id": 2176 + }, + { + "user_id": 598, + "restaurant_id": 1896 + } + ], + "updated_at": "2025-03-30T11:32:21.339000" + }, + { + "user_info": { + "user_id": 599, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 599, + "min_price": 135393, + "max_price": 457079, + "preferred_categories": [ + 3, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a83" + }, + "reservations": [ + { + "user_id": 599, + "restaurant_id": 1388, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 599, + "restaurant_id": 1669, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 599, + "restaurant_id": 630, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 599, + "restaurant_id": 2026 + }, + { + "user_id": 599, + "restaurant_id": 134 + }, + { + "user_id": 599, + "restaurant_id": 1938 + } + ], + "updated_at": "2025-03-30T11:32:21.342000" + }, + { + "user_info": { + "user_id": 600, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 600, + "min_price": 92399, + "max_price": 406200, + "preferred_categories": [ + 3, + 6, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a84" + }, + "reservations": [ + { + "user_id": 600, + "restaurant_id": 1608, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 600, + "restaurant_id": 2013 + }, + { + "user_id": 600, + "restaurant_id": 1331 + }, + { + "user_id": 600, + "restaurant_id": 1187 + }, + { + "user_id": 600, + "restaurant_id": 1953 + }, + { + "user_id": 600, + "restaurant_id": 10 + } + ], + "updated_at": "2025-03-30T11:32:21.345000" + }, + { + "user_info": { + "user_id": 601, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 601, + "min_price": 55926, + "max_price": 391476, + "preferred_categories": [ + 4, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a85" + }, + "reservations": [ + { + "user_id": 601, + "restaurant_id": 1613, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 601, + "restaurant_id": 1505, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 601, + "restaurant_id": 388, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 601, + "restaurant_id": 1665 + }, + { + "user_id": 601, + "restaurant_id": 1263 + } + ], + "updated_at": "2025-03-30T11:32:21.348000" + }, + { + "user_info": { + "user_id": 602, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 602, + "min_price": 98860, + "max_price": 425438, + "preferred_categories": [ + 6, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a86" + }, + "reservations": [], + "likes": [ + { + "user_id": 602, + "restaurant_id": 1779 + }, + { + "user_id": 602, + "restaurant_id": 231 + }, + { + "user_id": 602, + "restaurant_id": 1189 + }, + { + "user_id": 602, + "restaurant_id": 2084 + }, + { + "user_id": 602, + "restaurant_id": 819 + }, + { + "user_id": 602, + "restaurant_id": 1233 + } + ], + "updated_at": "2025-03-30T11:32:21.351000" + }, + { + "user_info": { + "user_id": 603, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 603, + "min_price": 120570, + "max_price": 334418, + "preferred_categories": [ + 1, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a87" + }, + "reservations": [ + { + "user_id": 603, + "restaurant_id": 554, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 603, + "restaurant_id": 166 + }, + { + "user_id": 603, + "restaurant_id": 444 + } + ], + "updated_at": "2025-03-30T11:32:21.354000" + }, + { + "user_info": { + "user_id": 604, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 604, + "min_price": 28194, + "max_price": 348429, + "preferred_categories": [ + 1, + 2, + 8 + ], + "_id": "67e92bc2785211cbd5ff9a88" + }, + "reservations": [], + "likes": [ + { + "user_id": 604, + "restaurant_id": 388 + }, + { + "user_id": 604, + "restaurant_id": 900 + } + ], + "updated_at": "2025-03-30T11:32:21.358000" + }, + { + "user_info": { + "user_id": 605, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 605, + "min_price": 37541, + "max_price": 400528, + "preferred_categories": [ + 4, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a89" + }, + "reservations": [ + { + "user_id": 605, + "restaurant_id": 823, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 605, + "restaurant_id": 245, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 605, + "restaurant_id": 183, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 605, + "restaurant_id": 1285 + }, + { + "user_id": 605, + "restaurant_id": 1394 + }, + { + "user_id": 605, + "restaurant_id": 1201 + }, + { + "user_id": 605, + "restaurant_id": 74 + }, + { + "user_id": 605, + "restaurant_id": 391 + } + ], + "updated_at": "2025-03-30T11:32:21.362000" + }, + { + "user_info": { + "user_id": 606, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 606, + "min_price": 42896, + "max_price": 319216, + "preferred_categories": [ + 6, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a8a" + }, + "reservations": [ + { + "user_id": 606, + "restaurant_id": 1294, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 606, + "restaurant_id": 2026, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 606, + "restaurant_id": 1488 + }, + { + "user_id": 606, + "restaurant_id": 1420 + }, + { + "user_id": 606, + "restaurant_id": 2180 + } + ], + "updated_at": "2025-03-30T11:32:21.366000" + }, + { + "user_info": { + "user_id": 607, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 607, + "min_price": 46973, + "max_price": 480884, + "preferred_categories": [ + 5, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a8b" + }, + "reservations": [ + { + "user_id": 607, + "restaurant_id": 1645, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 607, + "restaurant_id": 2213 + }, + { + "user_id": 607, + "restaurant_id": 662 + }, + { + "user_id": 607, + "restaurant_id": 1465 + }, + { + "user_id": 607, + "restaurant_id": 1787 + } + ], + "updated_at": "2025-03-30T11:32:21.369000" + }, + { + "user_info": { + "user_id": 608, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 608, + "min_price": 197788, + "max_price": 319510, + "preferred_categories": [ + 1, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a8c" + }, + "reservations": [ + { + "user_id": 608, + "restaurant_id": 800, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 608, + "restaurant_id": 699, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 608, + "restaurant_id": 1796, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 608, + "restaurant_id": 2114, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:21.373000" + }, + { + "user_info": { + "user_id": 609, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 609, + "min_price": 74309, + "max_price": 311293, + "preferred_categories": [ + 3, + 4, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a8d" + }, + "reservations": [ + { + "user_id": 609, + "restaurant_id": 1338, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 609, + "restaurant_id": 94, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 609, + "restaurant_id": 2236 + }, + { + "user_id": 609, + "restaurant_id": 1383 + }, + { + "user_id": 609, + "restaurant_id": 2203 + }, + { + "user_id": 609, + "restaurant_id": 1169 + }, + { + "user_id": 609, + "restaurant_id": 530 + }, + { + "user_id": 609, + "restaurant_id": 971 + }, + { + "user_id": 609, + "restaurant_id": 2100 + } + ], + "updated_at": "2025-03-30T11:32:21.377000" + }, + { + "user_info": { + "user_id": 610, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 610, + "min_price": 181443, + "max_price": 393323, + "preferred_categories": [ + 3, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a8e" + }, + "reservations": [ + { + "user_id": 610, + "restaurant_id": 1940, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 610, + "restaurant_id": 1656, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 610, + "restaurant_id": 1898 + }, + { + "user_id": 610, + "restaurant_id": 550 + }, + { + "user_id": 610, + "restaurant_id": 943 + }, + { + "user_id": 610, + "restaurant_id": 345 + }, + { + "user_id": 610, + "restaurant_id": 52 + } + ], + "updated_at": "2025-03-30T11:32:21.380000" + }, + { + "user_info": { + "user_id": 611, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 611, + "min_price": 145582, + "max_price": 311966, + "preferred_categories": [ + 1, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a8f" + }, + "reservations": [ + { + "user_id": 611, + "restaurant_id": 136, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 611, + "restaurant_id": 1835, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 611, + "restaurant_id": 164 + }, + { + "user_id": 611, + "restaurant_id": 979 + }, + { + "user_id": 611, + "restaurant_id": 240 + } + ], + "updated_at": "2025-03-30T11:32:21.383000" + }, + { + "user_info": { + "user_id": 612, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 612, + "min_price": 90709, + "max_price": 406543, + "preferred_categories": [ + 5, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a90" + }, + "reservations": [ + { + "user_id": 612, + "restaurant_id": 1515, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 612, + "restaurant_id": 1313, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 612, + "restaurant_id": 2070, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 612, + "restaurant_id": 2152 + }, + { + "user_id": 612, + "restaurant_id": 2054 + }, + { + "user_id": 612, + "restaurant_id": 908 + } + ], + "updated_at": "2025-03-30T11:32:21.386000" + }, + { + "user_info": { + "user_id": 613, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 613, + "min_price": 155861, + "max_price": 302751, + "preferred_categories": [ + 2, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a91" + }, + "reservations": [ + { + "user_id": 613, + "restaurant_id": 1500, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 613, + "restaurant_id": 115, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 613, + "restaurant_id": 2076, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 613, + "restaurant_id": 1199, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 613, + "restaurant_id": 1026, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 613, + "restaurant_id": 1197, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 613, + "restaurant_id": 94 + }, + { + "user_id": 613, + "restaurant_id": 1073 + }, + { + "user_id": 613, + "restaurant_id": 830 + }, + { + "user_id": 613, + "restaurant_id": 1592 + }, + { + "user_id": 613, + "restaurant_id": 1651 + } + ], + "updated_at": "2025-03-30T11:32:21.388000" + }, + { + "user_info": { + "user_id": 614, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 614, + "min_price": 47241, + "max_price": 207585, + "preferred_categories": [ + 6, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a92" + }, + "reservations": [ + { + "user_id": 614, + "restaurant_id": 228, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 614, + "restaurant_id": 380, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 614, + "restaurant_id": 1855 + }, + { + "user_id": 614, + "restaurant_id": 246 + } + ], + "updated_at": "2025-03-30T11:32:21.391000" + }, + { + "user_info": { + "user_id": 615, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 615, + "min_price": 21504, + "max_price": 275659, + "preferred_categories": [ + 4, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a93" + }, + "reservations": [ + { + "user_id": 615, + "restaurant_id": 1858, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 615, + "restaurant_id": 597, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 615, + "restaurant_id": 1052, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 615, + "restaurant_id": 381, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 615, + "restaurant_id": 1369, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 615, + "restaurant_id": 95 + }, + { + "user_id": 615, + "restaurant_id": 1636 + }, + { + "user_id": 615, + "restaurant_id": 1977 + }, + { + "user_id": 615, + "restaurant_id": 1141 + }, + { + "user_id": 615, + "restaurant_id": 922 + } + ], + "updated_at": "2025-03-30T11:32:21.399000" + }, + { + "user_info": { + "user_id": 616, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 616, + "min_price": 28337, + "max_price": 406861, + "preferred_categories": [ + 5, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a94" + }, + "reservations": [ + { + "user_id": 616, + "restaurant_id": 1476, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:21.412000" + }, + { + "user_info": { + "user_id": 617, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 617, + "min_price": 158731, + "max_price": 362463, + "preferred_categories": [ + 5, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a95" + }, + "reservations": [ + { + "user_id": 617, + "restaurant_id": 243, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 617, + "restaurant_id": 1409, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 617, + "restaurant_id": 1375, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 617, + "restaurant_id": 2220 + }, + { + "user_id": 617, + "restaurant_id": 2144 + }, + { + "user_id": 617, + "restaurant_id": 480 + }, + { + "user_id": 617, + "restaurant_id": 1861 + } + ], + "updated_at": "2025-03-30T11:32:21.416000" + }, + { + "user_info": { + "user_id": 618, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 618, + "min_price": 30753, + "max_price": 411510, + "preferred_categories": [ + 6, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a96" + }, + "reservations": [ + { + "user_id": 618, + "restaurant_id": 666, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 618, + "restaurant_id": 1446, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 618, + "restaurant_id": 883 + }, + { + "user_id": 618, + "restaurant_id": 821 + }, + { + "user_id": 618, + "restaurant_id": 2108 + } + ], + "updated_at": "2025-03-30T11:32:21.420000" + }, + { + "user_info": { + "user_id": 619, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 619, + "min_price": 143009, + "max_price": 485980, + "preferred_categories": [ + 5, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a97" + }, + "reservations": [ + { + "user_id": 619, + "restaurant_id": 441, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:21.424000" + }, + { + "user_info": { + "user_id": 620, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 620, + "min_price": 110716, + "max_price": 220964, + "preferred_categories": [ + 2, + 4, + 7 + ], + "_id": "67e92bc2785211cbd5ff9a98" + }, + "reservations": [ + { + "user_id": 620, + "restaurant_id": 2138, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 620, + "restaurant_id": 1429 + }, + { + "user_id": 620, + "restaurant_id": 137 + }, + { + "user_id": 620, + "restaurant_id": 2026 + }, + { + "user_id": 620, + "restaurant_id": 71 + }, + { + "user_id": 620, + "restaurant_id": 1433 + } + ], + "updated_at": "2025-03-30T11:32:21.428000" + }, + { + "user_info": { + "user_id": 621, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 621, + "min_price": 151131, + "max_price": 315555, + "preferred_categories": [ + 5, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a99" + }, + "reservations": [], + "likes": [ + { + "user_id": 621, + "restaurant_id": 876 + } + ], + "updated_at": "2025-03-30T11:32:21.432000" + }, + { + "user_info": { + "user_id": 622, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 622, + "min_price": 68516, + "max_price": 471157, + "preferred_categories": [ + 1, + 3, + 5 + ], + "_id": "67e92bc2785211cbd5ff9a9a" + }, + "reservations": [ + { + "user_id": 622, + "restaurant_id": 1797, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 622, + "restaurant_id": 1426, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 622, + "restaurant_id": 893, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 622, + "restaurant_id": 1954, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 622, + "restaurant_id": 1462 + }, + { + "user_id": 622, + "restaurant_id": 1068 + }, + { + "user_id": 622, + "restaurant_id": 468 + }, + { + "user_id": 622, + "restaurant_id": 21 + }, + { + "user_id": 622, + "restaurant_id": 1169 + }, + { + "user_id": 622, + "restaurant_id": 2133 + }, + { + "user_id": 622, + "restaurant_id": 1320 + } + ], + "updated_at": "2025-03-30T11:32:21.435000" + }, + { + "user_info": { + "user_id": 623, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 623, + "min_price": 61140, + "max_price": 406859, + "preferred_categories": [ + 2, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a9b" + }, + "reservations": [ + { + "user_id": 623, + "restaurant_id": 286, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 623, + "restaurant_id": 2226, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 623, + "restaurant_id": 1747, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 623, + "restaurant_id": 1396, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 623, + "restaurant_id": 208 + } + ], + "updated_at": "2025-03-30T11:32:21.438000" + }, + { + "user_info": { + "user_id": 624, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 624, + "min_price": 152582, + "max_price": 464367, + "preferred_categories": [ + 5, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9a9c" + }, + "reservations": [ + { + "user_id": 624, + "restaurant_id": 1936, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 624, + "restaurant_id": 1280, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 624, + "restaurant_id": 1306, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 624, + "restaurant_id": 1445 + } + ], + "updated_at": "2025-03-30T11:32:21.441000" + }, + { + "user_info": { + "user_id": 625, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 625, + "min_price": 71607, + "max_price": 384728, + "preferred_categories": [ + 2, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9a9d" + }, + "reservations": [ + { + "user_id": 625, + "restaurant_id": 2046, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 625, + "restaurant_id": 701, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 625, + "restaurant_id": 1109, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 625, + "restaurant_id": 1936, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 625, + "restaurant_id": 731, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 625, + "restaurant_id": 1380 + }, + { + "user_id": 625, + "restaurant_id": 937 + } + ], + "updated_at": "2025-03-30T11:32:21.445000" + }, + { + "user_info": { + "user_id": 626, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 626, + "min_price": 43642, + "max_price": 442739, + "preferred_categories": [ + 2, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9a9e" + }, + "reservations": [ + { + "user_id": 626, + "restaurant_id": 1800, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 626, + "restaurant_id": 37, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 626, + "restaurant_id": 2220, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 626, + "restaurant_id": 1823, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 626, + "restaurant_id": 1543, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 626, + "restaurant_id": 900 + } + ], + "updated_at": "2025-03-30T11:32:21.449000" + }, + { + "user_info": { + "user_id": 627, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 627, + "min_price": 39891, + "max_price": 345081, + "preferred_categories": [ + 8, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9a9f" + }, + "reservations": [ + { + "user_id": 627, + "restaurant_id": 769, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 627, + "restaurant_id": 2029, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 627, + "restaurant_id": 2167, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 627, + "restaurant_id": 1607, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 627, + "restaurant_id": 1111 + } + ], + "updated_at": "2025-03-30T11:32:21.453000" + }, + { + "user_info": { + "user_id": 628, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 628, + "min_price": 151586, + "max_price": 356882, + "preferred_categories": [ + 9, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9aa0" + }, + "reservations": [ + { + "user_id": 628, + "restaurant_id": 583, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 628, + "restaurant_id": 517, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 628, + "restaurant_id": 470, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 628, + "restaurant_id": 101, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 628, + "restaurant_id": 1630 + }, + { + "user_id": 628, + "restaurant_id": 205 + }, + { + "user_id": 628, + "restaurant_id": 1610 + }, + { + "user_id": 628, + "restaurant_id": 552 + }, + { + "user_id": 628, + "restaurant_id": 1976 + } + ], + "updated_at": "2025-03-30T11:32:21.456000" + }, + { + "user_info": { + "user_id": 629, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 629, + "min_price": 51296, + "max_price": 467710, + "preferred_categories": [ + 5, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9aa1" + }, + "reservations": [ + { + "user_id": 629, + "restaurant_id": 612, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 629, + "restaurant_id": 2197, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 629, + "restaurant_id": 23, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 629, + "restaurant_id": 147 + }, + { + "user_id": 629, + "restaurant_id": 556 + }, + { + "user_id": 629, + "restaurant_id": 1381 + } + ], + "updated_at": "2025-03-30T11:32:21.461000" + }, + { + "user_info": { + "user_id": 630, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 630, + "min_price": 133375, + "max_price": 320831, + "preferred_categories": [ + 7, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9aa2" + }, + "reservations": [ + { + "user_id": 630, + "restaurant_id": 1350, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 630, + "restaurant_id": 222, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 630, + "restaurant_id": 245, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 630, + "restaurant_id": 1939, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 630, + "restaurant_id": 1111 + }, + { + "user_id": 630, + "restaurant_id": 349 + }, + { + "user_id": 630, + "restaurant_id": 402 + }, + { + "user_id": 630, + "restaurant_id": 1807 + } + ], + "updated_at": "2025-03-30T11:32:21.465000" + }, + { + "user_info": { + "user_id": 631, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 631, + "min_price": 98064, + "max_price": 277376, + "preferred_categories": [ + 8, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9aa3" + }, + "reservations": [ + { + "user_id": 631, + "restaurant_id": 57, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 631, + "restaurant_id": 2200, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 631, + "restaurant_id": 2095, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 631, + "restaurant_id": 1641, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 631, + "restaurant_id": 1185, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 631, + "restaurant_id": 642 + } + ], + "updated_at": "2025-03-30T11:32:21.469000" + }, + { + "user_info": { + "user_id": 632, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 632, + "min_price": 92259, + "max_price": 336337, + "preferred_categories": [ + 4, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9aa4" + }, + "reservations": [ + { + "user_id": 632, + "restaurant_id": 1142, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 632, + "restaurant_id": 336, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 632, + "restaurant_id": 867, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 632, + "restaurant_id": 2230 + }, + { + "user_id": 632, + "restaurant_id": 1636 + }, + { + "user_id": 632, + "restaurant_id": 786 + }, + { + "user_id": 632, + "restaurant_id": 989 + }, + { + "user_id": 632, + "restaurant_id": 1434 + }, + { + "user_id": 632, + "restaurant_id": 458 + } + ], + "updated_at": "2025-03-30T11:32:21.472000" + }, + { + "user_info": { + "user_id": 633, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 633, + "min_price": 12925, + "max_price": 205914, + "preferred_categories": [ + 2, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9aa5" + }, + "reservations": [ + { + "user_id": 633, + "restaurant_id": 767, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 633, + "restaurant_id": 1756, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 633, + "restaurant_id": 268 + } + ], + "updated_at": "2025-03-30T11:32:21.475000" + }, + { + "user_info": { + "user_id": 634, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 634, + "min_price": 180467, + "max_price": 334891, + "preferred_categories": [ + 2, + 3, + 4 + ], + "_id": "67e92bc2785211cbd5ff9aa6" + }, + "reservations": [ + { + "user_id": 634, + "restaurant_id": 1797, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:21.486000" + }, + { + "user_info": { + "user_id": 635, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 635, + "min_price": 93423, + "max_price": 293350, + "preferred_categories": [ + 1, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9aa7" + }, + "reservations": [ + { + "user_id": 635, + "restaurant_id": 218, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 635, + "restaurant_id": 2167, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 635, + "restaurant_id": 747, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 635, + "restaurant_id": 1648, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 635, + "restaurant_id": 2012 + } + ], + "updated_at": "2025-03-30T11:32:21.490000" + }, + { + "user_info": { + "user_id": 636, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 636, + "min_price": 102234, + "max_price": 248133, + "preferred_categories": [ + 4, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9aa8" + }, + "reservations": [ + { + "user_id": 636, + "restaurant_id": 1107, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 636, + "restaurant_id": 601, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 636, + "restaurant_id": 1430, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 636, + "restaurant_id": 661, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 636, + "restaurant_id": 933, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 636, + "restaurant_id": 645, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 636, + "restaurant_id": 965, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 636, + "restaurant_id": 2046 + } + ], + "updated_at": "2025-03-30T11:32:21.498000" + }, + { + "user_info": { + "user_id": 637, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 637, + "min_price": 66610, + "max_price": 463279, + "preferred_categories": [ + 6, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9aa9" + }, + "reservations": [ + { + "user_id": 637, + "restaurant_id": 1415, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 637, + "restaurant_id": 167, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 637, + "restaurant_id": 1724 + }, + { + "user_id": 637, + "restaurant_id": 1937 + } + ], + "updated_at": "2025-03-30T11:32:21.501000" + }, + { + "user_info": { + "user_id": 638, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 638, + "min_price": 144563, + "max_price": 233225, + "preferred_categories": [ + 5, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9aaa" + }, + "reservations": [ + { + "user_id": 638, + "restaurant_id": 1101, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 638, + "restaurant_id": 312, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 638, + "restaurant_id": 199 + }, + { + "user_id": 638, + "restaurant_id": 1716 + }, + { + "user_id": 638, + "restaurant_id": 42 + }, + { + "user_id": 638, + "restaurant_id": 919 + }, + { + "user_id": 638, + "restaurant_id": 108 + }, + { + "user_id": 638, + "restaurant_id": 363 + } + ], + "updated_at": "2025-03-30T11:32:21.509000" + }, + { + "user_info": { + "user_id": 639, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 639, + "min_price": 24214, + "max_price": 480066, + "preferred_categories": [ + 1, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff9aab" + }, + "reservations": [ + { + "user_id": 639, + "restaurant_id": 1568, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 639, + "restaurant_id": 1352 + }, + { + "user_id": 639, + "restaurant_id": 2159 + }, + { + "user_id": 639, + "restaurant_id": 238 + } + ], + "updated_at": "2025-03-30T11:32:21.518000" + }, + { + "user_info": { + "user_id": 640, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 640, + "min_price": 68870, + "max_price": 298201, + "preferred_categories": [ + 2, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9aac" + }, + "reservations": [ + { + "user_id": 640, + "restaurant_id": 1158, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 640, + "restaurant_id": 1113 + }, + { + "user_id": 640, + "restaurant_id": 124 + }, + { + "user_id": 640, + "restaurant_id": 1853 + }, + { + "user_id": 640, + "restaurant_id": 1181 + } + ], + "updated_at": "2025-03-30T11:32:21.525000" + }, + { + "user_info": { + "user_id": 641, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 641, + "min_price": 22103, + "max_price": 316673, + "preferred_categories": [ + 6, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9aad" + }, + "reservations": [ + { + "user_id": 641, + "restaurant_id": 435, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 641, + "restaurant_id": 1396, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 641, + "restaurant_id": 158, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 641, + "restaurant_id": 514 + }, + { + "user_id": 641, + "restaurant_id": 1890 + }, + { + "user_id": 641, + "restaurant_id": 1479 + }, + { + "user_id": 641, + "restaurant_id": 1029 + }, + { + "user_id": 641, + "restaurant_id": 1022 + }, + { + "user_id": 641, + "restaurant_id": 1975 + } + ], + "updated_at": "2025-03-30T11:32:21.539000" + }, + { + "user_info": { + "user_id": 642, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 642, + "min_price": 113156, + "max_price": 435702, + "preferred_categories": [ + 1, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9aae" + }, + "reservations": [ + { + "user_id": 642, + "restaurant_id": 722, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 642, + "restaurant_id": 110, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 642, + "restaurant_id": 1822, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 642, + "restaurant_id": 662, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 642, + "restaurant_id": 1706 + }, + { + "user_id": 642, + "restaurant_id": 787 + }, + { + "user_id": 642, + "restaurant_id": 1310 + }, + { + "user_id": 642, + "restaurant_id": 1529 + } + ], + "updated_at": "2025-03-30T11:32:21.542000" + }, + { + "user_info": { + "user_id": 643, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 643, + "min_price": 131574, + "max_price": 382302, + "preferred_categories": [ + 4, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff9aaf" + }, + "reservations": [ + { + "user_id": 643, + "restaurant_id": 538, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 643, + "restaurant_id": 831, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 643, + "restaurant_id": 422, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 643, + "restaurant_id": 1744, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 643, + "restaurant_id": 1836, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 643, + "restaurant_id": 121, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 643, + "restaurant_id": 1741, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 643, + "restaurant_id": 1245, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 643, + "restaurant_id": 1472 + }, + { + "user_id": 643, + "restaurant_id": 475 + }, + { + "user_id": 643, + "restaurant_id": 635 + }, + { + "user_id": 643, + "restaurant_id": 150 + } + ], + "updated_at": "2025-03-30T11:32:21.545000" + }, + { + "user_info": { + "user_id": 644, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 644, + "min_price": 103934, + "max_price": 308676, + "preferred_categories": [ + 1, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9ab0" + }, + "reservations": [ + { + "user_id": 644, + "restaurant_id": 2188, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 644, + "restaurant_id": 1443 + }, + { + "user_id": 644, + "restaurant_id": 1166 + } + ], + "updated_at": "2025-03-30T11:32:21.548000" + }, + { + "user_info": { + "user_id": 645, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 645, + "min_price": 88807, + "max_price": 424223, + "preferred_categories": [ + 2, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9ab1" + }, + "reservations": [ + { + "user_id": 645, + "restaurant_id": 1642, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 645, + "restaurant_id": 2186, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:21.551000" + }, + { + "user_info": { + "user_id": 646, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 646, + "min_price": 44269, + "max_price": 447228, + "preferred_categories": [ + 2, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9ab2" + }, + "reservations": [ + { + "user_id": 646, + "restaurant_id": 2059, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 646, + "restaurant_id": 1102, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 646, + "restaurant_id": 1046, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 646, + "restaurant_id": 55, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 646, + "restaurant_id": 2137, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 646, + "restaurant_id": 2144 + }, + { + "user_id": 646, + "restaurant_id": 1942 + }, + { + "user_id": 646, + "restaurant_id": 1936 + } + ], + "updated_at": "2025-03-30T11:32:21.553000" + }, + { + "user_info": { + "user_id": 647, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 647, + "min_price": 55032, + "max_price": 277880, + "preferred_categories": [ + 1, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9ab3" + }, + "reservations": [ + { + "user_id": 647, + "restaurant_id": 891, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 647, + "restaurant_id": 1006, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 647, + "restaurant_id": 297, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 647, + "restaurant_id": 910 + }, + { + "user_id": 647, + "restaurant_id": 2177 + }, + { + "user_id": 647, + "restaurant_id": 2184 + }, + { + "user_id": 647, + "restaurant_id": 212 + } + ], + "updated_at": "2025-03-30T11:32:21.559000" + }, + { + "user_info": { + "user_id": 648, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 648, + "min_price": 158303, + "max_price": 222776, + "preferred_categories": [ + 6, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9ab4" + }, + "reservations": [ + { + "user_id": 648, + "restaurant_id": 919, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 648, + "restaurant_id": 263, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 648, + "restaurant_id": 272, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 648, + "restaurant_id": 1678 + }, + { + "user_id": 648, + "restaurant_id": 1229 + }, + { + "user_id": 648, + "restaurant_id": 160 + }, + { + "user_id": 648, + "restaurant_id": 1279 + }, + { + "user_id": 648, + "restaurant_id": 2070 + } + ], + "updated_at": "2025-03-30T11:32:21.562000" + }, + { + "user_info": { + "user_id": 649, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 649, + "min_price": 61872, + "max_price": 472568, + "preferred_categories": [ + 1, + 6, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ab5" + }, + "reservations": [ + { + "user_id": 649, + "restaurant_id": 2064, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 649, + "restaurant_id": 613, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 649, + "restaurant_id": 1165, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 649, + "restaurant_id": 886 + }, + { + "user_id": 649, + "restaurant_id": 1899 + }, + { + "user_id": 649, + "restaurant_id": 1795 + } + ], + "updated_at": "2025-03-30T11:32:21.564000" + }, + { + "user_info": { + "user_id": 650, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 650, + "min_price": 106534, + "max_price": 326433, + "preferred_categories": [ + 1, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ab6" + }, + "reservations": [ + { + "user_id": 650, + "restaurant_id": 1680, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 650, + "restaurant_id": 2197, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 650, + "restaurant_id": 1730 + }, + { + "user_id": 650, + "restaurant_id": 1600 + }, + { + "user_id": 650, + "restaurant_id": 1624 + } + ], + "updated_at": "2025-03-30T11:32:21.567000" + }, + { + "user_info": { + "user_id": 651, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 651, + "min_price": 90419, + "max_price": 339979, + "preferred_categories": [ + 2, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff9ab7" + }, + "reservations": [ + { + "user_id": 651, + "restaurant_id": 1037, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 651, + "restaurant_id": 553 + }, + { + "user_id": 651, + "restaurant_id": 1721 + }, + { + "user_id": 651, + "restaurant_id": 1264 + } + ], + "updated_at": "2025-03-30T11:32:21.570000" + }, + { + "user_info": { + "user_id": 652, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 652, + "min_price": 137728, + "max_price": 444103, + "preferred_categories": [ + 3, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff9ab8" + }, + "reservations": [ + { + "user_id": 652, + "restaurant_id": 657, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 652, + "restaurant_id": 2036, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 652, + "restaurant_id": 1362 + } + ], + "updated_at": "2025-03-30T11:32:21.573000" + }, + { + "user_info": { + "user_id": 653, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 653, + "min_price": 109824, + "max_price": 453724, + "preferred_categories": [ + 4, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ab9" + }, + "reservations": [ + { + "user_id": 653, + "restaurant_id": 1703, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 653, + "restaurant_id": 743, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 653, + "restaurant_id": 1511, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 653, + "restaurant_id": 1249 + }, + { + "user_id": 653, + "restaurant_id": 501 + }, + { + "user_id": 653, + "restaurant_id": 459 + }, + { + "user_id": 653, + "restaurant_id": 2049 + } + ], + "updated_at": "2025-03-30T11:32:21.577000" + }, + { + "user_info": { + "user_id": 654, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 654, + "min_price": 127989, + "max_price": 487460, + "preferred_categories": [ + 1, + 2, + 8 + ], + "_id": "67e92bc2785211cbd5ff9aba" + }, + "reservations": [ + { + "user_id": 654, + "restaurant_id": 1891, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 654, + "restaurant_id": 1617, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 654, + "restaurant_id": 47 + }, + { + "user_id": 654, + "restaurant_id": 512 + }, + { + "user_id": 654, + "restaurant_id": 459 + }, + { + "user_id": 654, + "restaurant_id": 1412 + } + ], + "updated_at": "2025-03-30T11:32:21.580000" + }, + { + "user_info": { + "user_id": 655, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 655, + "min_price": 182886, + "max_price": 483102, + "preferred_categories": [ + 2, + 4, + 11 + ], + "_id": "67e92bc2785211cbd5ff9abb" + }, + "reservations": [ + { + "user_id": 655, + "restaurant_id": 325, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 655, + "restaurant_id": 132, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 655, + "restaurant_id": 1252 + }, + { + "user_id": 655, + "restaurant_id": 16 + }, + { + "user_id": 655, + "restaurant_id": 350 + }, + { + "user_id": 655, + "restaurant_id": 1535 + }, + { + "user_id": 655, + "restaurant_id": 521 + } + ], + "updated_at": "2025-03-30T11:32:21.583000" + }, + { + "user_info": { + "user_id": 656, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 656, + "min_price": 127895, + "max_price": 249702, + "preferred_categories": [ + 7, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9abc" + }, + "reservations": [ + { + "user_id": 656, + "restaurant_id": 798, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 656, + "restaurant_id": 1225, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 656, + "restaurant_id": 81, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 656, + "restaurant_id": 2187 + }, + { + "user_id": 656, + "restaurant_id": 2136 + }, + { + "user_id": 656, + "restaurant_id": 1248 + } + ], + "updated_at": "2025-03-30T11:32:21.587000" + }, + { + "user_info": { + "user_id": 657, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 657, + "min_price": 61869, + "max_price": 474378, + "preferred_categories": [ + 6, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9abd" + }, + "reservations": [ + { + "user_id": 657, + "restaurant_id": 263, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 657, + "restaurant_id": 2048 + }, + { + "user_id": 657, + "restaurant_id": 1653 + }, + { + "user_id": 657, + "restaurant_id": 1528 + }, + { + "user_id": 657, + "restaurant_id": 689 + }, + { + "user_id": 657, + "restaurant_id": 249 + }, + { + "user_id": 657, + "restaurant_id": 1143 + } + ], + "updated_at": "2025-03-30T11:32:21.589000" + }, + { + "user_info": { + "user_id": 658, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 658, + "min_price": 145831, + "max_price": 362653, + "preferred_categories": [ + 8, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9abe" + }, + "reservations": [ + { + "user_id": 658, + "restaurant_id": 214, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 658, + "restaurant_id": 2135 + }, + { + "user_id": 658, + "restaurant_id": 365 + }, + { + "user_id": 658, + "restaurant_id": 1725 + } + ], + "updated_at": "2025-03-30T11:32:21.594000" + }, + { + "user_info": { + "user_id": 659, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 659, + "min_price": 71649, + "max_price": 370714, + "preferred_categories": [ + 6, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9abf" + }, + "reservations": [ + { + "user_id": 659, + "restaurant_id": 112, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 659, + "restaurant_id": 931, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 659, + "restaurant_id": 592, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 659, + "restaurant_id": 1508, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 659, + "restaurant_id": 1792 + }, + { + "user_id": 659, + "restaurant_id": 1742 + }, + { + "user_id": 659, + "restaurant_id": 978 + } + ], + "updated_at": "2025-03-30T11:32:21.598000" + }, + { + "user_info": { + "user_id": 660, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 660, + "min_price": 28713, + "max_price": 258959, + "preferred_categories": [ + 2, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9ac0" + }, + "reservations": [ + { + "user_id": 660, + "restaurant_id": 325, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 660, + "restaurant_id": 1562, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 660, + "restaurant_id": 956, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 660, + "restaurant_id": 1090 + }, + { + "user_id": 660, + "restaurant_id": 610 + }, + { + "user_id": 660, + "restaurant_id": 1285 + } + ], + "updated_at": "2025-03-30T11:32:21.601000" + }, + { + "user_info": { + "user_id": 661, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 661, + "min_price": 24301, + "max_price": 405274, + "preferred_categories": [ + 7, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9ac1" + }, + "reservations": [ + { + "user_id": 661, + "restaurant_id": 378, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 661, + "restaurant_id": 1923 + }, + { + "user_id": 661, + "restaurant_id": 1445 + }, + { + "user_id": 661, + "restaurant_id": 702 + } + ], + "updated_at": "2025-03-30T11:32:21.603000" + }, + { + "user_info": { + "user_id": 662, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 662, + "min_price": 99513, + "max_price": 220897, + "preferred_categories": [ + 1, + 3, + 4 + ], + "_id": "67e92bc2785211cbd5ff9ac2" + }, + "reservations": [ + { + "user_id": 662, + "restaurant_id": 541, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 662, + "restaurant_id": 912, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 662, + "restaurant_id": 524 + }, + { + "user_id": 662, + "restaurant_id": 2231 + }, + { + "user_id": 662, + "restaurant_id": 306 + } + ], + "updated_at": "2025-03-30T11:32:21.606000" + }, + { + "user_info": { + "user_id": 663, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 663, + "min_price": 156314, + "max_price": 454203, + "preferred_categories": [ + 9, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ac3" + }, + "reservations": [ + { + "user_id": 663, + "restaurant_id": 2068, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 663, + "restaurant_id": 69 + }, + { + "user_id": 663, + "restaurant_id": 635 + } + ], + "updated_at": "2025-03-30T11:32:21.610000" + }, + { + "user_info": { + "user_id": 664, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 664, + "min_price": 164531, + "max_price": 462761, + "preferred_categories": [ + 4, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9ac4" + }, + "reservations": [ + { + "user_id": 664, + "restaurant_id": 1355, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 664, + "restaurant_id": 1271, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 664, + "restaurant_id": 2212, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 664, + "restaurant_id": 2133 + }, + { + "user_id": 664, + "restaurant_id": 653 + }, + { + "user_id": 664, + "restaurant_id": 1647 + }, + { + "user_id": 664, + "restaurant_id": 1683 + } + ], + "updated_at": "2025-03-30T11:32:21.615000" + }, + { + "user_info": { + "user_id": 665, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 665, + "min_price": 59883, + "max_price": 325579, + "preferred_categories": [ + 6, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9ac5" + }, + "reservations": [ + { + "user_id": 665, + "restaurant_id": 1051, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 665, + "restaurant_id": 30, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 665, + "restaurant_id": 1588 + }, + { + "user_id": 665, + "restaurant_id": 334 + }, + { + "user_id": 665, + "restaurant_id": 891 + }, + { + "user_id": 665, + "restaurant_id": 493 + }, + { + "user_id": 665, + "restaurant_id": 2074 + } + ], + "updated_at": "2025-03-30T11:32:21.618000" + }, + { + "user_info": { + "user_id": 666, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 666, + "min_price": 154694, + "max_price": 473233, + "preferred_categories": [ + 3, + 4, + 9 + ], + "_id": "67e92bc2785211cbd5ff9ac6" + }, + "reservations": [ + { + "user_id": 666, + "restaurant_id": 1384, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 666, + "restaurant_id": 545, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 666, + "restaurant_id": 1332, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 666, + "restaurant_id": 248, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 666, + "restaurant_id": 734 + }, + { + "user_id": 666, + "restaurant_id": 973 + } + ], + "updated_at": "2025-03-30T11:32:21.621000" + }, + { + "user_info": { + "user_id": 667, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 667, + "min_price": 199716, + "max_price": 420925, + "preferred_categories": [ + 1, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9ac7" + }, + "reservations": [ + { + "user_id": 667, + "restaurant_id": 2206, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 667, + "restaurant_id": 1985, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 667, + "restaurant_id": 2131, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:21.624000" + }, + { + "user_info": { + "user_id": 668, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 668, + "min_price": 106467, + "max_price": 200999, + "preferred_categories": [ + 2, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff9ac8" + }, + "reservations": [ + { + "user_id": 668, + "restaurant_id": 699, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 668, + "restaurant_id": 615, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 668, + "restaurant_id": 1478, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 668, + "restaurant_id": 1196 + }, + { + "user_id": 668, + "restaurant_id": 9 + } + ], + "updated_at": "2025-03-30T11:32:21.627000" + }, + { + "user_info": { + "user_id": 669, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 669, + "min_price": 124949, + "max_price": 251803, + "preferred_categories": [ + 1, + 2, + 6 + ], + "_id": "67e92bc2785211cbd5ff9ac9" + }, + "reservations": [ + { + "user_id": 669, + "restaurant_id": 111, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 669, + "restaurant_id": 637, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 669, + "restaurant_id": 2016, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 669, + "restaurant_id": 819 + }, + { + "user_id": 669, + "restaurant_id": 258 + }, + { + "user_id": 669, + "restaurant_id": 520 + } + ], + "updated_at": "2025-03-30T11:32:21.630000" + }, + { + "user_info": { + "user_id": 670, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 670, + "min_price": 29863, + "max_price": 498285, + "preferred_categories": [ + 2, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9aca" + }, + "reservations": [ + { + "user_id": 670, + "restaurant_id": 1585, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 670, + "restaurant_id": 1719, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 670, + "restaurant_id": 165, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 670, + "restaurant_id": 309 + }, + { + "user_id": 670, + "restaurant_id": 1449 + }, + { + "user_id": 670, + "restaurant_id": 2145 + }, + { + "user_id": 670, + "restaurant_id": 1619 + } + ], + "updated_at": "2025-03-30T11:32:21.633000" + }, + { + "user_info": { + "user_id": 671, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 671, + "min_price": 122418, + "max_price": 262904, + "preferred_categories": [ + 2, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9acb" + }, + "reservations": [ + { + "user_id": 671, + "restaurant_id": 938, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 671, + "restaurant_id": 1441, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 671, + "restaurant_id": 2121, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 671, + "restaurant_id": 1630, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 671, + "restaurant_id": 2150 + } + ], + "updated_at": "2025-03-30T11:32:21.636000" + }, + { + "user_info": { + "user_id": 672, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 672, + "min_price": 59595, + "max_price": 422921, + "preferred_categories": [ + 6, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9acc" + }, + "reservations": [ + { + "user_id": 672, + "restaurant_id": 125, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 672, + "restaurant_id": 2042 + } + ], + "updated_at": "2025-03-30T11:32:21.638000" + }, + { + "user_info": { + "user_id": 673, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 673, + "min_price": 177529, + "max_price": 420628, + "preferred_categories": [ + 1, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9acd" + }, + "reservations": [ + { + "user_id": 673, + "restaurant_id": 1552, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 673, + "restaurant_id": 1822 + }, + { + "user_id": 673, + "restaurant_id": 200 + } + ], + "updated_at": "2025-03-30T11:32:21.642000" + }, + { + "user_info": { + "user_id": 674, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 674, + "min_price": 104702, + "max_price": 324917, + "preferred_categories": [ + 4, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9ace" + }, + "reservations": [ + { + "user_id": 674, + "restaurant_id": 441, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 674, + "restaurant_id": 1804, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 674, + "restaurant_id": 784, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 674, + "restaurant_id": 1521 + }, + { + "user_id": 674, + "restaurant_id": 1357 + }, + { + "user_id": 674, + "restaurant_id": 76 + } + ], + "updated_at": "2025-03-30T11:32:21.645000" + }, + { + "user_info": { + "user_id": 675, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 675, + "min_price": 75453, + "max_price": 430855, + "preferred_categories": [ + 5, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9acf" + }, + "reservations": [ + { + "user_id": 675, + "restaurant_id": 1552, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 675, + "restaurant_id": 1493 + }, + { + "user_id": 675, + "restaurant_id": 1786 + }, + { + "user_id": 675, + "restaurant_id": 1347 + } + ], + "updated_at": "2025-03-30T11:32:21.651000" + }, + { + "user_info": { + "user_id": 676, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 676, + "min_price": 74778, + "max_price": 285582, + "preferred_categories": [ + 1, + 2, + 7 + ], + "_id": "67e92bc2785211cbd5ff9ad0" + }, + "reservations": [ + { + "user_id": 676, + "restaurant_id": 594, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 676, + "restaurant_id": 166, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 676, + "restaurant_id": 505, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 676, + "restaurant_id": 1908, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 676, + "restaurant_id": 1716 + } + ], + "updated_at": "2025-03-30T11:32:21.655000" + }, + { + "user_info": { + "user_id": 677, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 677, + "min_price": 49463, + "max_price": 496860, + "preferred_categories": [ + 2, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9ad1" + }, + "reservations": [ + { + "user_id": 677, + "restaurant_id": 614, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 677, + "restaurant_id": 1089, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 677, + "restaurant_id": 755, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 677, + "restaurant_id": 794, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:21.660000" + }, + { + "user_info": { + "user_id": 678, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 678, + "min_price": 187806, + "max_price": 423904, + "preferred_categories": [ + 2, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9ad2" + }, + "reservations": [ + { + "user_id": 678, + "restaurant_id": 907, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 678, + "restaurant_id": 1951, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 678, + "restaurant_id": 403, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 678, + "restaurant_id": 1273, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 678, + "restaurant_id": 879 + }, + { + "user_id": 678, + "restaurant_id": 55 + }, + { + "user_id": 678, + "restaurant_id": 1446 + } + ], + "updated_at": "2025-03-30T11:32:21.663000" + }, + { + "user_info": { + "user_id": 679, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 679, + "min_price": 36785, + "max_price": 204938, + "preferred_categories": [ + 1, + 3, + 4 + ], + "_id": "67e92bc2785211cbd5ff9ad3" + }, + "reservations": [ + { + "user_id": 679, + "restaurant_id": 535, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 679, + "restaurant_id": 1250, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 679, + "restaurant_id": 1224, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 679, + "restaurant_id": 400, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 679, + "restaurant_id": 1711 + } + ], + "updated_at": "2025-03-30T11:32:21.666000" + }, + { + "user_info": { + "user_id": 680, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 680, + "min_price": 196746, + "max_price": 375284, + "preferred_categories": [ + 5, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9ad4" + }, + "reservations": [ + { + "user_id": 680, + "restaurant_id": 1919, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 680, + "restaurant_id": 1301, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 680, + "restaurant_id": 342, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 680, + "restaurant_id": 2124 + }, + { + "user_id": 680, + "restaurant_id": 1531 + }, + { + "user_id": 680, + "restaurant_id": 1192 + } + ], + "updated_at": "2025-03-30T11:32:21.669000" + }, + { + "user_info": { + "user_id": 681, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 681, + "min_price": 29179, + "max_price": 244556, + "preferred_categories": [ + 5, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ad5" + }, + "reservations": [ + { + "user_id": 681, + "restaurant_id": 770, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 681, + "restaurant_id": 1619, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 681, + "restaurant_id": 998 + }, + { + "user_id": 681, + "restaurant_id": 1483 + } + ], + "updated_at": "2025-03-30T11:32:21.672000" + }, + { + "user_info": { + "user_id": 682, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 682, + "min_price": 127759, + "max_price": 229152, + "preferred_categories": [ + 7, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ad6" + }, + "reservations": [], + "likes": [ + { + "user_id": 682, + "restaurant_id": 618 + }, + { + "user_id": 682, + "restaurant_id": 1196 + }, + { + "user_id": 682, + "restaurant_id": 740 + }, + { + "user_id": 682, + "restaurant_id": 138 + } + ], + "updated_at": "2025-03-30T11:32:21.675000" + }, + { + "user_info": { + "user_id": 683, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 683, + "min_price": 64970, + "max_price": 361553, + "preferred_categories": [ + 3, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9ad7" + }, + "reservations": [ + { + "user_id": 683, + "restaurant_id": 851, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 683, + "restaurant_id": 695, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 683, + "restaurant_id": 1744, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 683, + "restaurant_id": 282 + }, + { + "user_id": 683, + "restaurant_id": 1750 + }, + { + "user_id": 683, + "restaurant_id": 1175 + } + ], + "updated_at": "2025-03-30T11:32:21.678000" + }, + { + "user_info": { + "user_id": 684, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 684, + "min_price": 113220, + "max_price": 271352, + "preferred_categories": [ + 3, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ad8" + }, + "reservations": [ + { + "user_id": 684, + "restaurant_id": 49, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 684, + "restaurant_id": 1889 + }, + { + "user_id": 684, + "restaurant_id": 1324 + }, + { + "user_id": 684, + "restaurant_id": 424 + } + ], + "updated_at": "2025-03-30T11:32:21.681000" + }, + { + "user_info": { + "user_id": 685, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 685, + "min_price": 74282, + "max_price": 295760, + "preferred_categories": [ + 1, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff9ad9" + }, + "reservations": [], + "likes": [ + { + "user_id": 685, + "restaurant_id": 1637 + }, + { + "user_id": 685, + "restaurant_id": 2013 + }, + { + "user_id": 685, + "restaurant_id": 1079 + } + ], + "updated_at": "2025-03-30T11:32:21.685000" + }, + { + "user_info": { + "user_id": 686, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 686, + "min_price": 33441, + "max_price": 318293, + "preferred_categories": [ + 7, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9ada" + }, + "reservations": [ + { + "user_id": 686, + "restaurant_id": 1004, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 686, + "restaurant_id": 2114, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 686, + "restaurant_id": 1998, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 686, + "restaurant_id": 2146, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 686, + "restaurant_id": 1752 + }, + { + "user_id": 686, + "restaurant_id": 1454 + }, + { + "user_id": 686, + "restaurant_id": 1720 + }, + { + "user_id": 686, + "restaurant_id": 1805 + } + ], + "updated_at": "2025-03-30T11:32:21.689000" + }, + { + "user_info": { + "user_id": 687, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 687, + "min_price": 40056, + "max_price": 383619, + "preferred_categories": [ + 3, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9adb" + }, + "reservations": [ + { + "user_id": 687, + "restaurant_id": 1675, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 687, + "restaurant_id": 1549, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 687, + "restaurant_id": 1033, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 687, + "restaurant_id": 596, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 687, + "restaurant_id": 280, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 687, + "restaurant_id": 1288 + } + ], + "updated_at": "2025-03-30T11:32:21.692000" + }, + { + "user_info": { + "user_id": 688, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 688, + "min_price": 136938, + "max_price": 314795, + "preferred_categories": [ + 5, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9adc" + }, + "reservations": [ + { + "user_id": 688, + "restaurant_id": 650, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 688, + "restaurant_id": 549, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 688, + "restaurant_id": 1714, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 688, + "restaurant_id": 941, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 688, + "restaurant_id": 1653, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 688, + "restaurant_id": 1932 + } + ], + "updated_at": "2025-03-30T11:32:21.697000" + }, + { + "user_info": { + "user_id": 689, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 689, + "min_price": 189564, + "max_price": 478514, + "preferred_categories": [ + 4, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff9add" + }, + "reservations": [ + { + "user_id": 689, + "restaurant_id": 1113, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 689, + "restaurant_id": 1864, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 689, + "restaurant_id": 571 + } + ], + "updated_at": "2025-03-30T11:32:21.700000" + }, + { + "user_info": { + "user_id": 690, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 690, + "min_price": 188127, + "max_price": 404950, + "preferred_categories": [ + 4, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff9ade" + }, + "reservations": [ + { + "user_id": 690, + "restaurant_id": 593, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 690, + "restaurant_id": 2197, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 690, + "restaurant_id": 532, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 690, + "restaurant_id": 185 + }, + { + "user_id": 690, + "restaurant_id": 480 + }, + { + "user_id": 690, + "restaurant_id": 335 + }, + { + "user_id": 690, + "restaurant_id": 1766 + } + ], + "updated_at": "2025-03-30T11:32:21.704000" + }, + { + "user_info": { + "user_id": 691, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 691, + "min_price": 106081, + "max_price": 445341, + "preferred_categories": [ + 1, + 4, + 5 + ], + "_id": "67e92bc2785211cbd5ff9adf" + }, + "reservations": [ + { + "user_id": 691, + "restaurant_id": 888, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 691, + "restaurant_id": 2062, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 691, + "restaurant_id": 335 + }, + { + "user_id": 691, + "restaurant_id": 263 + }, + { + "user_id": 691, + "restaurant_id": 1907 + } + ], + "updated_at": "2025-03-30T11:32:21.707000" + }, + { + "user_info": { + "user_id": 692, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 692, + "min_price": 77666, + "max_price": 449316, + "preferred_categories": [ + 1, + 3, + 6 + ], + "_id": "67e92bc2785211cbd5ff9ae0" + }, + "reservations": [ + { + "user_id": 692, + "restaurant_id": 1265, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 692, + "restaurant_id": 168, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 692, + "restaurant_id": 1024, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 692, + "restaurant_id": 1438, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 692, + "restaurant_id": 1896 + }, + { + "user_id": 692, + "restaurant_id": 159 + }, + { + "user_id": 692, + "restaurant_id": 1541 + }, + { + "user_id": 692, + "restaurant_id": 916 + } + ], + "updated_at": "2025-03-30T11:32:21.710000" + }, + { + "user_info": { + "user_id": 693, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 693, + "min_price": 138096, + "max_price": 302075, + "preferred_categories": [ + 6, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9ae1" + }, + "reservations": [ + { + "user_id": 693, + "restaurant_id": 1174, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 693, + "restaurant_id": 904, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 693, + "restaurant_id": 1206, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 693, + "restaurant_id": 1527, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 693, + "restaurant_id": 540 + }, + { + "user_id": 693, + "restaurant_id": 1242 + }, + { + "user_id": 693, + "restaurant_id": 2142 + }, + { + "user_id": 693, + "restaurant_id": 230 + }, + { + "user_id": 693, + "restaurant_id": 1479 + }, + { + "user_id": 693, + "restaurant_id": 2234 + }, + { + "user_id": 693, + "restaurant_id": 1491 + } + ], + "updated_at": "2025-03-30T11:32:21.713000" + }, + { + "user_info": { + "user_id": 694, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 694, + "min_price": 36009, + "max_price": 456352, + "preferred_categories": [ + 4, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9ae2" + }, + "reservations": [ + { + "user_id": 694, + "restaurant_id": 1924, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 694, + "restaurant_id": 1728, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 694, + "restaurant_id": 974 + }, + { + "user_id": 694, + "restaurant_id": 2225 + }, + { + "user_id": 694, + "restaurant_id": 625 + } + ], + "updated_at": "2025-03-30T11:32:21.716000" + }, + { + "user_info": { + "user_id": 695, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 695, + "min_price": 92546, + "max_price": 490129, + "preferred_categories": [ + 2, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9ae3" + }, + "reservations": [ + { + "user_id": 695, + "restaurant_id": 1439, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 695, + "restaurant_id": 2154, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 695, + "restaurant_id": 387, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 695, + "restaurant_id": 696 + }, + { + "user_id": 695, + "restaurant_id": 1103 + } + ], + "updated_at": "2025-03-30T11:32:21.719000" + }, + { + "user_info": { + "user_id": 696, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 696, + "min_price": 55286, + "max_price": 433637, + "preferred_categories": [ + 2, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff9ae4" + }, + "reservations": [ + { + "user_id": 696, + "restaurant_id": 114, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 696, + "restaurant_id": 452, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 696, + "restaurant_id": 163, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 696, + "restaurant_id": 866 + }, + { + "user_id": 696, + "restaurant_id": 1111 + }, + { + "user_id": 696, + "restaurant_id": 539 + }, + { + "user_id": 696, + "restaurant_id": 993 + }, + { + "user_id": 696, + "restaurant_id": 1893 + } + ], + "updated_at": "2025-03-30T11:32:21.722000" + }, + { + "user_info": { + "user_id": 697, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 697, + "min_price": 31212, + "max_price": 210566, + "preferred_categories": [ + 7, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ae5" + }, + "reservations": [], + "likes": [ + { + "user_id": 697, + "restaurant_id": 280 + }, + { + "user_id": 697, + "restaurant_id": 397 + }, + { + "user_id": 697, + "restaurant_id": 1901 + }, + { + "user_id": 697, + "restaurant_id": 134 + }, + { + "user_id": 697, + "restaurant_id": 1415 + }, + { + "user_id": 697, + "restaurant_id": 788 + } + ], + "updated_at": "2025-03-30T11:32:21.725000" + }, + { + "user_info": { + "user_id": 698, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 698, + "min_price": 122169, + "max_price": 402223, + "preferred_categories": [ + 2, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff9ae6" + }, + "reservations": [ + { + "user_id": 698, + "restaurant_id": 1574, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 698, + "restaurant_id": 130, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 698, + "restaurant_id": 145, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 698, + "restaurant_id": 1520, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 698, + "restaurant_id": 1394, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 698, + "restaurant_id": 1275, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 698, + "restaurant_id": 697 + } + ], + "updated_at": "2025-03-30T11:32:21.729000" + }, + { + "user_info": { + "user_id": 699, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 699, + "min_price": 198667, + "max_price": 244785, + "preferred_categories": [ + 1, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ae7" + }, + "reservations": [ + { + "user_id": 699, + "restaurant_id": 1848, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 699, + "restaurant_id": 1098, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 699, + "restaurant_id": 381, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 699, + "restaurant_id": 876, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 699, + "restaurant_id": 1756, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 699, + "restaurant_id": 937 + }, + { + "user_id": 699, + "restaurant_id": 133 + }, + { + "user_id": 699, + "restaurant_id": 883 + }, + { + "user_id": 699, + "restaurant_id": 443 + }, + { + "user_id": 699, + "restaurant_id": 2174 + }, + { + "user_id": 699, + "restaurant_id": 907 + } + ], + "updated_at": "2025-03-30T11:32:21.732000" + }, + { + "user_info": { + "user_id": 700, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 700, + "min_price": 166371, + "max_price": 402291, + "preferred_categories": [ + 6, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ae8" + }, + "reservations": [ + { + "user_id": 700, + "restaurant_id": 387, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 700, + "restaurant_id": 2092, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 700, + "restaurant_id": 1243, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 700, + "restaurant_id": 582, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 700, + "restaurant_id": 562 + }, + { + "user_id": 700, + "restaurant_id": 1005 + }, + { + "user_id": 700, + "restaurant_id": 910 + }, + { + "user_id": 700, + "restaurant_id": 208 + }, + { + "user_id": 700, + "restaurant_id": 605 + } + ], + "updated_at": "2025-03-30T11:32:21.735000" + }, + { + "user_info": { + "user_id": 701, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 701, + "min_price": 78519, + "max_price": 313478, + "preferred_categories": [ + 2, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9ae9" + }, + "reservations": [ + { + "user_id": 701, + "restaurant_id": 596, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 701, + "restaurant_id": 242, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 701, + "restaurant_id": 364 + }, + { + "user_id": 701, + "restaurant_id": 670 + }, + { + "user_id": 701, + "restaurant_id": 1761 + }, + { + "user_id": 701, + "restaurant_id": 743 + }, + { + "user_id": 701, + "restaurant_id": 988 + }, + { + "user_id": 701, + "restaurant_id": 1241 + }, + { + "user_id": 701, + "restaurant_id": 772 + } + ], + "updated_at": "2025-03-30T11:32:21.738000" + }, + { + "user_info": { + "user_id": 702, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 702, + "min_price": 134520, + "max_price": 438841, + "preferred_categories": [ + 1, + 3, + 9 + ], + "_id": "67e92bc2785211cbd5ff9aea" + }, + "reservations": [ + { + "user_id": 702, + "restaurant_id": 1262, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 702, + "restaurant_id": 423, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 702, + "restaurant_id": 20, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 702, + "restaurant_id": 2204, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 702, + "restaurant_id": 1293 + }, + { + "user_id": 702, + "restaurant_id": 690 + }, + { + "user_id": 702, + "restaurant_id": 414 + } + ], + "updated_at": "2025-03-30T11:32:21.742000" + }, + { + "user_info": { + "user_id": 703, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 703, + "min_price": 70655, + "max_price": 213094, + "preferred_categories": [ + 5, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9aeb" + }, + "reservations": [ + { + "user_id": 703, + "restaurant_id": 1457, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 703, + "restaurant_id": 237, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 703, + "restaurant_id": 1521, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 703, + "restaurant_id": 391, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:21.747000" + }, + { + "user_info": { + "user_id": 704, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 704, + "min_price": 43948, + "max_price": 350978, + "preferred_categories": [ + 3, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff9aec" + }, + "reservations": [ + { + "user_id": 704, + "restaurant_id": 1632, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 704, + "restaurant_id": 1281 + }, + { + "user_id": 704, + "restaurant_id": 1753 + }, + { + "user_id": 704, + "restaurant_id": 1295 + } + ], + "updated_at": "2025-03-30T11:32:21.750000" + }, + { + "user_info": { + "user_id": 705, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 705, + "min_price": 172807, + "max_price": 254726, + "preferred_categories": [ + 7, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9aed" + }, + "reservations": [ + { + "user_id": 705, + "restaurant_id": 723, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 705, + "restaurant_id": 446, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 705, + "restaurant_id": 1738, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 705, + "restaurant_id": 2051, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 705, + "restaurant_id": 269 + }, + { + "user_id": 705, + "restaurant_id": 9 + }, + { + "user_id": 705, + "restaurant_id": 146 + } + ], + "updated_at": "2025-03-30T11:32:21.754000" + }, + { + "user_info": { + "user_id": 706, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 706, + "min_price": 189536, + "max_price": 434372, + "preferred_categories": [ + 4, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9aee" + }, + "reservations": [ + { + "user_id": 706, + "restaurant_id": 1984, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 706, + "restaurant_id": 1636, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 706, + "restaurant_id": 2005 + }, + { + "user_id": 706, + "restaurant_id": 390 + } + ], + "updated_at": "2025-03-30T11:32:21.758000" + }, + { + "user_info": { + "user_id": 707, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 707, + "min_price": 80288, + "max_price": 345034, + "preferred_categories": [ + 2, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9aef" + }, + "reservations": [], + "likes": [ + { + "user_id": 707, + "restaurant_id": 938 + }, + { + "user_id": 707, + "restaurant_id": 666 + }, + { + "user_id": 707, + "restaurant_id": 1105 + }, + { + "user_id": 707, + "restaurant_id": 1343 + }, + { + "user_id": 707, + "restaurant_id": 2206 + } + ], + "updated_at": "2025-03-30T11:32:21.761000" + }, + { + "user_info": { + "user_id": 708, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 708, + "min_price": 187285, + "max_price": 232062, + "preferred_categories": [ + 2, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff9af0" + }, + "reservations": [ + { + "user_id": 708, + "restaurant_id": 1226, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 708, + "restaurant_id": 1509, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 708, + "restaurant_id": 551, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:21.764000" + }, + { + "user_info": { + "user_id": 709, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 709, + "min_price": 19443, + "max_price": 411841, + "preferred_categories": [ + 6, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9af1" + }, + "reservations": [ + { + "user_id": 709, + "restaurant_id": 1581, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 709, + "restaurant_id": 857 + }, + { + "user_id": 709, + "restaurant_id": 2071 + }, + { + "user_id": 709, + "restaurant_id": 1787 + } + ], + "updated_at": "2025-03-30T11:32:21.780000" + }, + { + "user_info": { + "user_id": 710, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 710, + "min_price": 18206, + "max_price": 453578, + "preferred_categories": [ + 2, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9af2" + }, + "reservations": [ + { + "user_id": 710, + "restaurant_id": 194, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 710, + "restaurant_id": 2133 + }, + { + "user_id": 710, + "restaurant_id": 272 + }, + { + "user_id": 710, + "restaurant_id": 1156 + }, + { + "user_id": 710, + "restaurant_id": 231 + }, + { + "user_id": 710, + "restaurant_id": 803 + } + ], + "updated_at": "2025-03-30T11:32:21.785000" + }, + { + "user_info": { + "user_id": 711, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 711, + "min_price": 176591, + "max_price": 241167, + "preferred_categories": [ + 6, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9af3" + }, + "reservations": [ + { + "user_id": 711, + "restaurant_id": 1422, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 711, + "restaurant_id": 56 + }, + { + "user_id": 711, + "restaurant_id": 575 + }, + { + "user_id": 711, + "restaurant_id": 1119 + }, + { + "user_id": 711, + "restaurant_id": 1492 + } + ], + "updated_at": "2025-03-30T11:32:21.794000" + }, + { + "user_info": { + "user_id": 712, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 712, + "min_price": 166797, + "max_price": 371904, + "preferred_categories": [ + 9, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9af4" + }, + "reservations": [ + { + "user_id": 712, + "restaurant_id": 1424, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 712, + "restaurant_id": 179, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 712, + "restaurant_id": 2155 + } + ], + "updated_at": "2025-03-30T11:32:21.802000" + }, + { + "user_info": { + "user_id": 713, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 713, + "min_price": 73973, + "max_price": 496726, + "preferred_categories": [ + 1, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9af5" + }, + "reservations": [ + { + "user_id": 713, + "restaurant_id": 867, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 713, + "restaurant_id": 544 + }, + { + "user_id": 713, + "restaurant_id": 57 + }, + { + "user_id": 713, + "restaurant_id": 1659 + } + ], + "updated_at": "2025-03-30T11:32:21.809000" + }, + { + "user_info": { + "user_id": 714, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 714, + "min_price": 39451, + "max_price": 285423, + "preferred_categories": [ + 1, + 2, + 9 + ], + "_id": "67e92bc2785211cbd5ff9af6" + }, + "reservations": [ + { + "user_id": 714, + "restaurant_id": 152, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 714, + "restaurant_id": 808, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 714, + "restaurant_id": 430, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 714, + "restaurant_id": 1922 + }, + { + "user_id": 714, + "restaurant_id": 1515 + }, + { + "user_id": 714, + "restaurant_id": 249 + }, + { + "user_id": 714, + "restaurant_id": 486 + } + ], + "updated_at": "2025-03-30T11:32:21.817000" + }, + { + "user_info": { + "user_id": 715, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 715, + "min_price": 76552, + "max_price": 235681, + "preferred_categories": [ + 2, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9af7" + }, + "reservations": [ + { + "user_id": 715, + "restaurant_id": 541, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 715, + "restaurant_id": 1257, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 715, + "restaurant_id": 85, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 715, + "restaurant_id": 2078 + }, + { + "user_id": 715, + "restaurant_id": 1130 + } + ], + "updated_at": "2025-03-30T11:32:21.827000" + }, + { + "user_info": { + "user_id": 716, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 716, + "min_price": 172449, + "max_price": 204840, + "preferred_categories": [ + 7, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9af8" + }, + "reservations": [ + { + "user_id": 716, + "restaurant_id": 1013, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 716, + "restaurant_id": 2045 + }, + { + "user_id": 716, + "restaurant_id": 553 + }, + { + "user_id": 716, + "restaurant_id": 1062 + }, + { + "user_id": 716, + "restaurant_id": 2199 + } + ], + "updated_at": "2025-03-30T11:32:21.833000" + }, + { + "user_info": { + "user_id": 717, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 717, + "min_price": 175646, + "max_price": 405744, + "preferred_categories": [ + 1, + 2, + 3 + ], + "_id": "67e92bc2785211cbd5ff9af9" + }, + "reservations": [ + { + "user_id": 717, + "restaurant_id": 35, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 717, + "restaurant_id": 1215, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 717, + "restaurant_id": 2197, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 717, + "restaurant_id": 759, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 717, + "restaurant_id": 771, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 717, + "restaurant_id": 1630 + }, + { + "user_id": 717, + "restaurant_id": 1191 + }, + { + "user_id": 717, + "restaurant_id": 1045 + }, + { + "user_id": 717, + "restaurant_id": 554 + }, + { + "user_id": 717, + "restaurant_id": 2128 + } + ], + "updated_at": "2025-03-30T11:32:21.843000" + }, + { + "user_info": { + "user_id": 718, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 718, + "min_price": 116395, + "max_price": 247418, + "preferred_categories": [ + 1, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9afa" + }, + "reservations": [ + { + "user_id": 718, + "restaurant_id": 1155, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 718, + "restaurant_id": 2174, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 718, + "restaurant_id": 748, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 718, + "restaurant_id": 1453 + }, + { + "user_id": 718, + "restaurant_id": 219 + }, + { + "user_id": 718, + "restaurant_id": 1260 + } + ], + "updated_at": "2025-03-30T11:32:21.847000" + }, + { + "user_info": { + "user_id": 719, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 719, + "min_price": 54245, + "max_price": 268489, + "preferred_categories": [ + 5, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9afb" + }, + "reservations": [ + { + "user_id": 719, + "restaurant_id": 1734, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 719, + "restaurant_id": 120, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 719, + "restaurant_id": 789, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 719, + "restaurant_id": 954, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 719, + "restaurant_id": 2229, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 719, + "restaurant_id": 1115 + }, + { + "user_id": 719, + "restaurant_id": 1725 + } + ], + "updated_at": "2025-03-30T11:32:21.853000" + }, + { + "user_info": { + "user_id": 720, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 720, + "min_price": 165590, + "max_price": 328945, + "preferred_categories": [ + 3, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9afc" + }, + "reservations": [ + { + "user_id": 720, + "restaurant_id": 597, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 720, + "restaurant_id": 1034 + }, + { + "user_id": 720, + "restaurant_id": 1989 + } + ], + "updated_at": "2025-03-30T11:32:21.864000" + }, + { + "user_info": { + "user_id": 721, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 721, + "min_price": 141893, + "max_price": 410193, + "preferred_categories": [ + 6, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9afd" + }, + "reservations": [ + { + "user_id": 721, + "restaurant_id": 93, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 721, + "restaurant_id": 1335 + }, + { + "user_id": 721, + "restaurant_id": 417 + }, + { + "user_id": 721, + "restaurant_id": 1981 + }, + { + "user_id": 721, + "restaurant_id": 44 + } + ], + "updated_at": "2025-03-30T11:32:21.868000" + }, + { + "user_info": { + "user_id": 722, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 722, + "min_price": 40830, + "max_price": 345034, + "preferred_categories": [ + 1, + 3, + 5 + ], + "_id": "67e92bc2785211cbd5ff9afe" + }, + "reservations": [ + { + "user_id": 722, + "restaurant_id": 519, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 722, + "restaurant_id": 1732, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 722, + "restaurant_id": 2029, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 722, + "restaurant_id": 2180, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 722, + "restaurant_id": 207, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 722, + "restaurant_id": 1192 + } + ], + "updated_at": "2025-03-30T11:32:21.874000" + }, + { + "user_info": { + "user_id": 723, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 723, + "min_price": 64143, + "max_price": 364372, + "preferred_categories": [ + 4, + 5, + 12 + ], + "_id": "67e92bc2785211cbd5ff9aff" + }, + "reservations": [ + { + "user_id": 723, + "restaurant_id": 2184, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 723, + "restaurant_id": 586, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 723, + "restaurant_id": 947 + }, + { + "user_id": 723, + "restaurant_id": 1178 + } + ], + "updated_at": "2025-03-30T11:32:21.882000" + }, + { + "user_info": { + "user_id": 724, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 724, + "min_price": 129138, + "max_price": 290738, + "preferred_categories": [ + 2, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b00" + }, + "reservations": [], + "likes": [], + "updated_at": "2025-03-30T11:32:21.893000" + }, + { + "user_info": { + "user_id": 725, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 725, + "min_price": 85609, + "max_price": 338965, + "preferred_categories": [ + 2, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b01" + }, + "reservations": [ + { + "user_id": 725, + "restaurant_id": 180, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 725, + "restaurant_id": 14, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 725, + "restaurant_id": 1271, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 725, + "restaurant_id": 376, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 725, + "restaurant_id": 1226 + } + ], + "updated_at": "2025-03-30T11:32:21.899000" + }, + { + "user_info": { + "user_id": 726, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 726, + "min_price": 143254, + "max_price": 467121, + "preferred_categories": [ + 5, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b02" + }, + "reservations": [ + { + "user_id": 726, + "restaurant_id": 1201, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 726, + "restaurant_id": 2177, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 726, + "restaurant_id": 1323, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 726, + "restaurant_id": 1323 + } + ], + "updated_at": "2025-03-30T11:32:21.902000" + }, + { + "user_info": { + "user_id": 727, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 727, + "min_price": 27107, + "max_price": 389983, + "preferred_categories": [ + 2, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b03" + }, + "reservations": [ + { + "user_id": 727, + "restaurant_id": 137, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 727, + "restaurant_id": 1178 + }, + { + "user_id": 727, + "restaurant_id": 1931 + }, + { + "user_id": 727, + "restaurant_id": 912 + } + ], + "updated_at": "2025-03-30T11:32:21.907000" + }, + { + "user_info": { + "user_id": 728, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 728, + "min_price": 56319, + "max_price": 483851, + "preferred_categories": [ + 4, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b04" + }, + "reservations": [ + { + "user_id": 728, + "restaurant_id": 2081, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 728, + "restaurant_id": 329 + }, + { + "user_id": 728, + "restaurant_id": 758 + } + ], + "updated_at": "2025-03-30T11:32:21.912000" + }, + { + "user_info": { + "user_id": 729, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 729, + "min_price": 165939, + "max_price": 424730, + "preferred_categories": [ + 1, + 2, + 4 + ], + "_id": "67e92bc2785211cbd5ff9b05" + }, + "reservations": [ + { + "user_id": 729, + "restaurant_id": 2113, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 729, + "restaurant_id": 1170, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 729, + "restaurant_id": 379, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 729, + "restaurant_id": 2113, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 729, + "restaurant_id": 650 + }, + { + "user_id": 729, + "restaurant_id": 877 + }, + { + "user_id": 729, + "restaurant_id": 1298 + } + ], + "updated_at": "2025-03-30T11:32:21.916000" + }, + { + "user_info": { + "user_id": 730, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 730, + "min_price": 48359, + "max_price": 249321, + "preferred_categories": [ + 2, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff9b06" + }, + "reservations": [ + { + "user_id": 730, + "restaurant_id": 146, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 730, + "restaurant_id": 1547, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 730, + "restaurant_id": 188 + } + ], + "updated_at": "2025-03-30T11:32:21.919000" + }, + { + "user_info": { + "user_id": 731, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 731, + "min_price": 81205, + "max_price": 307430, + "preferred_categories": [ + 1, + 2, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b07" + }, + "reservations": [ + { + "user_id": 731, + "restaurant_id": 1411, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 731, + "restaurant_id": 1531, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 731, + "restaurant_id": 230, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 731, + "restaurant_id": 839 + }, + { + "user_id": 731, + "restaurant_id": 995 + }, + { + "user_id": 731, + "restaurant_id": 1101 + }, + { + "user_id": 731, + "restaurant_id": 605 + }, + { + "user_id": 731, + "restaurant_id": 1833 + } + ], + "updated_at": "2025-03-30T11:32:21.922000" + }, + { + "user_info": { + "user_id": 732, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 732, + "min_price": 37884, + "max_price": 347301, + "preferred_categories": [ + 1, + 3, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b08" + }, + "reservations": [ + { + "user_id": 732, + "restaurant_id": 969, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 732, + "restaurant_id": 2190, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 732, + "restaurant_id": 364, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 732, + "restaurant_id": 708, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 732, + "restaurant_id": 652, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 732, + "restaurant_id": 748 + }, + { + "user_id": 732, + "restaurant_id": 2256 + }, + { + "user_id": 732, + "restaurant_id": 686 + }, + { + "user_id": 732, + "restaurant_id": 2211 + }, + { + "user_id": 732, + "restaurant_id": 511 + }, + { + "user_id": 732, + "restaurant_id": 82 + } + ], + "updated_at": "2025-03-30T11:32:21.925000" + }, + { + "user_info": { + "user_id": 733, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 733, + "min_price": 110893, + "max_price": 203743, + "preferred_categories": [ + 5, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b09" + }, + "reservations": [ + { + "user_id": 733, + "restaurant_id": 895, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 733, + "restaurant_id": 455, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 733, + "restaurant_id": 1264 + }, + { + "user_id": 733, + "restaurant_id": 1216 + } + ], + "updated_at": "2025-03-30T11:32:21.928000" + }, + { + "user_info": { + "user_id": 734, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 734, + "min_price": 183232, + "max_price": 292487, + "preferred_categories": [ + 1, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b0a" + }, + "reservations": [ + { + "user_id": 734, + "restaurant_id": 1467, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 734, + "restaurant_id": 1248, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 734, + "restaurant_id": 1685, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 734, + "restaurant_id": 1848, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 734, + "restaurant_id": 497 + }, + { + "user_id": 734, + "restaurant_id": 1514 + } + ], + "updated_at": "2025-03-30T11:32:21.932000" + }, + { + "user_info": { + "user_id": 735, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 735, + "min_price": 39677, + "max_price": 322767, + "preferred_categories": [ + 1, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b0b" + }, + "reservations": [ + { + "user_id": 735, + "restaurant_id": 1218, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 735, + "restaurant_id": 2092, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 735, + "restaurant_id": 1265 + }, + { + "user_id": 735, + "restaurant_id": 1489 + } + ], + "updated_at": "2025-03-30T11:32:21.936000" + }, + { + "user_info": { + "user_id": 736, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 736, + "min_price": 80208, + "max_price": 358514, + "preferred_categories": [ + 4, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b0c" + }, + "reservations": [ + { + "user_id": 736, + "restaurant_id": 1893, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 736, + "restaurant_id": 1222, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 736, + "restaurant_id": 1391, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 736, + "restaurant_id": 1541, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 736, + "restaurant_id": 300, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 736, + "restaurant_id": 746, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 736, + "restaurant_id": 1385, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 736, + "restaurant_id": 2209 + }, + { + "user_id": 736, + "restaurant_id": 2214 + } + ], + "updated_at": "2025-03-30T11:32:21.941000" + }, + { + "user_info": { + "user_id": 737, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 737, + "min_price": 139153, + "max_price": 427105, + "preferred_categories": [ + 2, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b0d" + }, + "reservations": [ + { + "user_id": 737, + "restaurant_id": 170, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 737, + "restaurant_id": 2213, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 737, + "restaurant_id": 1074 + }, + { + "user_id": 737, + "restaurant_id": 632 + } + ], + "updated_at": "2025-03-30T11:32:21.944000" + }, + { + "user_info": { + "user_id": 738, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 738, + "min_price": 63987, + "max_price": 357046, + "preferred_categories": [ + 4, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b0e" + }, + "reservations": [ + { + "user_id": 738, + "restaurant_id": 1874, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 738, + "restaurant_id": 1555, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 738, + "restaurant_id": 1723, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 738, + "restaurant_id": 292, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 738, + "restaurant_id": 1394, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 738, + "restaurant_id": 979, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 738, + "restaurant_id": 580 + }, + { + "user_id": 738, + "restaurant_id": 1070 + }, + { + "user_id": 738, + "restaurant_id": 724 + }, + { + "user_id": 738, + "restaurant_id": 576 + }, + { + "user_id": 738, + "restaurant_id": 1627 + } + ], + "updated_at": "2025-03-30T11:32:21.948000" + }, + { + "user_info": { + "user_id": 739, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 739, + "min_price": 26776, + "max_price": 307964, + "preferred_categories": [ + 1, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b0f" + }, + "reservations": [ + { + "user_id": 739, + "restaurant_id": 1669, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 739, + "restaurant_id": 980, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 739, + "restaurant_id": 1288, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 739, + "restaurant_id": 1357, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 739, + "restaurant_id": 2236 + }, + { + "user_id": 739, + "restaurant_id": 1224 + }, + { + "user_id": 739, + "restaurant_id": 453 + }, + { + "user_id": 739, + "restaurant_id": 2054 + } + ], + "updated_at": "2025-03-30T11:32:21.951000" + }, + { + "user_info": { + "user_id": 740, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 740, + "min_price": 39023, + "max_price": 316623, + "preferred_categories": [ + 2, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b10" + }, + "reservations": [ + { + "user_id": 740, + "restaurant_id": 1057, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 740, + "restaurant_id": 1509, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 740, + "restaurant_id": 502 + }, + { + "user_id": 740, + "restaurant_id": 56 + } + ], + "updated_at": "2025-03-30T11:32:21.954000" + }, + { + "user_info": { + "user_id": 741, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 741, + "min_price": 62415, + "max_price": 228760, + "preferred_categories": [ + 1, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b11" + }, + "reservations": [], + "likes": [ + { + "user_id": 741, + "restaurant_id": 242 + }, + { + "user_id": 741, + "restaurant_id": 350 + }, + { + "user_id": 741, + "restaurant_id": 1298 + }, + { + "user_id": 741, + "restaurant_id": 1798 + } + ], + "updated_at": "2025-03-30T11:32:21.957000" + }, + { + "user_info": { + "user_id": 742, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 742, + "min_price": 150402, + "max_price": 338286, + "preferred_categories": [ + 1, + 2, + 7 + ], + "_id": "67e92bc2785211cbd5ff9b12" + }, + "reservations": [ + { + "user_id": 742, + "restaurant_id": 881, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 742, + "restaurant_id": 1113, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 742, + "restaurant_id": 582, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 742, + "restaurant_id": 834, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 742, + "restaurant_id": 1213, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 742, + "restaurant_id": 1658, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 742, + "restaurant_id": 1991 + }, + { + "user_id": 742, + "restaurant_id": 1059 + }, + { + "user_id": 742, + "restaurant_id": 1615 + }, + { + "user_id": 742, + "restaurant_id": 2111 + }, + { + "user_id": 742, + "restaurant_id": 154 + }, + { + "user_id": 742, + "restaurant_id": 1057 + } + ], + "updated_at": "2025-03-30T11:32:21.960000" + }, + { + "user_info": { + "user_id": 743, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 743, + "min_price": 154962, + "max_price": 438728, + "preferred_categories": [ + 1, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b13" + }, + "reservations": [ + { + "user_id": 743, + "restaurant_id": 870, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 743, + "restaurant_id": 1797, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 743, + "restaurant_id": 1493, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 743, + "restaurant_id": 586, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 743, + "restaurant_id": 2114 + } + ], + "updated_at": "2025-03-30T11:32:21.963000" + }, + { + "user_info": { + "user_id": 744, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 744, + "min_price": 192372, + "max_price": 404981, + "preferred_categories": [ + 5, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b14" + }, + "reservations": [ + { + "user_id": 744, + "restaurant_id": 57, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 744, + "restaurant_id": 2041, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 744, + "restaurant_id": 217, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 744, + "restaurant_id": 1094 + }, + { + "user_id": 744, + "restaurant_id": 1951 + } + ], + "updated_at": "2025-03-30T11:32:21.966000" + }, + { + "user_info": { + "user_id": 745, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 745, + "min_price": 25575, + "max_price": 359528, + "preferred_categories": [ + 2, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b15" + }, + "reservations": [ + { + "user_id": 745, + "restaurant_id": 1692, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 745, + "restaurant_id": 88, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 745, + "restaurant_id": 623, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 745, + "restaurant_id": 709 + }, + { + "user_id": 745, + "restaurant_id": 602 + } + ], + "updated_at": "2025-03-30T11:32:21.969000" + }, + { + "user_info": { + "user_id": 746, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 746, + "min_price": 163587, + "max_price": 349781, + "preferred_categories": [ + 1, + 3, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b16" + }, + "reservations": [ + { + "user_id": 746, + "restaurant_id": 21, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 746, + "restaurant_id": 1536, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 746, + "restaurant_id": 669, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 746, + "restaurant_id": 1651, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 746, + "restaurant_id": 827 + }, + { + "user_id": 746, + "restaurant_id": 1270 + }, + { + "user_id": 746, + "restaurant_id": 1689 + } + ], + "updated_at": "2025-03-30T11:32:21.972000" + }, + { + "user_info": { + "user_id": 747, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 747, + "min_price": 59843, + "max_price": 385237, + "preferred_categories": [ + 8, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b17" + }, + "reservations": [ + { + "user_id": 747, + "restaurant_id": 870, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 747, + "restaurant_id": 1038, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 747, + "restaurant_id": 609, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 747, + "restaurant_id": 1122, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 747, + "restaurant_id": 870, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 747, + "restaurant_id": 822, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 747, + "restaurant_id": 1008 + }, + { + "user_id": 747, + "restaurant_id": 1184 + } + ], + "updated_at": "2025-03-30T11:32:21.974000" + }, + { + "user_info": { + "user_id": 748, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 748, + "min_price": 183937, + "max_price": 384632, + "preferred_categories": [ + 5, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b18" + }, + "reservations": [ + { + "user_id": 748, + "restaurant_id": 1041, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 748, + "restaurant_id": 629, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 748, + "restaurant_id": 1974 + }, + { + "user_id": 748, + "restaurant_id": 2034 + }, + { + "user_id": 748, + "restaurant_id": 1415 + }, + { + "user_id": 748, + "restaurant_id": 1373 + }, + { + "user_id": 748, + "restaurant_id": 201 + } + ], + "updated_at": "2025-03-30T11:32:21.978000" + }, + { + "user_info": { + "user_id": 749, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 749, + "min_price": 148491, + "max_price": 306961, + "preferred_categories": [ + 5, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b19" + }, + "reservations": [ + { + "user_id": 749, + "restaurant_id": 637, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 749, + "restaurant_id": 397, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 749, + "restaurant_id": 1294 + }, + { + "user_id": 749, + "restaurant_id": 1615 + }, + { + "user_id": 749, + "restaurant_id": 1785 + }, + { + "user_id": 749, + "restaurant_id": 542 + } + ], + "updated_at": "2025-03-30T11:32:21.982000" + }, + { + "user_info": { + "user_id": 750, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 750, + "min_price": 30844, + "max_price": 396479, + "preferred_categories": [ + 5, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b1a" + }, + "reservations": [ + { + "user_id": 750, + "restaurant_id": 1810, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 750, + "restaurant_id": 918, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 750, + "restaurant_id": 717, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 750, + "restaurant_id": 1880, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 750, + "restaurant_id": 1543, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 750, + "restaurant_id": 1680 + } + ], + "updated_at": "2025-03-30T11:32:21.984000" + }, + { + "user_info": { + "user_id": 751, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 751, + "min_price": 189743, + "max_price": 353952, + "preferred_categories": [ + 6, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b1b" + }, + "reservations": [ + { + "user_id": 751, + "restaurant_id": 1853, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 751, + "restaurant_id": 833, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 751, + "restaurant_id": 1257, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:21.989000" + }, + { + "user_info": { + "user_id": 752, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 752, + "min_price": 72535, + "max_price": 458229, + "preferred_categories": [ + 2, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b1c" + }, + "reservations": [ + { + "user_id": 752, + "restaurant_id": 586, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 752, + "restaurant_id": 1200, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 752, + "restaurant_id": 1584, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 752, + "restaurant_id": 255 + }, + { + "user_id": 752, + "restaurant_id": 874 + }, + { + "user_id": 752, + "restaurant_id": 1416 + }, + { + "user_id": 752, + "restaurant_id": 2062 + }, + { + "user_id": 752, + "restaurant_id": 1813 + }, + { + "user_id": 752, + "restaurant_id": 1954 + }, + { + "user_id": 752, + "restaurant_id": 599 + } + ], + "updated_at": "2025-03-30T11:32:21.993000" + }, + { + "user_info": { + "user_id": 753, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 753, + "min_price": 162472, + "max_price": 423828, + "preferred_categories": [ + 3, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b1d" + }, + "reservations": [ + { + "user_id": 753, + "restaurant_id": 304, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 753, + "restaurant_id": 710, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 753, + "restaurant_id": 878, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:21.996000" + }, + { + "user_info": { + "user_id": 754, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 754, + "min_price": 195449, + "max_price": 369405, + "preferred_categories": [ + 6, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b1e" + }, + "reservations": [ + { + "user_id": 754, + "restaurant_id": 1652, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 754, + "restaurant_id": 1738, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 754, + "restaurant_id": 270, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 754, + "restaurant_id": 905, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 754, + "restaurant_id": 362, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 754, + "restaurant_id": 195, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 754, + "restaurant_id": 225, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 754, + "restaurant_id": 313 + }, + { + "user_id": 754, + "restaurant_id": 544 + }, + { + "user_id": 754, + "restaurant_id": 1877 + }, + { + "user_id": 754, + "restaurant_id": 1065 + } + ], + "updated_at": "2025-03-30T11:32:21.999000" + }, + { + "user_info": { + "user_id": 755, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 755, + "min_price": 59505, + "max_price": 394880, + "preferred_categories": [ + 1, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b1f" + }, + "reservations": [ + { + "user_id": 755, + "restaurant_id": 166, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 755, + "restaurant_id": 1917, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 755, + "restaurant_id": 58, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 755, + "restaurant_id": 960, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 755, + "restaurant_id": 115 + }, + { + "user_id": 755, + "restaurant_id": 1092 + }, + { + "user_id": 755, + "restaurant_id": 1252 + }, + { + "user_id": 755, + "restaurant_id": 2171 + }, + { + "user_id": 755, + "restaurant_id": 502 + } + ], + "updated_at": "2025-03-30T11:32:22.003000" + }, + { + "user_info": { + "user_id": 756, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 756, + "min_price": 75680, + "max_price": 216125, + "preferred_categories": [ + 3, + 4, + 6 + ], + "_id": "67e92bc2785211cbd5ff9b20" + }, + "reservations": [ + { + "user_id": 756, + "restaurant_id": 2175, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 756, + "restaurant_id": 2155, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 756, + "restaurant_id": 1534 + }, + { + "user_id": 756, + "restaurant_id": 2130 + } + ], + "updated_at": "2025-03-30T11:32:22.007000" + }, + { + "user_info": { + "user_id": 757, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 757, + "min_price": 185734, + "max_price": 269805, + "preferred_categories": [ + 2, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff9b21" + }, + "reservations": [ + { + "user_id": 757, + "restaurant_id": 1890, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 757, + "restaurant_id": 1107, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 757, + "restaurant_id": 2025, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 757, + "restaurant_id": 107, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:22.011000" + }, + { + "user_info": { + "user_id": 758, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 758, + "min_price": 157617, + "max_price": 413799, + "preferred_categories": [ + 6, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b22" + }, + "reservations": [], + "likes": [ + { + "user_id": 758, + "restaurant_id": 936 + }, + { + "user_id": 758, + "restaurant_id": 1549 + }, + { + "user_id": 758, + "restaurant_id": 19 + } + ], + "updated_at": "2025-03-30T11:32:22.014000" + }, + { + "user_info": { + "user_id": 759, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 759, + "min_price": 181745, + "max_price": 302053, + "preferred_categories": [ + 6, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b23" + }, + "reservations": [ + { + "user_id": 759, + "restaurant_id": 1099, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 759, + "restaurant_id": 1134 + }, + { + "user_id": 759, + "restaurant_id": 2074 + }, + { + "user_id": 759, + "restaurant_id": 723 + }, + { + "user_id": 759, + "restaurant_id": 641 + } + ], + "updated_at": "2025-03-30T11:32:22.018000" + }, + { + "user_info": { + "user_id": 760, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 760, + "min_price": 167980, + "max_price": 473261, + "preferred_categories": [ + 3, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b24" + }, + "reservations": [ + { + "user_id": 760, + "restaurant_id": 1483, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 760, + "restaurant_id": 1884, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 760, + "restaurant_id": 1938, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 760, + "restaurant_id": 1222, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 760, + "restaurant_id": 381, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 760, + "restaurant_id": 886 + }, + { + "user_id": 760, + "restaurant_id": 1420 + }, + { + "user_id": 760, + "restaurant_id": 1403 + }, + { + "user_id": 760, + "restaurant_id": 1717 + } + ], + "updated_at": "2025-03-30T11:32:22.023000" + }, + { + "user_info": { + "user_id": 761, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 761, + "min_price": 106289, + "max_price": 445051, + "preferred_categories": [ + 1, + 2, + 3 + ], + "_id": "67e92bc2785211cbd5ff9b25" + }, + "reservations": [ + { + "user_id": 761, + "restaurant_id": 1547, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 761, + "restaurant_id": 1117, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 761, + "restaurant_id": 1591, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 761, + "restaurant_id": 774, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 761, + "restaurant_id": 2128, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 761, + "restaurant_id": 1001 + } + ], + "updated_at": "2025-03-30T11:32:22.027000" + }, + { + "user_info": { + "user_id": 762, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 762, + "min_price": 132984, + "max_price": 212245, + "preferred_categories": [ + 2, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b26" + }, + "reservations": [ + { + "user_id": 762, + "restaurant_id": 936, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 762, + "restaurant_id": 1791, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 762, + "restaurant_id": 192, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 762, + "restaurant_id": 1332, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 762, + "restaurant_id": 1719, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 762, + "restaurant_id": 536 + }, + { + "user_id": 762, + "restaurant_id": 1563 + }, + { + "user_id": 762, + "restaurant_id": 1362 + }, + { + "user_id": 762, + "restaurant_id": 2025 + } + ], + "updated_at": "2025-03-30T11:32:22.030000" + }, + { + "user_info": { + "user_id": 763, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 763, + "min_price": 113380, + "max_price": 480413, + "preferred_categories": [ + 3, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b27" + }, + "reservations": [ + { + "user_id": 763, + "restaurant_id": 144, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 763, + "restaurant_id": 1375, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 763, + "restaurant_id": 2021, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 763, + "restaurant_id": 123, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 763, + "restaurant_id": 2153 + }, + { + "user_id": 763, + "restaurant_id": 1351 + }, + { + "user_id": 763, + "restaurant_id": 2115 + } + ], + "updated_at": "2025-03-30T11:32:22.033000" + }, + { + "user_info": { + "user_id": 764, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 764, + "min_price": 53256, + "max_price": 352346, + "preferred_categories": [ + 5, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b28" + }, + "reservations": [], + "likes": [ + { + "user_id": 764, + "restaurant_id": 404 + } + ], + "updated_at": "2025-03-30T11:32:22.036000" + }, + { + "user_info": { + "user_id": 765, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 765, + "min_price": 26399, + "max_price": 449161, + "preferred_categories": [ + 2, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b29" + }, + "reservations": [ + { + "user_id": 765, + "restaurant_id": 1199, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 765, + "restaurant_id": 512, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 765, + "restaurant_id": 1331 + }, + { + "user_id": 765, + "restaurant_id": 761 + }, + { + "user_id": 765, + "restaurant_id": 1623 + }, + { + "user_id": 765, + "restaurant_id": 1887 + }, + { + "user_id": 765, + "restaurant_id": 562 + } + ], + "updated_at": "2025-03-30T11:32:22.039000" + }, + { + "user_info": { + "user_id": 766, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 766, + "min_price": 66688, + "max_price": 400195, + "preferred_categories": [ + 1, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff9b2a" + }, + "reservations": [ + { + "user_id": 766, + "restaurant_id": 526, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 766, + "restaurant_id": 1787, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 766, + "restaurant_id": 241 + }, + { + "user_id": 766, + "restaurant_id": 1210 + }, + { + "user_id": 766, + "restaurant_id": 98 + }, + { + "user_id": 766, + "restaurant_id": 737 + } + ], + "updated_at": "2025-03-30T11:32:22.042000" + }, + { + "user_info": { + "user_id": 767, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 767, + "min_price": 41649, + "max_price": 360809, + "preferred_categories": [ + 2, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b2b" + }, + "reservations": [ + { + "user_id": 767, + "restaurant_id": 886, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 767, + "restaurant_id": 757, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 767, + "restaurant_id": 1371 + }, + { + "user_id": 767, + "restaurant_id": 1289 + }, + { + "user_id": 767, + "restaurant_id": 2034 + }, + { + "user_id": 767, + "restaurant_id": 755 + } + ], + "updated_at": "2025-03-30T11:32:22.044000" + }, + { + "user_info": { + "user_id": 768, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 768, + "min_price": 143779, + "max_price": 487223, + "preferred_categories": [ + 3, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b2c" + }, + "reservations": [ + { + "user_id": 768, + "restaurant_id": 115, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 768, + "restaurant_id": 982, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 768, + "restaurant_id": 53, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 768, + "restaurant_id": 1962, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 768, + "restaurant_id": 112, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 768, + "restaurant_id": 1884 + }, + { + "user_id": 768, + "restaurant_id": 1624 + }, + { + "user_id": 768, + "restaurant_id": 964 + }, + { + "user_id": 768, + "restaurant_id": 165 + } + ], + "updated_at": "2025-03-30T11:32:22.047000" + }, + { + "user_info": { + "user_id": 769, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 769, + "min_price": 163079, + "max_price": 364632, + "preferred_categories": [ + 4, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b2d" + }, + "reservations": [ + { + "user_id": 769, + "restaurant_id": 2169, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 769, + "restaurant_id": 951 + }, + { + "user_id": 769, + "restaurant_id": 182 + } + ], + "updated_at": "2025-03-30T11:32:22.049000" + }, + { + "user_info": { + "user_id": 770, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 770, + "min_price": 116680, + "max_price": 332071, + "preferred_categories": [ + 1, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff9b2e" + }, + "reservations": [ + { + "user_id": 770, + "restaurant_id": 1198, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 770, + "restaurant_id": 2242, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 770, + "restaurant_id": 844 + }, + { + "user_id": 770, + "restaurant_id": 785 + }, + { + "user_id": 770, + "restaurant_id": 2004 + } + ], + "updated_at": "2025-03-30T11:32:22.052000" + }, + { + "user_info": { + "user_id": 771, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 771, + "min_price": 89174, + "max_price": 396359, + "preferred_categories": [ + 1, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b2f" + }, + "reservations": [ + { + "user_id": 771, + "restaurant_id": 2160, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 771, + "restaurant_id": 2203, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 771, + "restaurant_id": 109, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 771, + "restaurant_id": 581, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 771, + "restaurant_id": 691, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 771, + "restaurant_id": 1003 + }, + { + "user_id": 771, + "restaurant_id": 1672 + } + ], + "updated_at": "2025-03-30T11:32:22.054000" + }, + { + "user_info": { + "user_id": 772, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 772, + "min_price": 92456, + "max_price": 320385, + "preferred_categories": [ + 3, + 4, + 6 + ], + "_id": "67e92bc2785211cbd5ff9b30" + }, + "reservations": [ + { + "user_id": 772, + "restaurant_id": 298, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 772, + "restaurant_id": 2159, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 772, + "restaurant_id": 119, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 772, + "restaurant_id": 1996 + }, + { + "user_id": 772, + "restaurant_id": 1323 + }, + { + "user_id": 772, + "restaurant_id": 521 + }, + { + "user_id": 772, + "restaurant_id": 916 + } + ], + "updated_at": "2025-03-30T11:32:22.056000" + }, + { + "user_info": { + "user_id": 773, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 773, + "min_price": 93796, + "max_price": 380098, + "preferred_categories": [ + 2, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b31" + }, + "reservations": [ + { + "user_id": 773, + "restaurant_id": 1129, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 773, + "restaurant_id": 2180, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 773, + "restaurant_id": 1487, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 773, + "restaurant_id": 269, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 773, + "restaurant_id": 351 + }, + { + "user_id": 773, + "restaurant_id": 1518 + }, + { + "user_id": 773, + "restaurant_id": 628 + } + ], + "updated_at": "2025-03-30T11:32:22.059000" + }, + { + "user_info": { + "user_id": 774, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 774, + "min_price": 102819, + "max_price": 385140, + "preferred_categories": [ + 1, + 2, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b32" + }, + "reservations": [], + "likes": [ + { + "user_id": 774, + "restaurant_id": 1248 + }, + { + "user_id": 774, + "restaurant_id": 1186 + }, + { + "user_id": 774, + "restaurant_id": 1347 + } + ], + "updated_at": "2025-03-30T11:32:22.062000" + }, + { + "user_info": { + "user_id": 775, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 775, + "min_price": 163744, + "max_price": 473604, + "preferred_categories": [ + 6, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b33" + }, + "reservations": [ + { + "user_id": 775, + "restaurant_id": 805, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 775, + "restaurant_id": 98, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 775, + "restaurant_id": 1558 + }, + { + "user_id": 775, + "restaurant_id": 1146 + }, + { + "user_id": 775, + "restaurant_id": 868 + }, + { + "user_id": 775, + "restaurant_id": 2034 + } + ], + "updated_at": "2025-03-30T11:32:22.067000" + }, + { + "user_info": { + "user_id": 776, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 776, + "min_price": 178265, + "max_price": 296380, + "preferred_categories": [ + 7, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b34" + }, + "reservations": [ + { + "user_id": 776, + "restaurant_id": 1984, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 776, + "restaurant_id": 1580, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 776, + "restaurant_id": 104, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 776, + "restaurant_id": 176, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:22.073000" + }, + { + "user_info": { + "user_id": 777, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 777, + "min_price": 187165, + "max_price": 217741, + "preferred_categories": [ + 2, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b35" + }, + "reservations": [ + { + "user_id": 777, + "restaurant_id": 959, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 777, + "restaurant_id": 2245, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 777, + "restaurant_id": 593, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 777, + "restaurant_id": 1574, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 777, + "restaurant_id": 924 + }, + { + "user_id": 777, + "restaurant_id": 566 + } + ], + "updated_at": "2025-03-30T11:32:22.076000" + }, + { + "user_info": { + "user_id": 778, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 778, + "min_price": 141762, + "max_price": 468179, + "preferred_categories": [ + 3, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b36" + }, + "reservations": [ + { + "user_id": 778, + "restaurant_id": 1041, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 778, + "restaurant_id": 2121 + }, + { + "user_id": 778, + "restaurant_id": 1446 + } + ], + "updated_at": "2025-03-30T11:32:22.079000" + }, + { + "user_info": { + "user_id": 779, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 779, + "min_price": 157564, + "max_price": 265103, + "preferred_categories": [ + 1, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b37" + }, + "reservations": [ + { + "user_id": 779, + "restaurant_id": 305, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 779, + "restaurant_id": 71, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 779, + "restaurant_id": 909 + } + ], + "updated_at": "2025-03-30T11:32:22.083000" + }, + { + "user_info": { + "user_id": 780, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 780, + "min_price": 57513, + "max_price": 318917, + "preferred_categories": [ + 5, + 6, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b38" + }, + "reservations": [ + { + "user_id": 780, + "restaurant_id": 1970, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 780, + "restaurant_id": 269, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 780, + "restaurant_id": 2175, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 780, + "restaurant_id": 165, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 780, + "restaurant_id": 906 + }, + { + "user_id": 780, + "restaurant_id": 582 + }, + { + "user_id": 780, + "restaurant_id": 1803 + }, + { + "user_id": 780, + "restaurant_id": 950 + } + ], + "updated_at": "2025-03-30T11:32:22.086000" + }, + { + "user_info": { + "user_id": 781, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 781, + "min_price": 73388, + "max_price": 335389, + "preferred_categories": [ + 3, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b39" + }, + "reservations": [], + "likes": [ + { + "user_id": 781, + "restaurant_id": 2246 + }, + { + "user_id": 781, + "restaurant_id": 2090 + }, + { + "user_id": 781, + "restaurant_id": 531 + }, + { + "user_id": 781, + "restaurant_id": 1758 + } + ], + "updated_at": "2025-03-30T11:32:22.089000" + }, + { + "user_info": { + "user_id": 782, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 782, + "min_price": 41122, + "max_price": 344494, + "preferred_categories": [ + 2, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b3a" + }, + "reservations": [ + { + "user_id": 782, + "restaurant_id": 279, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 782, + "restaurant_id": 744, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 782, + "restaurant_id": 129 + }, + { + "user_id": 782, + "restaurant_id": 1117 + }, + { + "user_id": 782, + "restaurant_id": 587 + }, + { + "user_id": 782, + "restaurant_id": 1496 + }, + { + "user_id": 782, + "restaurant_id": 305 + } + ], + "updated_at": "2025-03-30T11:32:22.091000" + }, + { + "user_info": { + "user_id": 783, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 783, + "min_price": 43930, + "max_price": 468987, + "preferred_categories": [ + 1, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b3b" + }, + "reservations": [ + { + "user_id": 783, + "restaurant_id": 418, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 783, + "restaurant_id": 677, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 783, + "restaurant_id": 1014 + }, + { + "user_id": 783, + "restaurant_id": 1053 + } + ], + "updated_at": "2025-03-30T11:32:22.094000" + }, + { + "user_info": { + "user_id": 784, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 784, + "min_price": 64279, + "max_price": 480547, + "preferred_categories": [ + 2, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b3c" + }, + "reservations": [ + { + "user_id": 784, + "restaurant_id": 440, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 784, + "restaurant_id": 1875, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 784, + "restaurant_id": 2042, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 784, + "restaurant_id": 18, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 784, + "restaurant_id": 1923 + }, + { + "user_id": 784, + "restaurant_id": 1190 + }, + { + "user_id": 784, + "restaurant_id": 708 + } + ], + "updated_at": "2025-03-30T11:32:22.097000" + }, + { + "user_info": { + "user_id": 785, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 785, + "min_price": 122880, + "max_price": 375866, + "preferred_categories": [ + 8, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b3d" + }, + "reservations": [ + { + "user_id": 785, + "restaurant_id": 1353, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 785, + "restaurant_id": 675, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 785, + "restaurant_id": 1512 + }, + { + "user_id": 785, + "restaurant_id": 2238 + } + ], + "updated_at": "2025-03-30T11:32:22.102000" + }, + { + "user_info": { + "user_id": 786, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 786, + "min_price": 138257, + "max_price": 438184, + "preferred_categories": [ + 2, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b3e" + }, + "reservations": [ + { + "user_id": 786, + "restaurant_id": 1384, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 786, + "restaurant_id": 210, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 786, + "restaurant_id": 700 + }, + { + "user_id": 786, + "restaurant_id": 519 + }, + { + "user_id": 786, + "restaurant_id": 588 + }, + { + "user_id": 786, + "restaurant_id": 1277 + }, + { + "user_id": 786, + "restaurant_id": 1924 + } + ], + "updated_at": "2025-03-30T11:32:22.109000" + }, + { + "user_info": { + "user_id": 787, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 787, + "min_price": 42324, + "max_price": 221519, + "preferred_categories": [ + 1, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9b3f" + }, + "reservations": [ + { + "user_id": 787, + "restaurant_id": 1036, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 787, + "restaurant_id": 1651, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 787, + "restaurant_id": 316, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 787, + "restaurant_id": 951 + }, + { + "user_id": 787, + "restaurant_id": 512 + } + ], + "updated_at": "2025-03-30T11:32:22.112000" + }, + { + "user_info": { + "user_id": 788, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 788, + "min_price": 114298, + "max_price": 207393, + "preferred_categories": [ + 1, + 2, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b40" + }, + "reservations": [ + { + "user_id": 788, + "restaurant_id": 2037, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 788, + "restaurant_id": 2015, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 788, + "restaurant_id": 1757 + }, + { + "user_id": 788, + "restaurant_id": 563 + } + ], + "updated_at": "2025-03-30T11:32:22.116000" + }, + { + "user_info": { + "user_id": 789, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 789, + "min_price": 168810, + "max_price": 356242, + "preferred_categories": [ + 9, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b41" + }, + "reservations": [ + { + "user_id": 789, + "restaurant_id": 878, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 789, + "restaurant_id": 1747, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 789, + "restaurant_id": 2119, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 789, + "restaurant_id": 1382 + }, + { + "user_id": 789, + "restaurant_id": 960 + }, + { + "user_id": 789, + "restaurant_id": 987 + }, + { + "user_id": 789, + "restaurant_id": 699 + }, + { + "user_id": 789, + "restaurant_id": 577 + } + ], + "updated_at": "2025-03-30T11:32:22.118000" + }, + { + "user_info": { + "user_id": 790, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 790, + "min_price": 87084, + "max_price": 394532, + "preferred_categories": [ + 2, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b42" + }, + "reservations": [ + { + "user_id": 790, + "restaurant_id": 536, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 790, + "restaurant_id": 181 + }, + { + "user_id": 790, + "restaurant_id": 6 + }, + { + "user_id": 790, + "restaurant_id": 1075 + }, + { + "user_id": 790, + "restaurant_id": 2017 + } + ], + "updated_at": "2025-03-30T11:32:22.121000" + }, + { + "user_info": { + "user_id": 791, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 791, + "min_price": 160752, + "max_price": 322534, + "preferred_categories": [ + 5, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b43" + }, + "reservations": [ + { + "user_id": 791, + "restaurant_id": 652, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 791, + "restaurant_id": 328, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 791, + "restaurant_id": 800 + } + ], + "updated_at": "2025-03-30T11:32:22.125000" + }, + { + "user_info": { + "user_id": 792, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 792, + "min_price": 177535, + "max_price": 296770, + "preferred_categories": [ + 2, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b44" + }, + "reservations": [ + { + "user_id": 792, + "restaurant_id": 713, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 792, + "restaurant_id": 2062, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 792, + "restaurant_id": 475, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 792, + "restaurant_id": 217 + }, + { + "user_id": 792, + "restaurant_id": 2107 + }, + { + "user_id": 792, + "restaurant_id": 1268 + }, + { + "user_id": 792, + "restaurant_id": 1645 + } + ], + "updated_at": "2025-03-30T11:32:22.127000" + }, + { + "user_info": { + "user_id": 793, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 793, + "min_price": 181579, + "max_price": 359411, + "preferred_categories": [ + 7, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b45" + }, + "reservations": [ + { + "user_id": 793, + "restaurant_id": 761, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 793, + "restaurant_id": 482, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 793, + "restaurant_id": 1009, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 793, + "restaurant_id": 981 + }, + { + "user_id": 793, + "restaurant_id": 2108 + }, + { + "user_id": 793, + "restaurant_id": 738 + }, + { + "user_id": 793, + "restaurant_id": 1440 + } + ], + "updated_at": "2025-03-30T11:32:22.130000" + }, + { + "user_info": { + "user_id": 794, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 794, + "min_price": 147171, + "max_price": 215607, + "preferred_categories": [ + 5, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b46" + }, + "reservations": [ + { + "user_id": 794, + "restaurant_id": 404, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 794, + "restaurant_id": 169, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 794, + "restaurant_id": 1953, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 794, + "restaurant_id": 42, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 794, + "restaurant_id": 2079 + }, + { + "user_id": 794, + "restaurant_id": 1064 + }, + { + "user_id": 794, + "restaurant_id": 68 + } + ], + "updated_at": "2025-03-30T11:32:22.134000" + }, + { + "user_info": { + "user_id": 795, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 795, + "min_price": 29720, + "max_price": 252366, + "preferred_categories": [ + 3, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b47" + }, + "reservations": [ + { + "user_id": 795, + "restaurant_id": 1575, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 795, + "restaurant_id": 1651, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 795, + "restaurant_id": 1952, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 795, + "restaurant_id": 719, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 795, + "restaurant_id": 1906 + } + ], + "updated_at": "2025-03-30T11:32:22.137000" + }, + { + "user_info": { + "user_id": 796, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 796, + "min_price": 62941, + "max_price": 481102, + "preferred_categories": [ + 1, + 3, + 6 + ], + "_id": "67e92bc2785211cbd5ff9b48" + }, + "reservations": [ + { + "user_id": 796, + "restaurant_id": 2017, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 796, + "restaurant_id": 1400 + } + ], + "updated_at": "2025-03-30T11:32:22.140000" + }, + { + "user_info": { + "user_id": 797, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 797, + "min_price": 165244, + "max_price": 264008, + "preferred_categories": [ + 6, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b49" + }, + "reservations": [ + { + "user_id": 797, + "restaurant_id": 547, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 797, + "restaurant_id": 230, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:22.142000" + }, + { + "user_info": { + "user_id": 798, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 798, + "min_price": 198569, + "max_price": 344748, + "preferred_categories": [ + 1, + 3, + 6 + ], + "_id": "67e92bc2785211cbd5ff9b4a" + }, + "reservations": [ + { + "user_id": 798, + "restaurant_id": 386, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 798, + "restaurant_id": 1262 + }, + { + "user_id": 798, + "restaurant_id": 1614 + }, + { + "user_id": 798, + "restaurant_id": 1837 + }, + { + "user_id": 798, + "restaurant_id": 545 + }, + { + "user_id": 798, + "restaurant_id": 2157 + } + ], + "updated_at": "2025-03-30T11:32:22.146000" + }, + { + "user_info": { + "user_id": 799, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 799, + "min_price": 95359, + "max_price": 491171, + "preferred_categories": [ + 1, + 4, + 6 + ], + "_id": "67e92bc2785211cbd5ff9b4b" + }, + "reservations": [ + { + "user_id": 799, + "restaurant_id": 2225, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 799, + "restaurant_id": 1642, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 799, + "restaurant_id": 864 + }, + { + "user_id": 799, + "restaurant_id": 1684 + }, + { + "user_id": 799, + "restaurant_id": 2129 + }, + { + "user_id": 799, + "restaurant_id": 254 + }, + { + "user_id": 799, + "restaurant_id": 1236 + }, + { + "user_id": 799, + "restaurant_id": 1564 + }, + { + "user_id": 799, + "restaurant_id": 1765 + }, + { + "user_id": 799, + "restaurant_id": 426 + }, + { + "user_id": 799, + "restaurant_id": 1391 + }, + { + "user_id": 799, + "restaurant_id": 1153 + } + ], + "updated_at": "2025-03-30T11:32:22.151000" + }, + { + "user_info": { + "user_id": 800, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 800, + "min_price": 95032, + "max_price": 213500, + "preferred_categories": [ + 8, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b4c" + }, + "reservations": [ + { + "user_id": 800, + "restaurant_id": 1890, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 800, + "restaurant_id": 915, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 800, + "restaurant_id": 922, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 800, + "restaurant_id": 441 + }, + { + "user_id": 800, + "restaurant_id": 28 + }, + { + "user_id": 800, + "restaurant_id": 1082 + }, + { + "user_id": 800, + "restaurant_id": 152 + }, + { + "user_id": 800, + "restaurant_id": 850 + } + ], + "updated_at": "2025-03-30T11:32:22.154000" + }, + { + "user_info": { + "user_id": 801, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 801, + "min_price": 132018, + "max_price": 450193, + "preferred_categories": [ + 1, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff9b4d" + }, + "reservations": [ + { + "user_id": 801, + "restaurant_id": 1351, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 801, + "restaurant_id": 1463, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 801, + "restaurant_id": 973 + }, + { + "user_id": 801, + "restaurant_id": 66 + } + ], + "updated_at": "2025-03-30T11:32:22.156000" + }, + { + "user_info": { + "user_id": 802, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 802, + "min_price": 154584, + "max_price": 341561, + "preferred_categories": [ + 6, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b4e" + }, + "reservations": [ + { + "user_id": 802, + "restaurant_id": 1144, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 802, + "restaurant_id": 36, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 802, + "restaurant_id": 142, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 802, + "restaurant_id": 1392, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 802, + "restaurant_id": 1188 + }, + { + "user_id": 802, + "restaurant_id": 1692 + }, + { + "user_id": 802, + "restaurant_id": 1708 + }, + { + "user_id": 802, + "restaurant_id": 2233 + }, + { + "user_id": 802, + "restaurant_id": 1790 + }, + { + "user_id": 802, + "restaurant_id": 452 + } + ], + "updated_at": "2025-03-30T11:32:22.160000" + }, + { + "user_info": { + "user_id": 803, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 803, + "min_price": 180115, + "max_price": 491900, + "preferred_categories": [ + 4, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b4f" + }, + "reservations": [ + { + "user_id": 803, + "restaurant_id": 2068, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 803, + "restaurant_id": 1412, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 803, + "restaurant_id": 1432 + } + ], + "updated_at": "2025-03-30T11:32:22.162000" + }, + { + "user_info": { + "user_id": 804, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 804, + "min_price": 151088, + "max_price": 206970, + "preferred_categories": [ + 2, + 4, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b50" + }, + "reservations": [ + { + "user_id": 804, + "restaurant_id": 1072, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 804, + "restaurant_id": 706, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 804, + "restaurant_id": 262, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 804, + "restaurant_id": 64, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 804, + "restaurant_id": 1344 + }, + { + "user_id": 804, + "restaurant_id": 204 + } + ], + "updated_at": "2025-03-30T11:32:22.165000" + }, + { + "user_info": { + "user_id": 805, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 805, + "min_price": 25455, + "max_price": 316695, + "preferred_categories": [ + 5, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b51" + }, + "reservations": [ + { + "user_id": 805, + "restaurant_id": 1899, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 805, + "restaurant_id": 1249, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 805, + "restaurant_id": 1386, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 805, + "restaurant_id": 566 + } + ], + "updated_at": "2025-03-30T11:32:22.168000" + }, + { + "user_info": { + "user_id": 806, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 806, + "min_price": 34601, + "max_price": 382649, + "preferred_categories": [ + 1, + 2, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b52" + }, + "reservations": [ + { + "user_id": 806, + "restaurant_id": 582, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 806, + "restaurant_id": 367, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 806, + "restaurant_id": 686 + }, + { + "user_id": 806, + "restaurant_id": 205 + }, + { + "user_id": 806, + "restaurant_id": 548 + }, + { + "user_id": 806, + "restaurant_id": 984 + } + ], + "updated_at": "2025-03-30T11:32:22.171000" + }, + { + "user_info": { + "user_id": 807, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 807, + "min_price": 194583, + "max_price": 256997, + "preferred_categories": [ + 2, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b53" + }, + "reservations": [ + { + "user_id": 807, + "restaurant_id": 197, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 807, + "restaurant_id": 1803, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 807, + "restaurant_id": 38, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 807, + "restaurant_id": 135 + }, + { + "user_id": 807, + "restaurant_id": 1507 + }, + { + "user_id": 807, + "restaurant_id": 1270 + }, + { + "user_id": 807, + "restaurant_id": 1802 + }, + { + "user_id": 807, + "restaurant_id": 981 + } + ], + "updated_at": "2025-03-30T11:32:22.174000" + }, + { + "user_info": { + "user_id": 808, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 808, + "min_price": 184349, + "max_price": 365277, + "preferred_categories": [ + 2, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b54" + }, + "reservations": [ + { + "user_id": 808, + "restaurant_id": 1296, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 808, + "restaurant_id": 2009, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 808, + "restaurant_id": 1165, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 808, + "restaurant_id": 341, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 808, + "restaurant_id": 860 + }, + { + "user_id": 808, + "restaurant_id": 342 + }, + { + "user_id": 808, + "restaurant_id": 848 + } + ], + "updated_at": "2025-03-30T11:32:22.176000" + }, + { + "user_info": { + "user_id": 809, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 809, + "min_price": 152806, + "max_price": 485349, + "preferred_categories": [ + 2, + 4, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b55" + }, + "reservations": [ + { + "user_id": 809, + "restaurant_id": 2184, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 809, + "restaurant_id": 801, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 809, + "restaurant_id": 2204, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 809, + "restaurant_id": 1519 + }, + { + "user_id": 809, + "restaurant_id": 303 + }, + { + "user_id": 809, + "restaurant_id": 1649 + } + ], + "updated_at": "2025-03-30T11:32:22.179000" + }, + { + "user_info": { + "user_id": 810, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 810, + "min_price": 53863, + "max_price": 480262, + "preferred_categories": [ + 2, + 4, + 6 + ], + "_id": "67e92bc2785211cbd5ff9b56" + }, + "reservations": [ + { + "user_id": 810, + "restaurant_id": 256, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 810, + "restaurant_id": 2185, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 810, + "restaurant_id": 1787, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 810, + "restaurant_id": 1456 + }, + { + "user_id": 810, + "restaurant_id": 1952 + } + ], + "updated_at": "2025-03-30T11:32:22.182000" + }, + { + "user_info": { + "user_id": 811, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 811, + "min_price": 95202, + "max_price": 486303, + "preferred_categories": [ + 2, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b57" + }, + "reservations": [], + "likes": [ + { + "user_id": 811, + "restaurant_id": 1072 + } + ], + "updated_at": "2025-03-30T11:32:22.185000" + }, + { + "user_info": { + "user_id": 812, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 812, + "min_price": 55993, + "max_price": 258131, + "preferred_categories": [ + 8, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b58" + }, + "reservations": [ + { + "user_id": 812, + "restaurant_id": 1068, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 812, + "restaurant_id": 398 + }, + { + "user_id": 812, + "restaurant_id": 818 + } + ], + "updated_at": "2025-03-30T11:32:22.187000" + }, + { + "user_info": { + "user_id": 813, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 813, + "min_price": 126936, + "max_price": 463050, + "preferred_categories": [ + 2, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b59" + }, + "reservations": [], + "likes": [], + "updated_at": "2025-03-30T11:32:22.190000" + }, + { + "user_info": { + "user_id": 814, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 814, + "min_price": 29333, + "max_price": 270756, + "preferred_categories": [ + 3, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b5a" + }, + "reservations": [ + { + "user_id": 814, + "restaurant_id": 1602, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 814, + "restaurant_id": 331, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 814, + "restaurant_id": 1512 + }, + { + "user_id": 814, + "restaurant_id": 213 + }, + { + "user_id": 814, + "restaurant_id": 329 + }, + { + "user_id": 814, + "restaurant_id": 1619 + }, + { + "user_id": 814, + "restaurant_id": 1715 + }, + { + "user_id": 814, + "restaurant_id": 61 + }, + { + "user_id": 814, + "restaurant_id": 1193 + } + ], + "updated_at": "2025-03-30T11:32:22.194000" + }, + { + "user_info": { + "user_id": 815, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 815, + "min_price": 109027, + "max_price": 231164, + "preferred_categories": [ + 1, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9b5b" + }, + "reservations": [ + { + "user_id": 815, + "restaurant_id": 378, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 815, + "restaurant_id": 633, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 815, + "restaurant_id": 481 + }, + { + "user_id": 815, + "restaurant_id": 1511 + }, + { + "user_id": 815, + "restaurant_id": 732 + }, + { + "user_id": 815, + "restaurant_id": 150 + } + ], + "updated_at": "2025-03-30T11:32:22.196000" + }, + { + "user_info": { + "user_id": 816, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 816, + "min_price": 33207, + "max_price": 463899, + "preferred_categories": [ + 2, + 3, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b5c" + }, + "reservations": [ + { + "user_id": 816, + "restaurant_id": 741, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 816, + "restaurant_id": 2026, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 816, + "restaurant_id": 346, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 816, + "restaurant_id": 1518, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 816, + "restaurant_id": 1488, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 816, + "restaurant_id": 418, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 816, + "restaurant_id": 905 + }, + { + "user_id": 816, + "restaurant_id": 74 + }, + { + "user_id": 816, + "restaurant_id": 367 + } + ], + "updated_at": "2025-03-30T11:32:22.199000" + }, + { + "user_info": { + "user_id": 817, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 817, + "min_price": 123759, + "max_price": 399007, + "preferred_categories": [ + 2, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b5d" + }, + "reservations": [ + { + "user_id": 817, + "restaurant_id": 741, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 817, + "restaurant_id": 1464, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 817, + "restaurant_id": 802, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 817, + "restaurant_id": 22, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 817, + "restaurant_id": 906 + }, + { + "user_id": 817, + "restaurant_id": 1701 + }, + { + "user_id": 817, + "restaurant_id": 1746 + } + ], + "updated_at": "2025-03-30T11:32:22.202000" + }, + { + "user_info": { + "user_id": 818, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 818, + "min_price": 61278, + "max_price": 417191, + "preferred_categories": [ + 2, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b5e" + }, + "reservations": [ + { + "user_id": 818, + "restaurant_id": 1773, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 818, + "restaurant_id": 224, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 818, + "restaurant_id": 970, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 818, + "restaurant_id": 177, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 818, + "restaurant_id": 1140, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 818, + "restaurant_id": 2018, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 818, + "restaurant_id": 127 + }, + { + "user_id": 818, + "restaurant_id": 618 + }, + { + "user_id": 818, + "restaurant_id": 253 + }, + { + "user_id": 818, + "restaurant_id": 102 + } + ], + "updated_at": "2025-03-30T11:32:22.206000" + }, + { + "user_info": { + "user_id": 819, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 819, + "min_price": 130956, + "max_price": 343102, + "preferred_categories": [ + 2, + 4, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b5f" + }, + "reservations": [ + { + "user_id": 819, + "restaurant_id": 1525, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 819, + "restaurant_id": 826, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 819, + "restaurant_id": 964, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 819, + "restaurant_id": 1460 + }, + { + "user_id": 819, + "restaurant_id": 134 + }, + { + "user_id": 819, + "restaurant_id": 746 + }, + { + "user_id": 819, + "restaurant_id": 1772 + }, + { + "user_id": 819, + "restaurant_id": 679 + }, + { + "user_id": 819, + "restaurant_id": 555 + } + ], + "updated_at": "2025-03-30T11:32:22.209000" + }, + { + "user_info": { + "user_id": 820, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 820, + "min_price": 117529, + "max_price": 444359, + "preferred_categories": [ + 2, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b60" + }, + "reservations": [ + { + "user_id": 820, + "restaurant_id": 135, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 820, + "restaurant_id": 1390, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 820, + "restaurant_id": 457 + }, + { + "user_id": 820, + "restaurant_id": 1962 + }, + { + "user_id": 820, + "restaurant_id": 138 + } + ], + "updated_at": "2025-03-30T11:32:22.212000" + }, + { + "user_info": { + "user_id": 821, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 821, + "min_price": 148816, + "max_price": 456975, + "preferred_categories": [ + 1, + 6, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b61" + }, + "reservations": [ + { + "user_id": 821, + "restaurant_id": 1122, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 821, + "restaurant_id": 727, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 821, + "restaurant_id": 1210 + }, + { + "user_id": 821, + "restaurant_id": 939 + }, + { + "user_id": 821, + "restaurant_id": 1133 + }, + { + "user_id": 821, + "restaurant_id": 207 + } + ], + "updated_at": "2025-03-30T11:32:22.216000" + }, + { + "user_info": { + "user_id": 822, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 822, + "min_price": 127452, + "max_price": 281006, + "preferred_categories": [ + 4, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b62" + }, + "reservations": [ + { + "user_id": 822, + "restaurant_id": 1868, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 822, + "restaurant_id": 232 + }, + { + "user_id": 822, + "restaurant_id": 1295 + } + ], + "updated_at": "2025-03-30T11:32:22.218000" + }, + { + "user_info": { + "user_id": 823, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 823, + "min_price": 100855, + "max_price": 397983, + "preferred_categories": [ + 2, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b63" + }, + "reservations": [ + { + "user_id": 823, + "restaurant_id": 1965, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 823, + "restaurant_id": 732, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 823, + "restaurant_id": 1822, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:22.220000" + }, + { + "user_info": { + "user_id": 824, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 824, + "min_price": 76855, + "max_price": 355294, + "preferred_categories": [ + 2, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b64" + }, + "reservations": [ + { + "user_id": 824, + "restaurant_id": 1000, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 824, + "restaurant_id": 1933 + } + ], + "updated_at": "2025-03-30T11:32:22.223000" + }, + { + "user_info": { + "user_id": 825, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 825, + "min_price": 194612, + "max_price": 422055, + "preferred_categories": [ + 1, + 4, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b65" + }, + "reservations": [], + "likes": [ + { + "user_id": 825, + "restaurant_id": 1623 + }, + { + "user_id": 825, + "restaurant_id": 1966 + }, + { + "user_id": 825, + "restaurant_id": 315 + }, + { + "user_id": 825, + "restaurant_id": 902 + }, + { + "user_id": 825, + "restaurant_id": 1036 + }, + { + "user_id": 825, + "restaurant_id": 245 + } + ], + "updated_at": "2025-03-30T11:32:22.226000" + }, + { + "user_info": { + "user_id": 826, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 826, + "min_price": 97653, + "max_price": 214989, + "preferred_categories": [ + 6, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b66" + }, + "reservations": [ + { + "user_id": 826, + "restaurant_id": 1168, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 826, + "restaurant_id": 686, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 826, + "restaurant_id": 1253 + }, + { + "user_id": 826, + "restaurant_id": 1138 + }, + { + "user_id": 826, + "restaurant_id": 302 + }, + { + "user_id": 826, + "restaurant_id": 136 + } + ], + "updated_at": "2025-03-30T11:32:22.229000" + }, + { + "user_info": { + "user_id": 827, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 827, + "min_price": 157064, + "max_price": 269975, + "preferred_categories": [ + 1, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff9b67" + }, + "reservations": [ + { + "user_id": 827, + "restaurant_id": 1141, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 827, + "restaurant_id": 326, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 827, + "restaurant_id": 2067, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 827, + "restaurant_id": 1207, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 827, + "restaurant_id": 1954, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 827, + "restaurant_id": 243 + }, + { + "user_id": 827, + "restaurant_id": 1502 + } + ], + "updated_at": "2025-03-30T11:32:22.232000" + }, + { + "user_info": { + "user_id": 828, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 828, + "min_price": 152366, + "max_price": 494117, + "preferred_categories": [ + 1, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b68" + }, + "reservations": [ + { + "user_id": 828, + "restaurant_id": 1351, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 828, + "restaurant_id": 842, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 828, + "restaurant_id": 1960, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 828, + "restaurant_id": 1801 + }, + { + "user_id": 828, + "restaurant_id": 281 + }, + { + "user_id": 828, + "restaurant_id": 852 + }, + { + "user_id": 828, + "restaurant_id": 572 + } + ], + "updated_at": "2025-03-30T11:32:22.237000" + }, + { + "user_info": { + "user_id": 829, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 829, + "min_price": 65141, + "max_price": 231915, + "preferred_categories": [ + 3, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff9b69" + }, + "reservations": [ + { + "user_id": 829, + "restaurant_id": 765, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 829, + "restaurant_id": 1381 + }, + { + "user_id": 829, + "restaurant_id": 564 + }, + { + "user_id": 829, + "restaurant_id": 801 + }, + { + "user_id": 829, + "restaurant_id": 641 + }, + { + "user_id": 829, + "restaurant_id": 1185 + }, + { + "user_id": 829, + "restaurant_id": 1438 + } + ], + "updated_at": "2025-03-30T11:32:22.241000" + }, + { + "user_info": { + "user_id": 830, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 830, + "min_price": 198250, + "max_price": 458923, + "preferred_categories": [ + 1, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b6a" + }, + "reservations": [ + { + "user_id": 830, + "restaurant_id": 689, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 830, + "restaurant_id": 600, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 830, + "restaurant_id": 1639 + }, + { + "user_id": 830, + "restaurant_id": 1505 + }, + { + "user_id": 830, + "restaurant_id": 303 + } + ], + "updated_at": "2025-03-30T11:32:22.243000" + }, + { + "user_info": { + "user_id": 831, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 831, + "min_price": 141296, + "max_price": 389130, + "preferred_categories": [ + 2, + 3, + 6 + ], + "_id": "67e92bc2785211cbd5ff9b6b" + }, + "reservations": [ + { + "user_id": 831, + "restaurant_id": 248, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 831, + "restaurant_id": 1185, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 831, + "restaurant_id": 2119, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 831, + "restaurant_id": 949, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 831, + "restaurant_id": 1461, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 831, + "restaurant_id": 940, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 831, + "restaurant_id": 1739 + }, + { + "user_id": 831, + "restaurant_id": 1628 + }, + { + "user_id": 831, + "restaurant_id": 134 + }, + { + "user_id": 831, + "restaurant_id": 1977 + } + ], + "updated_at": "2025-03-30T11:32:22.246000" + }, + { + "user_info": { + "user_id": 832, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 832, + "min_price": 42046, + "max_price": 470729, + "preferred_categories": [ + 3, + 5, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b6c" + }, + "reservations": [ + { + "user_id": 832, + "restaurant_id": 288, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 832, + "restaurant_id": 336, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 832, + "restaurant_id": 834, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 832, + "restaurant_id": 1992, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 832, + "restaurant_id": 379 + }, + { + "user_id": 832, + "restaurant_id": 1048 + } + ], + "updated_at": "2025-03-30T11:32:22.248000" + }, + { + "user_info": { + "user_id": 833, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 833, + "min_price": 30181, + "max_price": 474279, + "preferred_categories": [ + 1, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b6d" + }, + "reservations": [ + { + "user_id": 833, + "restaurant_id": 308, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 833, + "restaurant_id": 1855, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 833, + "restaurant_id": 1458, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 833, + "restaurant_id": 980, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 833, + "restaurant_id": 2058, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 833, + "restaurant_id": 2135, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 833, + "restaurant_id": 353 + }, + { + "user_id": 833, + "restaurant_id": 738 + } + ], + "updated_at": "2025-03-30T11:32:22.251000" + }, + { + "user_info": { + "user_id": 834, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 834, + "min_price": 98575, + "max_price": 406649, + "preferred_categories": [ + 4, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b6e" + }, + "reservations": [ + { + "user_id": 834, + "restaurant_id": 354, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 834, + "restaurant_id": 993, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 834, + "restaurant_id": 419 + }, + { + "user_id": 834, + "restaurant_id": 1327 + } + ], + "updated_at": "2025-03-30T11:32:22.253000" + }, + { + "user_info": { + "user_id": 835, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 835, + "min_price": 184081, + "max_price": 267055, + "preferred_categories": [ + 1, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b6f" + }, + "reservations": [ + { + "user_id": 835, + "restaurant_id": 2002, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 835, + "restaurant_id": 1777, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 835, + "restaurant_id": 479, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 835, + "restaurant_id": 2071 + }, + { + "user_id": 835, + "restaurant_id": 410 + }, + { + "user_id": 835, + "restaurant_id": 937 + }, + { + "user_id": 835, + "restaurant_id": 394 + }, + { + "user_id": 835, + "restaurant_id": 1811 + }, + { + "user_id": 835, + "restaurant_id": 1613 + } + ], + "updated_at": "2025-03-30T11:32:22.257000" + }, + { + "user_info": { + "user_id": 836, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 836, + "min_price": 156447, + "max_price": 276545, + "preferred_categories": [ + 4, + 5, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b70" + }, + "reservations": [ + { + "user_id": 836, + "restaurant_id": 232, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 836, + "restaurant_id": 1668, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 836, + "restaurant_id": 1648, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 836, + "restaurant_id": 1647 + }, + { + "user_id": 836, + "restaurant_id": 1935 + }, + { + "user_id": 836, + "restaurant_id": 408 + } + ], + "updated_at": "2025-03-30T11:32:22.261000" + }, + { + "user_info": { + "user_id": 837, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 837, + "min_price": 36190, + "max_price": 482190, + "preferred_categories": [ + 4, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b71" + }, + "reservations": [ + { + "user_id": 837, + "restaurant_id": 1646, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 837, + "restaurant_id": 781, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 837, + "restaurant_id": 2017, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 837, + "restaurant_id": 1953 + }, + { + "user_id": 837, + "restaurant_id": 2033 + } + ], + "updated_at": "2025-03-30T11:32:22.264000" + }, + { + "user_info": { + "user_id": 838, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 838, + "min_price": 199736, + "max_price": 370077, + "preferred_categories": [ + 2, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b72" + }, + "reservations": [ + { + "user_id": 838, + "restaurant_id": 466, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 838, + "restaurant_id": 1952, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 838, + "restaurant_id": 961, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 838, + "restaurant_id": 445, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 838, + "restaurant_id": 10, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 838, + "restaurant_id": 2252, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 838, + "restaurant_id": 2018, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 838, + "restaurant_id": 1284 + }, + { + "user_id": 838, + "restaurant_id": 2191 + }, + { + "user_id": 838, + "restaurant_id": 1393 + } + ], + "updated_at": "2025-03-30T11:32:22.267000" + }, + { + "user_info": { + "user_id": 839, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 839, + "min_price": 154005, + "max_price": 231280, + "preferred_categories": [ + 2, + 4, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b73" + }, + "reservations": [ + { + "user_id": 839, + "restaurant_id": 80, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 839, + "restaurant_id": 2167, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 839, + "restaurant_id": 543, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 839, + "restaurant_id": 1145, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 839, + "restaurant_id": 1047, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 839, + "restaurant_id": 675, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 839, + "restaurant_id": 1124 + } + ], + "updated_at": "2025-03-30T11:32:22.269000" + }, + { + "user_info": { + "user_id": 840, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 840, + "min_price": 71108, + "max_price": 495127, + "preferred_categories": [ + 2, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b74" + }, + "reservations": [ + { + "user_id": 840, + "restaurant_id": 365, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 840, + "restaurant_id": 1406, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 840, + "restaurant_id": 1413 + }, + { + "user_id": 840, + "restaurant_id": 351 + }, + { + "user_id": 840, + "restaurant_id": 226 + } + ], + "updated_at": "2025-03-30T11:32:22.274000" + }, + { + "user_info": { + "user_id": 841, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 841, + "min_price": 151388, + "max_price": 379036, + "preferred_categories": [ + 2, + 3, + 6 + ], + "_id": "67e92bc2785211cbd5ff9b75" + }, + "reservations": [ + { + "user_id": 841, + "restaurant_id": 1881, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 841, + "restaurant_id": 696, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:22.277000" + }, + { + "user_info": { + "user_id": 842, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 842, + "min_price": 166094, + "max_price": 275802, + "preferred_categories": [ + 1, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b76" + }, + "reservations": [ + { + "user_id": 842, + "restaurant_id": 145, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 842, + "restaurant_id": 1573, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 842, + "restaurant_id": 1723 + }, + { + "user_id": 842, + "restaurant_id": 897 + }, + { + "user_id": 842, + "restaurant_id": 1578 + } + ], + "updated_at": "2025-03-30T11:32:22.281000" + }, + { + "user_info": { + "user_id": 843, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 843, + "min_price": 65851, + "max_price": 382652, + "preferred_categories": [ + 2, + 3, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b77" + }, + "reservations": [ + { + "user_id": 843, + "restaurant_id": 1740, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 843, + "restaurant_id": 860, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 843, + "restaurant_id": 2039, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 843, + "restaurant_id": 1559 + }, + { + "user_id": 843, + "restaurant_id": 84 + }, + { + "user_id": 843, + "restaurant_id": 1088 + }, + { + "user_id": 843, + "restaurant_id": 848 + }, + { + "user_id": 843, + "restaurant_id": 1668 + }, + { + "user_id": 843, + "restaurant_id": 1035 + } + ], + "updated_at": "2025-03-30T11:32:22.285000" + }, + { + "user_info": { + "user_id": 844, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 844, + "min_price": 19464, + "max_price": 442575, + "preferred_categories": [ + 3, + 4, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b78" + }, + "reservations": [ + { + "user_id": 844, + "restaurant_id": 2072, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 844, + "restaurant_id": 152, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 844, + "restaurant_id": 876 + }, + { + "user_id": 844, + "restaurant_id": 1989 + } + ], + "updated_at": "2025-03-30T11:32:22.287000" + }, + { + "user_info": { + "user_id": 845, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 845, + "min_price": 124543, + "max_price": 250858, + "preferred_categories": [ + 1, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b79" + }, + "reservations": [ + { + "user_id": 845, + "restaurant_id": 585, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 845, + "restaurant_id": 1472, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 845, + "restaurant_id": 623 + }, + { + "user_id": 845, + "restaurant_id": 28 + } + ], + "updated_at": "2025-03-30T11:32:22.290000" + }, + { + "user_info": { + "user_id": 846, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 846, + "min_price": 103129, + "max_price": 337823, + "preferred_categories": [ + 5, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b7a" + }, + "reservations": [ + { + "user_id": 846, + "restaurant_id": 1332, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 846, + "restaurant_id": 936, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 846, + "restaurant_id": 1434, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 846, + "restaurant_id": 1894, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 846, + "restaurant_id": 2154, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 846, + "restaurant_id": 634 + } + ], + "updated_at": "2025-03-30T11:32:22.293000" + }, + { + "user_info": { + "user_id": 847, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 847, + "min_price": 144115, + "max_price": 245935, + "preferred_categories": [ + 8, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b7b" + }, + "reservations": [ + { + "user_id": 847, + "restaurant_id": 1171, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 847, + "restaurant_id": 1495, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 847, + "restaurant_id": 1420, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 847, + "restaurant_id": 4, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 847, + "restaurant_id": 1122 + }, + { + "user_id": 847, + "restaurant_id": 420 + }, + { + "user_id": 847, + "restaurant_id": 972 + } + ], + "updated_at": "2025-03-30T11:32:22.295000" + }, + { + "user_info": { + "user_id": 848, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 848, + "min_price": 14192, + "max_price": 370596, + "preferred_categories": [ + 5, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b7c" + }, + "reservations": [ + { + "user_id": 848, + "restaurant_id": 562, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 848, + "restaurant_id": 1215, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 848, + "restaurant_id": 770, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 848, + "restaurant_id": 1228 + }, + { + "user_id": 848, + "restaurant_id": 1636 + }, + { + "user_id": 848, + "restaurant_id": 723 + }, + { + "user_id": 848, + "restaurant_id": 853 + } + ], + "updated_at": "2025-03-30T11:32:22.298000" + }, + { + "user_info": { + "user_id": 849, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 849, + "min_price": 20895, + "max_price": 399212, + "preferred_categories": [ + 2, + 3, + 6 + ], + "_id": "67e92bc2785211cbd5ff9b7d" + }, + "reservations": [ + { + "user_id": 849, + "restaurant_id": 30, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 849, + "restaurant_id": 1959, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 849, + "restaurant_id": 1052, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 849, + "restaurant_id": 1287 + } + ], + "updated_at": "2025-03-30T11:32:22.302000" + }, + { + "user_info": { + "user_id": 850, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 850, + "min_price": 166707, + "max_price": 476076, + "preferred_categories": [ + 4, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b7e" + }, + "reservations": [ + { + "user_id": 850, + "restaurant_id": 1677, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 850, + "restaurant_id": 48, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 850, + "restaurant_id": 2077 + }, + { + "user_id": 850, + "restaurant_id": 1651 + }, + { + "user_id": 850, + "restaurant_id": 229 + } + ], + "updated_at": "2025-03-30T11:32:22.305000" + }, + { + "user_info": { + "user_id": 851, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 851, + "min_price": 130374, + "max_price": 467415, + "preferred_categories": [ + 4, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b7f" + }, + "reservations": [ + { + "user_id": 851, + "restaurant_id": 1523, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 851, + "restaurant_id": 351, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 851, + "restaurant_id": 430 + }, + { + "user_id": 851, + "restaurant_id": 85 + }, + { + "user_id": 851, + "restaurant_id": 1050 + } + ], + "updated_at": "2025-03-30T11:32:22.309000" + }, + { + "user_info": { + "user_id": 852, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 852, + "min_price": 159580, + "max_price": 367151, + "preferred_categories": [ + 1, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b80" + }, + "reservations": [ + { + "user_id": 852, + "restaurant_id": 1018, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 852, + "restaurant_id": 349, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 852, + "restaurant_id": 787, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 852, + "restaurant_id": 976, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 852, + "restaurant_id": 1063, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 852, + "restaurant_id": 349, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 852, + "restaurant_id": 1702 + }, + { + "user_id": 852, + "restaurant_id": 1786 + }, + { + "user_id": 852, + "restaurant_id": 1282 + } + ], + "updated_at": "2025-03-30T11:32:22.312000" + }, + { + "user_info": { + "user_id": 853, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 853, + "min_price": 97724, + "max_price": 320912, + "preferred_categories": [ + 4, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b81" + }, + "reservations": [ + { + "user_id": 853, + "restaurant_id": 1662, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 853, + "restaurant_id": 739, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 853, + "restaurant_id": 355, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 853, + "restaurant_id": 2104 + }, + { + "user_id": 853, + "restaurant_id": 789 + }, + { + "user_id": 853, + "restaurant_id": 1660 + } + ], + "updated_at": "2025-03-30T11:32:22.315000" + }, + { + "user_info": { + "user_id": 854, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 854, + "min_price": 36661, + "max_price": 227404, + "preferred_categories": [ + 2, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b82" + }, + "reservations": [ + { + "user_id": 854, + "restaurant_id": 131, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 854, + "restaurant_id": 906, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 854, + "restaurant_id": 829, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 854, + "restaurant_id": 1368, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 854, + "restaurant_id": 876, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 854, + "restaurant_id": 1939 + }, + { + "user_id": 854, + "restaurant_id": 2010 + }, + { + "user_id": 854, + "restaurant_id": 341 + } + ], + "updated_at": "2025-03-30T11:32:22.317000" + }, + { + "user_info": { + "user_id": 855, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 855, + "min_price": 178926, + "max_price": 216256, + "preferred_categories": [ + 5, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b83" + }, + "reservations": [], + "likes": [ + { + "user_id": 855, + "restaurant_id": 1466 + } + ], + "updated_at": "2025-03-30T11:32:22.320000" + }, + { + "user_info": { + "user_id": 856, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 856, + "min_price": 80569, + "max_price": 387475, + "preferred_categories": [ + 7, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b84" + }, + "reservations": [ + { + "user_id": 856, + "restaurant_id": 640, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 856, + "restaurant_id": 1847, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 856, + "restaurant_id": 2140, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 856, + "restaurant_id": 544 + }, + { + "user_id": 856, + "restaurant_id": 2042 + }, + { + "user_id": 856, + "restaurant_id": 1771 + }, + { + "user_id": 856, + "restaurant_id": 326 + } + ], + "updated_at": "2025-03-30T11:32:22.325000" + }, + { + "user_info": { + "user_id": 857, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 857, + "min_price": 26385, + "max_price": 249253, + "preferred_categories": [ + 3, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b85" + }, + "reservations": [ + { + "user_id": 857, + "restaurant_id": 1826, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 857, + "restaurant_id": 947, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 857, + "restaurant_id": 218 + }, + { + "user_id": 857, + "restaurant_id": 346 + }, + { + "user_id": 857, + "restaurant_id": 7 + }, + { + "user_id": 857, + "restaurant_id": 631 + }, + { + "user_id": 857, + "restaurant_id": 1289 + }, + { + "user_id": 857, + "restaurant_id": 2203 + } + ], + "updated_at": "2025-03-30T11:32:22.329000" + }, + { + "user_info": { + "user_id": 858, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 858, + "min_price": 176910, + "max_price": 375847, + "preferred_categories": [ + 6, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b86" + }, + "reservations": [ + { + "user_id": 858, + "restaurant_id": 2163, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 858, + "restaurant_id": 2023, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 858, + "restaurant_id": 1379, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 858, + "restaurant_id": 497, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 858, + "restaurant_id": 9 + } + ], + "updated_at": "2025-03-30T11:32:22.332000" + }, + { + "user_info": { + "user_id": 859, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 859, + "min_price": 82035, + "max_price": 251309, + "preferred_categories": [ + 8, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b87" + }, + "reservations": [ + { + "user_id": 859, + "restaurant_id": 739, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 859, + "restaurant_id": 1492, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 859, + "restaurant_id": 355, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 859, + "restaurant_id": 1695, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 859, + "restaurant_id": 393, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 859, + "restaurant_id": 306 + }, + { + "user_id": 859, + "restaurant_id": 1638 + }, + { + "user_id": 859, + "restaurant_id": 241 + } + ], + "updated_at": "2025-03-30T11:32:22.335000" + }, + { + "user_info": { + "user_id": 860, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 860, + "min_price": 50345, + "max_price": 384041, + "preferred_categories": [ + 6, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b88" + }, + "reservations": [], + "likes": [ + { + "user_id": 860, + "restaurant_id": 480 + }, + { + "user_id": 860, + "restaurant_id": 417 + } + ], + "updated_at": "2025-03-30T11:32:22.339000" + }, + { + "user_info": { + "user_id": 861, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 861, + "min_price": 106483, + "max_price": 477161, + "preferred_categories": [ + 5, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b89" + }, + "reservations": [ + { + "user_id": 861, + "restaurant_id": 621, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 861, + "restaurant_id": 1237 + }, + { + "user_id": 861, + "restaurant_id": 1203 + } + ], + "updated_at": "2025-03-30T11:32:22.342000" + }, + { + "user_info": { + "user_id": 862, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 862, + "min_price": 27343, + "max_price": 218587, + "preferred_categories": [ + 1, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b8a" + }, + "reservations": [ + { + "user_id": 862, + "restaurant_id": 2083, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 862, + "restaurant_id": 934, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 862, + "restaurant_id": 1212, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 862, + "restaurant_id": 1254, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 862, + "restaurant_id": 2224 + }, + { + "user_id": 862, + "restaurant_id": 1949 + }, + { + "user_id": 862, + "restaurant_id": 1362 + }, + { + "user_id": 862, + "restaurant_id": 1407 + } + ], + "updated_at": "2025-03-30T11:32:22.346000" + }, + { + "user_info": { + "user_id": 863, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 863, + "min_price": 71235, + "max_price": 284722, + "preferred_categories": [ + 3, + 4, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b8b" + }, + "reservations": [ + { + "user_id": 863, + "restaurant_id": 110, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 863, + "restaurant_id": 42, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 863, + "restaurant_id": 100, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 863, + "restaurant_id": 980, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 863, + "restaurant_id": 46, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 863, + "restaurant_id": 1476, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 863, + "restaurant_id": 87 + }, + { + "user_id": 863, + "restaurant_id": 2104 + }, + { + "user_id": 863, + "restaurant_id": 847 + }, + { + "user_id": 863, + "restaurant_id": 88 + } + ], + "updated_at": "2025-03-30T11:32:22.348000" + }, + { + "user_info": { + "user_id": 864, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 864, + "min_price": 138762, + "max_price": 223603, + "preferred_categories": [ + 1, + 3, + 7 + ], + "_id": "67e92bc2785211cbd5ff9b8c" + }, + "reservations": [ + { + "user_id": 864, + "restaurant_id": 1166, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:22.352000" + }, + { + "user_info": { + "user_id": 865, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 865, + "min_price": 13085, + "max_price": 399762, + "preferred_categories": [ + 5, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b8d" + }, + "reservations": [ + { + "user_id": 865, + "restaurant_id": 1023, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 865, + "restaurant_id": 1367 + }, + { + "user_id": 865, + "restaurant_id": 137 + } + ], + "updated_at": "2025-03-30T11:32:22.354000" + }, + { + "user_info": { + "user_id": 866, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 866, + "min_price": 114094, + "max_price": 299484, + "preferred_categories": [ + 1, + 2, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b8e" + }, + "reservations": [ + { + "user_id": 866, + "restaurant_id": 1027, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 866, + "restaurant_id": 204, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 866, + "restaurant_id": 932, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 866, + "restaurant_id": 112, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 866, + "restaurant_id": 306 + }, + { + "user_id": 866, + "restaurant_id": 749 + }, + { + "user_id": 866, + "restaurant_id": 1762 + }, + { + "user_id": 866, + "restaurant_id": 990 + }, + { + "user_id": 866, + "restaurant_id": 1504 + } + ], + "updated_at": "2025-03-30T11:32:22.357000" + }, + { + "user_info": { + "user_id": 867, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 867, + "min_price": 70302, + "max_price": 407379, + "preferred_categories": [ + 2, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b8f" + }, + "reservations": [ + { + "user_id": 867, + "restaurant_id": 1132, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 867, + "restaurant_id": 2124, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 867, + "restaurant_id": 1660, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 867, + "restaurant_id": 1573 + }, + { + "user_id": 867, + "restaurant_id": 507 + }, + { + "user_id": 867, + "restaurant_id": 1536 + } + ], + "updated_at": "2025-03-30T11:32:22.360000" + }, + { + "user_info": { + "user_id": 868, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 868, + "min_price": 137758, + "max_price": 292348, + "preferred_categories": [ + 4, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b90" + }, + "reservations": [ + { + "user_id": 868, + "restaurant_id": 575, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 868, + "restaurant_id": 403 + }, + { + "user_id": 868, + "restaurant_id": 2173 + }, + { + "user_id": 868, + "restaurant_id": 1496 + }, + { + "user_id": 868, + "restaurant_id": 1370 + }, + { + "user_id": 868, + "restaurant_id": 480 + } + ], + "updated_at": "2025-03-30T11:32:22.362000" + }, + { + "user_info": { + "user_id": 869, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 869, + "min_price": 138395, + "max_price": 287417, + "preferred_categories": [ + 4, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b91" + }, + "reservations": [ + { + "user_id": 869, + "restaurant_id": 2231, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 869, + "restaurant_id": 185, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 869, + "restaurant_id": 1737, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 869, + "restaurant_id": 684, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 869, + "restaurant_id": 287 + }, + { + "user_id": 869, + "restaurant_id": 1108 + }, + { + "user_id": 869, + "restaurant_id": 1234 + } + ], + "updated_at": "2025-03-30T11:32:22.366000" + }, + { + "user_info": { + "user_id": 870, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 870, + "min_price": 66947, + "max_price": 200590, + "preferred_categories": [ + 3, + 5, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b92" + }, + "reservations": [], + "likes": [ + { + "user_id": 870, + "restaurant_id": 378 + }, + { + "user_id": 870, + "restaurant_id": 2244 + } + ], + "updated_at": "2025-03-30T11:32:22.369000" + }, + { + "user_info": { + "user_id": 871, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 871, + "min_price": 85320, + "max_price": 440673, + "preferred_categories": [ + 2, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9b93" + }, + "reservations": [ + { + "user_id": 871, + "restaurant_id": 2203, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 871, + "restaurant_id": 968, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 871, + "restaurant_id": 2145, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 871, + "restaurant_id": 1389 + } + ], + "updated_at": "2025-03-30T11:32:22.371000" + }, + { + "user_info": { + "user_id": 872, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 872, + "min_price": 116973, + "max_price": 356709, + "preferred_categories": [ + 2, + 4, + 7 + ], + "_id": "67e92bc2785211cbd5ff9b94" + }, + "reservations": [ + { + "user_id": 872, + "restaurant_id": 1494, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 872, + "restaurant_id": 913 + }, + { + "user_id": 872, + "restaurant_id": 1407 + }, + { + "user_id": 872, + "restaurant_id": 1094 + } + ], + "updated_at": "2025-03-30T11:32:22.373000" + }, + { + "user_info": { + "user_id": 873, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 873, + "min_price": 186602, + "max_price": 386039, + "preferred_categories": [ + 1, + 3, + 4 + ], + "_id": "67e92bc2785211cbd5ff9b95" + }, + "reservations": [ + { + "user_id": 873, + "restaurant_id": 2037, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 873, + "restaurant_id": 1909, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 873, + "restaurant_id": 1888 + }, + { + "user_id": 873, + "restaurant_id": 361 + } + ], + "updated_at": "2025-03-30T11:32:22.376000" + }, + { + "user_info": { + "user_id": 874, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 874, + "min_price": 75658, + "max_price": 270051, + "preferred_categories": [ + 5, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b96" + }, + "reservations": [ + { + "user_id": 874, + "restaurant_id": 1927, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 874, + "restaurant_id": 1130, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 874, + "restaurant_id": 2156, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 874, + "restaurant_id": 568 + }, + { + "user_id": 874, + "restaurant_id": 215 + }, + { + "user_id": 874, + "restaurant_id": 437 + } + ], + "updated_at": "2025-03-30T11:32:22.379000" + }, + { + "user_info": { + "user_id": 875, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 875, + "min_price": 164864, + "max_price": 436580, + "preferred_categories": [ + 5, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b97" + }, + "reservations": [ + { + "user_id": 875, + "restaurant_id": 593, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 875, + "restaurant_id": 2181 + }, + { + "user_id": 875, + "restaurant_id": 2097 + } + ], + "updated_at": "2025-03-30T11:32:22.382000" + }, + { + "user_info": { + "user_id": 876, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 876, + "min_price": 113863, + "max_price": 202918, + "preferred_categories": [ + 1, + 2, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b98" + }, + "reservations": [], + "likes": [ + { + "user_id": 876, + "restaurant_id": 959 + }, + { + "user_id": 876, + "restaurant_id": 1219 + }, + { + "user_id": 876, + "restaurant_id": 1074 + }, + { + "user_id": 876, + "restaurant_id": 1789 + } + ], + "updated_at": "2025-03-30T11:32:22.386000" + }, + { + "user_info": { + "user_id": 877, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 877, + "min_price": 149400, + "max_price": 318488, + "preferred_categories": [ + 1, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b99" + }, + "reservations": [ + { + "user_id": 877, + "restaurant_id": 298, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 877, + "restaurant_id": 1396, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 877, + "restaurant_id": 1705 + }, + { + "user_id": 877, + "restaurant_id": 1165 + }, + { + "user_id": 877, + "restaurant_id": 24 + }, + { + "user_id": 877, + "restaurant_id": 800 + }, + { + "user_id": 877, + "restaurant_id": 332 + } + ], + "updated_at": "2025-03-30T11:32:22.389000" + }, + { + "user_info": { + "user_id": 878, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 878, + "min_price": 140817, + "max_price": 315256, + "preferred_categories": [ + 4, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9b9a" + }, + "reservations": [ + { + "user_id": 878, + "restaurant_id": 612, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 878, + "restaurant_id": 935, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 878, + "restaurant_id": 1524, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 878, + "restaurant_id": 2020, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 878, + "restaurant_id": 1509, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 878, + "restaurant_id": 781 + }, + { + "user_id": 878, + "restaurant_id": 917 + }, + { + "user_id": 878, + "restaurant_id": 2143 + }, + { + "user_id": 878, + "restaurant_id": 1309 + }, + { + "user_id": 878, + "restaurant_id": 1282 + } + ], + "updated_at": "2025-03-30T11:32:22.392000" + }, + { + "user_info": { + "user_id": 879, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 879, + "min_price": 18867, + "max_price": 489213, + "preferred_categories": [ + 2, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff9b9b" + }, + "reservations": [ + { + "user_id": 879, + "restaurant_id": 2169, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 879, + "restaurant_id": 789 + }, + { + "user_id": 879, + "restaurant_id": 419 + } + ], + "updated_at": "2025-03-30T11:32:22.395000" + }, + { + "user_info": { + "user_id": 880, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 880, + "min_price": 70527, + "max_price": 446056, + "preferred_categories": [ + 1, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b9c" + }, + "reservations": [ + { + "user_id": 880, + "restaurant_id": 1267, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 880, + "restaurant_id": 399, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 880, + "restaurant_id": 309, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 880, + "restaurant_id": 1622, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 880, + "restaurant_id": 1291, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 880, + "restaurant_id": 1466 + }, + { + "user_id": 880, + "restaurant_id": 762 + }, + { + "user_id": 880, + "restaurant_id": 1832 + } + ], + "updated_at": "2025-03-30T11:32:22.398000" + }, + { + "user_info": { + "user_id": 881, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 881, + "min_price": 106178, + "max_price": 409633, + "preferred_categories": [ + 8, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b9d" + }, + "reservations": [ + { + "user_id": 881, + "restaurant_id": 1736, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 881, + "restaurant_id": 379 + }, + { + "user_id": 881, + "restaurant_id": 557 + }, + { + "user_id": 881, + "restaurant_id": 442 + } + ], + "updated_at": "2025-03-30T11:32:22.401000" + }, + { + "user_info": { + "user_id": 882, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 882, + "min_price": 49239, + "max_price": 451351, + "preferred_categories": [ + 9, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9b9e" + }, + "reservations": [ + { + "user_id": 882, + "restaurant_id": 371, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 882, + "restaurant_id": 1230, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 882, + "restaurant_id": 351 + } + ], + "updated_at": "2025-03-30T11:32:22.404000" + }, + { + "user_info": { + "user_id": 883, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 883, + "min_price": 15383, + "max_price": 215427, + "preferred_categories": [ + 4, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9b9f" + }, + "reservations": [ + { + "user_id": 883, + "restaurant_id": 461, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 883, + "restaurant_id": 208, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 883, + "restaurant_id": 115, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 883, + "restaurant_id": 873 + }, + { + "user_id": 883, + "restaurant_id": 91 + }, + { + "user_id": 883, + "restaurant_id": 979 + } + ], + "updated_at": "2025-03-30T11:32:22.408000" + }, + { + "user_info": { + "user_id": 884, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 884, + "min_price": 31959, + "max_price": 406498, + "preferred_categories": [ + 2, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ba0" + }, + "reservations": [ + { + "user_id": 884, + "restaurant_id": 1830, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 884, + "restaurant_id": 119 + }, + { + "user_id": 884, + "restaurant_id": 32 + }, + { + "user_id": 884, + "restaurant_id": 700 + } + ], + "updated_at": "2025-03-30T11:32:22.411000" + }, + { + "user_info": { + "user_id": 885, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 885, + "min_price": 108994, + "max_price": 365405, + "preferred_categories": [ + 2, + 4, + 7 + ], + "_id": "67e92bc2785211cbd5ff9ba1" + }, + "reservations": [ + { + "user_id": 885, + "restaurant_id": 1608, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 885, + "restaurant_id": 88, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 885, + "restaurant_id": 1320 + }, + { + "user_id": 885, + "restaurant_id": 1970 + } + ], + "updated_at": "2025-03-30T11:32:22.415000" + }, + { + "user_info": { + "user_id": 886, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 886, + "min_price": 104025, + "max_price": 280593, + "preferred_categories": [ + 1, + 3, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ba2" + }, + "reservations": [ + { + "user_id": 886, + "restaurant_id": 1795, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 886, + "restaurant_id": 1071, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 886, + "restaurant_id": 2234, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 886, + "restaurant_id": 1062, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 886, + "restaurant_id": 909, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 886, + "restaurant_id": 1900 + }, + { + "user_id": 886, + "restaurant_id": 2038 + } + ], + "updated_at": "2025-03-30T11:32:22.418000" + }, + { + "user_info": { + "user_id": 887, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 887, + "min_price": 182917, + "max_price": 275781, + "preferred_categories": [ + 1, + 2, + 10 + ], + "_id": "67e92bc2785211cbd5ff9ba3" + }, + "reservations": [ + { + "user_id": 887, + "restaurant_id": 695, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 887, + "restaurant_id": 698, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 887, + "restaurant_id": 804, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 887, + "restaurant_id": 517, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 887, + "restaurant_id": 621, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 887, + "restaurant_id": 1439, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 887, + "restaurant_id": 1924 + }, + { + "user_id": 887, + "restaurant_id": 542 + } + ], + "updated_at": "2025-03-30T11:32:22.421000" + }, + { + "user_info": { + "user_id": 888, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 888, + "min_price": 51336, + "max_price": 278623, + "preferred_categories": [ + 1, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ba4" + }, + "reservations": [ + { + "user_id": 888, + "restaurant_id": 2063, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 888, + "restaurant_id": 2114, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 888, + "restaurant_id": 2206, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 888, + "restaurant_id": 1054, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 888, + "restaurant_id": 591 + }, + { + "user_id": 888, + "restaurant_id": 1502 + }, + { + "user_id": 888, + "restaurant_id": 1039 + }, + { + "user_id": 888, + "restaurant_id": 221 + }, + { + "user_id": 888, + "restaurant_id": 1779 + } + ], + "updated_at": "2025-03-30T11:32:22.424000" + }, + { + "user_info": { + "user_id": 889, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 889, + "min_price": 137118, + "max_price": 479862, + "preferred_categories": [ + 1, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ba5" + }, + "reservations": [ + { + "user_id": 889, + "restaurant_id": 981, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 889, + "restaurant_id": 254 + }, + { + "user_id": 889, + "restaurant_id": 1192 + }, + { + "user_id": 889, + "restaurant_id": 190 + }, + { + "user_id": 889, + "restaurant_id": 575 + } + ], + "updated_at": "2025-03-30T11:32:22.427000" + }, + { + "user_info": { + "user_id": 890, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 890, + "min_price": 109092, + "max_price": 371046, + "preferred_categories": [ + 4, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9ba6" + }, + "reservations": [ + { + "user_id": 890, + "restaurant_id": 1138, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 890, + "restaurant_id": 486, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 890, + "restaurant_id": 405, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 890, + "restaurant_id": 381 + }, + { + "user_id": 890, + "restaurant_id": 1164 + }, + { + "user_id": 890, + "restaurant_id": 1724 + } + ], + "updated_at": "2025-03-30T11:32:22.431000" + }, + { + "user_info": { + "user_id": 891, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 891, + "min_price": 133532, + "max_price": 226188, + "preferred_categories": [ + 2, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9ba7" + }, + "reservations": [ + { + "user_id": 891, + "restaurant_id": 1041, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 891, + "restaurant_id": 86 + }, + { + "user_id": 891, + "restaurant_id": 288 + }, + { + "user_id": 891, + "restaurant_id": 525 + } + ], + "updated_at": "2025-03-30T11:32:22.433000" + }, + { + "user_info": { + "user_id": 892, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 892, + "min_price": 178951, + "max_price": 413603, + "preferred_categories": [ + 4, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff9ba8" + }, + "reservations": [ + { + "user_id": 892, + "restaurant_id": 156, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 892, + "restaurant_id": 29 + }, + { + "user_id": 892, + "restaurant_id": 955 + }, + { + "user_id": 892, + "restaurant_id": 865 + } + ], + "updated_at": "2025-03-30T11:32:22.438000" + }, + { + "user_info": { + "user_id": 893, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 893, + "min_price": 191499, + "max_price": 330993, + "preferred_categories": [ + 2, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9ba9" + }, + "reservations": [ + { + "user_id": 893, + "restaurant_id": 1129, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 893, + "restaurant_id": 1063, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 893, + "restaurant_id": 779, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 893, + "restaurant_id": 177, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 893, + "restaurant_id": 2159 + }, + { + "user_id": 893, + "restaurant_id": 463 + }, + { + "user_id": 893, + "restaurant_id": 518 + }, + { + "user_id": 893, + "restaurant_id": 1171 + }, + { + "user_id": 893, + "restaurant_id": 1280 + } + ], + "updated_at": "2025-03-30T11:32:22.441000" + }, + { + "user_info": { + "user_id": 894, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 894, + "min_price": 144381, + "max_price": 487445, + "preferred_categories": [ + 2, + 4, + 6 + ], + "_id": "67e92bc2785211cbd5ff9baa" + }, + "reservations": [], + "likes": [ + { + "user_id": 894, + "restaurant_id": 1852 + }, + { + "user_id": 894, + "restaurant_id": 275 + }, + { + "user_id": 894, + "restaurant_id": 1873 + } + ], + "updated_at": "2025-03-30T11:32:22.445000" + }, + { + "user_info": { + "user_id": 895, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 895, + "min_price": 102496, + "max_price": 446419, + "preferred_categories": [ + 2, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9bab" + }, + "reservations": [ + { + "user_id": 895, + "restaurant_id": 2184, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 895, + "restaurant_id": 1576, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 895, + "restaurant_id": 19, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 895, + "restaurant_id": 1264, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 895, + "restaurant_id": 1678, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 895, + "restaurant_id": 1139, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:22.449000" + }, + { + "user_info": { + "user_id": 896, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 896, + "min_price": 159943, + "max_price": 411668, + "preferred_categories": [ + 9, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bac" + }, + "reservations": [], + "likes": [ + { + "user_id": 896, + "restaurant_id": 2165 + }, + { + "user_id": 896, + "restaurant_id": 935 + }, + { + "user_id": 896, + "restaurant_id": 1045 + } + ], + "updated_at": "2025-03-30T11:32:22.452000" + }, + { + "user_info": { + "user_id": 897, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 897, + "min_price": 49946, + "max_price": 274151, + "preferred_categories": [ + 7, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9bad" + }, + "reservations": [ + { + "user_id": 897, + "restaurant_id": 617, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 897, + "restaurant_id": 2017, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 897, + "restaurant_id": 1850, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 897, + "restaurant_id": 239, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 897, + "restaurant_id": 17 + }, + { + "user_id": 897, + "restaurant_id": 298 + } + ], + "updated_at": "2025-03-30T11:32:22.455000" + }, + { + "user_info": { + "user_id": 898, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 898, + "min_price": 173407, + "max_price": 454904, + "preferred_categories": [ + 6, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bae" + }, + "reservations": [ + { + "user_id": 898, + "restaurant_id": 1636, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 898, + "restaurant_id": 1987, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 898, + "restaurant_id": 359, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 898, + "restaurant_id": 272, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 898, + "restaurant_id": 237, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 898, + "restaurant_id": 2089, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 898, + "restaurant_id": 1592, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 898, + "restaurant_id": 1978, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 898, + "restaurant_id": 473 + }, + { + "user_id": 898, + "restaurant_id": 1135 + } + ], + "updated_at": "2025-03-30T11:32:22.458000" + }, + { + "user_info": { + "user_id": 899, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 899, + "min_price": 42955, + "max_price": 468542, + "preferred_categories": [ + 6, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9baf" + }, + "reservations": [ + { + "user_id": 899, + "restaurant_id": 217, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 899, + "restaurant_id": 2250, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 899, + "restaurant_id": 580, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 899, + "restaurant_id": 2026 + }, + { + "user_id": 899, + "restaurant_id": 243 + }, + { + "user_id": 899, + "restaurant_id": 1567 + }, + { + "user_id": 899, + "restaurant_id": 673 + }, + { + "user_id": 899, + "restaurant_id": 1694 + } + ], + "updated_at": "2025-03-30T11:32:22.461000" + }, + { + "user_info": { + "user_id": 900, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 900, + "min_price": 61101, + "max_price": 317048, + "preferred_categories": [ + 6, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bb0" + }, + "reservations": [], + "likes": [ + { + "user_id": 900, + "restaurant_id": 1010 + } + ], + "updated_at": "2025-03-30T11:32:22.465000" + }, + { + "user_info": { + "user_id": 901, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 901, + "min_price": 74675, + "max_price": 385289, + "preferred_categories": [ + 1, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9bb1" + }, + "reservations": [ + { + "user_id": 901, + "restaurant_id": 1687, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 901, + "restaurant_id": 2051, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 901, + "restaurant_id": 950, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 901, + "restaurant_id": 1241, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 901, + "restaurant_id": 1183 + } + ], + "updated_at": "2025-03-30T11:32:22.467000" + }, + { + "user_info": { + "user_id": 902, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 902, + "min_price": 72409, + "max_price": 266676, + "preferred_categories": [ + 3, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9bb2" + }, + "reservations": [ + { + "user_id": 902, + "restaurant_id": 1815, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 902, + "restaurant_id": 39, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 902, + "restaurant_id": 771, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 902, + "restaurant_id": 1569, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 902, + "restaurant_id": 204, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 902, + "restaurant_id": 1142, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 902, + "restaurant_id": 1610, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 902, + "restaurant_id": 623 + } + ], + "updated_at": "2025-03-30T11:32:22.471000" + }, + { + "user_info": { + "user_id": 903, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 903, + "min_price": 100314, + "max_price": 254136, + "preferred_categories": [ + 2, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff9bb3" + }, + "reservations": [ + { + "user_id": 903, + "restaurant_id": 1947, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 903, + "restaurant_id": 1586, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 903, + "restaurant_id": 520, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 903, + "restaurant_id": 1791, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 903, + "restaurant_id": 2081, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 903, + "restaurant_id": 1161 + }, + { + "user_id": 903, + "restaurant_id": 1080 + } + ], + "updated_at": "2025-03-30T11:32:22.474000" + }, + { + "user_info": { + "user_id": 904, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 904, + "min_price": 151225, + "max_price": 314605, + "preferred_categories": [ + 1, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9bb4" + }, + "reservations": [ + { + "user_id": 904, + "restaurant_id": 1603, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 904, + "restaurant_id": 1981, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 904, + "restaurant_id": 602, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 904, + "restaurant_id": 493, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 904, + "restaurant_id": 1886, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 904, + "restaurant_id": 210 + }, + { + "user_id": 904, + "restaurant_id": 1145 + }, + { + "user_id": 904, + "restaurant_id": 954 + } + ], + "updated_at": "2025-03-30T11:32:22.477000" + }, + { + "user_info": { + "user_id": 905, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 905, + "min_price": 45195, + "max_price": 459648, + "preferred_categories": [ + 6, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bb5" + }, + "reservations": [ + { + "user_id": 905, + "restaurant_id": 1557, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 905, + "restaurant_id": 859, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 905, + "restaurant_id": 1419 + } + ], + "updated_at": "2025-03-30T11:32:22.480000" + }, + { + "user_info": { + "user_id": 906, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 906, + "min_price": 86609, + "max_price": 295585, + "preferred_categories": [ + 2, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9bb6" + }, + "reservations": [ + { + "user_id": 906, + "restaurant_id": 1198, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 906, + "restaurant_id": 2010, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:22.484000" + }, + { + "user_info": { + "user_id": 907, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 907, + "min_price": 75883, + "max_price": 371041, + "preferred_categories": [ + 3, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9bb7" + }, + "reservations": [ + { + "user_id": 907, + "restaurant_id": 1586, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 907, + "restaurant_id": 2053, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 907, + "restaurant_id": 557 + }, + { + "user_id": 907, + "restaurant_id": 1655 + } + ], + "updated_at": "2025-03-30T11:32:22.486000" + }, + { + "user_info": { + "user_id": 908, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 908, + "min_price": 57193, + "max_price": 371542, + "preferred_categories": [ + 4, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bb8" + }, + "reservations": [ + { + "user_id": 908, + "restaurant_id": 1931, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 908, + "restaurant_id": 805 + }, + { + "user_id": 908, + "restaurant_id": 149 + }, + { + "user_id": 908, + "restaurant_id": 1483 + } + ], + "updated_at": "2025-03-30T11:32:22.489000" + }, + { + "user_info": { + "user_id": 909, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 909, + "min_price": 32255, + "max_price": 419290, + "preferred_categories": [ + 5, + 6, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bb9" + }, + "reservations": [ + { + "user_id": 909, + "restaurant_id": 139, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 909, + "restaurant_id": 535 + }, + { + "user_id": 909, + "restaurant_id": 757 + }, + { + "user_id": 909, + "restaurant_id": 2194 + }, + { + "user_id": 909, + "restaurant_id": 251 + }, + { + "user_id": 909, + "restaurant_id": 1110 + }, + { + "user_id": 909, + "restaurant_id": 1474 + } + ], + "updated_at": "2025-03-30T11:32:22.492000" + }, + { + "user_info": { + "user_id": 910, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 910, + "min_price": 154274, + "max_price": 332905, + "preferred_categories": [ + 2, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9bba" + }, + "reservations": [ + { + "user_id": 910, + "restaurant_id": 602, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 910, + "restaurant_id": 691, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 910, + "restaurant_id": 781, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 910, + "restaurant_id": 417, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 910, + "restaurant_id": 1725, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 910, + "restaurant_id": 1642 + }, + { + "user_id": 910, + "restaurant_id": 177 + } + ], + "updated_at": "2025-03-30T11:32:22.495000" + }, + { + "user_info": { + "user_id": 911, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 911, + "min_price": 92842, + "max_price": 396616, + "preferred_categories": [ + 1, + 2, + 8 + ], + "_id": "67e92bc2785211cbd5ff9bbb" + }, + "reservations": [ + { + "user_id": 911, + "restaurant_id": 801, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 911, + "restaurant_id": 328 + }, + { + "user_id": 911, + "restaurant_id": 899 + } + ], + "updated_at": "2025-03-30T11:32:22.499000" + }, + { + "user_info": { + "user_id": 912, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 912, + "min_price": 72568, + "max_price": 225868, + "preferred_categories": [ + 4, + 5, + 11 + ], + "_id": "67e92bc2785211cbd5ff9bbc" + }, + "reservations": [ + { + "user_id": 912, + "restaurant_id": 744, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 912, + "restaurant_id": 1104, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 912, + "restaurant_id": 378, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 912, + "restaurant_id": 1473, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 912, + "restaurant_id": 2234 + }, + { + "user_id": 912, + "restaurant_id": 326 + } + ], + "updated_at": "2025-03-30T11:32:22.501000" + }, + { + "user_info": { + "user_id": 913, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 913, + "min_price": 158045, + "max_price": 483313, + "preferred_categories": [ + 3, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9bbd" + }, + "reservations": [ + { + "user_id": 913, + "restaurant_id": 114, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 913, + "restaurant_id": 873, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 913, + "restaurant_id": 716 + }, + { + "user_id": 913, + "restaurant_id": 773 + }, + { + "user_id": 913, + "restaurant_id": 220 + } + ], + "updated_at": "2025-03-30T11:32:22.504000" + }, + { + "user_info": { + "user_id": 914, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 914, + "min_price": 59021, + "max_price": 409500, + "preferred_categories": [ + 8, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bbe" + }, + "reservations": [ + { + "user_id": 914, + "restaurant_id": 531, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 914, + "restaurant_id": 297 + }, + { + "user_id": 914, + "restaurant_id": 102 + }, + { + "user_id": 914, + "restaurant_id": 1983 + }, + { + "user_id": 914, + "restaurant_id": 2227 + }, + { + "user_id": 914, + "restaurant_id": 506 + } + ], + "updated_at": "2025-03-30T11:32:22.510000" + }, + { + "user_info": { + "user_id": 915, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 915, + "min_price": 136188, + "max_price": 347719, + "preferred_categories": [ + 1, + 3, + 6 + ], + "_id": "67e92bc2785211cbd5ff9bbf" + }, + "reservations": [ + { + "user_id": 915, + "restaurant_id": 104, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 915, + "restaurant_id": 806, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 915, + "restaurant_id": 1818, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 915, + "restaurant_id": 295, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 915, + "restaurant_id": 1737 + } + ], + "updated_at": "2025-03-30T11:32:22.515000" + }, + { + "user_info": { + "user_id": 916, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 916, + "min_price": 70254, + "max_price": 300122, + "preferred_categories": [ + 3, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff9bc0" + }, + "reservations": [ + { + "user_id": 916, + "restaurant_id": 2212, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 916, + "restaurant_id": 967, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 916, + "restaurant_id": 2017, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 916, + "restaurant_id": 219 + }, + { + "user_id": 916, + "restaurant_id": 1370 + }, + { + "user_id": 916, + "restaurant_id": 1636 + }, + { + "user_id": 916, + "restaurant_id": 809 + }, + { + "user_id": 916, + "restaurant_id": 2017 + }, + { + "user_id": 916, + "restaurant_id": 1659 + } + ], + "updated_at": "2025-03-30T11:32:22.519000" + }, + { + "user_info": { + "user_id": 917, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 917, + "min_price": 172369, + "max_price": 306186, + "preferred_categories": [ + 7, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9bc1" + }, + "reservations": [ + { + "user_id": 917, + "restaurant_id": 244, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 917, + "restaurant_id": 1880, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 917, + "restaurant_id": 1459, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 917, + "restaurant_id": 1301 + }, + { + "user_id": 917, + "restaurant_id": 284 + } + ], + "updated_at": "2025-03-30T11:32:22.522000" + }, + { + "user_info": { + "user_id": 918, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 918, + "min_price": 48222, + "max_price": 317909, + "preferred_categories": [ + 8, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bc2" + }, + "reservations": [ + { + "user_id": 918, + "restaurant_id": 91, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 918, + "restaurant_id": 938, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 918, + "restaurant_id": 1156, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 918, + "restaurant_id": 410, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 918, + "restaurant_id": 2017 + } + ], + "updated_at": "2025-03-30T11:32:22.525000" + }, + { + "user_info": { + "user_id": 919, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 919, + "min_price": 51965, + "max_price": 243993, + "preferred_categories": [ + 7, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bc3" + }, + "reservations": [ + { + "user_id": 919, + "restaurant_id": 2025, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 919, + "restaurant_id": 564, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 919, + "restaurant_id": 1621, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 919, + "restaurant_id": 1656 + }, + { + "user_id": 919, + "restaurant_id": 1520 + }, + { + "user_id": 919, + "restaurant_id": 1425 + } + ], + "updated_at": "2025-03-30T11:32:22.529000" + }, + { + "user_info": { + "user_id": 920, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 920, + "min_price": 172458, + "max_price": 322095, + "preferred_categories": [ + 1, + 2, + 7 + ], + "_id": "67e92bc2785211cbd5ff9bc4" + }, + "reservations": [ + { + "user_id": 920, + "restaurant_id": 1580, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 920, + "restaurant_id": 21, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 920, + "restaurant_id": 2037, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 920, + "restaurant_id": 1711, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 920, + "restaurant_id": 1502, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 920, + "restaurant_id": 982 + }, + { + "user_id": 920, + "restaurant_id": 1146 + }, + { + "user_id": 920, + "restaurant_id": 2098 + } + ], + "updated_at": "2025-03-30T11:32:22.531000" + }, + { + "user_info": { + "user_id": 921, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 921, + "min_price": 60419, + "max_price": 305860, + "preferred_categories": [ + 3, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bc5" + }, + "reservations": [ + { + "user_id": 921, + "restaurant_id": 1447, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 921, + "restaurant_id": 880, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 921, + "restaurant_id": 698, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 921, + "restaurant_id": 1322, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 921, + "restaurant_id": 2206, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 921, + "restaurant_id": 1339 + } + ], + "updated_at": "2025-03-30T11:32:22.536000" + }, + { + "user_info": { + "user_id": 922, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 922, + "min_price": 24312, + "max_price": 399045, + "preferred_categories": [ + 1, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bc6" + }, + "reservations": [ + { + "user_id": 922, + "restaurant_id": 345, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 922, + "restaurant_id": 713, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 922, + "restaurant_id": 52, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 922, + "restaurant_id": 1410, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 922, + "restaurant_id": 2101, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 922, + "restaurant_id": 532, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 922, + "restaurant_id": 255 + }, + { + "user_id": 922, + "restaurant_id": 1199 + } + ], + "updated_at": "2025-03-30T11:32:22.539000" + }, + { + "user_info": { + "user_id": 923, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 923, + "min_price": 25075, + "max_price": 466188, + "preferred_categories": [ + 5, + 6, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bc7" + }, + "reservations": [ + { + "user_id": 923, + "restaurant_id": 1761, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 923, + "restaurant_id": 2105, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 923, + "restaurant_id": 1837, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 923, + "restaurant_id": 2186, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 923, + "restaurant_id": 1783, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 923, + "restaurant_id": 1779, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 923, + "restaurant_id": 1701 + }, + { + "user_id": 923, + "restaurant_id": 775 + }, + { + "user_id": 923, + "restaurant_id": 963 + }, + { + "user_id": 923, + "restaurant_id": 971 + }, + { + "user_id": 923, + "restaurant_id": 593 + } + ], + "updated_at": "2025-03-30T11:32:22.542000" + }, + { + "user_info": { + "user_id": 924, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 924, + "min_price": 44907, + "max_price": 328821, + "preferred_categories": [ + 1, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bc8" + }, + "reservations": [ + { + "user_id": 924, + "restaurant_id": 2181, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 924, + "restaurant_id": 2215, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 924, + "restaurant_id": 1432, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 924, + "restaurant_id": 1529 + }, + { + "user_id": 924, + "restaurant_id": 1058 + }, + { + "user_id": 924, + "restaurant_id": 32 + } + ], + "updated_at": "2025-03-30T11:32:22.546000" + }, + { + "user_info": { + "user_id": 925, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 925, + "min_price": 194685, + "max_price": 392780, + "preferred_categories": [ + 2, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bc9" + }, + "reservations": [ + { + "user_id": 925, + "restaurant_id": 1993, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 925, + "restaurant_id": 1993 + }, + { + "user_id": 925, + "restaurant_id": 47 + }, + { + "user_id": 925, + "restaurant_id": 1006 + } + ], + "updated_at": "2025-03-30T11:32:22.548000" + }, + { + "user_info": { + "user_id": 926, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 926, + "min_price": 186881, + "max_price": 263701, + "preferred_categories": [ + 5, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9bca" + }, + "reservations": [ + { + "user_id": 926, + "restaurant_id": 887, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 926, + "restaurant_id": 2043, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 926, + "restaurant_id": 371, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 926, + "restaurant_id": 985 + }, + { + "user_id": 926, + "restaurant_id": 622 + }, + { + "user_id": 926, + "restaurant_id": 2156 + } + ], + "updated_at": "2025-03-30T11:32:22.551000" + }, + { + "user_info": { + "user_id": 927, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 927, + "min_price": 149804, + "max_price": 485278, + "preferred_categories": [ + 2, + 3, + 9 + ], + "_id": "67e92bc2785211cbd5ff9bcb" + }, + "reservations": [], + "likes": [ + { + "user_id": 927, + "restaurant_id": 633 + }, + { + "user_id": 927, + "restaurant_id": 1540 + } + ], + "updated_at": "2025-03-30T11:32:22.554000" + }, + { + "user_info": { + "user_id": 928, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 928, + "min_price": 25740, + "max_price": 265979, + "preferred_categories": [ + 5, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bcc" + }, + "reservations": [ + { + "user_id": 928, + "restaurant_id": 1330, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 928, + "restaurant_id": 1649, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 928, + "restaurant_id": 611, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 928, + "restaurant_id": 1191 + }, + { + "user_id": 928, + "restaurant_id": 2146 + }, + { + "user_id": 928, + "restaurant_id": 500 + }, + { + "user_id": 928, + "restaurant_id": 386 + }, + { + "user_id": 928, + "restaurant_id": 1842 + }, + { + "user_id": 928, + "restaurant_id": 1922 + } + ], + "updated_at": "2025-03-30T11:32:22.558000" + }, + { + "user_info": { + "user_id": 929, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 929, + "min_price": 13802, + "max_price": 296060, + "preferred_categories": [ + 2, + 3, + 5 + ], + "_id": "67e92bc2785211cbd5ff9bcd" + }, + "reservations": [], + "likes": [ + { + "user_id": 929, + "restaurant_id": 713 + }, + { + "user_id": 929, + "restaurant_id": 47 + } + ], + "updated_at": "2025-03-30T11:32:22.563000" + }, + { + "user_info": { + "user_id": 930, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 930, + "min_price": 183938, + "max_price": 314827, + "preferred_categories": [ + 2, + 3, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bce" + }, + "reservations": [ + { + "user_id": 930, + "restaurant_id": 490, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 930, + "restaurant_id": 782, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 930, + "restaurant_id": 918 + } + ], + "updated_at": "2025-03-30T11:32:22.566000" + }, + { + "user_info": { + "user_id": 931, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 931, + "min_price": 75977, + "max_price": 327857, + "preferred_categories": [ + 1, + 4, + 6 + ], + "_id": "67e92bc2785211cbd5ff9bcf" + }, + "reservations": [ + { + "user_id": 931, + "restaurant_id": 2131, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 931, + "restaurant_id": 815, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 931, + "restaurant_id": 1216 + }, + { + "user_id": 931, + "restaurant_id": 736 + } + ], + "updated_at": "2025-03-30T11:32:22.569000" + }, + { + "user_info": { + "user_id": 932, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 932, + "min_price": 195946, + "max_price": 336696, + "preferred_categories": [ + 3, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bd0" + }, + "reservations": [ + { + "user_id": 932, + "restaurant_id": 189, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 932, + "restaurant_id": 881, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 932, + "restaurant_id": 569, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 932, + "restaurant_id": 1172, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 932, + "restaurant_id": 2182, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 932, + "restaurant_id": 1530 + }, + { + "user_id": 932, + "restaurant_id": 1726 + }, + { + "user_id": 932, + "restaurant_id": 1652 + }, + { + "user_id": 932, + "restaurant_id": 1347 + }, + { + "user_id": 932, + "restaurant_id": 1094 + }, + { + "user_id": 932, + "restaurant_id": 1754 + } + ], + "updated_at": "2025-03-30T11:32:22.572000" + }, + { + "user_info": { + "user_id": 933, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 933, + "min_price": 61627, + "max_price": 381827, + "preferred_categories": [ + 5, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bd1" + }, + "reservations": [], + "likes": [ + { + "user_id": 933, + "restaurant_id": 1041 + }, + { + "user_id": 933, + "restaurant_id": 2178 + }, + { + "user_id": 933, + "restaurant_id": 1839 + } + ], + "updated_at": "2025-03-30T11:32:22.574000" + }, + { + "user_info": { + "user_id": 934, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 934, + "min_price": 37800, + "max_price": 402772, + "preferred_categories": [ + 5, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9bd2" + }, + "reservations": [ + { + "user_id": 934, + "restaurant_id": 2147, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 934, + "restaurant_id": 333 + }, + { + "user_id": 934, + "restaurant_id": 766 + }, + { + "user_id": 934, + "restaurant_id": 1619 + }, + { + "user_id": 934, + "restaurant_id": 1340 + } + ], + "updated_at": "2025-03-30T11:32:22.577000" + }, + { + "user_info": { + "user_id": 935, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 935, + "min_price": 103666, + "max_price": 419875, + "preferred_categories": [ + 4, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bd3" + }, + "reservations": [ + { + "user_id": 935, + "restaurant_id": 1768, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 935, + "restaurant_id": 418, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 935, + "restaurant_id": 231 + }, + { + "user_id": 935, + "restaurant_id": 1085 + }, + { + "user_id": 935, + "restaurant_id": 447 + }, + { + "user_id": 935, + "restaurant_id": 1890 + }, + { + "user_id": 935, + "restaurant_id": 1263 + }, + { + "user_id": 935, + "restaurant_id": 1271 + } + ], + "updated_at": "2025-03-30T11:32:22.580000" + }, + { + "user_info": { + "user_id": 936, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 936, + "min_price": 147215, + "max_price": 370256, + "preferred_categories": [ + 3, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bd4" + }, + "reservations": [ + { + "user_id": 936, + "restaurant_id": 1789, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 936, + "restaurant_id": 344, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 936, + "restaurant_id": 720, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 936, + "restaurant_id": 262, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 936, + "restaurant_id": 2072 + }, + { + "user_id": 936, + "restaurant_id": 1595 + }, + { + "user_id": 936, + "restaurant_id": 1514 + } + ], + "updated_at": "2025-03-30T11:32:22.584000" + }, + { + "user_info": { + "user_id": 937, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 937, + "min_price": 81170, + "max_price": 499515, + "preferred_categories": [ + 2, + 4, + 9 + ], + "_id": "67e92bc2785211cbd5ff9bd5" + }, + "reservations": [ + { + "user_id": 937, + "restaurant_id": 515, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 937, + "restaurant_id": 1156, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 937, + "restaurant_id": 1340, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 937, + "restaurant_id": 94, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 937, + "restaurant_id": 1379, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 937, + "restaurant_id": 1031, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 937, + "restaurant_id": 382, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 937, + "restaurant_id": 337 + }, + { + "user_id": 937, + "restaurant_id": 1582 + } + ], + "updated_at": "2025-03-30T11:32:22.587000" + }, + { + "user_info": { + "user_id": 938, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 938, + "min_price": 123869, + "max_price": 489669, + "preferred_categories": [ + 3, + 4, + 9 + ], + "_id": "67e92bc2785211cbd5ff9bd6" + }, + "reservations": [ + { + "user_id": 938, + "restaurant_id": 816, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 938, + "restaurant_id": 1734, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 938, + "restaurant_id": 977, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 938, + "restaurant_id": 658, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 938, + "restaurant_id": 5, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 938, + "restaurant_id": 1373 + }, + { + "user_id": 938, + "restaurant_id": 988 + }, + { + "user_id": 938, + "restaurant_id": 1916 + }, + { + "user_id": 938, + "restaurant_id": 761 + } + ], + "updated_at": "2025-03-30T11:32:22.590000" + }, + { + "user_info": { + "user_id": 939, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 939, + "min_price": 157598, + "max_price": 318548, + "preferred_categories": [ + 8, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bd7" + }, + "reservations": [ + { + "user_id": 939, + "restaurant_id": 317, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 939, + "restaurant_id": 2132, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 939, + "restaurant_id": 513, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 939, + "restaurant_id": 1001, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 939, + "restaurant_id": 1459, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:22.592000" + }, + { + "user_info": { + "user_id": 940, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 940, + "min_price": 73800, + "max_price": 378058, + "preferred_categories": [ + 3, + 8, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bd8" + }, + "reservations": [ + { + "user_id": 940, + "restaurant_id": 1998, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 940, + "restaurant_id": 1942, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 940, + "restaurant_id": 90, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 940, + "restaurant_id": 705, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 940, + "restaurant_id": 740 + }, + { + "user_id": 940, + "restaurant_id": 1534 + }, + { + "user_id": 940, + "restaurant_id": 4 + }, + { + "user_id": 940, + "restaurant_id": 581 + } + ], + "updated_at": "2025-03-30T11:32:22.595000" + }, + { + "user_info": { + "user_id": 941, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 941, + "min_price": 155387, + "max_price": 295093, + "preferred_categories": [ + 4, + 7, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bd9" + }, + "reservations": [ + { + "user_id": 941, + "restaurant_id": 1283, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 941, + "restaurant_id": 862, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 941, + "restaurant_id": 611, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 941, + "restaurant_id": 900, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 941, + "restaurant_id": 1995, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 941, + "restaurant_id": 897 + }, + { + "user_id": 941, + "restaurant_id": 1998 + } + ], + "updated_at": "2025-03-30T11:32:22.599000" + }, + { + "user_info": { + "user_id": 942, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 942, + "min_price": 77953, + "max_price": 255137, + "preferred_categories": [ + 4, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bda" + }, + "reservations": [ + { + "user_id": 942, + "restaurant_id": 306, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 942, + "restaurant_id": 1682 + }, + { + "user_id": 942, + "restaurant_id": 78 + } + ], + "updated_at": "2025-03-30T11:32:22.602000" + }, + { + "user_info": { + "user_id": 943, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 943, + "min_price": 175620, + "max_price": 460003, + "preferred_categories": [ + 3, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9bdb" + }, + "reservations": [ + { + "user_id": 943, + "restaurant_id": 256, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 943, + "restaurant_id": 1698, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 943, + "restaurant_id": 1850, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 943, + "restaurant_id": 301 + } + ], + "updated_at": "2025-03-30T11:32:22.610000" + }, + { + "user_info": { + "user_id": 944, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 944, + "min_price": 67087, + "max_price": 435210, + "preferred_categories": [ + 7, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bdc" + }, + "reservations": [ + { + "user_id": 944, + "restaurant_id": 1920, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 944, + "restaurant_id": 316, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 944, + "restaurant_id": 1179 + }, + { + "user_id": 944, + "restaurant_id": 1286 + }, + { + "user_id": 944, + "restaurant_id": 678 + } + ], + "updated_at": "2025-03-30T11:32:22.613000" + }, + { + "user_info": { + "user_id": 945, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 945, + "min_price": 21594, + "max_price": 408719, + "preferred_categories": [ + 9, + 11, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bdd" + }, + "reservations": [ + { + "user_id": 945, + "restaurant_id": 1808, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 945, + "restaurant_id": 1171, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 945, + "restaurant_id": 336, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 945, + "restaurant_id": 892, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 945, + "restaurant_id": 1313, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:22.617000" + }, + { + "user_info": { + "user_id": 946, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 946, + "min_price": 64387, + "max_price": 442983, + "preferred_categories": [ + 1, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff9bde" + }, + "reservations": [ + { + "user_id": 946, + "restaurant_id": 1113, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 946, + "restaurant_id": 367, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 946, + "restaurant_id": 172, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 946, + "restaurant_id": 1438, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 946, + "restaurant_id": 1750 + }, + { + "user_id": 946, + "restaurant_id": 2125 + }, + { + "user_id": 946, + "restaurant_id": 1782 + } + ], + "updated_at": "2025-03-30T11:32:22.619000" + }, + { + "user_info": { + "user_id": 947, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 947, + "min_price": 170553, + "max_price": 417183, + "preferred_categories": [ + 1, + 3, + 4 + ], + "_id": "67e92bc2785211cbd5ff9bdf" + }, + "reservations": [ + { + "user_id": 947, + "restaurant_id": 69, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 947, + "restaurant_id": 641, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 947, + "restaurant_id": 2046, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 947, + "restaurant_id": 1177, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 947, + "restaurant_id": 2198, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 947, + "restaurant_id": 1188, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 947, + "restaurant_id": 458, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:22.623000" + }, + { + "user_info": { + "user_id": 948, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 948, + "min_price": 60047, + "max_price": 245504, + "preferred_categories": [ + 6, + 8, + 9 + ], + "_id": "67e92bc2785211cbd5ff9be0" + }, + "reservations": [ + { + "user_id": 948, + "restaurant_id": 113, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 948, + "restaurant_id": 665, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 948, + "restaurant_id": 1451, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 948, + "restaurant_id": 1676, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 948, + "restaurant_id": 96 + }, + { + "user_id": 948, + "restaurant_id": 1484 + }, + { + "user_id": 948, + "restaurant_id": 2076 + }, + { + "user_id": 948, + "restaurant_id": 603 + } + ], + "updated_at": "2025-03-30T11:32:22.626000" + }, + { + "user_info": { + "user_id": 949, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 949, + "min_price": 99657, + "max_price": 253896, + "preferred_categories": [ + 1, + 2, + 8 + ], + "_id": "67e92bc2785211cbd5ff9be1" + }, + "reservations": [ + { + "user_id": 949, + "restaurant_id": 1180, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 949, + "restaurant_id": 555 + }, + { + "user_id": 949, + "restaurant_id": 2052 + } + ], + "updated_at": "2025-03-30T11:32:22.630000" + }, + { + "user_info": { + "user_id": 950, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 950, + "min_price": 78417, + "max_price": 360681, + "preferred_categories": [ + 6, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9be2" + }, + "reservations": [ + { + "user_id": 950, + "restaurant_id": 457, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 950, + "restaurant_id": 875, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 950, + "restaurant_id": 139, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 950, + "restaurant_id": 743 + }, + { + "user_id": 950, + "restaurant_id": 749 + }, + { + "user_id": 950, + "restaurant_id": 857 + } + ], + "updated_at": "2025-03-30T11:32:22.632000" + }, + { + "user_info": { + "user_id": 951, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 951, + "min_price": 140616, + "max_price": 217587, + "preferred_categories": [ + 2, + 3, + 9 + ], + "_id": "67e92bc2785211cbd5ff9be3" + }, + "reservations": [ + { + "user_id": 951, + "restaurant_id": 2050, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 951, + "restaurant_id": 2073, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 951, + "restaurant_id": 7, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 951, + "restaurant_id": 1912 + }, + { + "user_id": 951, + "restaurant_id": 1430 + }, + { + "user_id": 951, + "restaurant_id": 224 + }, + { + "user_id": 951, + "restaurant_id": 440 + }, + { + "user_id": 951, + "restaurant_id": 537 + } + ], + "updated_at": "2025-03-30T11:32:22.636000" + }, + { + "user_info": { + "user_id": 952, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 952, + "min_price": 26457, + "max_price": 399434, + "preferred_categories": [ + 2, + 6, + 7 + ], + "_id": "67e92bc2785211cbd5ff9be4" + }, + "reservations": [ + { + "user_id": 952, + "restaurant_id": 1192, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 952, + "restaurant_id": 1469, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 952, + "restaurant_id": 608, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 952, + "restaurant_id": 2057, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 952, + "restaurant_id": 100, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 952, + "restaurant_id": 1617, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 952, + "restaurant_id": 1818 + } + ], + "updated_at": "2025-03-30T11:32:22.644000" + }, + { + "user_info": { + "user_id": 953, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 953, + "min_price": 142051, + "max_price": 311115, + "preferred_categories": [ + 1, + 5, + 7 + ], + "_id": "67e92bc2785211cbd5ff9be5" + }, + "reservations": [ + { + "user_id": 953, + "restaurant_id": 2188, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 953, + "restaurant_id": 1799, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 953, + "restaurant_id": 1587, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 953, + "restaurant_id": 2237, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 953, + "restaurant_id": 1914, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 953, + "restaurant_id": 1789 + } + ], + "updated_at": "2025-03-30T11:32:22.647000" + }, + { + "user_info": { + "user_id": 954, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 954, + "min_price": 130072, + "max_price": 468873, + "preferred_categories": [ + 8, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9be6" + }, + "reservations": [ + { + "user_id": 954, + "restaurant_id": 1795, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 954, + "restaurant_id": 48, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 954, + "restaurant_id": 1080 + }, + { + "user_id": 954, + "restaurant_id": 1502 + }, + { + "user_id": 954, + "restaurant_id": 1004 + }, + { + "user_id": 954, + "restaurant_id": 477 + }, + { + "user_id": 954, + "restaurant_id": 1565 + }, + { + "user_id": 954, + "restaurant_id": 1175 + }, + { + "user_id": 954, + "restaurant_id": 1153 + } + ], + "updated_at": "2025-03-30T11:32:22.650000" + }, + { + "user_info": { + "user_id": 955, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 955, + "min_price": 54418, + "max_price": 387628, + "preferred_categories": [ + 3, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9be7" + }, + "reservations": [ + { + "user_id": 955, + "restaurant_id": 1260, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 955, + "restaurant_id": 502, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 955, + "restaurant_id": 543 + }, + { + "user_id": 955, + "restaurant_id": 1147 + } + ], + "updated_at": "2025-03-30T11:32:22.653000" + }, + { + "user_info": { + "user_id": 956, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 956, + "min_price": 79285, + "max_price": 311418, + "preferred_categories": [ + 3, + 6, + 12 + ], + "_id": "67e92bc2785211cbd5ff9be8" + }, + "reservations": [ + { + "user_id": 956, + "restaurant_id": 703, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 956, + "restaurant_id": 1481, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 956, + "restaurant_id": 636, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 956, + "restaurant_id": 1406 + }, + { + "user_id": 956, + "restaurant_id": 1941 + }, + { + "user_id": 956, + "restaurant_id": 1727 + }, + { + "user_id": 956, + "restaurant_id": 805 + }, + { + "user_id": 956, + "restaurant_id": 420 + } + ], + "updated_at": "2025-03-30T11:32:22.656000" + }, + { + "user_info": { + "user_id": 957, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 957, + "min_price": 153537, + "max_price": 282189, + "preferred_categories": [ + 1, + 6, + 9 + ], + "_id": "67e92bc2785211cbd5ff9be9" + }, + "reservations": [ + { + "user_id": 957, + "restaurant_id": 603, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 957, + "restaurant_id": 1446, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 957, + "restaurant_id": 39, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 957, + "restaurant_id": 2004 + }, + { + "user_id": 957, + "restaurant_id": 1299 + }, + { + "user_id": 957, + "restaurant_id": 230 + }, + { + "user_id": 957, + "restaurant_id": 726 + } + ], + "updated_at": "2025-03-30T11:32:22.659000" + }, + { + "user_info": { + "user_id": 958, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 958, + "min_price": 113714, + "max_price": 242619, + "preferred_categories": [ + 7, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bea" + }, + "reservations": [ + { + "user_id": 958, + "restaurant_id": 1870, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 958, + "restaurant_id": 1543, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 958, + "restaurant_id": 1948, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 958, + "restaurant_id": 2146, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 958, + "restaurant_id": 1866 + }, + { + "user_id": 958, + "restaurant_id": 680 + }, + { + "user_id": 958, + "restaurant_id": 1165 + }, + { + "user_id": 958, + "restaurant_id": 2251 + }, + { + "user_id": 958, + "restaurant_id": 645 + } + ], + "updated_at": "2025-03-30T11:32:22.662000" + }, + { + "user_info": { + "user_id": 959, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 959, + "min_price": 187624, + "max_price": 326593, + "preferred_categories": [ + 5, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9beb" + }, + "reservations": [ + { + "user_id": 959, + "restaurant_id": 1493, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 959, + "restaurant_id": 2251, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 959, + "restaurant_id": 1016, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 959, + "restaurant_id": 1713, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 959, + "restaurant_id": 689 + }, + { + "user_id": 959, + "restaurant_id": 1963 + }, + { + "user_id": 959, + "restaurant_id": 655 + }, + { + "user_id": 959, + "restaurant_id": 989 + } + ], + "updated_at": "2025-03-30T11:32:22.665000" + }, + { + "user_info": { + "user_id": 960, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 960, + "min_price": 105388, + "max_price": 219358, + "preferred_categories": [ + 1, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9bec" + }, + "reservations": [ + { + "user_id": 960, + "restaurant_id": 2026, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 960, + "restaurant_id": 1760, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 960, + "restaurant_id": 821, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 960, + "restaurant_id": 1604 + }, + { + "user_id": 960, + "restaurant_id": 1066 + }, + { + "user_id": 960, + "restaurant_id": 572 + }, + { + "user_id": 960, + "restaurant_id": 2190 + }, + { + "user_id": 960, + "restaurant_id": 1664 + }, + { + "user_id": 960, + "restaurant_id": 1002 + } + ], + "updated_at": "2025-03-30T11:32:22.668000" + }, + { + "user_info": { + "user_id": 961, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 961, + "min_price": 34643, + "max_price": 212481, + "preferred_categories": [ + 7, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bed" + }, + "reservations": [ + { + "user_id": 961, + "restaurant_id": 1777, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 961, + "restaurant_id": 770, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 961, + "restaurant_id": 1377 + }, + { + "user_id": 961, + "restaurant_id": 892 + }, + { + "user_id": 961, + "restaurant_id": 1153 + }, + { + "user_id": 961, + "restaurant_id": 1147 + }, + { + "user_id": 961, + "restaurant_id": 1295 + }, + { + "user_id": 961, + "restaurant_id": 1548 + }, + { + "user_id": 961, + "restaurant_id": 432 + } + ], + "updated_at": "2025-03-30T11:32:22.671000" + }, + { + "user_info": { + "user_id": 962, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 962, + "min_price": 142931, + "max_price": 493117, + "preferred_categories": [ + 6, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bee" + }, + "reservations": [ + { + "user_id": 962, + "restaurant_id": 1951, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 962, + "restaurant_id": 1440, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 962, + "restaurant_id": 935 + }, + { + "user_id": 962, + "restaurant_id": 891 + } + ], + "updated_at": "2025-03-30T11:32:22.673000" + }, + { + "user_info": { + "user_id": 963, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 963, + "min_price": 79402, + "max_price": 256384, + "preferred_categories": [ + 3, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9bef" + }, + "reservations": [ + { + "user_id": 963, + "restaurant_id": 654, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 963, + "restaurant_id": 88, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 963, + "restaurant_id": 1731 + }, + { + "user_id": 963, + "restaurant_id": 517 + }, + { + "user_id": 963, + "restaurant_id": 1379 + } + ], + "updated_at": "2025-03-30T11:32:22.676000" + }, + { + "user_info": { + "user_id": 964, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 964, + "min_price": 99297, + "max_price": 496916, + "preferred_categories": [ + 1, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9bf0" + }, + "reservations": [], + "likes": [ + { + "user_id": 964, + "restaurant_id": 1327 + } + ], + "updated_at": "2025-03-30T11:32:22.678000" + }, + { + "user_info": { + "user_id": 965, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 965, + "min_price": 174792, + "max_price": 423393, + "preferred_categories": [ + 2, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9bf1" + }, + "reservations": [], + "likes": [ + { + "user_id": 965, + "restaurant_id": 1863 + }, + { + "user_id": 965, + "restaurant_id": 492 + }, + { + "user_id": 965, + "restaurant_id": 166 + }, + { + "user_id": 965, + "restaurant_id": 857 + }, + { + "user_id": 965, + "restaurant_id": 2108 + }, + { + "user_id": 965, + "restaurant_id": 1439 + }, + { + "user_id": 965, + "restaurant_id": 2245 + } + ], + "updated_at": "2025-03-30T11:32:22.682000" + }, + { + "user_info": { + "user_id": 966, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 966, + "min_price": 177801, + "max_price": 473484, + "preferred_categories": [ + 1, + 5, + 6 + ], + "_id": "67e92bc2785211cbd5ff9bf2" + }, + "reservations": [], + "likes": [ + { + "user_id": 966, + "restaurant_id": 715 + }, + { + "user_id": 966, + "restaurant_id": 1853 + } + ], + "updated_at": "2025-03-30T11:32:22.685000" + }, + { + "user_info": { + "user_id": 967, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 967, + "min_price": 80404, + "max_price": 371779, + "preferred_categories": [ + 5, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9bf3" + }, + "reservations": [ + { + "user_id": 967, + "restaurant_id": 734, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 967, + "restaurant_id": 938 + }, + { + "user_id": 967, + "restaurant_id": 996 + }, + { + "user_id": 967, + "restaurant_id": 347 + } + ], + "updated_at": "2025-03-30T11:32:22.687000" + }, + { + "user_info": { + "user_id": 968, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + "preferences": { + "user_id": 968, + "min_price": 71324, + "max_price": 384400, + "preferred_categories": [ + 3, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bf4" + }, + "reservations": [ + { + "user_id": 968, + "restaurant_id": 1639, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 968, + "restaurant_id": 300, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 968, + "restaurant_id": 153 + } + ], + "updated_at": "2025-03-30T11:32:22.690000" + }, + { + "user_info": { + "user_id": 969, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 969, + "min_price": 143787, + "max_price": 217937, + "preferred_categories": [ + 1, + 5, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bf5" + }, + "reservations": [ + { + "user_id": 969, + "restaurant_id": 1184, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 969, + "restaurant_id": 680 + }, + { + "user_id": 969, + "restaurant_id": 625 + }, + { + "user_id": 969, + "restaurant_id": 1138 + }, + { + "user_id": 969, + "restaurant_id": 580 + } + ], + "updated_at": "2025-03-30T11:32:22.693000" + }, + { + "user_info": { + "user_id": 970, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 970, + "min_price": 98135, + "max_price": 213566, + "preferred_categories": [ + 1, + 6, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bf6" + }, + "reservations": [ + { + "user_id": 970, + "restaurant_id": 395, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 970, + "restaurant_id": 2099 + }, + { + "user_id": 970, + "restaurant_id": 1171 + } + ], + "updated_at": "2025-03-30T11:32:22.695000" + }, + { + "user_info": { + "user_id": 971, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 971, + "min_price": 56182, + "max_price": 289192, + "preferred_categories": [ + 2, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9bf7" + }, + "reservations": [ + { + "user_id": 971, + "restaurant_id": 1424, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 971, + "restaurant_id": 2039, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 971, + "restaurant_id": 819, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:22.698000" + }, + { + "user_info": { + "user_id": 972, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 972, + "min_price": 73657, + "max_price": 403598, + "preferred_categories": [ + 3, + 6, + 8 + ], + "_id": "67e92bc2785211cbd5ff9bf8" + }, + "reservations": [ + { + "user_id": 972, + "restaurant_id": 2102, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 972, + "restaurant_id": 2005 + }, + { + "user_id": 972, + "restaurant_id": 1762 + }, + { + "user_id": 972, + "restaurant_id": 1154 + }, + { + "user_id": 972, + "restaurant_id": 2019 + } + ], + "updated_at": "2025-03-30T11:32:22.702000" + }, + { + "user_info": { + "user_id": 973, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 973, + "min_price": 130990, + "max_price": 284210, + "preferred_categories": [ + 1, + 4, + 8 + ], + "_id": "67e92bc2785211cbd5ff9bf9" + }, + "reservations": [ + { + "user_id": 973, + "restaurant_id": 1473, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 973, + "restaurant_id": 604, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 973, + "restaurant_id": 994, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 973, + "restaurant_id": 1030 + }, + { + "user_id": 973, + "restaurant_id": 318 + } + ], + "updated_at": "2025-03-30T11:32:22.704000" + }, + { + "user_info": { + "user_id": 974, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 974, + "min_price": 40083, + "max_price": 401410, + "preferred_categories": [ + 2, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9bfa" + }, + "reservations": [ + { + "user_id": 974, + "restaurant_id": 1506, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 974, + "restaurant_id": 759, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 974, + "restaurant_id": 309, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 974, + "restaurant_id": 1630, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 974, + "restaurant_id": 775 + }, + { + "user_id": 974, + "restaurant_id": 2029 + }, + { + "user_id": 974, + "restaurant_id": 1154 + }, + { + "user_id": 974, + "restaurant_id": 412 + }, + { + "user_id": 974, + "restaurant_id": 47 + }, + { + "user_id": 974, + "restaurant_id": 1624 + } + ], + "updated_at": "2025-03-30T11:32:22.709000" + }, + { + "user_info": { + "user_id": 975, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 975, + "min_price": 22859, + "max_price": 337305, + "preferred_categories": [ + 4, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bfb" + }, + "reservations": [ + { + "user_id": 975, + "restaurant_id": 825, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 975, + "restaurant_id": 187, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 975, + "restaurant_id": 26, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 975, + "restaurant_id": 584 + } + ], + "updated_at": "2025-03-30T11:32:22.712000" + }, + { + "user_info": { + "user_id": 976, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 976, + "min_price": 158974, + "max_price": 226419, + "preferred_categories": [ + 4, + 6, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bfc" + }, + "reservations": [], + "likes": [ + { + "user_id": 976, + "restaurant_id": 668 + } + ], + "updated_at": "2025-03-30T11:32:22.715000" + }, + { + "user_info": { + "user_id": 977, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 977, + "min_price": 105993, + "max_price": 316248, + "preferred_categories": [ + 4, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9bfd" + }, + "reservations": [ + { + "user_id": 977, + "restaurant_id": 1296, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 977, + "restaurant_id": 108, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 977, + "restaurant_id": 267 + } + ], + "updated_at": "2025-03-30T11:32:22.718000" + }, + { + "user_info": { + "user_id": 978, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 978, + "min_price": 180018, + "max_price": 319823, + "preferred_categories": [ + 6, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9bfe" + }, + "reservations": [ + { + "user_id": 978, + "restaurant_id": 285, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 978, + "restaurant_id": 2170, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 978, + "restaurant_id": 1333, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 978, + "restaurant_id": 1834, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 978, + "restaurant_id": 12 + }, + { + "user_id": 978, + "restaurant_id": 1768 + } + ], + "updated_at": "2025-03-30T11:32:22.720000" + }, + { + "user_info": { + "user_id": 979, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + "preferences": { + "user_id": 979, + "min_price": 123010, + "max_price": 468990, + "preferred_categories": [ + 2, + 4, + 12 + ], + "_id": "67e92bc2785211cbd5ff9bff" + }, + "reservations": [ + { + "user_id": 979, + "restaurant_id": 394, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 979, + "restaurant_id": 2187, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 979, + "restaurant_id": 1698 + }, + { + "user_id": 979, + "restaurant_id": 1677 + } + ], + "updated_at": "2025-03-30T11:32:22.724000" + }, + { + "user_info": { + "user_id": 980, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 980, + "min_price": 147220, + "max_price": 403627, + "preferred_categories": [ + 7, + 9, + 11 + ], + "_id": "67e92bc2785211cbd5ff9c00" + }, + "reservations": [ + { + "user_id": 980, + "restaurant_id": 1590, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 980, + "restaurant_id": 2077, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 980, + "restaurant_id": 6, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 980, + "restaurant_id": 824, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 980, + "restaurant_id": 127, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 980, + "restaurant_id": 993 + }, + { + "user_id": 980, + "restaurant_id": 1124 + } + ], + "updated_at": "2025-03-30T11:32:22.727000" + }, + { + "user_info": { + "user_id": 981, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 981, + "min_price": 57958, + "max_price": 317225, + "preferred_categories": [ + 5, + 6, + 11 + ], + "_id": "67e92bc2785211cbd5ff9c01" + }, + "reservations": [ + { + "user_id": 981, + "restaurant_id": 251, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 981, + "restaurant_id": 514, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 981, + "restaurant_id": 2182, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 981, + "restaurant_id": 948, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [], + "updated_at": "2025-03-30T11:32:22.730000" + }, + { + "user_info": { + "user_id": 982, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + "preferences": { + "user_id": 982, + "min_price": 168922, + "max_price": 229734, + "preferred_categories": [ + 4, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9c02" + }, + "reservations": [ + { + "user_id": 982, + "restaurant_id": 1413, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 982, + "restaurant_id": 1773, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 982, + "restaurant_id": 1945 + }, + { + "user_id": 982, + "restaurant_id": 2024 + }, + { + "user_id": 982, + "restaurant_id": 1948 + } + ], + "updated_at": "2025-03-30T11:32:22.734000" + }, + { + "user_info": { + "user_id": 983, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 983, + "min_price": 155375, + "max_price": 468070, + "preferred_categories": [ + 4, + 7, + 8 + ], + "_id": "67e92bc2785211cbd5ff9c03" + }, + "reservations": [ + { + "user_id": 983, + "restaurant_id": 2103, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 983, + "restaurant_id": 302, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 983, + "restaurant_id": 252, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 983, + "restaurant_id": 2083, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 983, + "restaurant_id": 1554, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 983, + "restaurant_id": 1983 + }, + { + "user_id": 983, + "restaurant_id": 1539 + }, + { + "user_id": 983, + "restaurant_id": 379 + } + ], + "updated_at": "2025-03-30T11:32:22.736000" + }, + { + "user_info": { + "user_id": 984, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 984, + "min_price": 174360, + "max_price": 252884, + "preferred_categories": [ + 4, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9c04" + }, + "reservations": [ + { + "user_id": 984, + "restaurant_id": 917, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 984, + "restaurant_id": 604 + }, + { + "user_id": 984, + "restaurant_id": 1004 + }, + { + "user_id": 984, + "restaurant_id": 1040 + }, + { + "user_id": 984, + "restaurant_id": 748 + }, + { + "user_id": 984, + "restaurant_id": 87 + } + ], + "updated_at": "2025-03-30T11:32:22.739000" + }, + { + "user_info": { + "user_id": 985, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 985, + "min_price": 100568, + "max_price": 466428, + "preferred_categories": [ + 6, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9c05" + }, + "reservations": [ + { + "user_id": 985, + "restaurant_id": 1144, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 985, + "restaurant_id": 1678, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 985, + "restaurant_id": 1592 + }, + { + "user_id": 985, + "restaurant_id": 462 + } + ], + "updated_at": "2025-03-30T11:32:22.743000" + }, + { + "user_info": { + "user_id": 986, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + "preferences": { + "user_id": 986, + "min_price": 72172, + "max_price": 452565, + "preferred_categories": [ + 6, + 7, + 12 + ], + "_id": "67e92bc2785211cbd5ff9c06" + }, + "reservations": [ + { + "user_id": 986, + "restaurant_id": 611, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 986, + "restaurant_id": 648, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 986, + "restaurant_id": 528 + }, + { + "user_id": 986, + "restaurant_id": 1893 + }, + { + "user_id": 986, + "restaurant_id": 1651 + }, + { + "user_id": 986, + "restaurant_id": 1285 + }, + { + "user_id": 986, + "restaurant_id": 298 + }, + { + "user_id": 986, + "restaurant_id": 974 + }, + { + "user_id": 986, + "restaurant_id": 762 + } + ], + "updated_at": "2025-03-30T11:32:22.746000" + }, + { + "user_info": { + "user_id": 987, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 987, + "min_price": 170895, + "max_price": 220362, + "preferred_categories": [ + 4, + 7, + 11 + ], + "_id": "67e92bc2785211cbd5ff9c07" + }, + "reservations": [ + { + "user_id": 987, + "restaurant_id": 2212, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 987, + "restaurant_id": 122, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 987, + "restaurant_id": 740 + }, + { + "user_id": 987, + "restaurant_id": 737 + }, + { + "user_id": 987, + "restaurant_id": 933 + }, + { + "user_id": 987, + "restaurant_id": 693 + }, + { + "user_id": 987, + "restaurant_id": 476 + } + ], + "updated_at": "2025-03-30T11:32:22.749000" + }, + { + "user_info": { + "user_id": 988, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 988, + "min_price": 101907, + "max_price": 270701, + "preferred_categories": [ + 6, + 8, + 11 + ], + "_id": "67e92bc2785211cbd5ff9c08" + }, + "reservations": [ + { + "user_id": 988, + "restaurant_id": 1380, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 988, + "restaurant_id": 229, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 988, + "restaurant_id": 1280, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 988, + "restaurant_id": 1590, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 988, + "restaurant_id": 1276 + }, + { + "user_id": 988, + "restaurant_id": 1468 + }, + { + "user_id": 988, + "restaurant_id": 187 + } + ], + "updated_at": "2025-03-30T11:32:22.751000" + }, + { + "user_info": { + "user_id": 989, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + "preferences": { + "user_id": 989, + "min_price": 45376, + "max_price": 391764, + "preferred_categories": [ + 3, + 4, + 5 + ], + "_id": "67e92bc2785211cbd5ff9c09" + }, + "reservations": [ + { + "user_id": 989, + "restaurant_id": 721, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 989, + "restaurant_id": 1282, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 989, + "restaurant_id": 27 + }, + { + "user_id": 989, + "restaurant_id": 1373 + }, + { + "user_id": 989, + "restaurant_id": 1507 + } + ], + "updated_at": "2025-03-30T11:32:22.754000" + }, + { + "user_info": { + "user_id": 990, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 990, + "min_price": 145908, + "max_price": 305302, + "preferred_categories": [ + 6, + 9, + 10 + ], + "_id": "67e92bc2785211cbd5ff9c0a" + }, + "reservations": [ + { + "user_id": 990, + "restaurant_id": 324, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 990, + "restaurant_id": 1623, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 990, + "restaurant_id": 684, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 990, + "restaurant_id": 1726, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 990, + "restaurant_id": 1637, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 990, + "restaurant_id": 811 + }, + { + "user_id": 990, + "restaurant_id": 1469 + }, + { + "user_id": 990, + "restaurant_id": 1800 + } + ], + "updated_at": "2025-03-30T11:32:22.756000" + }, + { + "user_info": { + "user_id": 991, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 991, + "min_price": 130869, + "max_price": 356465, + "preferred_categories": [ + 1, + 4, + 9 + ], + "_id": "67e92bc2785211cbd5ff9c0b" + }, + "reservations": [ + { + "user_id": 991, + "restaurant_id": 365, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 991, + "restaurant_id": 422 + }, + { + "user_id": 991, + "restaurant_id": 1819 + } + ], + "updated_at": "2025-03-30T11:32:22.758000" + }, + { + "user_info": { + "user_id": 992, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 992, + "min_price": 156699, + "max_price": 260584, + "preferred_categories": [ + 6, + 8, + 10 + ], + "_id": "67e92bc2785211cbd5ff9c0c" + }, + "reservations": [ + { + "user_id": 992, + "restaurant_id": 813, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 992, + "restaurant_id": 176, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 992, + "restaurant_id": 1292, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 992, + "restaurant_id": 1192 + }, + { + "user_id": 992, + "restaurant_id": 1287 + }, + { + "user_id": 992, + "restaurant_id": 1062 + }, + { + "user_id": 992, + "restaurant_id": 1023 + }, + { + "user_id": 992, + "restaurant_id": 78 + } + ], + "updated_at": "2025-03-30T11:32:22.762000" + }, + { + "user_info": { + "user_id": 993, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + "preferences": { + "user_id": 993, + "min_price": 101853, + "max_price": 264824, + "preferred_categories": [ + 4, + 7, + 9 + ], + "_id": "67e92bc2785211cbd5ff9c0d" + }, + "reservations": [ + { + "user_id": 993, + "restaurant_id": 816, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 993, + "restaurant_id": 1776, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 993, + "restaurant_id": 183, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 993, + "restaurant_id": 414 + }, + { + "user_id": 993, + "restaurant_id": 1553 + }, + { + "user_id": 993, + "restaurant_id": 544 + }, + { + "user_id": 993, + "restaurant_id": 19 + } + ], + "updated_at": "2025-03-30T11:32:22.766000" + }, + { + "user_info": { + "user_id": 994, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 994, + "min_price": 55028, + "max_price": 229223, + "preferred_categories": [ + 1, + 5, + 9 + ], + "_id": "67e92bc2785211cbd5ff9c0e" + }, + "reservations": [ + { + "user_id": 994, + "restaurant_id": 2073, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 994, + "restaurant_id": 947, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 994, + "restaurant_id": 655, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 994, + "restaurant_id": 1456, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 994, + "restaurant_id": 332, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 994, + "restaurant_id": 1617 + }, + { + "user_id": 994, + "restaurant_id": 1184 + } + ], + "updated_at": "2025-03-30T11:32:22.770000" + }, + { + "user_info": { + "user_id": 995, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 995, + "min_price": 14602, + "max_price": 226950, + "preferred_categories": [ + 4, + 10, + 11 + ], + "_id": "67e92bc2785211cbd5ff9c0f" + }, + "reservations": [ + { + "user_id": 995, + "restaurant_id": 772, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 995, + "restaurant_id": 1012, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 995, + "restaurant_id": 32, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 995, + "restaurant_id": 38, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 995, + "restaurant_id": 1689, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 995, + "restaurant_id": 1370, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 995, + "restaurant_id": 557, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 995, + "restaurant_id": 348 + }, + { + "user_id": 995, + "restaurant_id": 841 + }, + { + "user_id": 995, + "restaurant_id": 1687 + } + ], + "updated_at": "2025-03-30T11:32:22.774000" + }, + { + "user_info": { + "user_id": 996, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + "preferences": { + "user_id": 996, + "min_price": 36439, + "max_price": 280148, + "preferred_categories": [ + 5, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9c10" + }, + "reservations": [ + { + "user_id": 996, + "restaurant_id": 862, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 996, + "restaurant_id": 154 + }, + { + "user_id": 996, + "restaurant_id": 1059 + }, + { + "user_id": 996, + "restaurant_id": 1351 + }, + { + "user_id": 996, + "restaurant_id": 370 + } + ], + "updated_at": "2025-03-30T11:32:22.777000" + }, + { + "user_info": { + "user_id": 997, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + "preferences": { + "user_id": 997, + "min_price": 51432, + "max_price": 254227, + "preferred_categories": [ + 7, + 10, + 12 + ], + "_id": "67e92bc2785211cbd5ff9c11" + }, + "reservations": [], + "likes": [ + { + "user_id": 997, + "restaurant_id": 1599 + }, + { + "user_id": 997, + "restaurant_id": 917 + } + ], + "updated_at": "2025-03-30T11:32:22.780000" + }, + { + "user_info": { + "user_id": 998, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + "preferences": { + "user_id": 998, + "min_price": 168755, + "max_price": 404381, + "preferred_categories": [ + 1, + 9, + 12 + ], + "_id": "67e92bc2785211cbd5ff9c12" + }, + "reservations": [ + { + "user_id": 998, + "restaurant_id": 869, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 998, + "restaurant_id": 1617, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 998, + "restaurant_id": 1420, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + } + ], + "likes": [ + { + "user_id": 998, + "restaurant_id": 452 + }, + { + "user_id": 998, + "restaurant_id": 104 + } + ], + "updated_at": "2025-03-30T11:32:22.785000" + }, + { + "user_info": { + "user_id": 999, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + "preferences": { + "user_id": 999, + "min_price": 17476, + "max_price": 265544, + "preferred_categories": [ + 2, + 4, + 6 + ], + "_id": "67e92bc2785211cbd5ff9c13" + }, + "reservations": [ + { + "user_id": 999, + "restaurant_id": 296, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 999, + "restaurant_id": 2112, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 999, + "restaurant_id": 1395, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 999, + "restaurant_id": 412, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + } + ], + "likes": [ + { + "user_id": 999, + "restaurant_id": 1549 + }, + { + "user_id": 999, + "restaurant_id": 2175 + }, + { + "user_id": 999, + "restaurant_id": 1315 + } + ], + "updated_at": "2025-03-30T11:32:22.789000" + }, + { + "user_info": { + "user_id": 1000, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + "preferences": { + "user_id": 1000, + "min_price": 67260, + "max_price": 348762, + "preferred_categories": [ + 4, + 5, + 12 + ], + "_id": "67e92bc2785211cbd5ff9c14" + }, + "reservations": [ + { + "user_id": 1000, + "restaurant_id": 818, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 1000, + "restaurant_id": 584, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 1000, + "restaurant_id": 352, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 1000, + "restaurant_id": 277, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + } + ], + "likes": [ + { + "user_id": 1000, + "restaurant_id": 2179 + }, + { + "user_id": 1000, + "restaurant_id": 218 + } + ], + "updated_at": "2025-03-30T11:32:22.792000" + }, + { + "user_info": { + "user_id": 1004, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 10, + "normal_ticket_count": 100 + }, + "preferences": { + "user_id": 1004, + "min_price": 10000, + "max_price": 90000, + "preferred_categories": [ + 1, + 2, + 3 + ], + "_id": "67e92bc2785211cbd5ff9c15" + }, + "reservations": [], + "likes": [], + "updated_at": "2025-03-30T11:32:22.798000" + }, + { + "user_info": { + "user_id": 1005, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 10, + "normal_ticket_count": 100 + }, + "preferences": { + "user_id": 1005, + "min_price": 10000, + "max_price": 500000, + "preferred_categories": [ + 2, + 5, + 8 + ], + "_id": "67e92bc2785211cbd5ff9c16" + }, + "reservations": [], + "likes": [], + "updated_at": "2025-03-30T11:32:22.801000" + } +] \ No newline at end of file diff --git a/storage/input_json/user/reservations_20250330_212302.json b/storage/input_json/user/reservations_20250330_212302.json new file mode 100644 index 0000000..30353a8 --- /dev/null +++ b/storage/input_json/user/reservations_20250330_212302.json @@ -0,0 +1,21522 @@ +[ + { + "user_id": 421, + "restaurant_id": 417, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 952, + "restaurant_id": 1192, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 625, + "restaurant_id": 2046, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 850, + "restaurant_id": 1677, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 184, + "restaurant_id": 240, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 188, + "restaurant_id": 465, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 946, + "restaurant_id": 1113, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 194, + "restaurant_id": 1174, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 551, + "restaurant_id": 914, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 747, + "restaurant_id": 870, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 847, + "restaurant_id": 1171, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 800, + "restaurant_id": 1890, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 626, + "restaurant_id": 1800, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 460, + "restaurant_id": 1786, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 829, + "restaurant_id": 765, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 699, + "restaurant_id": 1848, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 797, + "restaurant_id": 547, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 669, + "restaurant_id": 111, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 182, + "restaurant_id": 1676, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 588, + "restaurant_id": 1796, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 94, + "restaurant_id": 2223, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 94, + "restaurant_id": 26, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 427, + "restaurant_id": 1948, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 755, + "restaurant_id": 166, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 920, + "restaurant_id": 1580, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 302, + "restaurant_id": 1306, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 322, + "restaurant_id": 1006, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 163, + "restaurant_id": 426, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 909, + "restaurant_id": 139, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 160, + "restaurant_id": 988, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 25, + "restaurant_id": 180, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 488, + "restaurant_id": 2248, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 6, + "restaurant_id": 2182, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 527, + "restaurant_id": 119, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 949, + "restaurant_id": 1180, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 575, + "restaurant_id": 1132, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 994, + "restaurant_id": 2073, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 354, + "restaurant_id": 1314, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 749, + "restaurant_id": 637, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 83, + "restaurant_id": 2248, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 144, + "restaurant_id": 200, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 710, + "restaurant_id": 194, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 397, + "restaurant_id": 1479, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 161, + "restaurant_id": 799, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 220, + "restaurant_id": 1889, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 649, + "restaurant_id": 2064, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 742, + "restaurant_id": 881, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 308, + "restaurant_id": 127, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 264, + "restaurant_id": 953, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 907, + "restaurant_id": 1586, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 738, + "restaurant_id": 1874, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 702, + "restaurant_id": 1262, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 782, + "restaurant_id": 279, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 421, + "restaurant_id": 258, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 493, + "restaurant_id": 952, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 595, + "restaurant_id": 268, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 895, + "restaurant_id": 2184, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 780, + "restaurant_id": 1970, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 168, + "restaurant_id": 1328, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 66, + "restaurant_id": 578, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 503, + "restaurant_id": 851, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 832, + "restaurant_id": 288, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 448, + "restaurant_id": 2118, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 547, + "restaurant_id": 566, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 89, + "restaurant_id": 1432, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 214, + "restaurant_id": 402, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 684, + "restaurant_id": 49, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 879, + "restaurant_id": 2169, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 978, + "restaurant_id": 285, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 445, + "restaurant_id": 2013, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 920, + "restaurant_id": 21, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 79, + "restaurant_id": 2047, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 225, + "restaurant_id": 1920, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 57, + "restaurant_id": 1684, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 688, + "restaurant_id": 650, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 641, + "restaurant_id": 435, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 615, + "restaurant_id": 1858, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 698, + "restaurant_id": 1574, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 951, + "restaurant_id": 2050, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 69, + "restaurant_id": 1048, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 216, + "restaurant_id": 348, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 163, + "restaurant_id": 1194, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 817, + "restaurant_id": 741, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 240, + "restaurant_id": 1371, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 338, + "restaurant_id": 1990, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 878, + "restaurant_id": 612, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 386, + "restaurant_id": 1190, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 939, + "restaurant_id": 317, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 277, + "restaurant_id": 295, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 328, + "restaurant_id": 596, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 810, + "restaurant_id": 256, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 160, + "restaurant_id": 662, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 237, + "restaurant_id": 626, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 866, + "restaurant_id": 1027, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 464, + "restaurant_id": 712, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 686, + "restaurant_id": 1004, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 852, + "restaurant_id": 1018, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 746, + "restaurant_id": 21, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 29, + "restaurant_id": 318, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 444, + "restaurant_id": 262, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 475, + "restaurant_id": 652, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 121, + "restaurant_id": 869, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 873, + "restaurant_id": 2037, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 757, + "restaurant_id": 1890, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 73, + "restaurant_id": 2254, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 477, + "restaurant_id": 597, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 677, + "restaurant_id": 614, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 906, + "restaurant_id": 1198, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 904, + "restaurant_id": 1603, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 507, + "restaurant_id": 1852, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 376, + "restaurant_id": 2007, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 139, + "restaurant_id": 490, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 311, + "restaurant_id": 1743, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 377, + "restaurant_id": 210, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 953, + "restaurant_id": 2188, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 777, + "restaurant_id": 959, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 974, + "restaurant_id": 1506, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 820, + "restaurant_id": 135, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 350, + "restaurant_id": 966, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 386, + "restaurant_id": 639, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 913, + "restaurant_id": 114, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 206, + "restaurant_id": 807, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 794, + "restaurant_id": 404, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 458, + "restaurant_id": 1883, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 57, + "restaurant_id": 1080, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 897, + "restaurant_id": 617, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 974, + "restaurant_id": 759, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 404, + "restaurant_id": 800, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 488, + "restaurant_id": 172, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 78, + "restaurant_id": 2187, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 893, + "restaurant_id": 1129, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 736, + "restaurant_id": 1893, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 452, + "restaurant_id": 1159, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 45, + "restaurant_id": 617, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 28, + "restaurant_id": 446, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 422, + "restaurant_id": 2194, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 218, + "restaurant_id": 1082, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 81, + "restaurant_id": 2145, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 334, + "restaurant_id": 866, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 831, + "restaurant_id": 248, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 754, + "restaurant_id": 1652, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 457, + "restaurant_id": 1160, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 983, + "restaurant_id": 2103, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 199, + "restaurant_id": 1353, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 327, + "restaurant_id": 1580, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 922, + "restaurant_id": 345, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 280, + "restaurant_id": 46, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 354, + "restaurant_id": 161, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 777, + "restaurant_id": 2245, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 193, + "restaurant_id": 2007, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 541, + "restaurant_id": 820, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 396, + "restaurant_id": 359, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 338, + "restaurant_id": 149, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 312, + "restaurant_id": 1185, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 833, + "restaurant_id": 308, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 675, + "restaurant_id": 1552, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 163, + "restaurant_id": 595, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 177, + "restaurant_id": 1691, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 400, + "restaurant_id": 1755, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 339, + "restaurant_id": 564, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 833, + "restaurant_id": 1855, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 281, + "restaurant_id": 962, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 86, + "restaurant_id": 2017, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 990, + "restaurant_id": 324, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 775, + "restaurant_id": 805, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 237, + "restaurant_id": 1667, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 886, + "restaurant_id": 1795, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 934, + "restaurant_id": 2147, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 524, + "restaurant_id": 2024, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 207, + "restaurant_id": 410, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 698, + "restaurant_id": 130, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 145, + "restaurant_id": 1055, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 264, + "restaurant_id": 2041, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 677, + "restaurant_id": 1089, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 955, + "restaurant_id": 1260, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 958, + "restaurant_id": 1870, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 732, + "restaurant_id": 969, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 667, + "restaurant_id": 2206, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 26, + "restaurant_id": 1313, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 117, + "restaurant_id": 2228, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 360, + "restaurant_id": 337, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 579, + "restaurant_id": 987, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 780, + "restaurant_id": 269, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 63, + "restaurant_id": 1971, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 762, + "restaurant_id": 936, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 831, + "restaurant_id": 1185, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 389, + "restaurant_id": 1487, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 366, + "restaurant_id": 578, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 919, + "restaurant_id": 2025, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 905, + "restaurant_id": 1557, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 577, + "restaurant_id": 781, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 571, + "restaurant_id": 1771, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 523, + "restaurant_id": 814, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 130, + "restaurant_id": 2025, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 511, + "restaurant_id": 2200, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 809, + "restaurant_id": 2184, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 96, + "restaurant_id": 2118, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 947, + "restaurant_id": 69, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 122, + "restaurant_id": 929, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 565, + "restaurant_id": 2250, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 626, + "restaurant_id": 37, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 442, + "restaurant_id": 235, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 155, + "restaurant_id": 657, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 412, + "restaurant_id": 1050, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 512, + "restaurant_id": 397, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 816, + "restaurant_id": 741, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 952, + "restaurant_id": 1469, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 610, + "restaurant_id": 1940, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 172, + "restaurant_id": 243, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 203, + "restaurant_id": 45, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 754, + "restaurant_id": 1738, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 406, + "restaurant_id": 850, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 43, + "restaurant_id": 1235, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 631, + "restaurant_id": 57, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 147, + "restaurant_id": 372, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 596, + "restaurant_id": 1706, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 203, + "restaurant_id": 1157, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 935, + "restaurant_id": 1768, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 772, + "restaurant_id": 298, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 142, + "restaurant_id": 2024, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 582, + "restaurant_id": 1236, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 466, + "restaurant_id": 926, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 606, + "restaurant_id": 1294, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 588, + "restaurant_id": 179, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 77, + "restaurant_id": 1560, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 159, + "restaurant_id": 1423, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 938, + "restaurant_id": 816, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 863, + "restaurant_id": 110, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 656, + "restaurant_id": 798, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 15, + "restaurant_id": 1757, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 353, + "restaurant_id": 2037, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 365, + "restaurant_id": 824, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 926, + "restaurant_id": 887, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 338, + "restaurant_id": 2236, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 447, + "restaurant_id": 217, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 877, + "restaurant_id": 298, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 808, + "restaurant_id": 1296, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 630, + "restaurant_id": 1350, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 171, + "restaurant_id": 283, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 768, + "restaurant_id": 115, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 698, + "restaurant_id": 145, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 932, + "restaurant_id": 189, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 521, + "restaurant_id": 534, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 83, + "restaurant_id": 1213, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 943, + "restaurant_id": 256, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 952, + "restaurant_id": 608, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 334, + "restaurant_id": 875, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 98, + "restaurant_id": 1359, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 579, + "restaurant_id": 540, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 953, + "restaurant_id": 1799, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 394, + "restaurant_id": 192, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 282, + "restaurant_id": 2179, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 430, + "restaurant_id": 1489, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 931, + "restaurant_id": 2131, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 102, + "restaurant_id": 115, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 925, + "restaurant_id": 1993, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 249, + "restaurant_id": 2053, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 434, + "restaurant_id": 1534, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 320, + "restaurant_id": 1731, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 646, + "restaurant_id": 2059, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 628, + "restaurant_id": 583, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 413, + "restaurant_id": 769, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 489, + "restaurant_id": 574, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 276, + "restaurant_id": 130, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 636, + "restaurant_id": 1107, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 719, + "restaurant_id": 1734, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 756, + "restaurant_id": 2175, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 284, + "restaurant_id": 446, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 940, + "restaurant_id": 1998, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 267, + "restaurant_id": 206, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 140, + "restaurant_id": 174, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 642, + "restaurant_id": 722, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 922, + "restaurant_id": 713, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 828, + "restaurant_id": 1351, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 817, + "restaurant_id": 1464, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 459, + "restaurant_id": 1907, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 736, + "restaurant_id": 1222, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 348, + "restaurant_id": 222, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 898, + "restaurant_id": 1636, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 963, + "restaurant_id": 654, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 623, + "restaurant_id": 286, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 195, + "restaurant_id": 808, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 576, + "restaurant_id": 2196, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 245, + "restaurant_id": 830, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 430, + "restaurant_id": 502, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 9, + "restaurant_id": 2139, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 815, + "restaurant_id": 378, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 549, + "restaurant_id": 2153, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 437, + "restaurant_id": 828, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 325, + "restaurant_id": 1022, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 440, + "restaurant_id": 192, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 646, + "restaurant_id": 1102, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 219, + "restaurant_id": 1559, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 677, + "restaurant_id": 755, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 802, + "restaurant_id": 1144, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 447, + "restaurant_id": 1346, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 461, + "restaurant_id": 1170, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 553, + "restaurant_id": 773, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 674, + "restaurant_id": 441, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 975, + "restaurant_id": 825, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 309, + "restaurant_id": 341, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 715, + "restaurant_id": 541, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 944, + "restaurant_id": 1920, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 202, + "restaurant_id": 958, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 636, + "restaurant_id": 601, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 959, + "restaurant_id": 1493, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 738, + "restaurant_id": 1555, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 920, + "restaurant_id": 2037, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 584, + "restaurant_id": 945, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 838, + "restaurant_id": 466, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 88, + "restaurant_id": 815, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 686, + "restaurant_id": 2114, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 719, + "restaurant_id": 120, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 915, + "restaurant_id": 104, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 491, + "restaurant_id": 1576, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 864, + "restaurant_id": 1166, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 431, + "restaurant_id": 1432, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 91, + "restaurant_id": 2217, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 326, + "restaurant_id": 1371, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 429, + "restaurant_id": 642, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 166, + "restaurant_id": 2165, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 498, + "restaurant_id": 1277, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 693, + "restaurant_id": 1174, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 575, + "restaurant_id": 1624, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 40, + "restaurant_id": 1048, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 287, + "restaurant_id": 820, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 59, + "restaurant_id": 1189, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 778, + "restaurant_id": 1041, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 915, + "restaurant_id": 806, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 771, + "restaurant_id": 2160, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 561, + "restaurant_id": 1026, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 40, + "restaurant_id": 1963, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 906, + "restaurant_id": 2010, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 147, + "restaurant_id": 2075, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 18, + "restaurant_id": 1587, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 701, + "restaurant_id": 596, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 137, + "restaurant_id": 1294, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 268, + "restaurant_id": 2152, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 732, + "restaurant_id": 2190, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 108, + "restaurant_id": 1833, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 937, + "restaurant_id": 515, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 254, + "restaurant_id": 407, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 773, + "restaurant_id": 1129, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 993, + "restaurant_id": 816, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 33, + "restaurant_id": 2078, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 571, + "restaurant_id": 846, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 296, + "restaurant_id": 1059, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 115, + "restaurant_id": 262, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 848, + "restaurant_id": 562, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 187, + "restaurant_id": 58, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 816, + "restaurant_id": 2026, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 754, + "restaurant_id": 270, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 671, + "restaurant_id": 938, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 844, + "restaurant_id": 2072, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 831, + "restaurant_id": 2119, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 736, + "restaurant_id": 1391, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 243, + "restaurant_id": 2026, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 330, + "restaurant_id": 1852, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 736, + "restaurant_id": 1541, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 404, + "restaurant_id": 1592, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 75, + "restaurant_id": 1655, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 342, + "restaurant_id": 2022, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 126, + "restaurant_id": 593, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 471, + "restaurant_id": 1629, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 295, + "restaurant_id": 1295, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 15, + "restaurant_id": 676, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 660, + "restaurant_id": 325, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 729, + "restaurant_id": 2113, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 423, + "restaurant_id": 450, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 172, + "restaurant_id": 1824, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 396, + "restaurant_id": 1171, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 548, + "restaurant_id": 1443, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 497, + "restaurant_id": 588, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 520, + "restaurant_id": 1686, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 262, + "restaurant_id": 1734, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 786, + "restaurant_id": 1384, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 839, + "restaurant_id": 80, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 742, + "restaurant_id": 1113, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 898, + "restaurant_id": 1987, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 446, + "restaurant_id": 1877, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 383, + "restaurant_id": 1223, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 760, + "restaurant_id": 1483, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 722, + "restaurant_id": 519, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 735, + "restaurant_id": 1218, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 435, + "restaurant_id": 184, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 266, + "restaurant_id": 1207, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 381, + "restaurant_id": 2000, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 395, + "restaurant_id": 713, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 973, + "restaurant_id": 1473, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 835, + "restaurant_id": 2002, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 886, + "restaurant_id": 1071, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 600, + "restaurant_id": 1608, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 943, + "restaurant_id": 1698, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 28, + "restaurant_id": 890, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 902, + "restaurant_id": 1815, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 367, + "restaurant_id": 1419, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 863, + "restaurant_id": 42, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 177, + "restaurant_id": 951, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 567, + "restaurant_id": 163, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 356, + "restaurant_id": 859, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 4, + "restaurant_id": 534, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 666, + "restaurant_id": 1384, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 60, + "restaurant_id": 1772, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 568, + "restaurant_id": 670, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 453, + "restaurant_id": 754, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 605, + "restaurant_id": 823, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 890, + "restaurant_id": 1138, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 918, + "restaurant_id": 91, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 474, + "restaurant_id": 705, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 251, + "restaurant_id": 441, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 871, + "restaurant_id": 2203, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 595, + "restaurant_id": 1187, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 679, + "restaurant_id": 535, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 260, + "restaurant_id": 837, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 856, + "restaurant_id": 640, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 808, + "restaurant_id": 2009, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 244, + "restaurant_id": 1713, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 780, + "restaurant_id": 2175, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 421, + "restaurant_id": 814, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 957, + "restaurant_id": 603, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 447, + "restaurant_id": 2099, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 611, + "restaurant_id": 136, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 238, + "restaurant_id": 431, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 389, + "restaurant_id": 729, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 552, + "restaurant_id": 828, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 327, + "restaurant_id": 1300, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 833, + "restaurant_id": 1458, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 174, + "restaurant_id": 279, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 772, + "restaurant_id": 2159, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 898, + "restaurant_id": 359, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 532, + "restaurant_id": 831, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 668, + "restaurant_id": 699, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 859, + "restaurant_id": 739, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 898, + "restaurant_id": 272, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 805, + "restaurant_id": 1899, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 895, + "restaurant_id": 1576, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 398, + "restaurant_id": 1358, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 633, + "restaurant_id": 767, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 177, + "restaurant_id": 170, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 702, + "restaurant_id": 423, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 272, + "restaurant_id": 1970, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 851, + "restaurant_id": 1523, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 116, + "restaurant_id": 1138, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 73, + "restaurant_id": 748, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 222, + "restaurant_id": 504, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 219, + "restaurant_id": 262, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 605, + "restaurant_id": 245, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 266, + "restaurant_id": 880, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 991, + "restaurant_id": 365, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 952, + "restaurant_id": 2057, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 153, + "restaurant_id": 891, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 980, + "restaurant_id": 1590, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 732, + "restaurant_id": 364, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 484, + "restaurant_id": 487, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 13, + "restaurant_id": 1666, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 313, + "restaurant_id": 2018, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 506, + "restaurant_id": 1490, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 221, + "restaurant_id": 1373, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 273, + "restaurant_id": 1820, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 362, + "restaurant_id": 1253, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 226, + "restaurant_id": 1210, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 158, + "restaurant_id": 1848, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 392, + "restaurant_id": 1950, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 828, + "restaurant_id": 842, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 784, + "restaurant_id": 440, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 737, + "restaurant_id": 170, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 187, + "restaurant_id": 165, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 522, + "restaurant_id": 125, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 791, + "restaurant_id": 652, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 6, + "restaurant_id": 2107, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 771, + "restaurant_id": 2203, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 683, + "restaurant_id": 851, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 252, + "restaurant_id": 1043, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 119, + "restaurant_id": 1112, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 573, + "restaurant_id": 1038, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 529, + "restaurant_id": 348, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 272, + "restaurant_id": 2163, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 488, + "restaurant_id": 2255, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 423, + "restaurant_id": 698, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 923, + "restaurant_id": 1761, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 539, + "restaurant_id": 204, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 977, + "restaurant_id": 1296, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 665, + "restaurant_id": 1051, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 341, + "restaurant_id": 565, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 446, + "restaurant_id": 2000, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 1000, + "restaurant_id": 818, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 370, + "restaurant_id": 944, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 114, + "restaurant_id": 2060, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 779, + "restaurant_id": 305, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 653, + "restaurant_id": 1703, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 891, + "restaurant_id": 1041, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 20, + "restaurant_id": 1362, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 469, + "restaurant_id": 2134, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 377, + "restaurant_id": 705, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 398, + "restaurant_id": 428, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 750, + "restaurant_id": 1810, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 699, + "restaurant_id": 1098, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 552, + "restaurant_id": 1970, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 768, + "restaurant_id": 982, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 89, + "restaurant_id": 825, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 431, + "restaurant_id": 2140, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 752, + "restaurant_id": 586, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 322, + "restaurant_id": 420, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 174, + "restaurant_id": 2124, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 11, + "restaurant_id": 1441, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 457, + "restaurant_id": 279, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 474, + "restaurant_id": 855, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 987, + "restaurant_id": 2212, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 554, + "restaurant_id": 1984, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 418, + "restaurant_id": 1049, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 353, + "restaurant_id": 1254, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 834, + "restaurant_id": 354, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 305, + "restaurant_id": 697, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 388, + "restaurant_id": 1278, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 945, + "restaurant_id": 1808, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 460, + "restaurant_id": 1832, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 660, + "restaurant_id": 1562, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 221, + "restaurant_id": 866, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 549, + "restaurant_id": 2089, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 127, + "restaurant_id": 2235, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 287, + "restaurant_id": 1961, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 619, + "restaurant_id": 441, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 693, + "restaurant_id": 904, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 316, + "restaurant_id": 1854, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 742, + "restaurant_id": 582, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 522, + "restaurant_id": 1201, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 6, + "restaurant_id": 1037, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 61, + "restaurant_id": 33, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 20, + "restaurant_id": 1933, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 282, + "restaurant_id": 442, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 86, + "restaurant_id": 1962, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 658, + "restaurant_id": 214, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 832, + "restaurant_id": 336, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 565, + "restaurant_id": 1093, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 77, + "restaurant_id": 7, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 975, + "restaurant_id": 187, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 350, + "restaurant_id": 846, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 142, + "restaurant_id": 2098, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 372, + "restaurant_id": 1440, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 922, + "restaurant_id": 52, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 110, + "restaurant_id": 1057, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 507, + "restaurant_id": 1238, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 441, + "restaurant_id": 486, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 807, + "restaurant_id": 197, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 67, + "restaurant_id": 896, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 389, + "restaurant_id": 1616, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 654, + "restaurant_id": 1891, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 847, + "restaurant_id": 1495, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 918, + "restaurant_id": 938, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 106, + "restaurant_id": 433, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 115, + "restaurant_id": 320, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 246, + "restaurant_id": 406, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 173, + "restaurant_id": 950, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 643, + "restaurant_id": 538, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 971, + "restaurant_id": 1424, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 838, + "restaurant_id": 1952, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 20, + "restaurant_id": 1661, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 922, + "restaurant_id": 1410, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 730, + "restaurant_id": 146, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 564, + "restaurant_id": 2034, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 496, + "restaurant_id": 1743, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 628, + "restaurant_id": 517, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 476, + "restaurant_id": 2202, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 926, + "restaurant_id": 2043, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 282, + "restaurant_id": 258, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 408, + "restaurant_id": 647, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 522, + "restaurant_id": 1622, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 982, + "restaurant_id": 1413, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 951, + "restaurant_id": 2073, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 208, + "restaurant_id": 1607, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 354, + "restaurant_id": 1903, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 265, + "restaurant_id": 351, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 643, + "restaurant_id": 831, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 918, + "restaurant_id": 1156, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 590, + "restaurant_id": 397, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 109, + "restaurant_id": 1841, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 718, + "restaurant_id": 1155, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 420, + "restaurant_id": 559, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 583, + "restaurant_id": 469, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 345, + "restaurant_id": 119, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 859, + "restaurant_id": 1492, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 739, + "restaurant_id": 1669, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 732, + "restaurant_id": 708, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 948, + "restaurant_id": 113, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 915, + "restaurant_id": 1818, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 917, + "restaurant_id": 244, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 884, + "restaurant_id": 1830, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 598, + "restaurant_id": 968, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 12, + "restaurant_id": 2097, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 366, + "restaurant_id": 975, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 33, + "restaurant_id": 1633, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 218, + "restaurant_id": 1883, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 89, + "restaurant_id": 1672, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 267, + "restaurant_id": 332, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 545, + "restaurant_id": 314, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 625, + "restaurant_id": 701, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 25, + "restaurant_id": 728, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 554, + "restaurant_id": 883, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 243, + "restaurant_id": 42, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 505, + "restaurant_id": 1437, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 679, + "restaurant_id": 1250, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 572, + "restaurant_id": 956, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 980, + "restaurant_id": 2077, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 399, + "restaurant_id": 975, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 511, + "restaurant_id": 1754, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 577, + "restaurant_id": 488, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 363, + "restaurant_id": 1187, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 496, + "restaurant_id": 902, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 488, + "restaurant_id": 557, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 623, + "restaurant_id": 2226, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 281, + "restaurant_id": 409, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 543, + "restaurant_id": 1632, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 980, + "restaurant_id": 6, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 655, + "restaurant_id": 325, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 515, + "restaurant_id": 900, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 657, + "restaurant_id": 263, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 123, + "restaurant_id": 158, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 539, + "restaurant_id": 1022, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 656, + "restaurant_id": 1225, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 943, + "restaurant_id": 1850, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 565, + "restaurant_id": 1781, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 751, + "restaurant_id": 1853, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 565, + "restaurant_id": 554, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 446, + "restaurant_id": 519, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 312, + "restaurant_id": 551, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 177, + "restaurant_id": 749, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 389, + "restaurant_id": 1966, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 317, + "restaurant_id": 877, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 221, + "restaurant_id": 1072, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 509, + "restaurant_id": 1263, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 351, + "restaurant_id": 1769, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 345, + "restaurant_id": 890, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 227, + "restaurant_id": 755, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 622, + "restaurant_id": 1797, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 359, + "restaurant_id": 1132, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 881, + "restaurant_id": 1736, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 466, + "restaurant_id": 941, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 60, + "restaurant_id": 969, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 760, + "restaurant_id": 1884, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 742, + "restaurant_id": 834, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 15, + "restaurant_id": 561, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 229, + "restaurant_id": 983, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 937, + "restaurant_id": 1156, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 916, + "restaurant_id": 2212, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 344, + "restaurant_id": 812, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 70, + "restaurant_id": 1338, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 245, + "restaurant_id": 1052, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 839, + "restaurant_id": 2167, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 374, + "restaurant_id": 1308, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 368, + "restaurant_id": 458, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 659, + "restaurant_id": 112, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 250, + "restaurant_id": 1594, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 57, + "restaurant_id": 805, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 937, + "restaurant_id": 1340, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 703, + "restaurant_id": 1457, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 312, + "restaurant_id": 818, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 433, + "restaurant_id": 1955, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 167, + "restaurant_id": 110, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 567, + "restaurant_id": 1234, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 349, + "restaurant_id": 1019, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 504, + "restaurant_id": 676, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 348, + "restaurant_id": 438, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 89, + "restaurant_id": 784, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 962, + "restaurant_id": 1951, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 910, + "restaurant_id": 602, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 836, + "restaurant_id": 232, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 145, + "restaurant_id": 866, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 821, + "restaurant_id": 1122, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 57, + "restaurant_id": 1141, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 563, + "restaurant_id": 1208, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 565, + "restaurant_id": 161, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 807, + "restaurant_id": 1803, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 118, + "restaurant_id": 431, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 486, + "restaurant_id": 1353, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 994, + "restaurant_id": 947, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 448, + "restaurant_id": 617, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 254, + "restaurant_id": 449, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 578, + "restaurant_id": 1674, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 826, + "restaurant_id": 1168, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 733, + "restaurant_id": 895, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 618, + "restaurant_id": 666, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 915, + "restaurant_id": 295, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 608, + "restaurant_id": 800, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 833, + "restaurant_id": 980, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 565, + "restaurant_id": 2048, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 932, + "restaurant_id": 881, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 184, + "restaurant_id": 2236, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 946, + "restaurant_id": 367, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 759, + "restaurant_id": 1099, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 839, + "restaurant_id": 543, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 217, + "restaurant_id": 407, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 470, + "restaurant_id": 976, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 722, + "restaurant_id": 1732, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 838, + "restaurant_id": 961, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 447, + "restaurant_id": 423, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 599, + "restaurant_id": 1388, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 650, + "restaurant_id": 1680, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 295, + "restaurant_id": 923, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 88, + "restaurant_id": 522, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 449, + "restaurant_id": 1353, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 904, + "restaurant_id": 1981, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 547, + "restaurant_id": 558, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 95, + "restaurant_id": 1998, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 345, + "restaurant_id": 2250, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 65, + "restaurant_id": 1497, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 199, + "restaurant_id": 2187, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 509, + "restaurant_id": 85, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 212, + "restaurant_id": 1859, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 360, + "restaurant_id": 748, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 425, + "restaurant_id": 1811, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 953, + "restaurant_id": 1587, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 544, + "restaurant_id": 834, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 181, + "restaurant_id": 2081, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 954, + "restaurant_id": 1795, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 140, + "restaurant_id": 125, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 889, + "restaurant_id": 981, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 474, + "restaurant_id": 1057, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 788, + "restaurant_id": 2037, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 441, + "restaurant_id": 1421, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 575, + "restaurant_id": 52, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 671, + "restaurant_id": 1441, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 414, + "restaurant_id": 1694, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 41, + "restaurant_id": 307, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 187, + "restaurant_id": 288, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 176, + "restaurant_id": 1243, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 564, + "restaurant_id": 393, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 717, + "restaurant_id": 35, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 847, + "restaurant_id": 1420, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 762, + "restaurant_id": 1791, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 55, + "restaurant_id": 1728, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 653, + "restaurant_id": 743, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 386, + "restaurant_id": 703, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 219, + "restaurant_id": 2254, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 353, + "restaurant_id": 1710, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 223, + "restaurant_id": 511, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 274, + "restaurant_id": 38, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 923, + "restaurant_id": 2105, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 35, + "restaurant_id": 1786, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 871, + "restaurant_id": 968, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 639, + "restaurant_id": 1568, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 82, + "restaurant_id": 1647, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 858, + "restaurant_id": 2163, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 897, + "restaurant_id": 2017, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 745, + "restaurant_id": 1692, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 734, + "restaurant_id": 1467, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 722, + "restaurant_id": 2029, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 549, + "restaurant_id": 535, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 68, + "restaurant_id": 1741, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 804, + "restaurant_id": 1072, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 802, + "restaurant_id": 36, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 97, + "restaurant_id": 464, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 98, + "restaurant_id": 1281, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 208, + "restaurant_id": 936, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 183, + "restaurant_id": 1377, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 743, + "restaurant_id": 870, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 331, + "restaurant_id": 2046, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 766, + "restaurant_id": 526, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 716, + "restaurant_id": 1013, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 586, + "restaurant_id": 1760, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 151, + "restaurant_id": 838, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 299, + "restaurant_id": 943, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 80, + "restaurant_id": 1933, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 761, + "restaurant_id": 1547, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 785, + "restaurant_id": 1353, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 386, + "restaurant_id": 2079, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 443, + "restaurant_id": 99, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 107, + "restaurant_id": 1476, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 320, + "restaurant_id": 1510, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 399, + "restaurant_id": 786, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 747, + "restaurant_id": 1038, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 132, + "restaurant_id": 333, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 32, + "restaurant_id": 446, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 930, + "restaurant_id": 490, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 609, + "restaurant_id": 1338, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 408, + "restaurant_id": 101, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 628, + "restaurant_id": 470, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 358, + "restaurant_id": 1823, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 869, + "restaurant_id": 2231, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 613, + "restaurant_id": 1500, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 698, + "restaurant_id": 1520, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 42, + "restaurant_id": 1770, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 286, + "restaurant_id": 1890, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 646, + "restaurant_id": 1046, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 500, + "restaurant_id": 36, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 529, + "restaurant_id": 869, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 607, + "restaurant_id": 1645, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 413, + "restaurant_id": 72, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 690, + "restaurant_id": 593, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 840, + "restaurant_id": 365, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 678, + "restaurant_id": 907, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 634, + "restaurant_id": 1797, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 419, + "restaurant_id": 1644, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 264, + "restaurant_id": 815, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 635, + "restaurant_id": 218, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 731, + "restaurant_id": 1411, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 166, + "restaurant_id": 871, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 157, + "restaurant_id": 944, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 331, + "restaurant_id": 699, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 617, + "restaurant_id": 243, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 579, + "restaurant_id": 1804, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 211, + "restaurant_id": 231, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 376, + "restaurant_id": 1392, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 161, + "restaurant_id": 725, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 643, + "restaurant_id": 422, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 722, + "restaurant_id": 2180, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 152, + "restaurant_id": 1463, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 179, + "restaurant_id": 1778, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 255, + "restaurant_id": 24, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 226, + "restaurant_id": 1872, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 13, + "restaurant_id": 96, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 406, + "restaurant_id": 792, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 195, + "restaurant_id": 1366, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 696, + "restaurant_id": 114, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 437, + "restaurant_id": 1379, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 945, + "restaurant_id": 1171, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 979, + "restaurant_id": 394, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 421, + "restaurant_id": 449, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 31, + "restaurant_id": 1779, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 174, + "restaurant_id": 539, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 715, + "restaurant_id": 1257, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 260, + "restaurant_id": 1726, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 342, + "restaurant_id": 1077, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 627, + "restaurant_id": 769, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 232, + "restaurant_id": 1996, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 895, + "restaurant_id": 19, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 703, + "restaurant_id": 237, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 990, + "restaurant_id": 1623, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 708, + "restaurant_id": 1226, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 272, + "restaurant_id": 77, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 555, + "restaurant_id": 1279, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 524, + "restaurant_id": 1676, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 525, + "restaurant_id": 583, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 972, + "restaurant_id": 2102, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 645, + "restaurant_id": 1642, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 751, + "restaurant_id": 833, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 19, + "restaurant_id": 118, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 818, + "restaurant_id": 1773, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 616, + "restaurant_id": 1476, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 409, + "restaurant_id": 1852, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 172, + "restaurant_id": 1851, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 772, + "restaurant_id": 119, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 973, + "restaurant_id": 604, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 615, + "restaurant_id": 597, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 736, + "restaurant_id": 300, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 456, + "restaurant_id": 2247, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 555, + "restaurant_id": 1385, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 354, + "restaurant_id": 729, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 285, + "restaurant_id": 749, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 638, + "restaurant_id": 1101, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 945, + "restaurant_id": 336, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 498, + "restaurant_id": 1254, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 453, + "restaurant_id": 1660, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 421, + "restaurant_id": 718, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 866, + "restaurant_id": 204, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 462, + "restaurant_id": 1660, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 763, + "restaurant_id": 144, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 36, + "restaurant_id": 25, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 647, + "restaurant_id": 891, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 983, + "restaurant_id": 302, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 22, + "restaurant_id": 1067, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 494, + "restaurant_id": 516, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 441, + "restaurant_id": 1060, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 167, + "restaurant_id": 1050, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 687, + "restaurant_id": 1675, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 234, + "restaurant_id": 587, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 382, + "restaurant_id": 379, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 19, + "restaurant_id": 677, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 2, + "restaurant_id": 1222, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 273, + "restaurant_id": 335, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 109, + "restaurant_id": 1858, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 863, + "restaurant_id": 100, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 324, + "restaurant_id": 602, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 345, + "restaurant_id": 1106, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 643, + "restaurant_id": 1744, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 165, + "restaurant_id": 400, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 792, + "restaurant_id": 713, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 201, + "restaurant_id": 598, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 326, + "restaurant_id": 369, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 644, + "restaurant_id": 2188, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 49, + "restaurant_id": 229, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 904, + "restaurant_id": 602, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 923, + "restaurant_id": 1837, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 713, + "restaurant_id": 867, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 617, + "restaurant_id": 1409, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 508, + "restaurant_id": 1245, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 254, + "restaurant_id": 1203, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 738, + "restaurant_id": 1723, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 41, + "restaurant_id": 676, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 843, + "restaurant_id": 1740, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 530, + "restaurant_id": 1414, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 253, + "restaurant_id": 1292, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 217, + "restaurant_id": 1261, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 858, + "restaurant_id": 2023, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 210, + "restaurant_id": 404, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 904, + "restaurant_id": 493, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 228, + "restaurant_id": 1930, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 451, + "restaurant_id": 1087, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 540, + "restaurant_id": 1078, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 61, + "restaurant_id": 401, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 73, + "restaurant_id": 302, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 427, + "restaurant_id": 1455, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 215, + "restaurant_id": 1252, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 439, + "restaurant_id": 614, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 481, + "restaurant_id": 2130, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 131, + "restaurant_id": 345, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 787, + "restaurant_id": 1036, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 700, + "restaurant_id": 387, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 533, + "restaurant_id": 255, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 302, + "restaurant_id": 1941, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 910, + "restaurant_id": 691, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 560, + "restaurant_id": 1111, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 582, + "restaurant_id": 233, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 131, + "restaurant_id": 1296, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 123, + "restaurant_id": 451, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 247, + "restaurant_id": 1997, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 832, + "restaurant_id": 834, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 755, + "restaurant_id": 1917, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 904, + "restaurant_id": 1886, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 276, + "restaurant_id": 2153, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 676, + "restaurant_id": 594, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 941, + "restaurant_id": 1283, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 897, + "restaurant_id": 1850, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 187, + "restaurant_id": 233, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 548, + "restaurant_id": 487, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 729, + "restaurant_id": 1170, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 573, + "restaurant_id": 2042, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 391, + "restaurant_id": 40, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 317, + "restaurant_id": 562, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 664, + "restaurant_id": 1355, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 450, + "restaurant_id": 1287, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 525, + "restaurant_id": 570, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 820, + "restaurant_id": 1390, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 249, + "restaurant_id": 531, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 121, + "restaurant_id": 302, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 999, + "restaurant_id": 296, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 944, + "restaurant_id": 316, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 385, + "restaurant_id": 1777, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 455, + "restaurant_id": 1988, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 300, + "restaurant_id": 92, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 767, + "restaurant_id": 886, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 970, + "restaurant_id": 395, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 451, + "restaurant_id": 35, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 326, + "restaurant_id": 1586, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 937, + "restaurant_id": 94, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 424, + "restaurant_id": 2181, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 936, + "restaurant_id": 1789, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 269, + "restaurant_id": 965, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 265, + "restaurant_id": 2073, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 463, + "restaurant_id": 184, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 530, + "restaurant_id": 210, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 773, + "restaurant_id": 2180, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 375, + "restaurant_id": 1635, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 493, + "restaurant_id": 2249, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 874, + "restaurant_id": 1927, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 148, + "restaurant_id": 1203, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 422, + "restaurant_id": 776, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 622, + "restaurant_id": 1426, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 421, + "restaurant_id": 2235, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 222, + "restaurant_id": 27, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 680, + "restaurant_id": 1919, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 735, + "restaurant_id": 2092, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 37, + "restaurant_id": 44, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 862, + "restaurant_id": 2083, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 827, + "restaurant_id": 1141, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 613, + "restaurant_id": 115, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 199, + "restaurant_id": 330, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 106, + "restaurant_id": 1045, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 499, + "restaurant_id": 1267, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 789, + "restaurant_id": 878, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 914, + "restaurant_id": 531, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 496, + "restaurant_id": 1845, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 466, + "restaurant_id": 1342, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 141, + "restaurant_id": 2207, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 734, + "restaurant_id": 1248, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 361, + "restaurant_id": 971, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 225, + "restaurant_id": 747, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 263, + "restaurant_id": 1816, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 265, + "restaurant_id": 2109, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 141, + "restaurant_id": 1036, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 572, + "restaurant_id": 754, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 945, + "restaurant_id": 892, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 789, + "restaurant_id": 1747, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 922, + "restaurant_id": 2101, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 269, + "restaurant_id": 1839, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 490, + "restaurant_id": 676, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 606, + "restaurant_id": 2026, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 189, + "restaurant_id": 1985, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 667, + "restaurant_id": 1985, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 422, + "restaurant_id": 2108, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 908, + "restaurant_id": 1931, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 86, + "restaurant_id": 1410, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 252, + "restaurant_id": 2076, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 646, + "restaurant_id": 55, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 998, + "restaurant_id": 869, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 62, + "restaurant_id": 1567, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 780, + "restaurant_id": 165, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 768, + "restaurant_id": 53, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 186, + "restaurant_id": 909, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 733, + "restaurant_id": 455, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 859, + "restaurant_id": 355, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 987, + "restaurant_id": 122, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 120, + "restaurant_id": 1088, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 642, + "restaurant_id": 110, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 893, + "restaurant_id": 1063, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 423, + "restaurant_id": 1221, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 400, + "restaurant_id": 579, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 223, + "restaurant_id": 2233, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 102, + "restaurant_id": 1114, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 999, + "restaurant_id": 2112, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 897, + "restaurant_id": 239, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 805, + "restaurant_id": 1249, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 349, + "restaurant_id": 890, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 466, + "restaurant_id": 1415, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 880, + "restaurant_id": 1267, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 271, + "restaurant_id": 1781, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 995, + "restaurant_id": 772, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 702, + "restaurant_id": 20, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 745, + "restaurant_id": 88, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 666, + "restaurant_id": 545, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 449, + "restaurant_id": 2098, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 502, + "restaurant_id": 459, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 353, + "restaurant_id": 2026, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 427, + "restaurant_id": 172, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 92, + "restaurant_id": 2237, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 380, + "restaurant_id": 1212, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 161, + "restaurant_id": 1513, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 883, + "restaurant_id": 461, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 92, + "restaurant_id": 999, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 899, + "restaurant_id": 217, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 335, + "restaurant_id": 426, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 599, + "restaurant_id": 1669, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 82, + "restaurant_id": 1512, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 543, + "restaurant_id": 1876, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 316, + "restaurant_id": 1779, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 284, + "restaurant_id": 1466, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 572, + "restaurant_id": 1343, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 620, + "restaurant_id": 2138, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 851, + "restaurant_id": 351, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 846, + "restaurant_id": 1332, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 181, + "restaurant_id": 447, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 668, + "restaurant_id": 615, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 551, + "restaurant_id": 57, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 823, + "restaurant_id": 1965, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 242, + "restaurant_id": 1466, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 320, + "restaurant_id": 154, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 565, + "restaurant_id": 2118, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 76, + "restaurant_id": 1405, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 649, + "restaurant_id": 613, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 6, + "restaurant_id": 641, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 728, + "restaurant_id": 2081, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 721, + "restaurant_id": 93, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 698, + "restaurant_id": 1394, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 35, + "restaurant_id": 301, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 557, + "restaurant_id": 1963, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 731, + "restaurant_id": 1531, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 687, + "restaurant_id": 1549, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 885, + "restaurant_id": 1608, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 147, + "restaurant_id": 2107, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 590, + "restaurant_id": 1006, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 988, + "restaurant_id": 1380, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 798, + "restaurant_id": 386, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 277, + "restaurant_id": 999, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 38, + "restaurant_id": 375, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 23, + "restaurant_id": 1839, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 326, + "restaurant_id": 56, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 344, + "restaurant_id": 990, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 799, + "restaurant_id": 2225, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 859, + "restaurant_id": 1695, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 988, + "restaurant_id": 229, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 978, + "restaurant_id": 2170, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 624, + "restaurant_id": 1936, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 683, + "restaurant_id": 695, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 731, + "restaurant_id": 230, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 618, + "restaurant_id": 1446, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 722, + "restaurant_id": 207, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 950, + "restaurant_id": 457, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 911, + "restaurant_id": 801, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 995, + "restaurant_id": 1012, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 803, + "restaurant_id": 2068, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 224, + "restaurant_id": 152, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 718, + "restaurant_id": 2174, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 119, + "restaurant_id": 553, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 63, + "restaurant_id": 1382, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 316, + "restaurant_id": 739, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 757, + "restaurant_id": 1107, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 282, + "restaurant_id": 564, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 306, + "restaurant_id": 69, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 695, + "restaurant_id": 1439, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 566, + "restaurant_id": 311, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 797, + "restaurant_id": 230, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 960, + "restaurant_id": 2026, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 880, + "restaurant_id": 399, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 558, + "restaurant_id": 1958, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 252, + "restaurant_id": 233, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 73, + "restaurant_id": 2182, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 805, + "restaurant_id": 1386, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 887, + "restaurant_id": 695, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 701, + "restaurant_id": 242, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 985, + "restaurant_id": 1144, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 157, + "restaurant_id": 164, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 3, + "restaurant_id": 1689, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 746, + "restaurant_id": 1536, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 494, + "restaurant_id": 2210, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 552, + "restaurant_id": 33, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 846, + "restaurant_id": 936, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 512, + "restaurant_id": 1272, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 422, + "restaurant_id": 1348, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 452, + "restaurant_id": 1235, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 939, + "restaurant_id": 2132, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 442, + "restaurant_id": 1569, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 582, + "restaurant_id": 1159, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 132, + "restaurant_id": 1286, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 161, + "restaurant_id": 507, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 532, + "restaurant_id": 1707, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 523, + "restaurant_id": 1911, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 760, + "restaurant_id": 1938, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 958, + "restaurant_id": 1543, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 221, + "restaurant_id": 461, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 838, + "restaurant_id": 445, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 309, + "restaurant_id": 1728, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 212, + "restaurant_id": 224, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 64, + "restaurant_id": 1878, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 273, + "restaurant_id": 2199, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 830, + "restaurant_id": 689, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 719, + "restaurant_id": 789, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 738, + "restaurant_id": 292, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 636, + "restaurant_id": 1430, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 580, + "restaurant_id": 486, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 622, + "restaurant_id": 893, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 901, + "restaurant_id": 1687, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 12, + "restaurant_id": 2096, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 193, + "restaurant_id": 1314, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 109, + "restaurant_id": 1550, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 714, + "restaurant_id": 152, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 775, + "restaurant_id": 98, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 785, + "restaurant_id": 675, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 129, + "restaurant_id": 1841, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 439, + "restaurant_id": 583, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 374, + "restaurant_id": 577, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 842, + "restaurant_id": 145, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 800, + "restaurant_id": 915, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 221, + "restaurant_id": 157, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 688, + "restaurant_id": 549, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 233, + "restaurant_id": 254, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 878, + "restaurant_id": 935, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 190, + "restaurant_id": 180, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 898, + "restaurant_id": 237, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 968, + "restaurant_id": 1639, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 420, + "restaurant_id": 304, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 403, + "restaurant_id": 1896, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 827, + "restaurant_id": 326, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 566, + "restaurant_id": 1394, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 579, + "restaurant_id": 676, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 478, + "restaurant_id": 1217, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 642, + "restaurant_id": 1822, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 882, + "restaurant_id": 371, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 78, + "restaurant_id": 1159, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 102, + "restaurant_id": 842, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 776, + "restaurant_id": 1984, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 771, + "restaurant_id": 109, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 895, + "restaurant_id": 1264, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 115, + "restaurant_id": 929, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 321, + "restaurant_id": 188, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 384, + "restaurant_id": 320, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 155, + "restaurant_id": 449, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 252, + "restaurant_id": 142, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 241, + "restaurant_id": 2197, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 841, + "restaurant_id": 1881, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 423, + "restaurant_id": 2251, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 827, + "restaurant_id": 2067, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 100, + "restaurant_id": 291, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 49, + "restaurant_id": 296, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 561, + "restaurant_id": 2192, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 380, + "restaurant_id": 1422, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 938, + "restaurant_id": 1734, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 518, + "restaurant_id": 965, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 70, + "restaurant_id": 549, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 373, + "restaurant_id": 121, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 360, + "restaurant_id": 914, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 125, + "restaurant_id": 1785, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 249, + "restaurant_id": 1315, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 99, + "restaurant_id": 1129, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 393, + "restaurant_id": 1736, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 469, + "restaurant_id": 433, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 132, + "restaurant_id": 1255, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 709, + "restaurant_id": 1581, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 390, + "restaurant_id": 476, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 784, + "restaurant_id": 1875, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 393, + "restaurant_id": 819, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 152, + "restaurant_id": 1277, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 605, + "restaurant_id": 183, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 367, + "restaurant_id": 1889, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 351, + "restaurant_id": 2165, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 719, + "restaurant_id": 954, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 853, + "restaurant_id": 1662, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 726, + "restaurant_id": 1201, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 835, + "restaurant_id": 1777, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 816, + "restaurant_id": 346, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 393, + "restaurant_id": 245, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 261, + "restaurant_id": 593, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 428, + "restaurant_id": 1652, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 305, + "restaurant_id": 1952, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 714, + "restaurant_id": 808, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 399, + "restaurant_id": 559, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 990, + "restaurant_id": 684, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 403, + "restaurant_id": 569, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 434, + "restaurant_id": 275, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 783, + "restaurant_id": 418, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 821, + "restaurant_id": 727, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 936, + "restaurant_id": 344, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 725, + "restaurant_id": 180, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 445, + "restaurant_id": 1774, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 845, + "restaurant_id": 585, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 773, + "restaurant_id": 1487, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 903, + "restaurant_id": 1947, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 932, + "restaurant_id": 569, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 346, + "restaurant_id": 347, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 499, + "restaurant_id": 68, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 974, + "restaurant_id": 309, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 613, + "restaurant_id": 2076, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 786, + "restaurant_id": 210, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 471, + "restaurant_id": 1965, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 453, + "restaurant_id": 2167, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 993, + "restaurant_id": 1776, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 314, + "restaurant_id": 2141, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 94, + "restaurant_id": 558, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 719, + "restaurant_id": 2229, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 603, + "restaurant_id": 554, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 625, + "restaurant_id": 1109, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 272, + "restaurant_id": 1346, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 903, + "restaurant_id": 1586, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 819, + "restaurant_id": 1525, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 625, + "restaurant_id": 1936, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 783, + "restaurant_id": 677, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 444, + "restaurant_id": 2148, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 857, + "restaurant_id": 1826, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 935, + "restaurant_id": 418, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 201, + "restaurant_id": 1378, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 776, + "restaurant_id": 1580, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 886, + "restaurant_id": 2234, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 282, + "restaurant_id": 192, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 656, + "restaurant_id": 81, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 601, + "restaurant_id": 1613, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 580, + "restaurant_id": 1811, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 180, + "restaurant_id": 483, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 747, + "restaurant_id": 609, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 525, + "restaurant_id": 1781, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 90, + "restaurant_id": 2233, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 140, + "restaurant_id": 1932, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 789, + "restaurant_id": 2119, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 315, + "restaurant_id": 14, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 247, + "restaurant_id": 1224, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 705, + "restaurant_id": 723, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 257, + "restaurant_id": 1392, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 510, + "restaurant_id": 1526, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 422, + "restaurant_id": 287, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 412, + "restaurant_id": 662, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 349, + "restaurant_id": 1600, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 939, + "restaurant_id": 513, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 399, + "restaurant_id": 586, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 753, + "restaurant_id": 304, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 990, + "restaurant_id": 1726, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 743, + "restaurant_id": 1797, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 742, + "restaurant_id": 1213, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 304, + "restaurant_id": 1824, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 108, + "restaurant_id": 1608, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 393, + "restaurant_id": 2179, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 579, + "restaurant_id": 1016, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 794, + "restaurant_id": 169, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 771, + "restaurant_id": 581, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 957, + "restaurant_id": 1446, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 749, + "restaurant_id": 397, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 239, + "restaurant_id": 1607, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 545, + "restaurant_id": 907, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 819, + "restaurant_id": 826, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 113, + "restaurant_id": 49, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 299, + "restaurant_id": 1530, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 381, + "restaurant_id": 622, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 29, + "restaurant_id": 1570, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 902, + "restaurant_id": 39, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 784, + "restaurant_id": 2042, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 669, + "restaurant_id": 637, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 655, + "restaurant_id": 132, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 771, + "restaurant_id": 691, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 956, + "restaurant_id": 703, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 936, + "restaurant_id": 720, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 372, + "restaurant_id": 137, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 257, + "restaurant_id": 468, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 888, + "restaurant_id": 2063, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 11, + "restaurant_id": 618, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 276, + "restaurant_id": 973, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 187, + "restaurant_id": 187, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 599, + "restaurant_id": 630, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 646, + "restaurant_id": 2137, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 108, + "restaurant_id": 1390, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 407, + "restaurant_id": 1196, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 1, + "restaurant_id": 912, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 4, + "restaurant_id": 1509, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 511, + "restaurant_id": 1154, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 534, + "restaurant_id": 1341, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 499, + "restaurant_id": 1916, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 816, + "restaurant_id": 1518, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 402, + "restaurant_id": 2107, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 808, + "restaurant_id": 1165, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 492, + "restaurant_id": 160, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 804, + "restaurant_id": 706, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 995, + "restaurant_id": 32, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 488, + "restaurant_id": 1337, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 427, + "restaurant_id": 2204, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 643, + "restaurant_id": 1836, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 15, + "restaurant_id": 1852, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 994, + "restaurant_id": 655, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 947, + "restaurant_id": 641, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 940, + "restaurant_id": 1942, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 924, + "restaurant_id": 2181, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 810, + "restaurant_id": 2185, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 695, + "restaurant_id": 2154, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 647, + "restaurant_id": 1006, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 795, + "restaurant_id": 1575, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 839, + "restaurant_id": 1145, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 102, + "restaurant_id": 1051, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 883, + "restaurant_id": 208, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 297, + "restaurant_id": 719, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 290, + "restaurant_id": 1141, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 432, + "restaurant_id": 906, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 201, + "restaurant_id": 647, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 630, + "restaurant_id": 222, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 973, + "restaurant_id": 994, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 232, + "restaurant_id": 216, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 328, + "restaurant_id": 1183, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 918, + "restaurant_id": 410, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 767, + "restaurant_id": 757, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 754, + "restaurant_id": 905, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 986, + "restaurant_id": 611, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 77, + "restaurant_id": 675, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 757, + "restaurant_id": 2025, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 822, + "restaurant_id": 1868, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 472, + "restaurant_id": 1961, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 433, + "restaurant_id": 815, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 413, + "restaurant_id": 2174, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 17, + "restaurant_id": 784, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 558, + "restaurant_id": 1956, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 869, + "restaurant_id": 185, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 188, + "restaurant_id": 1982, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 231, + "restaurant_id": 570, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 127, + "restaurant_id": 1165, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 57, + "restaurant_id": 1144, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 739, + "restaurant_id": 980, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 666, + "restaurant_id": 1332, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 461, + "restaurant_id": 1619, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 264, + "restaurant_id": 1777, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 920, + "restaurant_id": 1711, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 320, + "restaurant_id": 1340, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 857, + "restaurant_id": 947, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 899, + "restaurant_id": 2250, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 514, + "restaurant_id": 762, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 408, + "restaurant_id": 1274, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 902, + "restaurant_id": 771, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 437, + "restaurant_id": 757, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 803, + "restaurant_id": 1412, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 118, + "restaurant_id": 1119, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 119, + "restaurant_id": 1691, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 64, + "restaurant_id": 687, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 432, + "restaurant_id": 466, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 268, + "restaurant_id": 1774, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 294, + "restaurant_id": 631, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 371, + "restaurant_id": 921, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 392, + "restaurant_id": 1945, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 989, + "restaurant_id": 721, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 999, + "restaurant_id": 1395, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 88, + "restaurant_id": 1417, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 312, + "restaurant_id": 1342, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 132, + "restaurant_id": 1500, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 232, + "restaurant_id": 2116, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 551, + "restaurant_id": 1025, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 344, + "restaurant_id": 1259, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 342, + "restaurant_id": 1655, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 246, + "restaurant_id": 770, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 536, + "restaurant_id": 2110, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 177, + "restaurant_id": 2218, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 885, + "restaurant_id": 88, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 598, + "restaurant_id": 1469, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 408, + "restaurant_id": 339, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 339, + "restaurant_id": 2053, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 817, + "restaurant_id": 802, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 859, + "restaurant_id": 393, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 558, + "restaurant_id": 835, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 71, + "restaurant_id": 47, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 313, + "restaurant_id": 441, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 1000, + "restaurant_id": 584, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 887, + "restaurant_id": 698, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 809, + "restaurant_id": 801, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 358, + "restaurant_id": 1719, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 766, + "restaurant_id": 1787, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 916, + "restaurant_id": 967, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 210, + "restaurant_id": 1339, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 392, + "restaurant_id": 1256, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 212, + "restaurant_id": 1895, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 739, + "restaurant_id": 1288, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 560, + "restaurant_id": 216, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 135, + "restaurant_id": 849, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 67, + "restaurant_id": 1630, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 793, + "restaurant_id": 761, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 637, + "restaurant_id": 1415, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 532, + "restaurant_id": 1224, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 776, + "restaurant_id": 104, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 631, + "restaurant_id": 2200, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 265, + "restaurant_id": 2090, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 958, + "restaurant_id": 1948, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 48, + "restaurant_id": 745, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 125, + "restaurant_id": 2001, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 126, + "restaurant_id": 1503, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 349, + "restaurant_id": 133, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 363, + "restaurant_id": 1973, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 89, + "restaurant_id": 617, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 801, + "restaurant_id": 1351, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 227, + "restaurant_id": 1137, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 777, + "restaurant_id": 593, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 325, + "restaurant_id": 1203, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 390, + "restaurant_id": 130, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 643, + "restaurant_id": 121, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 768, + "restaurant_id": 1962, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 328, + "restaurant_id": 476, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 898, + "restaurant_id": 2089, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 699, + "restaurant_id": 381, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 502, + "restaurant_id": 805, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 116, + "restaurant_id": 117, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 534, + "restaurant_id": 1779, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 394, + "restaurant_id": 271, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 108, + "restaurant_id": 1447, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 705, + "restaurant_id": 446, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 942, + "restaurant_id": 306, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 389, + "restaurant_id": 2094, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 880, + "restaurant_id": 309, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 583, + "restaurant_id": 660, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 450, + "restaurant_id": 532, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 806, + "restaurant_id": 582, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 113, + "restaurant_id": 463, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 384, + "restaurant_id": 1696, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 996, + "restaurant_id": 862, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 8, + "restaurant_id": 180, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 323, + "restaurant_id": 1517, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 526, + "restaurant_id": 653, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 499, + "restaurant_id": 287, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 873, + "restaurant_id": 1909, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 362, + "restaurant_id": 932, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 235, + "restaurant_id": 1779, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 666, + "restaurant_id": 248, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 40, + "restaurant_id": 1815, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 383, + "restaurant_id": 2112, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 608, + "restaurant_id": 699, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 434, + "restaurant_id": 1891, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 469, + "restaurant_id": 447, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 553, + "restaurant_id": 216, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 382, + "restaurant_id": 1050, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 54, + "restaurant_id": 1083, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 858, + "restaurant_id": 1379, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 840, + "restaurant_id": 1406, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 980, + "restaurant_id": 824, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 62, + "restaurant_id": 1887, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 993, + "restaurant_id": 183, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 357, + "restaurant_id": 1867, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 52, + "restaurant_id": 104, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 846, + "restaurant_id": 1434, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 54, + "restaurant_id": 2254, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 347, + "restaurant_id": 71, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 292, + "restaurant_id": 1862, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 294, + "restaurant_id": 1975, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 417, + "restaurant_id": 730, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 734, + "restaurant_id": 1685, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 535, + "restaurant_id": 786, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 262, + "restaurant_id": 1466, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 770, + "restaurant_id": 1198, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 310, + "restaurant_id": 2121, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 700, + "restaurant_id": 2092, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 219, + "restaurant_id": 1383, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 844, + "restaurant_id": 152, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 341, + "restaurant_id": 2065, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 952, + "restaurant_id": 100, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 591, + "restaurant_id": 1824, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 56, + "restaurant_id": 1207, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 180, + "restaurant_id": 1729, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 866, + "restaurant_id": 932, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 13, + "restaurant_id": 601, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 554, + "restaurant_id": 1609, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 563, + "restaurant_id": 1623, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 61, + "restaurant_id": 258, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 699, + "restaurant_id": 876, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 127, + "restaurant_id": 495, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 742, + "restaurant_id": 1658, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 665, + "restaurant_id": 30, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 712, + "restaurant_id": 1424, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 992, + "restaurant_id": 813, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 487, + "restaurant_id": 1569, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 950, + "restaurant_id": 875, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 273, + "restaurant_id": 260, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 117, + "restaurant_id": 299, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 223, + "restaurant_id": 1075, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 207, + "restaurant_id": 842, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 717, + "restaurant_id": 1215, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 854, + "restaurant_id": 131, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 395, + "restaurant_id": 692, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 502, + "restaurant_id": 678, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 880, + "restaurant_id": 1622, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 727, + "restaurant_id": 137, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 109, + "restaurant_id": 192, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 865, + "restaurant_id": 1023, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 299, + "restaurant_id": 233, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 626, + "restaurant_id": 2220, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 615, + "restaurant_id": 1052, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 650, + "restaurant_id": 2197, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 487, + "restaurant_id": 177, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 902, + "restaurant_id": 1569, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 679, + "restaurant_id": 1224, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 922, + "restaurant_id": 532, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 126, + "restaurant_id": 1194, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 831, + "restaurant_id": 949, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 473, + "restaurant_id": 686, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 981, + "restaurant_id": 251, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 554, + "restaurant_id": 616, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 696, + "restaurant_id": 452, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 905, + "restaurant_id": 859, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 457, + "restaurant_id": 1667, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 739, + "restaurant_id": 1357, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 67, + "restaurant_id": 489, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 370, + "restaurant_id": 174, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 314, + "restaurant_id": 2117, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 717, + "restaurant_id": 2197, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 438, + "restaurant_id": 2240, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 838, + "restaurant_id": 10, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 737, + "restaurant_id": 2213, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 92, + "restaurant_id": 1583, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 226, + "restaurant_id": 1739, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 923, + "restaurant_id": 2186, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 848, + "restaurant_id": 1215, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 549, + "restaurant_id": 1504, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 185, + "restaurant_id": 958, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 333, + "restaurant_id": 2100, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 613, + "restaurant_id": 1199, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 1, + "restaurant_id": 1528, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 130, + "restaurant_id": 327, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 584, + "restaurant_id": 1020, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 928, + "restaurant_id": 1330, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 308, + "restaurant_id": 376, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 629, + "restaurant_id": 612, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 325, + "restaurant_id": 1386, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 513, + "restaurant_id": 2169, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 214, + "restaurant_id": 690, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 51, + "restaurant_id": 1290, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 563, + "restaurant_id": 2087, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 940, + "restaurant_id": 90, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 299, + "restaurant_id": 1335, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 852, + "restaurant_id": 349, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 874, + "restaurant_id": 1130, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 152, + "restaurant_id": 981, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 960, + "restaurant_id": 1760, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 280, + "restaurant_id": 802, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 670, + "restaurant_id": 1585, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 761, + "restaurant_id": 1117, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 416, + "restaurant_id": 566, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 223, + "restaurant_id": 2126, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 862, + "restaurant_id": 934, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 301, + "restaurant_id": 299, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 326, + "restaurant_id": 1373, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 726, + "restaurant_id": 2177, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 269, + "restaurant_id": 846, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 388, + "restaurant_id": 970, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 720, + "restaurant_id": 597, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 247, + "restaurant_id": 838, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 129, + "restaurant_id": 919, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 496, + "restaurant_id": 1897, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 435, + "restaurant_id": 1764, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 546, + "restaurant_id": 1678, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 947, + "restaurant_id": 2046, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 106, + "restaurant_id": 1659, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 848, + "restaurant_id": 770, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 487, + "restaurant_id": 1434, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 349, + "restaurant_id": 1510, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 802, + "restaurant_id": 142, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 849, + "restaurant_id": 30, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 146, + "restaurant_id": 19, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 938, + "restaurant_id": 977, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 750, + "restaurant_id": 918, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 631, + "restaurant_id": 2095, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 921, + "restaurant_id": 1447, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 901, + "restaurant_id": 2051, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 207, + "restaurant_id": 1596, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 514, + "restaurant_id": 490, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 20, + "restaurant_id": 2192, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 38, + "restaurant_id": 1101, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 436, + "restaurant_id": 1198, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 209, + "restaurant_id": 783, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 695, + "restaurant_id": 387, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 704, + "restaurant_id": 1632, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 636, + "restaurant_id": 661, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 24, + "restaurant_id": 781, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 477, + "restaurant_id": 142, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 175, + "restaurant_id": 976, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 998, + "restaurant_id": 1617, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 577, + "restaurant_id": 538, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 959, + "restaurant_id": 2251, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 436, + "restaurant_id": 1291, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 53, + "restaurant_id": 2014, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 907, + "restaurant_id": 2053, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 806, + "restaurant_id": 367, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 632, + "restaurant_id": 1142, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 168, + "restaurant_id": 2226, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 44, + "restaurant_id": 699, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 867, + "restaurant_id": 1132, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 472, + "restaurant_id": 216, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 984, + "restaurant_id": 917, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 518, + "restaurant_id": 185, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 413, + "restaurant_id": 533, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 455, + "restaurant_id": 1529, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 910, + "restaurant_id": 781, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 219, + "restaurant_id": 986, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 228, + "restaurant_id": 222, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 745, + "restaurant_id": 623, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 42, + "restaurant_id": 151, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 472, + "restaurant_id": 1320, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 242, + "restaurant_id": 1367, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 353, + "restaurant_id": 770, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 388, + "restaurant_id": 2246, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 1000, + "restaurant_id": 352, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 812, + "restaurant_id": 1068, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 149, + "restaurant_id": 819, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 612, + "restaurant_id": 1515, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 982, + "restaurant_id": 1773, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 723, + "restaurant_id": 2184, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 567, + "restaurant_id": 1944, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 843, + "restaurant_id": 860, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 474, + "restaurant_id": 1589, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 298, + "restaurant_id": 692, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 21, + "restaurant_id": 961, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 506, + "restaurant_id": 583, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 301, + "restaurant_id": 989, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 2, + "restaurant_id": 1516, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 80, + "restaurant_id": 73, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 794, + "restaurant_id": 1953, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 683, + "restaurant_id": 1744, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 507, + "restaurant_id": 1379, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 335, + "restaurant_id": 1249, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 762, + "restaurant_id": 192, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 937, + "restaurant_id": 1379, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 687, + "restaurant_id": 1033, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 41, + "restaurant_id": 631, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 761, + "restaurant_id": 1591, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 826, + "restaurant_id": 686, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 317, + "restaurant_id": 637, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 641, + "restaurant_id": 1396, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 491, + "restaurant_id": 509, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 554, + "restaurant_id": 1454, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 994, + "restaurant_id": 1456, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 39, + "restaurant_id": 790, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 810, + "restaurant_id": 1787, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 48, + "restaurant_id": 1709, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 762, + "restaurant_id": 1332, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 464, + "restaurant_id": 1585, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 883, + "restaurant_id": 115, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 983, + "restaurant_id": 252, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 681, + "restaurant_id": 770, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 239, + "restaurant_id": 358, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 404, + "restaurant_id": 964, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 451, + "restaurant_id": 540, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 670, + "restaurant_id": 1719, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 212, + "restaurant_id": 537, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 654, + "restaurant_id": 1617, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 489, + "restaurant_id": 951, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 784, + "restaurant_id": 18, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 102, + "restaurant_id": 1752, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 947, + "restaurant_id": 1177, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 396, + "restaurant_id": 765, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 359, + "restaurant_id": 700, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 60, + "restaurant_id": 583, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 47, + "restaurant_id": 798, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 787, + "restaurant_id": 1651, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 153, + "restaurant_id": 1155, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 483, + "restaurant_id": 1212, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 539, + "restaurant_id": 1082, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 729, + "restaurant_id": 379, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 403, + "restaurant_id": 182, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 839, + "restaurant_id": 1047, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 744, + "restaurant_id": 57, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 651, + "restaurant_id": 1037, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 687, + "restaurant_id": 596, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 418, + "restaurant_id": 44, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 643, + "restaurant_id": 1741, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 187, + "restaurant_id": 1737, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 520, + "restaurant_id": 1753, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 19, + "restaurant_id": 369, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 953, + "restaurant_id": 2237, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 711, + "restaurant_id": 1422, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 946, + "restaurant_id": 172, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 955, + "restaurant_id": 502, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 42, + "restaurant_id": 134, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 434, + "restaurant_id": 620, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 750, + "restaurant_id": 717, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 831, + "restaurant_id": 1461, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 526, + "restaurant_id": 915, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 126, + "restaurant_id": 2087, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 814, + "restaurant_id": 1602, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 471, + "restaurant_id": 2038, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 495, + "restaurant_id": 1328, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 354, + "restaurant_id": 1054, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 693, + "restaurant_id": 1206, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 506, + "restaurant_id": 1704, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 53, + "restaurant_id": 481, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 744, + "restaurant_id": 2041, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 66, + "restaurant_id": 41, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 122, + "restaurant_id": 863, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 235, + "restaurant_id": 1067, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 96, + "restaurant_id": 255, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 937, + "restaurant_id": 1031, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 216, + "restaurant_id": 2029, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 747, + "restaurant_id": 1122, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 838, + "restaurant_id": 2252, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 255, + "restaurant_id": 562, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 494, + "restaurant_id": 2144, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 743, + "restaurant_id": 1493, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 567, + "restaurant_id": 218, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 374, + "restaurant_id": 1001, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 753, + "restaurant_id": 710, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 888, + "restaurant_id": 2114, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 226, + "restaurant_id": 1506, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 98, + "restaurant_id": 2066, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 672, + "restaurant_id": 125, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 225, + "restaurant_id": 1308, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 680, + "restaurant_id": 1301, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 478, + "restaurant_id": 1232, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 585, + "restaurant_id": 1875, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 127, + "restaurant_id": 1929, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 492, + "restaurant_id": 2119, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 224, + "restaurant_id": 301, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 352, + "restaurant_id": 1982, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 768, + "restaurant_id": 112, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 919, + "restaurant_id": 564, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 449, + "restaurant_id": 717, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 41, + "restaurant_id": 280, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 867, + "restaurant_id": 2124, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 394, + "restaurant_id": 1892, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 290, + "restaurant_id": 1766, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 69, + "restaurant_id": 2229, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 182, + "restaurant_id": 1754, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 166, + "restaurant_id": 1130, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 255, + "restaurant_id": 374, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 540, + "restaurant_id": 2063, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 581, + "restaurant_id": 432, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 833, + "restaurant_id": 2058, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 852, + "restaurant_id": 787, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 910, + "restaurant_id": 417, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 40, + "restaurant_id": 420, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 457, + "restaurant_id": 1719, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 310, + "restaurant_id": 1399, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 961, + "restaurant_id": 1777, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 555, + "restaurant_id": 547, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 939, + "restaurant_id": 1001, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 232, + "restaurant_id": 2058, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 636, + "restaurant_id": 933, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 974, + "restaurant_id": 1630, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 143, + "restaurant_id": 1969, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 537, + "restaurant_id": 1692, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 981, + "restaurant_id": 514, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 30, + "restaurant_id": 152, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 180, + "restaurant_id": 648, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 983, + "restaurant_id": 2083, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 598, + "restaurant_id": 811, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 431, + "restaurant_id": 587, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 593, + "restaurant_id": 94, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 193, + "restaurant_id": 1472, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 295, + "restaurant_id": 549, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 678, + "restaurant_id": 1951, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 11, + "restaurant_id": 1979, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 220, + "restaurant_id": 1169, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 691, + "restaurant_id": 888, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 547, + "restaurant_id": 1740, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 413, + "restaurant_id": 2177, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 546, + "restaurant_id": 1376, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 932, + "restaurant_id": 1172, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 623, + "restaurant_id": 1747, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 205, + "restaurant_id": 986, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 335, + "restaurant_id": 1388, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 746, + "restaurant_id": 669, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 846, + "restaurant_id": 1894, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 523, + "restaurant_id": 1985, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 593, + "restaurant_id": 1714, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 138, + "restaurant_id": 68, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 989, + "restaurant_id": 1282, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 770, + "restaurant_id": 2242, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 610, + "restaurant_id": 1656, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 214, + "restaurant_id": 740, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 291, + "restaurant_id": 1473, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 640, + "restaurant_id": 1158, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 197, + "restaurant_id": 1339, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 895, + "restaurant_id": 1678, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 725, + "restaurant_id": 14, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 155, + "restaurant_id": 1823, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 332, + "restaurant_id": 1478, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 698, + "restaurant_id": 1275, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 166, + "restaurant_id": 1339, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 266, + "restaurant_id": 1458, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 567, + "restaurant_id": 562, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 325, + "restaurant_id": 1762, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 226, + "restaurant_id": 1618, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 62, + "restaurant_id": 1162, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 14, + "restaurant_id": 1663, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 22, + "restaurant_id": 2141, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 48, + "restaurant_id": 1976, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 596, + "restaurant_id": 1877, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 415, + "restaurant_id": 1868, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 337, + "restaurant_id": 106, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 631, + "restaurant_id": 1641, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 184, + "restaurant_id": 1427, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 202, + "restaurant_id": 1050, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 82, + "restaurant_id": 1084, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 649, + "restaurant_id": 1165, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 115, + "restaurant_id": 756, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 221, + "restaurant_id": 91, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 364, + "restaurant_id": 1736, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 353, + "restaurant_id": 1915, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 291, + "restaurant_id": 2066, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 887, + "restaurant_id": 804, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 903, + "restaurant_id": 520, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 563, + "restaurant_id": 1405, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 273, + "restaurant_id": 1872, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 815, + "restaurant_id": 633, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 562, + "restaurant_id": 2215, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 575, + "restaurant_id": 2179, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 947, + "restaurant_id": 2198, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 791, + "restaurant_id": 328, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 941, + "restaurant_id": 862, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 676, + "restaurant_id": 166, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 231, + "restaurant_id": 1974, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 28, + "restaurant_id": 1519, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 902, + "restaurant_id": 204, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 49, + "restaurant_id": 1967, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 677, + "restaurant_id": 794, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 664, + "restaurant_id": 1271, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 236, + "restaurant_id": 1891, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 191, + "restaurant_id": 946, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 699, + "restaurant_id": 1756, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 992, + "restaurant_id": 176, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 782, + "restaurant_id": 744, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 953, + "restaurant_id": 1914, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 519, + "restaurant_id": 1610, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 730, + "restaurant_id": 1547, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 540, + "restaurant_id": 1410, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 843, + "restaurant_id": 2039, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 643, + "restaurant_id": 1245, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 688, + "restaurant_id": 1714, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 181, + "restaurant_id": 153, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 566, + "restaurant_id": 2181, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 405, + "restaurant_id": 1292, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 228, + "restaurant_id": 727, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 101, + "restaurant_id": 1174, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 202, + "restaurant_id": 1524, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 836, + "restaurant_id": 1668, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 571, + "restaurant_id": 2246, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 890, + "restaurant_id": 486, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 938, + "restaurant_id": 658, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 140, + "restaurant_id": 1175, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 546, + "restaurant_id": 1601, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 856, + "restaurant_id": 1847, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 559, + "restaurant_id": 2232, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 692, + "restaurant_id": 1265, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 990, + "restaurant_id": 1637, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 572, + "restaurant_id": 1442, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 689, + "restaurant_id": 1113, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 412, + "restaurant_id": 754, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 988, + "restaurant_id": 1280, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 584, + "restaurant_id": 2041, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 207, + "restaurant_id": 1662, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 877, + "restaurant_id": 1396, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 901, + "restaurant_id": 950, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 981, + "restaurant_id": 2182, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 747, + "restaurant_id": 870, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 912, + "restaurant_id": 744, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 691, + "restaurant_id": 2062, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 910, + "restaurant_id": 1725, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 411, + "restaurant_id": 269, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 573, + "restaurant_id": 1376, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 978, + "restaurant_id": 1333, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 70, + "restaurant_id": 9, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 19, + "restaurant_id": 1768, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 535, + "restaurant_id": 588, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 626, + "restaurant_id": 1823, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 687, + "restaurant_id": 280, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 816, + "restaurant_id": 1488, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 995, + "restaurant_id": 38, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 995, + "restaurant_id": 1689, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 389, + "restaurant_id": 2131, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 440, + "restaurant_id": 1159, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 547, + "restaurant_id": 1866, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 141, + "restaurant_id": 383, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 206, + "restaurant_id": 723, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 917, + "restaurant_id": 1880, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 799, + "restaurant_id": 1642, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 530, + "restaurant_id": 298, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 836, + "restaurant_id": 1648, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 271, + "restaurant_id": 2071, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 678, + "restaurant_id": 403, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 430, + "restaurant_id": 796, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 82, + "restaurant_id": 1327, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 152, + "restaurant_id": 2180, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 743, + "restaurant_id": 586, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 845, + "restaurant_id": 1472, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 948, + "restaurant_id": 665, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 322, + "restaurant_id": 86, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 350, + "restaurant_id": 181, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 362, + "restaurant_id": 644, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 923, + "restaurant_id": 1783, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 558, + "restaurant_id": 1124, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 45, + "restaurant_id": 1258, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 818, + "restaurant_id": 224, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 224, + "restaurant_id": 11, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 554, + "restaurant_id": 1763, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 830, + "restaurant_id": 600, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 837, + "restaurant_id": 1646, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 396, + "restaurant_id": 1463, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 558, + "restaurant_id": 632, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 15, + "restaurant_id": 1158, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 12, + "restaurant_id": 649, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 614, + "restaurant_id": 228, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 624, + "restaurant_id": 1280, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 954, + "restaurant_id": 48, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 882, + "restaurant_id": 1230, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 890, + "restaurant_id": 405, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 511, + "restaurant_id": 1899, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 383, + "restaurant_id": 2254, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 679, + "restaurant_id": 400, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 13, + "restaurant_id": 270, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 614, + "restaurant_id": 380, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 511, + "restaurant_id": 1552, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 420, + "restaurant_id": 1272, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 700, + "restaurant_id": 1243, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 794, + "restaurant_id": 42, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 354, + "restaurant_id": 57, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 242, + "restaurant_id": 1262, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 678, + "restaurant_id": 1273, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 608, + "restaurant_id": 1796, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 383, + "restaurant_id": 2002, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 239, + "restaurant_id": 726, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 66, + "restaurant_id": 1926, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 693, + "restaurant_id": 1527, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 15, + "restaurant_id": 2202, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 613, + "restaurant_id": 1026, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 250, + "restaurant_id": 838, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 160, + "restaurant_id": 253, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 139, + "restaurant_id": 142, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 91, + "restaurant_id": 1624, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 971, + "restaurant_id": 2039, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 142, + "restaurant_id": 1123, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 204, + "restaurant_id": 175, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 339, + "restaurant_id": 1922, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 100, + "restaurant_id": 75, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 635, + "restaurant_id": 2167, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 809, + "restaurant_id": 2204, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 837, + "restaurant_id": 781, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 60, + "restaurant_id": 1859, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 177, + "restaurant_id": 1465, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 725, + "restaurant_id": 1271, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 869, + "restaurant_id": 1737, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 150, + "restaurant_id": 2203, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 546, + "restaurant_id": 2189, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 688, + "restaurant_id": 941, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 776, + "restaurant_id": 176, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 470, + "restaurant_id": 823, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 262, + "restaurant_id": 1730, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 635, + "restaurant_id": 747, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 583, + "restaurant_id": 1816, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 50, + "restaurant_id": 1918, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 84, + "restaurant_id": 1183, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 84, + "restaurant_id": 750, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 849, + "restaurant_id": 1959, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 66, + "restaurant_id": 1821, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 208, + "restaurant_id": 1173, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 690, + "restaurant_id": 2197, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 376, + "restaurant_id": 636, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 445, + "restaurant_id": 2205, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 611, + "restaurant_id": 1835, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 438, + "restaurant_id": 1501, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 548, + "restaurant_id": 1732, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 124, + "restaurant_id": 1912, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 736, + "restaurant_id": 746, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 34, + "restaurant_id": 920, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 266, + "restaurant_id": 679, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 137, + "restaurant_id": 1801, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 278, + "restaurant_id": 943, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 538, + "restaurant_id": 1651, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 903, + "restaurant_id": 1791, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 303, + "restaurant_id": 255, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 861, + "restaurant_id": 621, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 921, + "restaurant_id": 880, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 729, + "restaurant_id": 2113, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 136, + "restaurant_id": 1546, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 430, + "restaurant_id": 1111, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 135, + "restaurant_id": 1704, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 372, + "restaurant_id": 1717, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 1000, + "restaurant_id": 277, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 70, + "restaurant_id": 1123, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 240, + "restaurant_id": 1626, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 97, + "restaurant_id": 754, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 688, + "restaurant_id": 1653, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 127, + "restaurant_id": 1556, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 959, + "restaurant_id": 1016, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 228, + "restaurant_id": 903, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 652, + "restaurant_id": 657, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 369, + "restaurant_id": 21, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 866, + "restaurant_id": 112, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 550, + "restaurant_id": 1666, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 119, + "restaurant_id": 1111, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 54, + "restaurant_id": 273, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 647, + "restaurant_id": 297, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 156, + "restaurant_id": 86, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 386, + "restaurant_id": 68, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 387, + "restaurant_id": 716, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 875, + "restaurant_id": 593, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 601, + "restaurant_id": 1505, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 626, + "restaurant_id": 1543, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 419, + "restaurant_id": 494, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 629, + "restaurant_id": 2197, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 858, + "restaurant_id": 497, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 686, + "restaurant_id": 1998, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 732, + "restaurant_id": 652, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 203, + "restaurant_id": 2078, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 669, + "restaurant_id": 2016, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 451, + "restaurant_id": 1753, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 539, + "restaurant_id": 1773, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 671, + "restaurant_id": 2121, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 630, + "restaurant_id": 245, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 957, + "restaurant_id": 39, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 817, + "restaurant_id": 22, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 878, + "restaurant_id": 1524, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 379, + "restaurant_id": 416, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 182, + "restaurant_id": 317, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 361, + "restaurant_id": 1263, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 887, + "restaurant_id": 517, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 983, + "restaurant_id": 1554, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 491, + "restaurant_id": 607, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 723, + "restaurant_id": 586, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 189, + "restaurant_id": 2042, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 25, + "restaurant_id": 1537, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 390, + "restaurant_id": 783, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 694, + "restaurant_id": 1924, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 336, + "restaurant_id": 18, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 384, + "restaurant_id": 888, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 814, + "restaurant_id": 331, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 64, + "restaurant_id": 1356, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 536, + "restaurant_id": 148, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 956, + "restaurant_id": 1481, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 623, + "restaurant_id": 1396, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 928, + "restaurant_id": 1649, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 916, + "restaurant_id": 2017, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 895, + "restaurant_id": 1139, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 87, + "restaurant_id": 892, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 434, + "restaurant_id": 1876, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 421, + "restaurant_id": 1514, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 107, + "restaurant_id": 1310, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 676, + "restaurant_id": 505, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 793, + "restaurant_id": 482, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 149, + "restaurant_id": 1630, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 653, + "restaurant_id": 1511, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 939, + "restaurant_id": 1459, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 196, + "restaurant_id": 826, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 499, + "restaurant_id": 724, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 182, + "restaurant_id": 230, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 184, + "restaurant_id": 1284, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 932, + "restaurant_id": 2182, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 892, + "restaurant_id": 156, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 402, + "restaurant_id": 90, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 558, + "restaurant_id": 2237, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 262, + "restaurant_id": 2250, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 507, + "restaurant_id": 339, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 244, + "restaurant_id": 2035, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 577, + "restaurant_id": 1981, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 863, + "restaurant_id": 980, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 287, + "restaurant_id": 1069, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 359, + "restaurant_id": 829, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 790, + "restaurant_id": 536, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 4, + "restaurant_id": 1682, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 195, + "restaurant_id": 2190, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 242, + "restaurant_id": 642, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 483, + "restaurant_id": 1340, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 410, + "restaurant_id": 1613, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 530, + "restaurant_id": 1118, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 754, + "restaurant_id": 362, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 706, + "restaurant_id": 1984, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 8, + "restaurant_id": 2184, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 960, + "restaurant_id": 821, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 582, + "restaurant_id": 295, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 551, + "restaurant_id": 1023, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 828, + "restaurant_id": 1960, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 715, + "restaurant_id": 85, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 659, + "restaurant_id": 931, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 102, + "restaurant_id": 1738, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 750, + "restaurant_id": 1880, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 708, + "restaurant_id": 1509, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 941, + "restaurant_id": 611, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 880, + "restaurant_id": 1291, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 725, + "restaurant_id": 376, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 30, + "restaurant_id": 1166, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 411, + "restaurant_id": 377, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 582, + "restaurant_id": 408, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 24, + "restaurant_id": 340, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 61, + "restaurant_id": 1098, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 854, + "restaurant_id": 906, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 674, + "restaurant_id": 1804, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 445, + "restaurant_id": 117, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 77, + "restaurant_id": 1474, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 363, + "restaurant_id": 805, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 941, + "restaurant_id": 900, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 157, + "restaurant_id": 1768, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 627, + "restaurant_id": 2029, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 75, + "restaurant_id": 478, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 902, + "restaurant_id": 1142, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 183, + "restaurant_id": 763, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 366, + "restaurant_id": 1620, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 940, + "restaurant_id": 705, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 819, + "restaurant_id": 964, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 34, + "restaurant_id": 1068, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 480, + "restaurant_id": 693, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 841, + "restaurant_id": 696, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 570, + "restaurant_id": 1408, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 748, + "restaurant_id": 1041, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 992, + "restaurant_id": 1292, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 216, + "restaurant_id": 914, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 60, + "restaurant_id": 1057, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 898, + "restaurant_id": 1592, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 899, + "restaurant_id": 580, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 129, + "restaurant_id": 1012, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 16, + "restaurant_id": 1563, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 598, + "restaurant_id": 963, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 428, + "restaurant_id": 1191, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 945, + "restaurant_id": 1313, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 498, + "restaurant_id": 2139, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 893, + "restaurant_id": 779, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 752, + "restaurant_id": 1200, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 601, + "restaurant_id": 388, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 358, + "restaurant_id": 1625, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 792, + "restaurant_id": 2062, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 631, + "restaurant_id": 1185, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 334, + "restaurant_id": 2042, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 824, + "restaurant_id": 1000, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 149, + "restaurant_id": 827, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 146, + "restaurant_id": 792, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 755, + "restaurant_id": 58, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 663, + "restaurant_id": 2068, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 28, + "restaurant_id": 2057, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 339, + "restaurant_id": 2018, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 395, + "restaurant_id": 118, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 242, + "restaurant_id": 1105, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 451, + "restaurant_id": 120, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 81, + "restaurant_id": 2210, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 218, + "restaurant_id": 1232, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 500, + "restaurant_id": 1332, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 474, + "restaurant_id": 561, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 615, + "restaurant_id": 381, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 926, + "restaurant_id": 371, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 912, + "restaurant_id": 1104, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 971, + "restaurant_id": 819, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 921, + "restaurant_id": 698, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 852, + "restaurant_id": 976, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 869, + "restaurant_id": 684, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 706, + "restaurant_id": 1636, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 887, + "restaurant_id": 621, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 123, + "restaurant_id": 769, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 41, + "restaurant_id": 1507, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 489, + "restaurant_id": 42, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 61, + "restaurant_id": 1211, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 52, + "restaurant_id": 1806, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 317, + "restaurant_id": 1305, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 292, + "restaurant_id": 1659, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 801, + "restaurant_id": 1463, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 898, + "restaurant_id": 1978, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 522, + "restaurant_id": 1631, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 457, + "restaurant_id": 562, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 994, + "restaurant_id": 332, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 136, + "restaurant_id": 108, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 901, + "restaurant_id": 1241, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 674, + "restaurant_id": 784, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 436, + "restaurant_id": 1330, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 353, + "restaurant_id": 1924, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 947, + "restaurant_id": 1188, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 804, + "restaurant_id": 262, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 995, + "restaurant_id": 1370, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 7, + "restaurant_id": 2163, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 162, + "restaurant_id": 759, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 632, + "restaurant_id": 336, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 547, + "restaurant_id": 1290, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 433, + "restaurant_id": 388, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 967, + "restaurant_id": 734, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 557, + "restaurant_id": 1085, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 267, + "restaurant_id": 1157, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 300, + "restaurant_id": 913, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 874, + "restaurant_id": 2156, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 141, + "restaurant_id": 843, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 888, + "restaurant_id": 2206, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 22, + "restaurant_id": 2013, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 738, + "restaurant_id": 1394, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 834, + "restaurant_id": 993, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 931, + "restaurant_id": 815, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 692, + "restaurant_id": 168, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 763, + "restaurant_id": 1375, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 878, + "restaurant_id": 2020, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 181, + "restaurant_id": 1474, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 702, + "restaurant_id": 2204, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 437, + "restaurant_id": 91, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 218, + "restaurant_id": 146, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 314, + "restaurant_id": 482, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 191, + "restaurant_id": 1703, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 212, + "restaurant_id": 2115, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 404, + "restaurant_id": 575, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 568, + "restaurant_id": 1413, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 154, + "restaurant_id": 1564, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 667, + "restaurant_id": 2131, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 593, + "restaurant_id": 1509, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 572, + "restaurant_id": 1021, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 871, + "restaurant_id": 2145, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 746, + "restaurant_id": 1651, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 569, + "restaurant_id": 2230, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 659, + "restaurant_id": 592, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 450, + "restaurant_id": 689, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 109, + "restaurant_id": 621, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 755, + "restaurant_id": 960, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 542, + "restaurant_id": 1308, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 406, + "restaurant_id": 1863, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 718, + "restaurant_id": 748, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 486, + "restaurant_id": 181, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 28, + "restaurant_id": 1383, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 561, + "restaurant_id": 1205, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 73, + "restaurant_id": 1026, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 862, + "restaurant_id": 1212, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 863, + "restaurant_id": 46, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 703, + "restaurant_id": 1521, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 387, + "restaurant_id": 2219, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 946, + "restaurant_id": 1438, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 391, + "restaurant_id": 33, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 769, + "restaurant_id": 2169, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 963, + "restaurant_id": 88, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 853, + "restaurant_id": 739, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 847, + "restaurant_id": 4, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 281, + "restaurant_id": 840, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 330, + "restaurant_id": 2246, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 627, + "restaurant_id": 2167, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 571, + "restaurant_id": 1316, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 612, + "restaurant_id": 1313, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 827, + "restaurant_id": 1207, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 114, + "restaurant_id": 1773, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 988, + "restaurant_id": 1590, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 440, + "restaurant_id": 433, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 87, + "restaurant_id": 2181, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 535, + "restaurant_id": 1822, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 962, + "restaurant_id": 1440, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 912, + "restaurant_id": 378, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 652, + "restaurant_id": 2036, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 703, + "restaurant_id": 391, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 661, + "restaurant_id": 378, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 947, + "restaurant_id": 458, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 410, + "restaurant_id": 1366, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 823, + "restaurant_id": 732, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 93, + "restaurant_id": 1798, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 334, + "restaurant_id": 787, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 401, + "restaurant_id": 1433, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 120, + "restaurant_id": 1011, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 524, + "restaurant_id": 1773, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 110, + "restaurant_id": 1177, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 738, + "restaurant_id": 979, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 415, + "restaurant_id": 482, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 985, + "restaurant_id": 1678, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 961, + "restaurant_id": 770, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 370, + "restaurant_id": 1595, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 850, + "restaurant_id": 48, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 30, + "restaurant_id": 502, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 316, + "restaurant_id": 649, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 274, + "restaurant_id": 1191, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 346, + "restaurant_id": 1612, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 549, + "restaurant_id": 693, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 98, + "restaurant_id": 168, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 854, + "restaurant_id": 829, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 524, + "restaurant_id": 1450, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 662, + "restaurant_id": 541, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 434, + "restaurant_id": 759, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 941, + "restaurant_id": 1995, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 921, + "restaurant_id": 1322, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 165, + "restaurant_id": 971, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 936, + "restaurant_id": 262, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 736, + "restaurant_id": 1385, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 471, + "restaurant_id": 79, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 913, + "restaurant_id": 873, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 231, + "restaurant_id": 801, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 200, + "restaurant_id": 316, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 121, + "restaurant_id": 2109, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 863, + "restaurant_id": 1476, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 902, + "restaurant_id": 1610, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 680, + "restaurant_id": 342, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 787, + "restaurant_id": 316, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 632, + "restaurant_id": 867, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 414, + "restaurant_id": 1778, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 1, + "restaurant_id": 941, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 740, + "restaurant_id": 1057, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 376, + "restaurant_id": 2160, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 615, + "restaurant_id": 1369, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 494, + "restaurant_id": 1052, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 298, + "restaurant_id": 1350, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 483, + "restaurant_id": 1780, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 523, + "restaurant_id": 2253, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 165, + "restaurant_id": 1564, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 431, + "restaurant_id": 2023, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 980, + "restaurant_id": 127, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 155, + "restaurant_id": 2127, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 551, + "restaurant_id": 368, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 804, + "restaurant_id": 64, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 266, + "restaurant_id": 2100, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 70, + "restaurant_id": 1117, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 912, + "restaurant_id": 1473, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 297, + "restaurant_id": 889, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 630, + "restaurant_id": 1939, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 112, + "restaurant_id": 1999, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 534, + "restaurant_id": 1115, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 673, + "restaurant_id": 1552, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 818, + "restaurant_id": 970, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 924, + "restaurant_id": 2215, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 816, + "restaurant_id": 418, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 459, + "restaurant_id": 219, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 373, + "restaurant_id": 432, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 938, + "restaurant_id": 5, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 173, + "restaurant_id": 1443, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 313, + "restaurant_id": 2040, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 123, + "restaurant_id": 1199, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 612, + "restaurant_id": 2070, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 968, + "restaurant_id": 300, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 838, + "restaurant_id": 2018, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 318, + "restaurant_id": 1613, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 491, + "restaurant_id": 1497, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 130, + "restaurant_id": 1990, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 144, + "restaurant_id": 2081, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 49, + "restaurant_id": 1320, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 748, + "restaurant_id": 629, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 161, + "restaurant_id": 2033, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 837, + "restaurant_id": 2017, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 49, + "restaurant_id": 1006, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 215, + "restaurant_id": 614, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 740, + "restaurant_id": 1509, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 592, + "restaurant_id": 122, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 832, + "restaurant_id": 1992, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 617, + "restaurant_id": 1375, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 872, + "restaurant_id": 1494, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 83, + "restaurant_id": 2008, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 83, + "restaurant_id": 1313, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 277, + "restaurant_id": 1183, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 413, + "restaurant_id": 1942, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 544, + "restaurant_id": 941, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 376, + "restaurant_id": 2253, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 497, + "restaurant_id": 690, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 924, + "restaurant_id": 1432, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 247, + "restaurant_id": 1986, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 903, + "restaurant_id": 2081, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 589, + "restaurant_id": 1292, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 575, + "restaurant_id": 1367, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 750, + "restaurant_id": 1543, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 106, + "restaurant_id": 1986, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 681, + "restaurant_id": 1619, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 833, + "restaurant_id": 2135, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 853, + "restaurant_id": 355, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 754, + "restaurant_id": 195, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 975, + "restaurant_id": 26, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 648, + "restaurant_id": 919, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 420, + "restaurant_id": 1599, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 448, + "restaurant_id": 1445, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 831, + "restaurant_id": 940, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 921, + "restaurant_id": 2206, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 123, + "restaurant_id": 1254, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 334, + "restaurant_id": 488, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 303, + "restaurant_id": 1373, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 27, + "restaurant_id": 1860, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 298, + "restaurant_id": 907, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 802, + "restaurant_id": 1392, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 795, + "restaurant_id": 1651, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 550, + "restaurant_id": 684, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 292, + "restaurant_id": 2064, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 284, + "restaurant_id": 849, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 586, + "restaurant_id": 494, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 4, + "restaurant_id": 815, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 590, + "restaurant_id": 584, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 705, + "restaurant_id": 1738, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 839, + "restaurant_id": 675, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 712, + "restaurant_id": 179, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 692, + "restaurant_id": 1024, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 562, + "restaurant_id": 331, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 705, + "restaurant_id": 2051, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 230, + "restaurant_id": 1742, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 624, + "restaurant_id": 1306, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 867, + "restaurant_id": 1660, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 381, + "restaurant_id": 136, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 827, + "restaurant_id": 1954, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 524, + "restaurant_id": 864, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 474, + "restaurant_id": 2083, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 676, + "restaurant_id": 1908, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 181, + "restaurant_id": 1360, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 312, + "restaurant_id": 1313, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 283, + "restaurant_id": 797, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 265, + "restaurant_id": 53, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 793, + "restaurant_id": 1009, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 756, + "restaurant_id": 2155, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 628, + "restaurant_id": 101, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 981, + "restaurant_id": 948, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 112, + "restaurant_id": 1088, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 708, + "restaurant_id": 551, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 978, + "restaurant_id": 1834, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 224, + "restaurant_id": 2007, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 134, + "restaurant_id": 1568, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 453, + "restaurant_id": 965, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 41, + "restaurant_id": 1319, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 541, + "restaurant_id": 190, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 165, + "restaurant_id": 1917, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 574, + "restaurant_id": 1789, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 422, + "restaurant_id": 300, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 394, + "restaurant_id": 1680, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 818, + "restaurant_id": 177, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 487, + "restaurant_id": 1654, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 823, + "restaurant_id": 1822, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 574, + "restaurant_id": 2211, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 20, + "restaurant_id": 82, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 744, + "restaurant_id": 217, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 598, + "restaurant_id": 77, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 800, + "restaurant_id": 922, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 382, + "restaurant_id": 1311, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 753, + "restaurant_id": 878, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 405, + "restaurant_id": 1091, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 359, + "restaurant_id": 235, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 818, + "restaurant_id": 1140, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 63, + "restaurant_id": 1547, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 33, + "restaurant_id": 1747, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 480, + "restaurant_id": 1667, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 157, + "restaurant_id": 199, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 413, + "restaurant_id": 92, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 527, + "restaurant_id": 2064, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 788, + "restaurant_id": 2015, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 429, + "restaurant_id": 1788, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 184, + "restaurant_id": 1566, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 216, + "restaurant_id": 1590, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 589, + "restaurant_id": 479, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 956, + "restaurant_id": 636, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 948, + "restaurant_id": 1451, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 893, + "restaurant_id": 177, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 852, + "restaurant_id": 1063, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 641, + "restaurant_id": 158, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 446, + "restaurant_id": 433, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 937, + "restaurant_id": 382, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 862, + "restaurant_id": 1254, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 289, + "restaurant_id": 589, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 216, + "restaurant_id": 84, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 919, + "restaurant_id": 1621, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 41, + "restaurant_id": 2032, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 167, + "restaurant_id": 2220, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 547, + "restaurant_id": 2012, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 622, + "restaurant_id": 1954, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 69, + "restaurant_id": 1658, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 86, + "restaurant_id": 963, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 268, + "restaurant_id": 280, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 842, + "restaurant_id": 1573, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 340, + "restaurant_id": 100, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 415, + "restaurant_id": 2182, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 79, + "restaurant_id": 775, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 920, + "restaurant_id": 1502, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 558, + "restaurant_id": 407, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 373, + "restaurant_id": 1185, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 314, + "restaurant_id": 1320, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 107, + "restaurant_id": 743, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 888, + "restaurant_id": 1054, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 856, + "restaurant_id": 2140, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 373, + "restaurant_id": 485, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 63, + "restaurant_id": 1106, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 887, + "restaurant_id": 1439, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 878, + "restaurant_id": 1509, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 89, + "restaurant_id": 675, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 645, + "restaurant_id": 2186, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 107, + "restaurant_id": 454, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 886, + "restaurant_id": 1062, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 760, + "restaurant_id": 1222, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 986, + "restaurant_id": 648, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 190, + "restaurant_id": 1516, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 717, + "restaurant_id": 759, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 696, + "restaurant_id": 163, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 386, + "restaurant_id": 2109, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 395, + "restaurant_id": 889, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 524, + "restaurant_id": 643, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 299, + "restaurant_id": 1922, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 995, + "restaurant_id": 557, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 999, + "restaurant_id": 412, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 441, + "restaurant_id": 481, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 835, + "restaurant_id": 479, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 220, + "restaurant_id": 1461, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 374, + "restaurant_id": 464, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 958, + "restaurant_id": 2146, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 524, + "restaurant_id": 366, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 347, + "restaurant_id": 1785, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 642, + "restaurant_id": 662, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 345, + "restaurant_id": 1816, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 584, + "restaurant_id": 1789, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 188, + "restaurant_id": 1109, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 48, + "restaurant_id": 362, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 795, + "restaurant_id": 1952, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 572, + "restaurant_id": 1780, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 714, + "restaurant_id": 430, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 48, + "restaurant_id": 2246, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 489, + "restaurant_id": 2201, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 751, + "restaurant_id": 1257, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 868, + "restaurant_id": 575, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 307, + "restaurant_id": 1903, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 629, + "restaurant_id": 23, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 613, + "restaurant_id": 1197, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 137, + "restaurant_id": 464, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 456, + "restaurant_id": 2243, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 917, + "restaurant_id": 1459, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 636, + "restaurant_id": 645, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 979, + "restaurant_id": 2187, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 726, + "restaurant_id": 1323, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-26T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 465, + "restaurant_id": 780, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 483, + "restaurant_id": 1596, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 852, + "restaurant_id": 349, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 796, + "restaurant_id": 2017, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 662, + "restaurant_id": 912, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 460, + "restaurant_id": 73, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 337, + "restaurant_id": 871, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 391, + "restaurant_id": 1437, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 579, + "restaurant_id": 357, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 660, + "restaurant_id": 956, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 99, + "restaurant_id": 1627, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 43, + "restaurant_id": 401, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 636, + "restaurant_id": 965, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 752, + "restaurant_id": 1584, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 318, + "restaurant_id": 1203, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 969, + "restaurant_id": 1184, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 230, + "restaurant_id": 1901, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 251, + "restaurant_id": 1789, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 324, + "restaurant_id": 394, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 525, + "restaurant_id": 1952, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 757, + "restaurant_id": 107, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 998, + "restaurant_id": 1420, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 761, + "restaurant_id": 774, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 289, + "restaurant_id": 889, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 517, + "restaurant_id": 495, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 540, + "restaurant_id": 549, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 765, + "restaurant_id": 1199, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 747, + "restaurant_id": 822, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 535, + "restaurant_id": 616, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 112, + "restaurant_id": 177, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 60, + "restaurant_id": 1225, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 433, + "restaurant_id": 214, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 760, + "restaurant_id": 381, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 251, + "restaurant_id": 1020, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 241, + "restaurant_id": 1951, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 648, + "restaurant_id": 263, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 305, + "restaurant_id": 212, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 280, + "restaurant_id": 1561, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 474, + "restaurant_id": 817, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 244, + "restaurant_id": 629, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 664, + "restaurant_id": 2212, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 530, + "restaurant_id": 572, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 483, + "restaurant_id": 565, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 333, + "restaurant_id": 1468, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 777, + "restaurant_id": 1574, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 34, + "restaurant_id": 744, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 540, + "restaurant_id": 1213, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-11T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 694, + "restaurant_id": 1728, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 690, + "restaurant_id": 532, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 192, + "restaurant_id": 916, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 5, + "restaurant_id": 2014, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 849, + "restaurant_id": 1052, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 854, + "restaurant_id": 1368, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-18T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 235, + "restaurant_id": 1182, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 44, + "restaurant_id": 686, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 443, + "restaurant_id": 1052, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 131, + "restaurant_id": 863, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 633, + "restaurant_id": 1756, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 566, + "restaurant_id": 860, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 448, + "restaurant_id": 1652, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 170, + "restaurant_id": 434, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 430, + "restaurant_id": 493, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-09T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 734, + "restaurant_id": 1848, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 566, + "restaurant_id": 452, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-18T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 717, + "restaurant_id": 771, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 527, + "restaurant_id": 867, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 668, + "restaurant_id": 1478, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 364, + "restaurant_id": 1389, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-29T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 761, + "restaurant_id": 2128, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 807, + "restaurant_id": 38, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 692, + "restaurant_id": 1438, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 765, + "restaurant_id": 512, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-08T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 543, + "restaurant_id": 434, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 493, + "restaurant_id": 326, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 72, + "restaurant_id": 1666, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 562, + "restaurant_id": 1271, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 561, + "restaurant_id": 2072, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-09T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 95, + "restaurant_id": 948, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 95, + "restaurant_id": 1707, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 686, + "restaurant_id": 2146, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 565, + "restaurant_id": 2101, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 625, + "restaurant_id": 731, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 277, + "restaurant_id": 201, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 133, + "restaurant_id": 1967, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-02T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 412, + "restaurant_id": 171, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 147, + "restaurant_id": 2010, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 886, + "restaurant_id": 909, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 977, + "restaurant_id": 108, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 554, + "restaurant_id": 259, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 190, + "restaurant_id": 1344, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 671, + "restaurant_id": 1630, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 50, + "restaurant_id": 1212, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 260, + "restaurant_id": 2248, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 461, + "restaurant_id": 1471, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 437, + "restaurant_id": 1806, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-25T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 763, + "restaurant_id": 2021, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 582, + "restaurant_id": 1232, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-10T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 370, + "restaurant_id": 1248, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-28T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 648, + "restaurant_id": 272, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 930, + "restaurant_id": 782, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 200, + "restaurant_id": 2025, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 35, + "restaurant_id": 481, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 223, + "restaurant_id": 2075, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 492, + "restaurant_id": 2093, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 251, + "restaurant_id": 741, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 333, + "restaurant_id": 818, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 608, + "restaurant_id": 2114, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 341, + "restaurant_id": 2251, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 183, + "restaurant_id": 1289, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 569, + "restaurant_id": 2002, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 795, + "restaurant_id": 719, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 543, + "restaurant_id": 1823, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 172, + "restaurant_id": 359, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 773, + "restaurant_id": 269, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 219, + "restaurant_id": 1428, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 472, + "restaurant_id": 1853, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 273, + "restaurant_id": 1902, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-20T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 110, + "restaurant_id": 333, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 951, + "restaurant_id": 7, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 959, + "restaurant_id": 1713, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-04T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 846, + "restaurant_id": 2154, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 502, + "restaurant_id": 2123, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-03-30T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 638, + "restaurant_id": 312, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 196, + "restaurant_id": 1677, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 637, + "restaurant_id": 167, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 361, + "restaurant_id": 1764, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 346, + "restaurant_id": 1065, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-03T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 240, + "restaurant_id": 495, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 609, + "restaurant_id": 94, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-10T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 779, + "restaurant_id": 71, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-21T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 205, + "restaurant_id": 485, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-22T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 375, + "restaurant_id": 1471, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-26T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 263, + "restaurant_id": 1313, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 928, + "restaurant_id": 611, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-07T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 923, + "restaurant_id": 1779, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 62, + "restaurant_id": 1291, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-16T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 754, + "restaurant_id": 225, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 363, + "restaurant_id": 1194, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 368, + "restaurant_id": 155, + "status": "COMPLETED", + "reservation_time_id": 1, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 372, + "restaurant_id": 711, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 854, + "restaurant_id": 876, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 670, + "restaurant_id": 165, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 95, + "restaurant_id": 532, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-03-19T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 659, + "restaurant_id": 1508, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 762, + "restaurant_id": 1719, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 635, + "restaurant_id": 1648, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-24T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 1, + "restaurant_id": 2155, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-17T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 153, + "restaurant_id": 2157, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-04-01T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 406, + "restaurant_id": 189, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-03-21T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 121, + "restaurant_id": 1587, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-03-31T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 6, + "restaurant_id": 1074, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-02-25T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 387, + "restaurant_id": 1837, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-03-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 700, + "restaurant_id": 582, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-02-23T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 95, + "restaurant_id": 2221, + "status": "COMPLETED", + "reservation_time_id": 7, + "reservation_date": "2025-03-23T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 257, + "restaurant_id": 1637, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 763, + "restaurant_id": 123, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-02T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 580, + "restaurant_id": 1604, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-08T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 32, + "restaurant_id": 2199, + "status": "COMPLETED", + "reservation_time_id": 3, + "reservation_date": "2025-04-11T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 689, + "restaurant_id": 1864, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-03-15T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 66, + "restaurant_id": 557, + "status": "COMPLETED", + "reservation_time_id": 10, + "reservation_date": "2025-03-05T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 338, + "restaurant_id": 1813, + "status": "COMPLETED", + "reservation_time_id": 9, + "reservation_date": "2025-04-03T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 330, + "restaurant_id": 897, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 952, + "restaurant_id": 1617, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 808, + "restaurant_id": 341, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + }, + { + "user_id": 627, + "restaurant_id": 1607, + "status": "COMPLETED", + "reservation_time_id": 11, + "reservation_date": "2025-03-27T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 106, + "restaurant_id": 255, + "status": "COMPLETED", + "reservation_time_id": 4, + "reservation_date": "2025-04-07T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 297, + "restaurant_id": 1378, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-02-28T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 950, + "restaurant_id": 139, + "status": "COMPLETED", + "reservation_time_id": 2, + "reservation_date": "2025-04-06T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 792, + "restaurant_id": 475, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-12T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 948, + "restaurant_id": 1676, + "status": "COMPLETED", + "reservation_time_id": 5, + "reservation_date": "2025-04-14T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 818, + "restaurant_id": 2018, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-19T00:00:00", + "seat_type_id": 2 + }, + { + "user_id": 354, + "restaurant_id": 906, + "status": "COMPLETED", + "reservation_time_id": 6, + "reservation_date": "2025-04-13T00:00:00", + "seat_type_id": 1 + }, + { + "user_id": 439, + "restaurant_id": 1200, + "status": "COMPLETED", + "reservation_time_id": 8, + "reservation_date": "2025-04-15T00:00:00", + "seat_type_id": 3 + } +] \ No newline at end of file diff --git a/storage/input_json/user/user_data_20250330_212302.json b/storage/input_json/user/user_data_20250330_212302.json new file mode 100644 index 0000000..9695364 --- /dev/null +++ b/storage/input_json/user/user_data_20250330_212302.json @@ -0,0 +1,8018 @@ +[ + { + "user_id": 1, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + { + "user_id": 2, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + { + "user_id": 3, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + { + "user_id": 4, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + { + "user_id": 5, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + { + "user_id": 6, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 7, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 8, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 9, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 10, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 11, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 12, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + { + "user_id": 13, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 14, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 15, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + { + "user_id": 16, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + { + "user_id": 17, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + { + "user_id": 18, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 19, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 20, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 21, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + { + "user_id": 22, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + { + "user_id": 23, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 24, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 25, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + { + "user_id": 26, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 27, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + { + "user_id": 28, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 29, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + { + "user_id": 30, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 31, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 32, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + { + "user_id": 33, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + { + "user_id": 34, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 35, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 36, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 37, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 38, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + { + "user_id": 39, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 40, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 41, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 42, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 43, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 44, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 45, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 46, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + { + "user_id": 47, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 48, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + { + "user_id": 49, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + { + "user_id": 50, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 51, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 52, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 53, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + { + "user_id": 54, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 55, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + { + "user_id": 56, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 57, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + { + "user_id": 58, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 59, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 60, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + { + "user_id": 61, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 62, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + { + "user_id": 63, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + { + "user_id": 64, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 65, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + { + "user_id": 66, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + { + "user_id": 67, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + { + "user_id": 68, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + { + "user_id": 69, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + { + "user_id": 70, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + { + "user_id": 71, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 72, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 73, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 74, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 75, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + { + "user_id": 76, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 77, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + { + "user_id": 78, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 79, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + { + "user_id": 80, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + { + "user_id": 81, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 82, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 83, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + { + "user_id": 84, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 85, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + { + "user_id": 86, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 87, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 88, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 89, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 90, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 91, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + { + "user_id": 92, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 93, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 94, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + { + "user_id": 95, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 96, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 97, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + { + "user_id": 98, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 99, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 100, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + { + "user_id": 101, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + { + "user_id": 102, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 103, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + { + "user_id": 104, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 105, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + { + "user_id": 106, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 107, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 108, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + { + "user_id": 109, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + { + "user_id": 110, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 111, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + { + "user_id": 112, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 113, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + { + "user_id": 114, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + { + "user_id": 115, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + { + "user_id": 116, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + { + "user_id": 117, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + { + "user_id": 118, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + { + "user_id": 119, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 120, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + { + "user_id": 121, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 122, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + { + "user_id": 123, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + { + "user_id": 124, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 125, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + { + "user_id": 126, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 127, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 128, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 129, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + { + "user_id": 130, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 131, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 132, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 133, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 134, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 135, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 136, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 137, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 138, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 139, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 140, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + { + "user_id": 141, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 142, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + { + "user_id": 143, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + { + "user_id": 144, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 145, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + { + "user_id": 146, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + { + "user_id": 147, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + { + "user_id": 148, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 149, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 150, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 151, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 152, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + { + "user_id": 153, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + { + "user_id": 154, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 155, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + { + "user_id": 156, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + { + "user_id": 157, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 158, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 159, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 160, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 161, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + { + "user_id": 162, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 163, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + { + "user_id": 164, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + { + "user_id": 165, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + { + "user_id": 166, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + { + "user_id": 167, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 168, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + { + "user_id": 169, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + { + "user_id": 170, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + { + "user_id": 171, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 172, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + { + "user_id": 173, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 174, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 175, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + { + "user_id": 176, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 177, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 178, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 179, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + { + "user_id": 180, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + { + "user_id": 181, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 182, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 183, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 184, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + { + "user_id": 185, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 186, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 187, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + { + "user_id": 188, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 189, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + { + "user_id": 190, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + { + "user_id": 191, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + { + "user_id": 192, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 193, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 194, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + { + "user_id": 195, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 196, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 197, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + { + "user_id": 198, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 199, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + { + "user_id": 200, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 201, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 202, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 203, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + { + "user_id": 204, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 205, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + { + "user_id": 206, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 207, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 208, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + { + "user_id": 209, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 210, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + { + "user_id": 211, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + { + "user_id": 212, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 213, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + { + "user_id": 214, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 215, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 216, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + { + "user_id": 217, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + { + "user_id": 218, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 219, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + { + "user_id": 220, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 221, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + { + "user_id": 222, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 223, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + { + "user_id": 224, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 225, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 226, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 227, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + { + "user_id": 228, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 229, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 230, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 231, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 232, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 233, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 234, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 235, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + { + "user_id": 236, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 237, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + { + "user_id": 238, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 239, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 240, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + { + "user_id": 241, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 242, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + { + "user_id": 243, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 244, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + { + "user_id": 245, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 246, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + { + "user_id": 247, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 248, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + { + "user_id": 249, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 250, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 251, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 252, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 253, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 254, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 255, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + { + "user_id": 256, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 257, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + { + "user_id": 258, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 259, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + { + "user_id": 260, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 261, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + { + "user_id": 262, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 263, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 264, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 265, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 266, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 267, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + { + "user_id": 268, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 269, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 270, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + { + "user_id": 271, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 272, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 273, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + { + "user_id": 274, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 275, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 276, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 277, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 278, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 279, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + { + "user_id": 280, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + { + "user_id": 281, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 282, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 283, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 284, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + { + "user_id": 285, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 286, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 287, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + { + "user_id": 288, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 289, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 290, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 291, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 292, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 293, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 294, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 295, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + { + "user_id": 296, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 297, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + { + "user_id": 298, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 299, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + { + "user_id": 300, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 301, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 302, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 303, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 304, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + { + "user_id": 305, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 306, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + { + "user_id": 307, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + { + "user_id": 308, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + { + "user_id": 309, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 310, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + { + "user_id": 311, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 312, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 313, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 314, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 315, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + { + "user_id": 316, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 317, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 318, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + { + "user_id": 319, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + { + "user_id": 320, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 321, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 322, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + { + "user_id": 323, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + { + "user_id": 324, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 325, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + { + "user_id": 326, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 327, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 328, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 329, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 330, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + { + "user_id": 331, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 332, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 333, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + { + "user_id": 334, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 335, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + { + "user_id": 336, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 337, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 338, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 339, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + { + "user_id": 340, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + { + "user_id": 341, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 342, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + { + "user_id": 343, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + { + "user_id": 344, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + { + "user_id": 345, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + { + "user_id": 346, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + { + "user_id": 347, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + { + "user_id": 348, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 349, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 350, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 351, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 352, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + { + "user_id": 353, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 354, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + { + "user_id": 355, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + { + "user_id": 356, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 357, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 358, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 359, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + { + "user_id": 360, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 361, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 362, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 363, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 364, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 365, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + { + "user_id": 366, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 367, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 368, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 369, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + { + "user_id": 370, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 371, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 372, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 373, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 374, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 375, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 376, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + { + "user_id": 377, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 378, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 379, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 380, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + { + "user_id": 381, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 382, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 383, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 384, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 385, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + { + "user_id": 386, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 387, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 388, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + { + "user_id": 389, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + { + "user_id": 390, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + { + "user_id": 391, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + { + "user_id": 392, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 393, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 394, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + { + "user_id": 395, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 396, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + { + "user_id": 397, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + { + "user_id": 398, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 399, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 400, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 401, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + { + "user_id": 402, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + { + "user_id": 403, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + { + "user_id": 404, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 405, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + { + "user_id": 406, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 407, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 408, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 409, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + { + "user_id": 410, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 411, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 412, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 413, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 414, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 415, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 416, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + { + "user_id": 417, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + { + "user_id": 418, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 419, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + { + "user_id": 420, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 421, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 422, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + { + "user_id": 423, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 424, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + { + "user_id": 425, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 426, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 427, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 428, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 429, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + { + "user_id": 430, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + { + "user_id": 431, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 432, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 433, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + { + "user_id": 434, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 435, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + { + "user_id": 436, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 437, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 438, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 439, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 440, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 441, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 442, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + { + "user_id": 443, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 444, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 445, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + { + "user_id": 446, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + { + "user_id": 447, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + { + "user_id": 448, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + { + "user_id": 449, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 450, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 451, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 452, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 453, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 454, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + { + "user_id": 455, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 456, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 457, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 458, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 459, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + { + "user_id": 460, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + { + "user_id": 461, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 462, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 463, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + { + "user_id": 464, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 465, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 466, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 467, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 468, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 469, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 470, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 471, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + { + "user_id": 472, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 473, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 474, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 475, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 476, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 477, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 478, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 479, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 480, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + { + "user_id": 481, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 482, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 483, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 484, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 485, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + { + "user_id": 486, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 487, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 488, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + { + "user_id": 489, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 490, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 491, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 492, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 493, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + { + "user_id": 494, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 495, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 496, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 497, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 498, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + { + "user_id": 499, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 500, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + { + "user_id": 501, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 502, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 503, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + { + "user_id": 504, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + { + "user_id": 505, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 506, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 507, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + { + "user_id": 508, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + { + "user_id": 509, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 510, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 511, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + { + "user_id": 512, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 513, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 514, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 515, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 516, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + { + "user_id": 517, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 518, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 519, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + { + "user_id": 520, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 521, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + { + "user_id": 522, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 523, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 524, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 525, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 526, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 527, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 528, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + { + "user_id": 529, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 530, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 531, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + { + "user_id": 532, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 533, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 534, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 535, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 536, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + { + "user_id": 537, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + { + "user_id": 538, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 539, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + { + "user_id": 540, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 541, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 542, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + { + "user_id": 543, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + { + "user_id": 544, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 545, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + { + "user_id": 546, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 547, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + { + "user_id": 548, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + { + "user_id": 549, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 550, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 551, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 552, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 553, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + { + "user_id": 554, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + { + "user_id": 555, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + { + "user_id": 556, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 557, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + { + "user_id": 558, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + { + "user_id": 559, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 560, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 561, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 562, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 563, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 564, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 565, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 566, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 567, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 568, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 569, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + { + "user_id": 570, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + { + "user_id": 571, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + { + "user_id": 572, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 573, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + { + "user_id": 574, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 575, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 576, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + { + "user_id": 577, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 578, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + { + "user_id": 579, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 580, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 581, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 582, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + { + "user_id": 583, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 584, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 585, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 586, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + { + "user_id": 587, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + { + "user_id": 588, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 589, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + { + "user_id": 590, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 591, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + { + "user_id": 592, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 593, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 594, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 595, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 596, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 597, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 598, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + { + "user_id": 599, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + { + "user_id": 600, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 601, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 602, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 603, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + { + "user_id": 604, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + { + "user_id": 605, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + { + "user_id": 606, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + { + "user_id": 607, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + { + "user_id": 608, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 609, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 610, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 611, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + { + "user_id": 612, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + { + "user_id": 613, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 614, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 615, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 616, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 617, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 618, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 619, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 620, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + { + "user_id": 621, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 622, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + { + "user_id": 623, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 624, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 625, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + { + "user_id": 626, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 627, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 628, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 629, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + { + "user_id": 630, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 631, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 632, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 633, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 634, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 635, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + { + "user_id": 636, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + { + "user_id": 637, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 638, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 639, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + { + "user_id": 640, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 641, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 642, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 643, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + { + "user_id": 644, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 645, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 646, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 647, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 648, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + { + "user_id": 649, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + { + "user_id": 650, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 651, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 652, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + { + "user_id": 653, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + { + "user_id": 654, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + { + "user_id": 655, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + { + "user_id": 656, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 657, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 658, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + { + "user_id": 659, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 660, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 661, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 662, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 663, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + { + "user_id": 664, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 665, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + { + "user_id": 666, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 667, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 668, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + { + "user_id": 669, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 670, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 671, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 672, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + { + "user_id": 673, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + { + "user_id": 674, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + { + "user_id": 675, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + { + "user_id": 676, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + { + "user_id": 677, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 678, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 679, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 680, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + { + "user_id": 681, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + { + "user_id": 682, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 683, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 684, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + { + "user_id": 685, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + { + "user_id": 686, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 687, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + { + "user_id": 688, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + { + "user_id": 689, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + { + "user_id": 690, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + { + "user_id": 691, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 692, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 693, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 694, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 695, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + { + "user_id": 696, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + { + "user_id": 697, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + { + "user_id": 698, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 699, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 700, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + { + "user_id": 701, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + { + "user_id": 702, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 703, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 704, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 705, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 706, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + { + "user_id": 707, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + { + "user_id": 708, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 709, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + { + "user_id": 710, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + { + "user_id": 711, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 712, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 713, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 714, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + { + "user_id": 715, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + { + "user_id": 716, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 717, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + { + "user_id": 718, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 8 + }, + { + "user_id": 719, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + { + "user_id": 720, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 721, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 722, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 723, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 724, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + { + "user_id": 725, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + { + "user_id": 726, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + { + "user_id": 727, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 728, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 729, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + { + "user_id": 730, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 731, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + { + "user_id": 732, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 733, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 734, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 735, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + { + "user_id": 736, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 737, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 738, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 739, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 740, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 741, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 742, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 743, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 744, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + { + "user_id": 745, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 746, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + { + "user_id": 747, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + { + "user_id": 748, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + { + "user_id": 749, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + { + "user_id": 750, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 751, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 752, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 753, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 754, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 755, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + { + "user_id": 756, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + { + "user_id": 757, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 758, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 759, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 3 + }, + { + "user_id": 760, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 761, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 762, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 763, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + { + "user_id": 764, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + { + "user_id": 765, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 766, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 767, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 768, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + { + "user_id": 769, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 770, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 771, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 772, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 10 + }, + { + "user_id": 773, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 774, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 775, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 2 + }, + { + "user_id": 776, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 777, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 778, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 779, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + { + "user_id": 780, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + { + "user_id": 781, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 4 + }, + { + "user_id": 782, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 783, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 784, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 785, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 786, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 787, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 788, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 789, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 790, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 791, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 792, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + { + "user_id": 793, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 794, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + { + "user_id": 795, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 796, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + { + "user_id": 797, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 798, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 799, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 800, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 801, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + { + "user_id": 802, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 803, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 804, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + { + "user_id": 805, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + { + "user_id": 806, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 807, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 808, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 809, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 810, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + { + "user_id": 811, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 1 + }, + { + "user_id": 812, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 813, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 814, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 6 + }, + { + "user_id": 815, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 816, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 817, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 818, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + { + "user_id": 819, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 820, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 821, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 822, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 823, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 824, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 825, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + { + "user_id": 826, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 4 + }, + { + "user_id": 827, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 828, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 829, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 830, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 831, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + { + "user_id": 832, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 833, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + { + "user_id": 834, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 835, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 836, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 837, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + { + "user_id": 838, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 839, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 840, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + { + "user_id": 841, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 842, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 843, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 844, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 845, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 846, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + { + "user_id": 847, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 848, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + { + "user_id": 849, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 9 + }, + { + "user_id": 850, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 851, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 5 + }, + { + "user_id": 852, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + { + "user_id": 853, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 854, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 855, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 856, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 857, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 858, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 859, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + { + "user_id": 860, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 861, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 862, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + { + "user_id": 863, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 864, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 865, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + { + "user_id": 866, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 867, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 868, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 10 + }, + { + "user_id": 869, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 870, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 871, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 872, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 873, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 874, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 2 + }, + { + "user_id": 875, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 876, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 877, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 878, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 879, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + { + "user_id": 880, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 881, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + { + "user_id": 882, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 883, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 884, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 10 + }, + { + "user_id": 885, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 886, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + { + "user_id": 887, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 888, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 889, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 890, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 891, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 892, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 893, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 0 + }, + { + "user_id": 894, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 895, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 10 + }, + { + "user_id": 896, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 897, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 898, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 899, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 8 + }, + { + "user_id": 900, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 901, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + { + "user_id": 902, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 903, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 904, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 905, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 7 + }, + { + "user_id": 906, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 907, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 2 + }, + { + "user_id": 908, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + { + "user_id": 909, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 910, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 911, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + { + "user_id": 912, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 3 + }, + { + "user_id": 913, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + { + "user_id": 914, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 915, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 916, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 917, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + { + "user_id": 918, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 2 + }, + { + "user_id": 919, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 920, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 921, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 922, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 923, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + { + "user_id": 924, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 925, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 926, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 0 + }, + { + "user_id": 927, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 8 + }, + { + "user_id": 928, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 3 + }, + { + "user_id": 929, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 930, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 931, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 932, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + { + "user_id": 933, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 934, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 935, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 936, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 10 + }, + { + "user_id": 937, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 938, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + { + "user_id": 939, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 9 + }, + { + "user_id": 940, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 7 + }, + { + "user_id": 941, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 942, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 9 + }, + { + "user_id": 943, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 944, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 6 + }, + { + "user_id": 945, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 946, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 5 + }, + { + "user_id": 947, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 0 + }, + { + "user_id": 948, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 949, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 950, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + { + "user_id": 951, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 6 + }, + { + "user_id": 952, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 953, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + { + "user_id": 954, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 955, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 956, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 957, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 5 + }, + { + "user_id": 958, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 1 + }, + { + "user_id": 959, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 960, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 961, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 8 + }, + { + "user_id": 962, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 7 + }, + { + "user_id": 963, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 0 + }, + { + "user_id": 964, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + { + "user_id": 965, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 966, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 4 + }, + { + "user_id": 967, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 968, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 10 + }, + { + "user_id": 969, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 9 + }, + { + "user_id": 970, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 0 + }, + { + "user_id": 971, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 2 + }, + { + "user_id": 972, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 1 + }, + { + "user_id": 973, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 3 + }, + { + "user_id": 974, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 975, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 976, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 7 + }, + { + "user_id": 977, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 6 + }, + { + "user_id": 978, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 7 + }, + { + "user_id": 979, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 7 + }, + { + "user_id": 980, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 3 + }, + { + "user_id": 981, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 6 + }, + { + "user_id": 982, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 2 + }, + { + "user_id": 983, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 984, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 4 + }, + { + "user_id": 985, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 5 + }, + { + "user_id": 986, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 3 + }, + { + "user_id": 987, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 8 + }, + { + "user_id": 988, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 1 + }, + { + "user_id": 989, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 5, + "normal_ticket_count": 0 + }, + { + "user_id": 990, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 5 + }, + { + "user_id": 991, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 1 + }, + { + "user_id": 992, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 4 + }, + { + "user_id": 993, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 0, + "normal_ticket_count": 8 + }, + { + "user_id": 994, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 9 + }, + { + "user_id": 995, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + { + "user_id": 996, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 2, + "normal_ticket_count": 5 + }, + { + "user_id": 997, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 6 + }, + { + "user_id": 998, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 4, + "normal_ticket_count": 1 + }, + { + "user_id": 999, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 1, + "normal_ticket_count": 9 + }, + { + "user_id": 1000, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 3, + "normal_ticket_count": 4 + }, + { + "user_id": 1004, + "sex": "MALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 10, + "normal_ticket_count": 100 + }, + { + "user_id": 1005, + "sex": "FEMALE", + "status": "AVAILABLE", + "is_deleted": "\u0000", + "empty_ticket_count": 10, + "normal_ticket_count": 100 + } +] \ No newline at end of file diff --git a/storage/input_json/user/user_preferences_20250330_212302.json b/storage/input_json/user/user_preferences_20250330_212302.json new file mode 100644 index 0000000..e86577b --- /dev/null +++ b/storage/input_json/user/user_preferences_20250330_212302.json @@ -0,0 +1,10022 @@ +[ + { + "user_id": 1, + "min_price": 183646, + "max_price": 286141, + "preferred_categories": [ + 2, + 3, + 11 + ] + }, + { + "user_id": 2, + "min_price": 170838, + "max_price": 444065, + "preferred_categories": [ + 6, + 7, + 10 + ] + }, + { + "user_id": 3, + "min_price": 79971, + "max_price": 395779, + "preferred_categories": [ + 3, + 4, + 7 + ] + }, + { + "user_id": 4, + "min_price": 82759, + "max_price": 200419, + "preferred_categories": [ + 1, + 7, + 11 + ] + }, + { + "user_id": 5, + "min_price": 147700, + "max_price": 341399, + "preferred_categories": [ + 3, + 6, + 9 + ] + }, + { + "user_id": 6, + "min_price": 159625, + "max_price": 304138, + "preferred_categories": [ + 2, + 3, + 5 + ] + }, + { + "user_id": 7, + "min_price": 151460, + "max_price": 338378, + "preferred_categories": [ + 1, + 6, + 12 + ] + }, + { + "user_id": 8, + "min_price": 66889, + "max_price": 376584, + "preferred_categories": [ + 7, + 8, + 10 + ] + }, + { + "user_id": 9, + "min_price": 91158, + "max_price": 393014, + "preferred_categories": [ + 4, + 9, + 11 + ] + }, + { + "user_id": 10, + "min_price": 170163, + "max_price": 267487, + "preferred_categories": [ + 3, + 4, + 8 + ] + }, + { + "user_id": 11, + "min_price": 29163, + "max_price": 470524, + "preferred_categories": [ + 1, + 5, + 11 + ] + }, + { + "user_id": 12, + "min_price": 142652, + "max_price": 446869, + "preferred_categories": [ + 2, + 8, + 11 + ] + }, + { + "user_id": 13, + "min_price": 185816, + "max_price": 351840, + "preferred_categories": [ + 2, + 3, + 12 + ] + }, + { + "user_id": 14, + "min_price": 38329, + "max_price": 332509, + "preferred_categories": [ + 7, + 8, + 9 + ] + }, + { + "user_id": 15, + "min_price": 59156, + "max_price": 266941, + "preferred_categories": [ + 2, + 7, + 12 + ] + }, + { + "user_id": 16, + "min_price": 194701, + "max_price": 337197, + "preferred_categories": [ + 1, + 2, + 9 + ] + }, + { + "user_id": 17, + "min_price": 85248, + "max_price": 481858, + "preferred_categories": [ + 3, + 4, + 10 + ] + }, + { + "user_id": 18, + "min_price": 36257, + "max_price": 282926, + "preferred_categories": [ + 1, + 5, + 11 + ] + }, + { + "user_id": 19, + "min_price": 197901, + "max_price": 327603, + "preferred_categories": [ + 1, + 9, + 12 + ] + }, + { + "user_id": 20, + "min_price": 166283, + "max_price": 292092, + "preferred_categories": [ + 2, + 8, + 10 + ] + }, + { + "user_id": 21, + "min_price": 28934, + "max_price": 353557, + "preferred_categories": [ + 3, + 8, + 12 + ] + }, + { + "user_id": 22, + "min_price": 167451, + "max_price": 319083, + "preferred_categories": [ + 2, + 3, + 10 + ] + }, + { + "user_id": 23, + "min_price": 72379, + "max_price": 295629, + "preferred_categories": [ + 3, + 8, + 12 + ] + }, + { + "user_id": 24, + "min_price": 95305, + "max_price": 279131, + "preferred_categories": [ + 4, + 10, + 12 + ] + }, + { + "user_id": 25, + "min_price": 106565, + "max_price": 233947, + "preferred_categories": [ + 3, + 6, + 12 + ] + }, + { + "user_id": 26, + "min_price": 180902, + "max_price": 288981, + "preferred_categories": [ + 1, + 6, + 10 + ] + }, + { + "user_id": 27, + "min_price": 187129, + "max_price": 254815, + "preferred_categories": [ + 1, + 2, + 9 + ] + }, + { + "user_id": 28, + "min_price": 169312, + "max_price": 403490, + "preferred_categories": [ + 4, + 7, + 12 + ] + }, + { + "user_id": 29, + "min_price": 151914, + "max_price": 403053, + "preferred_categories": [ + 7, + 9, + 12 + ] + }, + { + "user_id": 30, + "min_price": 133174, + "max_price": 227881, + "preferred_categories": [ + 4, + 6, + 11 + ] + }, + { + "user_id": 31, + "min_price": 88090, + "max_price": 207906, + "preferred_categories": [ + 3, + 9, + 10 + ] + }, + { + "user_id": 32, + "min_price": 97183, + "max_price": 270292, + "preferred_categories": [ + 2, + 3, + 10 + ] + }, + { + "user_id": 33, + "min_price": 89280, + "max_price": 403876, + "preferred_categories": [ + 8, + 9, + 11 + ] + }, + { + "user_id": 34, + "min_price": 61746, + "max_price": 312422, + "preferred_categories": [ + 3, + 4, + 10 + ] + }, + { + "user_id": 35, + "min_price": 109942, + "max_price": 369064, + "preferred_categories": [ + 6, + 10, + 11 + ] + }, + { + "user_id": 36, + "min_price": 110323, + "max_price": 493736, + "preferred_categories": [ + 2, + 3, + 7 + ] + }, + { + "user_id": 37, + "min_price": 35055, + "max_price": 469280, + "preferred_categories": [ + 1, + 4, + 12 + ] + }, + { + "user_id": 38, + "min_price": 61187, + "max_price": 484502, + "preferred_categories": [ + 1, + 9, + 10 + ] + }, + { + "user_id": 39, + "min_price": 164628, + "max_price": 311737, + "preferred_categories": [ + 4, + 10, + 11 + ] + }, + { + "user_id": 40, + "min_price": 199747, + "max_price": 238578, + "preferred_categories": [ + 4, + 7, + 9 + ] + }, + { + "user_id": 41, + "min_price": 124228, + "max_price": 492507, + "preferred_categories": [ + 4, + 6, + 7 + ] + }, + { + "user_id": 42, + "min_price": 87199, + "max_price": 274639, + "preferred_categories": [ + 2, + 4, + 12 + ] + }, + { + "user_id": 43, + "min_price": 35046, + "max_price": 380147, + "preferred_categories": [ + 4, + 7, + 11 + ] + }, + { + "user_id": 44, + "min_price": 141179, + "max_price": 422839, + "preferred_categories": [ + 8, + 9, + 11 + ] + }, + { + "user_id": 45, + "min_price": 131248, + "max_price": 473654, + "preferred_categories": [ + 4, + 6, + 7 + ] + }, + { + "user_id": 46, + "min_price": 54614, + "max_price": 410500, + "preferred_categories": [ + 4, + 6, + 9 + ] + }, + { + "user_id": 47, + "min_price": 96377, + "max_price": 406337, + "preferred_categories": [ + 3, + 11, + 12 + ] + }, + { + "user_id": 48, + "min_price": 173326, + "max_price": 489105, + "preferred_categories": [ + 3, + 4, + 12 + ] + }, + { + "user_id": 49, + "min_price": 48247, + "max_price": 459629, + "preferred_categories": [ + 3, + 5, + 8 + ] + }, + { + "user_id": 50, + "min_price": 174482, + "max_price": 364108, + "preferred_categories": [ + 3, + 4, + 8 + ] + }, + { + "user_id": 51, + "min_price": 89491, + "max_price": 259108, + "preferred_categories": [ + 2, + 3, + 7 + ] + }, + { + "user_id": 52, + "min_price": 105429, + "max_price": 200179, + "preferred_categories": [ + 2, + 5, + 8 + ] + }, + { + "user_id": 53, + "min_price": 108492, + "max_price": 236409, + "preferred_categories": [ + 3, + 9, + 10 + ] + }, + { + "user_id": 54, + "min_price": 81914, + "max_price": 422377, + "preferred_categories": [ + 1, + 7, + 9 + ] + }, + { + "user_id": 55, + "min_price": 16187, + "max_price": 388247, + "preferred_categories": [ + 3, + 10, + 12 + ] + }, + { + "user_id": 56, + "min_price": 67266, + "max_price": 309257, + "preferred_categories": [ + 3, + 5, + 11 + ] + }, + { + "user_id": 57, + "min_price": 55275, + "max_price": 203384, + "preferred_categories": [ + 1, + 7, + 8 + ] + }, + { + "user_id": 58, + "min_price": 83254, + "max_price": 329780, + "preferred_categories": [ + 3, + 7, + 12 + ] + }, + { + "user_id": 59, + "min_price": 129489, + "max_price": 401574, + "preferred_categories": [ + 3, + 6, + 8 + ] + }, + { + "user_id": 60, + "min_price": 43058, + "max_price": 271891, + "preferred_categories": [ + 6, + 8, + 12 + ] + }, + { + "user_id": 61, + "min_price": 187570, + "max_price": 256791, + "preferred_categories": [ + 1, + 3, + 8 + ] + }, + { + "user_id": 62, + "min_price": 21516, + "max_price": 419351, + "preferred_categories": [ + 9, + 10, + 11 + ] + }, + { + "user_id": 63, + "min_price": 92464, + "max_price": 235396, + "preferred_categories": [ + 3, + 7, + 11 + ] + }, + { + "user_id": 64, + "min_price": 150863, + "max_price": 246214, + "preferred_categories": [ + 4, + 8, + 9 + ] + }, + { + "user_id": 65, + "min_price": 155450, + "max_price": 485892, + "preferred_categories": [ + 4, + 6, + 11 + ] + }, + { + "user_id": 66, + "min_price": 79818, + "max_price": 234185, + "preferred_categories": [ + 4, + 7, + 11 + ] + }, + { + "user_id": 67, + "min_price": 181198, + "max_price": 472937, + "preferred_categories": [ + 7, + 8, + 10 + ] + }, + { + "user_id": 68, + "min_price": 121572, + "max_price": 401695, + "preferred_categories": [ + 2, + 3, + 8 + ] + }, + { + "user_id": 69, + "min_price": 53616, + "max_price": 492640, + "preferred_categories": [ + 2, + 7, + 8 + ] + }, + { + "user_id": 70, + "min_price": 119576, + "max_price": 375454, + "preferred_categories": [ + 3, + 10, + 11 + ] + }, + { + "user_id": 71, + "min_price": 13768, + "max_price": 354216, + "preferred_categories": [ + 2, + 8, + 10 + ] + }, + { + "user_id": 72, + "min_price": 97033, + "max_price": 424256, + "preferred_categories": [ + 2, + 8, + 9 + ] + }, + { + "user_id": 73, + "min_price": 58444, + "max_price": 345640, + "preferred_categories": [ + 3, + 7, + 11 + ] + }, + { + "user_id": 74, + "min_price": 120737, + "max_price": 248236, + "preferred_categories": [ + 1, + 6, + 7 + ] + }, + { + "user_id": 75, + "min_price": 123521, + "max_price": 267707, + "preferred_categories": [ + 2, + 5, + 9 + ] + }, + { + "user_id": 76, + "min_price": 172019, + "max_price": 470071, + "preferred_categories": [ + 6, + 7, + 8 + ] + }, + { + "user_id": 77, + "min_price": 90198, + "max_price": 399068, + "preferred_categories": [ + 6, + 7, + 9 + ] + }, + { + "user_id": 78, + "min_price": 65073, + "max_price": 308313, + "preferred_categories": [ + 3, + 9, + 12 + ] + }, + { + "user_id": 79, + "min_price": 149171, + "max_price": 234246, + "preferred_categories": [ + 5, + 6, + 11 + ] + }, + { + "user_id": 80, + "min_price": 79665, + "max_price": 267787, + "preferred_categories": [ + 1, + 2, + 7 + ] + }, + { + "user_id": 81, + "min_price": 22004, + "max_price": 393826, + "preferred_categories": [ + 3, + 4, + 10 + ] + }, + { + "user_id": 82, + "min_price": 94945, + "max_price": 229961, + "preferred_categories": [ + 8, + 9, + 10 + ] + }, + { + "user_id": 83, + "min_price": 167915, + "max_price": 444105, + "preferred_categories": [ + 2, + 8, + 9 + ] + }, + { + "user_id": 84, + "min_price": 132551, + "max_price": 382730, + "preferred_categories": [ + 4, + 5, + 8 + ] + }, + { + "user_id": 85, + "min_price": 46979, + "max_price": 205497, + "preferred_categories": [ + 1, + 2, + 4 + ] + }, + { + "user_id": 86, + "min_price": 185050, + "max_price": 398628, + "preferred_categories": [ + 2, + 5, + 8 + ] + }, + { + "user_id": 87, + "min_price": 135979, + "max_price": 378633, + "preferred_categories": [ + 2, + 4, + 5 + ] + }, + { + "user_id": 88, + "min_price": 148192, + "max_price": 470318, + "preferred_categories": [ + 4, + 5, + 9 + ] + }, + { + "user_id": 89, + "min_price": 185320, + "max_price": 238334, + "preferred_categories": [ + 8, + 11, + 12 + ] + }, + { + "user_id": 90, + "min_price": 26856, + "max_price": 421438, + "preferred_categories": [ + 2, + 4, + 6 + ] + }, + { + "user_id": 91, + "min_price": 50526, + "max_price": 486531, + "preferred_categories": [ + 3, + 5, + 8 + ] + }, + { + "user_id": 92, + "min_price": 82141, + "max_price": 364554, + "preferred_categories": [ + 6, + 11, + 12 + ] + }, + { + "user_id": 93, + "min_price": 66823, + "max_price": 345162, + "preferred_categories": [ + 5, + 6, + 12 + ] + }, + { + "user_id": 94, + "min_price": 85499, + "max_price": 401582, + "preferred_categories": [ + 1, + 9, + 10 + ] + }, + { + "user_id": 95, + "min_price": 96497, + "max_price": 231653, + "preferred_categories": [ + 4, + 5, + 7 + ] + }, + { + "user_id": 96, + "min_price": 29299, + "max_price": 452322, + "preferred_categories": [ + 1, + 8, + 10 + ] + }, + { + "user_id": 97, + "min_price": 27202, + "max_price": 246133, + "preferred_categories": [ + 1, + 7, + 9 + ] + }, + { + "user_id": 98, + "min_price": 129763, + "max_price": 330349, + "preferred_categories": [ + 3, + 5, + 9 + ] + }, + { + "user_id": 99, + "min_price": 93365, + "max_price": 303372, + "preferred_categories": [ + 5, + 8, + 12 + ] + }, + { + "user_id": 100, + "min_price": 79353, + "max_price": 437106, + "preferred_categories": [ + 1, + 4, + 8 + ] + }, + { + "user_id": 101, + "min_price": 140727, + "max_price": 223500, + "preferred_categories": [ + 7, + 10, + 12 + ] + }, + { + "user_id": 102, + "min_price": 126610, + "max_price": 354243, + "preferred_categories": [ + 9, + 11, + 12 + ] + }, + { + "user_id": 103, + "min_price": 12059, + "max_price": 426530, + "preferred_categories": [ + 3, + 8, + 10 + ] + }, + { + "user_id": 104, + "min_price": 132141, + "max_price": 332202, + "preferred_categories": [ + 4, + 9, + 12 + ] + }, + { + "user_id": 105, + "min_price": 37922, + "max_price": 499973, + "preferred_categories": [ + 3, + 5, + 8 + ] + }, + { + "user_id": 106, + "min_price": 64249, + "max_price": 230682, + "preferred_categories": [ + 5, + 6, + 8 + ] + }, + { + "user_id": 107, + "min_price": 65313, + "max_price": 467101, + "preferred_categories": [ + 5, + 6, + 9 + ] + }, + { + "user_id": 108, + "min_price": 169377, + "max_price": 244275, + "preferred_categories": [ + 3, + 4, + 11 + ] + }, + { + "user_id": 109, + "min_price": 15342, + "max_price": 258548, + "preferred_categories": [ + 4, + 6, + 8 + ] + }, + { + "user_id": 110, + "min_price": 97494, + "max_price": 355408, + "preferred_categories": [ + 5, + 6, + 11 + ] + }, + { + "user_id": 111, + "min_price": 36258, + "max_price": 490070, + "preferred_categories": [ + 3, + 7, + 12 + ] + }, + { + "user_id": 112, + "min_price": 115332, + "max_price": 263578, + "preferred_categories": [ + 2, + 7, + 10 + ] + }, + { + "user_id": 113, + "min_price": 127054, + "max_price": 312245, + "preferred_categories": [ + 4, + 9, + 12 + ] + }, + { + "user_id": 114, + "min_price": 166239, + "max_price": 327001, + "preferred_categories": [ + 3, + 4, + 5 + ] + }, + { + "user_id": 115, + "min_price": 113164, + "max_price": 285426, + "preferred_categories": [ + 7, + 8, + 11 + ] + }, + { + "user_id": 116, + "min_price": 127969, + "max_price": 294168, + "preferred_categories": [ + 2, + 3, + 12 + ] + }, + { + "user_id": 117, + "min_price": 176237, + "max_price": 391158, + "preferred_categories": [ + 1, + 4, + 9 + ] + }, + { + "user_id": 118, + "min_price": 71949, + "max_price": 407527, + "preferred_categories": [ + 6, + 9, + 10 + ] + }, + { + "user_id": 119, + "min_price": 67831, + "max_price": 357736, + "preferred_categories": [ + 5, + 9, + 12 + ] + }, + { + "user_id": 120, + "min_price": 144428, + "max_price": 404101, + "preferred_categories": [ + 1, + 4, + 6 + ] + }, + { + "user_id": 121, + "min_price": 41318, + "max_price": 219612, + "preferred_categories": [ + 4, + 6, + 9 + ] + }, + { + "user_id": 122, + "min_price": 30258, + "max_price": 318302, + "preferred_categories": [ + 3, + 6, + 10 + ] + }, + { + "user_id": 123, + "min_price": 44469, + "max_price": 288533, + "preferred_categories": [ + 4, + 7, + 8 + ] + }, + { + "user_id": 124, + "min_price": 75965, + "max_price": 207023, + "preferred_categories": [ + 1, + 4, + 6 + ] + }, + { + "user_id": 125, + "min_price": 87887, + "max_price": 429278, + "preferred_categories": [ + 1, + 2, + 10 + ] + }, + { + "user_id": 126, + "min_price": 121431, + "max_price": 409992, + "preferred_categories": [ + 1, + 3, + 8 + ] + }, + { + "user_id": 127, + "min_price": 137504, + "max_price": 451142, + "preferred_categories": [ + 4, + 6, + 9 + ] + }, + { + "user_id": 128, + "min_price": 105166, + "max_price": 375827, + "preferred_categories": [ + 2, + 3, + 7 + ] + }, + { + "user_id": 129, + "min_price": 120288, + "max_price": 495343, + "preferred_categories": [ + 2, + 3, + 6 + ] + }, + { + "user_id": 130, + "min_price": 20029, + "max_price": 328338, + "preferred_categories": [ + 5, + 10, + 11 + ] + }, + { + "user_id": 131, + "min_price": 168222, + "max_price": 299643, + "preferred_categories": [ + 7, + 10, + 11 + ] + }, + { + "user_id": 132, + "min_price": 27774, + "max_price": 366391, + "preferred_categories": [ + 3, + 7, + 12 + ] + }, + { + "user_id": 133, + "min_price": 53942, + "max_price": 433053, + "preferred_categories": [ + 3, + 7, + 12 + ] + }, + { + "user_id": 134, + "min_price": 94983, + "max_price": 275331, + "preferred_categories": [ + 7, + 9, + 12 + ] + }, + { + "user_id": 135, + "min_price": 11980, + "max_price": 379968, + "preferred_categories": [ + 5, + 10, + 11 + ] + }, + { + "user_id": 136, + "min_price": 160707, + "max_price": 349473, + "preferred_categories": [ + 5, + 7, + 11 + ] + }, + { + "user_id": 137, + "min_price": 84683, + "max_price": 464334, + "preferred_categories": [ + 7, + 10, + 12 + ] + }, + { + "user_id": 138, + "min_price": 18420, + "max_price": 359174, + "preferred_categories": [ + 5, + 6, + 11 + ] + }, + { + "user_id": 139, + "min_price": 50259, + "max_price": 479372, + "preferred_categories": [ + 3, + 9, + 10 + ] + }, + { + "user_id": 140, + "min_price": 164299, + "max_price": 276422, + "preferred_categories": [ + 5, + 11, + 12 + ] + }, + { + "user_id": 141, + "min_price": 176375, + "max_price": 268704, + "preferred_categories": [ + 1, + 8, + 12 + ] + }, + { + "user_id": 142, + "min_price": 196059, + "max_price": 321766, + "preferred_categories": [ + 1, + 6, + 7 + ] + }, + { + "user_id": 143, + "min_price": 182013, + "max_price": 244480, + "preferred_categories": [ + 3, + 5, + 9 + ] + }, + { + "user_id": 144, + "min_price": 45546, + "max_price": 491347, + "preferred_categories": [ + 3, + 4, + 10 + ] + }, + { + "user_id": 145, + "min_price": 31723, + "max_price": 479164, + "preferred_categories": [ + 3, + 9, + 12 + ] + }, + { + "user_id": 146, + "min_price": 180807, + "max_price": 450496, + "preferred_categories": [ + 6, + 10, + 11 + ] + }, + { + "user_id": 147, + "min_price": 178811, + "max_price": 473203, + "preferred_categories": [ + 5, + 8, + 10 + ] + }, + { + "user_id": 148, + "min_price": 139834, + "max_price": 379234, + "preferred_categories": [ + 2, + 3, + 12 + ] + }, + { + "user_id": 149, + "min_price": 100745, + "max_price": 463183, + "preferred_categories": [ + 1, + 6, + 11 + ] + }, + { + "user_id": 150, + "min_price": 39040, + "max_price": 268605, + "preferred_categories": [ + 2, + 5, + 12 + ] + }, + { + "user_id": 151, + "min_price": 29406, + "max_price": 201272, + "preferred_categories": [ + 2, + 5, + 6 + ] + }, + { + "user_id": 152, + "min_price": 123073, + "max_price": 260646, + "preferred_categories": [ + 4, + 6, + 11 + ] + }, + { + "user_id": 153, + "min_price": 168024, + "max_price": 432589, + "preferred_categories": [ + 4, + 5, + 12 + ] + }, + { + "user_id": 154, + "min_price": 167510, + "max_price": 441903, + "preferred_categories": [ + 1, + 9, + 11 + ] + }, + { + "user_id": 155, + "min_price": 40023, + "max_price": 407162, + "preferred_categories": [ + 1, + 11, + 12 + ] + }, + { + "user_id": 156, + "min_price": 159091, + "max_price": 277219, + "preferred_categories": [ + 3, + 5, + 7 + ] + }, + { + "user_id": 157, + "min_price": 48399, + "max_price": 434645, + "preferred_categories": [ + 8, + 10, + 11 + ] + }, + { + "user_id": 158, + "min_price": 144690, + "max_price": 330608, + "preferred_categories": [ + 3, + 5, + 10 + ] + }, + { + "user_id": 159, + "min_price": 90552, + "max_price": 301470, + "preferred_categories": [ + 8, + 9, + 11 + ] + }, + { + "user_id": 160, + "min_price": 32498, + "max_price": 231090, + "preferred_categories": [ + 2, + 5, + 9 + ] + }, + { + "user_id": 161, + "min_price": 159215, + "max_price": 230042, + "preferred_categories": [ + 3, + 4, + 6 + ] + }, + { + "user_id": 162, + "min_price": 149189, + "max_price": 335301, + "preferred_categories": [ + 4, + 6, + 11 + ] + }, + { + "user_id": 163, + "min_price": 85454, + "max_price": 268901, + "preferred_categories": [ + 1, + 3, + 10 + ] + }, + { + "user_id": 164, + "min_price": 31263, + "max_price": 431844, + "preferred_categories": [ + 3, + 5, + 7 + ] + }, + { + "user_id": 165, + "min_price": 66125, + "max_price": 305315, + "preferred_categories": [ + 5, + 7, + 8 + ] + }, + { + "user_id": 166, + "min_price": 158451, + "max_price": 461726, + "preferred_categories": [ + 1, + 3, + 6 + ] + }, + { + "user_id": 167, + "min_price": 19032, + "max_price": 291481, + "preferred_categories": [ + 1, + 3, + 10 + ] + }, + { + "user_id": 168, + "min_price": 78571, + "max_price": 345816, + "preferred_categories": [ + 1, + 2, + 4 + ] + }, + { + "user_id": 169, + "min_price": 198909, + "max_price": 309393, + "preferred_categories": [ + 1, + 4, + 9 + ] + }, + { + "user_id": 170, + "min_price": 94505, + "max_price": 260505, + "preferred_categories": [ + 2, + 9, + 10 + ] + }, + { + "user_id": 171, + "min_price": 74242, + "max_price": 278640, + "preferred_categories": [ + 1, + 5, + 7 + ] + }, + { + "user_id": 172, + "min_price": 59574, + "max_price": 448128, + "preferred_categories": [ + 1, + 8, + 11 + ] + }, + { + "user_id": 173, + "min_price": 146506, + "max_price": 431000, + "preferred_categories": [ + 4, + 7, + 8 + ] + }, + { + "user_id": 174, + "min_price": 61310, + "max_price": 364180, + "preferred_categories": [ + 1, + 7, + 10 + ] + }, + { + "user_id": 175, + "min_price": 41448, + "max_price": 356124, + "preferred_categories": [ + 3, + 6, + 10 + ] + }, + { + "user_id": 176, + "min_price": 162622, + "max_price": 468564, + "preferred_categories": [ + 4, + 5, + 8 + ] + }, + { + "user_id": 177, + "min_price": 107493, + "max_price": 220994, + "preferred_categories": [ + 1, + 3, + 8 + ] + }, + { + "user_id": 178, + "min_price": 196399, + "max_price": 290759, + "preferred_categories": [ + 2, + 9, + 10 + ] + }, + { + "user_id": 179, + "min_price": 193715, + "max_price": 400526, + "preferred_categories": [ + 1, + 3, + 5 + ] + }, + { + "user_id": 180, + "min_price": 79311, + "max_price": 413880, + "preferred_categories": [ + 2, + 4, + 5 + ] + }, + { + "user_id": 181, + "min_price": 11008, + "max_price": 321989, + "preferred_categories": [ + 1, + 7, + 11 + ] + }, + { + "user_id": 182, + "min_price": 170913, + "max_price": 345544, + "preferred_categories": [ + 4, + 5, + 9 + ] + }, + { + "user_id": 183, + "min_price": 183937, + "max_price": 221962, + "preferred_categories": [ + 1, + 2, + 9 + ] + }, + { + "user_id": 184, + "min_price": 161327, + "max_price": 311028, + "preferred_categories": [ + 1, + 6, + 8 + ] + }, + { + "user_id": 185, + "min_price": 183519, + "max_price": 248252, + "preferred_categories": [ + 1, + 3, + 11 + ] + }, + { + "user_id": 186, + "min_price": 122923, + "max_price": 451106, + "preferred_categories": [ + 7, + 9, + 11 + ] + }, + { + "user_id": 187, + "min_price": 147113, + "max_price": 405380, + "preferred_categories": [ + 1, + 9, + 11 + ] + }, + { + "user_id": 188, + "min_price": 28523, + "max_price": 203839, + "preferred_categories": [ + 2, + 9, + 12 + ] + }, + { + "user_id": 189, + "min_price": 76186, + "max_price": 333806, + "preferred_categories": [ + 3, + 6, + 7 + ] + }, + { + "user_id": 190, + "min_price": 92873, + "max_price": 432627, + "preferred_categories": [ + 5, + 9, + 12 + ] + }, + { + "user_id": 191, + "min_price": 95798, + "max_price": 215347, + "preferred_categories": [ + 1, + 4, + 11 + ] + }, + { + "user_id": 192, + "min_price": 118625, + "max_price": 404671, + "preferred_categories": [ + 4, + 6, + 10 + ] + }, + { + "user_id": 193, + "min_price": 82141, + "max_price": 363349, + "preferred_categories": [ + 1, + 5, + 7 + ] + }, + { + "user_id": 194, + "min_price": 176609, + "max_price": 278162, + "preferred_categories": [ + 2, + 3, + 6 + ] + }, + { + "user_id": 195, + "min_price": 89445, + "max_price": 384349, + "preferred_categories": [ + 3, + 8, + 11 + ] + }, + { + "user_id": 196, + "min_price": 69355, + "max_price": 422863, + "preferred_categories": [ + 7, + 9, + 11 + ] + }, + { + "user_id": 197, + "min_price": 149506, + "max_price": 203902, + "preferred_categories": [ + 1, + 6, + 10 + ] + }, + { + "user_id": 198, + "min_price": 51413, + "max_price": 474910, + "preferred_categories": [ + 3, + 7, + 9 + ] + }, + { + "user_id": 199, + "min_price": 79957, + "max_price": 476345, + "preferred_categories": [ + 1, + 9, + 11 + ] + }, + { + "user_id": 200, + "min_price": 15234, + "max_price": 220967, + "preferred_categories": [ + 5, + 6, + 11 + ] + }, + { + "user_id": 201, + "min_price": 72795, + "max_price": 355305, + "preferred_categories": [ + 2, + 7, + 9 + ] + }, + { + "user_id": 202, + "min_price": 44532, + "max_price": 374021, + "preferred_categories": [ + 2, + 4, + 8 + ] + }, + { + "user_id": 203, + "min_price": 51617, + "max_price": 279504, + "preferred_categories": [ + 4, + 6, + 9 + ] + }, + { + "user_id": 204, + "min_price": 160288, + "max_price": 443296, + "preferred_categories": [ + 2, + 3, + 5 + ] + }, + { + "user_id": 205, + "min_price": 180085, + "max_price": 375556, + "preferred_categories": [ + 2, + 7, + 10 + ] + }, + { + "user_id": 206, + "min_price": 176851, + "max_price": 251345, + "preferred_categories": [ + 4, + 7, + 12 + ] + }, + { + "user_id": 207, + "min_price": 172931, + "max_price": 494189, + "preferred_categories": [ + 2, + 8, + 12 + ] + }, + { + "user_id": 208, + "min_price": 94459, + "max_price": 380802, + "preferred_categories": [ + 4, + 5, + 12 + ] + }, + { + "user_id": 209, + "min_price": 15499, + "max_price": 237485, + "preferred_categories": [ + 1, + 2, + 11 + ] + }, + { + "user_id": 210, + "min_price": 74857, + "max_price": 389579, + "preferred_categories": [ + 4, + 9, + 12 + ] + }, + { + "user_id": 211, + "min_price": 92737, + "max_price": 360769, + "preferred_categories": [ + 4, + 7, + 12 + ] + }, + { + "user_id": 212, + "min_price": 66872, + "max_price": 433681, + "preferred_categories": [ + 2, + 3, + 12 + ] + }, + { + "user_id": 213, + "min_price": 153773, + "max_price": 244503, + "preferred_categories": [ + 3, + 4, + 12 + ] + }, + { + "user_id": 214, + "min_price": 138552, + "max_price": 282906, + "preferred_categories": [ + 2, + 6, + 10 + ] + }, + { + "user_id": 215, + "min_price": 27015, + "max_price": 309651, + "preferred_categories": [ + 3, + 4, + 5 + ] + }, + { + "user_id": 216, + "min_price": 35438, + "max_price": 235826, + "preferred_categories": [ + 6, + 8, + 12 + ] + }, + { + "user_id": 217, + "min_price": 50165, + "max_price": 348160, + "preferred_categories": [ + 2, + 4, + 11 + ] + }, + { + "user_id": 218, + "min_price": 37506, + "max_price": 252461, + "preferred_categories": [ + 1, + 5, + 6 + ] + }, + { + "user_id": 219, + "min_price": 120768, + "max_price": 425014, + "preferred_categories": [ + 2, + 5, + 7 + ] + }, + { + "user_id": 220, + "min_price": 54360, + "max_price": 484657, + "preferred_categories": [ + 5, + 7, + 11 + ] + }, + { + "user_id": 221, + "min_price": 115437, + "max_price": 357157, + "preferred_categories": [ + 7, + 8, + 9 + ] + }, + { + "user_id": 222, + "min_price": 88353, + "max_price": 409313, + "preferred_categories": [ + 2, + 5, + 10 + ] + }, + { + "user_id": 223, + "min_price": 179055, + "max_price": 295721, + "preferred_categories": [ + 1, + 10, + 11 + ] + }, + { + "user_id": 224, + "min_price": 26505, + "max_price": 211633, + "preferred_categories": [ + 1, + 5, + 6 + ] + }, + { + "user_id": 225, + "min_price": 99891, + "max_price": 301350, + "preferred_categories": [ + 5, + 9, + 10 + ] + }, + { + "user_id": 226, + "min_price": 70481, + "max_price": 262495, + "preferred_categories": [ + 4, + 8, + 12 + ] + }, + { + "user_id": 227, + "min_price": 35595, + "max_price": 210992, + "preferred_categories": [ + 6, + 9, + 11 + ] + }, + { + "user_id": 228, + "min_price": 79859, + "max_price": 266644, + "preferred_categories": [ + 2, + 3, + 7 + ] + }, + { + "user_id": 229, + "min_price": 93433, + "max_price": 279378, + "preferred_categories": [ + 1, + 3, + 6 + ] + }, + { + "user_id": 230, + "min_price": 49661, + "max_price": 358083, + "preferred_categories": [ + 1, + 5, + 6 + ] + }, + { + "user_id": 231, + "min_price": 196091, + "max_price": 417867, + "preferred_categories": [ + 2, + 7, + 10 + ] + }, + { + "user_id": 232, + "min_price": 54841, + "max_price": 307433, + "preferred_categories": [ + 1, + 3, + 12 + ] + }, + { + "user_id": 233, + "min_price": 171934, + "max_price": 266947, + "preferred_categories": [ + 5, + 7, + 12 + ] + }, + { + "user_id": 234, + "min_price": 121560, + "max_price": 444798, + "preferred_categories": [ + 2, + 9, + 12 + ] + }, + { + "user_id": 235, + "min_price": 22034, + "max_price": 457960, + "preferred_categories": [ + 4, + 9, + 11 + ] + }, + { + "user_id": 236, + "min_price": 185489, + "max_price": 213562, + "preferred_categories": [ + 2, + 6, + 10 + ] + }, + { + "user_id": 237, + "min_price": 188625, + "max_price": 292293, + "preferred_categories": [ + 1, + 7, + 8 + ] + }, + { + "user_id": 238, + "min_price": 63185, + "max_price": 425475, + "preferred_categories": [ + 1, + 6, + 9 + ] + }, + { + "user_id": 239, + "min_price": 160250, + "max_price": 299594, + "preferred_categories": [ + 7, + 9, + 10 + ] + }, + { + "user_id": 240, + "min_price": 97669, + "max_price": 499985, + "preferred_categories": [ + 2, + 5, + 7 + ] + }, + { + "user_id": 241, + "min_price": 71172, + "max_price": 467802, + "preferred_categories": [ + 5, + 9, + 10 + ] + }, + { + "user_id": 242, + "min_price": 122809, + "max_price": 294060, + "preferred_categories": [ + 1, + 3, + 7 + ] + }, + { + "user_id": 243, + "min_price": 97857, + "max_price": 295196, + "preferred_categories": [ + 5, + 6, + 7 + ] + }, + { + "user_id": 244, + "min_price": 162736, + "max_price": 341689, + "preferred_categories": [ + 4, + 6, + 9 + ] + }, + { + "user_id": 245, + "min_price": 42277, + "max_price": 446327, + "preferred_categories": [ + 4, + 7, + 8 + ] + }, + { + "user_id": 246, + "min_price": 85719, + "max_price": 362016, + "preferred_categories": [ + 4, + 10, + 12 + ] + }, + { + "user_id": 247, + "min_price": 17470, + "max_price": 292418, + "preferred_categories": [ + 2, + 8, + 12 + ] + }, + { + "user_id": 248, + "min_price": 28515, + "max_price": 402010, + "preferred_categories": [ + 2, + 4, + 12 + ] + }, + { + "user_id": 249, + "min_price": 147497, + "max_price": 297665, + "preferred_categories": [ + 2, + 7, + 12 + ] + }, + { + "user_id": 250, + "min_price": 169672, + "max_price": 344575, + "preferred_categories": [ + 2, + 6, + 7 + ] + }, + { + "user_id": 251, + "min_price": 34199, + "max_price": 494766, + "preferred_categories": [ + 4, + 8, + 12 + ] + }, + { + "user_id": 252, + "min_price": 99429, + "max_price": 455465, + "preferred_categories": [ + 4, + 6, + 10 + ] + }, + { + "user_id": 253, + "min_price": 19544, + "max_price": 468129, + "preferred_categories": [ + 7, + 9, + 11 + ] + }, + { + "user_id": 254, + "min_price": 168275, + "max_price": 285542, + "preferred_categories": [ + 3, + 7, + 9 + ] + }, + { + "user_id": 255, + "min_price": 92771, + "max_price": 401087, + "preferred_categories": [ + 7, + 10, + 12 + ] + }, + { + "user_id": 256, + "min_price": 182506, + "max_price": 300457, + "preferred_categories": [ + 4, + 8, + 11 + ] + }, + { + "user_id": 257, + "min_price": 127431, + "max_price": 225116, + "preferred_categories": [ + 1, + 5, + 8 + ] + }, + { + "user_id": 258, + "min_price": 89645, + "max_price": 341865, + "preferred_categories": [ + 2, + 4, + 6 + ] + }, + { + "user_id": 259, + "min_price": 138901, + "max_price": 329782, + "preferred_categories": [ + 9, + 11, + 12 + ] + }, + { + "user_id": 260, + "min_price": 199473, + "max_price": 260576, + "preferred_categories": [ + 6, + 7, + 11 + ] + }, + { + "user_id": 261, + "min_price": 17795, + "max_price": 455435, + "preferred_categories": [ + 1, + 4, + 10 + ] + }, + { + "user_id": 262, + "min_price": 107041, + "max_price": 332828, + "preferred_categories": [ + 1, + 10, + 12 + ] + }, + { + "user_id": 263, + "min_price": 35945, + "max_price": 312057, + "preferred_categories": [ + 6, + 7, + 9 + ] + }, + { + "user_id": 264, + "min_price": 92096, + "max_price": 470692, + "preferred_categories": [ + 1, + 2, + 8 + ] + }, + { + "user_id": 265, + "min_price": 80257, + "max_price": 230964, + "preferred_categories": [ + 2, + 6, + 10 + ] + }, + { + "user_id": 266, + "min_price": 78904, + "max_price": 423501, + "preferred_categories": [ + 4, + 5, + 10 + ] + }, + { + "user_id": 267, + "min_price": 33338, + "max_price": 373241, + "preferred_categories": [ + 3, + 5, + 8 + ] + }, + { + "user_id": 268, + "min_price": 101934, + "max_price": 476092, + "preferred_categories": [ + 1, + 3, + 12 + ] + }, + { + "user_id": 269, + "min_price": 186835, + "max_price": 494248, + "preferred_categories": [ + 3, + 8, + 10 + ] + }, + { + "user_id": 270, + "min_price": 194172, + "max_price": 426884, + "preferred_categories": [ + 8, + 10, + 12 + ] + }, + { + "user_id": 271, + "min_price": 87671, + "max_price": 202738, + "preferred_categories": [ + 7, + 9, + 11 + ] + }, + { + "user_id": 272, + "min_price": 36585, + "max_price": 393215, + "preferred_categories": [ + 1, + 8, + 11 + ] + }, + { + "user_id": 273, + "min_price": 64387, + "max_price": 227536, + "preferred_categories": [ + 2, + 8, + 11 + ] + }, + { + "user_id": 274, + "min_price": 106251, + "max_price": 408448, + "preferred_categories": [ + 1, + 4, + 9 + ] + }, + { + "user_id": 275, + "min_price": 56350, + "max_price": 397164, + "preferred_categories": [ + 4, + 9, + 10 + ] + }, + { + "user_id": 276, + "min_price": 190889, + "max_price": 401375, + "preferred_categories": [ + 2, + 8, + 9 + ] + }, + { + "user_id": 277, + "min_price": 52240, + "max_price": 243472, + "preferred_categories": [ + 7, + 10, + 11 + ] + }, + { + "user_id": 278, + "min_price": 94391, + "max_price": 390850, + "preferred_categories": [ + 6, + 8, + 12 + ] + }, + { + "user_id": 279, + "min_price": 63673, + "max_price": 486146, + "preferred_categories": [ + 4, + 6, + 11 + ] + }, + { + "user_id": 280, + "min_price": 137715, + "max_price": 316122, + "preferred_categories": [ + 3, + 10, + 11 + ] + }, + { + "user_id": 281, + "min_price": 81087, + "max_price": 417758, + "preferred_categories": [ + 1, + 2, + 5 + ] + }, + { + "user_id": 282, + "min_price": 52917, + "max_price": 200066, + "preferred_categories": [ + 8, + 10, + 11 + ] + }, + { + "user_id": 283, + "min_price": 77291, + "max_price": 466157, + "preferred_categories": [ + 3, + 9, + 12 + ] + }, + { + "user_id": 284, + "min_price": 117818, + "max_price": 311745, + "preferred_categories": [ + 6, + 8, + 12 + ] + }, + { + "user_id": 285, + "min_price": 106468, + "max_price": 388810, + "preferred_categories": [ + 2, + 7, + 11 + ] + }, + { + "user_id": 286, + "min_price": 96831, + "max_price": 295784, + "preferred_categories": [ + 2, + 7, + 12 + ] + }, + { + "user_id": 287, + "min_price": 80359, + "max_price": 239957, + "preferred_categories": [ + 4, + 7, + 9 + ] + }, + { + "user_id": 288, + "min_price": 96779, + "max_price": 259571, + "preferred_categories": [ + 4, + 7, + 11 + ] + }, + { + "user_id": 289, + "min_price": 57685, + "max_price": 470592, + "preferred_categories": [ + 1, + 2, + 8 + ] + }, + { + "user_id": 290, + "min_price": 92218, + "max_price": 360940, + "preferred_categories": [ + 2, + 6, + 8 + ] + }, + { + "user_id": 291, + "min_price": 78436, + "max_price": 459336, + "preferred_categories": [ + 1, + 10, + 11 + ] + }, + { + "user_id": 292, + "min_price": 82822, + "max_price": 296446, + "preferred_categories": [ + 1, + 5, + 6 + ] + }, + { + "user_id": 293, + "min_price": 67263, + "max_price": 285626, + "preferred_categories": [ + 2, + 5, + 11 + ] + }, + { + "user_id": 294, + "min_price": 170208, + "max_price": 464099, + "preferred_categories": [ + 4, + 8, + 10 + ] + }, + { + "user_id": 295, + "min_price": 164140, + "max_price": 263105, + "preferred_categories": [ + 1, + 5, + 8 + ] + }, + { + "user_id": 296, + "min_price": 167473, + "max_price": 302474, + "preferred_categories": [ + 2, + 11, + 12 + ] + }, + { + "user_id": 297, + "min_price": 174677, + "max_price": 372056, + "preferred_categories": [ + 2, + 3, + 12 + ] + }, + { + "user_id": 298, + "min_price": 52010, + "max_price": 352449, + "preferred_categories": [ + 4, + 6, + 8 + ] + }, + { + "user_id": 299, + "min_price": 171727, + "max_price": 419186, + "preferred_categories": [ + 5, + 6, + 11 + ] + }, + { + "user_id": 300, + "min_price": 82806, + "max_price": 336617, + "preferred_categories": [ + 1, + 2, + 9 + ] + }, + { + "user_id": 301, + "min_price": 153139, + "max_price": 400878, + "preferred_categories": [ + 3, + 5, + 12 + ] + }, + { + "user_id": 302, + "min_price": 58763, + "max_price": 376532, + "preferred_categories": [ + 4, + 11, + 12 + ] + }, + { + "user_id": 303, + "min_price": 114816, + "max_price": 215966, + "preferred_categories": [ + 1, + 9, + 12 + ] + }, + { + "user_id": 304, + "min_price": 78236, + "max_price": 298739, + "preferred_categories": [ + 6, + 8, + 11 + ] + }, + { + "user_id": 305, + "min_price": 168504, + "max_price": 324152, + "preferred_categories": [ + 2, + 5, + 9 + ] + }, + { + "user_id": 306, + "min_price": 114959, + "max_price": 225832, + "preferred_categories": [ + 5, + 11, + 12 + ] + }, + { + "user_id": 307, + "min_price": 97153, + "max_price": 218247, + "preferred_categories": [ + 3, + 4, + 11 + ] + }, + { + "user_id": 308, + "min_price": 186433, + "max_price": 442559, + "preferred_categories": [ + 3, + 4, + 8 + ] + }, + { + "user_id": 309, + "min_price": 29388, + "max_price": 400541, + "preferred_categories": [ + 5, + 6, + 8 + ] + }, + { + "user_id": 310, + "min_price": 114911, + "max_price": 322029, + "preferred_categories": [ + 1, + 2, + 12 + ] + }, + { + "user_id": 311, + "min_price": 162186, + "max_price": 233292, + "preferred_categories": [ + 2, + 10, + 12 + ] + }, + { + "user_id": 312, + "min_price": 35635, + "max_price": 313899, + "preferred_categories": [ + 2, + 6, + 7 + ] + }, + { + "user_id": 313, + "min_price": 11492, + "max_price": 403970, + "preferred_categories": [ + 1, + 8, + 11 + ] + }, + { + "user_id": 314, + "min_price": 147251, + "max_price": 292531, + "preferred_categories": [ + 2, + 8, + 12 + ] + }, + { + "user_id": 315, + "min_price": 65865, + "max_price": 499030, + "preferred_categories": [ + 2, + 5, + 11 + ] + }, + { + "user_id": 316, + "min_price": 25792, + "max_price": 345372, + "preferred_categories": [ + 5, + 11, + 12 + ] + }, + { + "user_id": 317, + "min_price": 121179, + "max_price": 279212, + "preferred_categories": [ + 2, + 3, + 4 + ] + }, + { + "user_id": 318, + "min_price": 169288, + "max_price": 434460, + "preferred_categories": [ + 9, + 10, + 12 + ] + }, + { + "user_id": 319, + "min_price": 108275, + "max_price": 461196, + "preferred_categories": [ + 1, + 7, + 11 + ] + }, + { + "user_id": 320, + "min_price": 163733, + "max_price": 214434, + "preferred_categories": [ + 1, + 8, + 9 + ] + }, + { + "user_id": 321, + "min_price": 119490, + "max_price": 380690, + "preferred_categories": [ + 4, + 6, + 7 + ] + }, + { + "user_id": 322, + "min_price": 146046, + "max_price": 207430, + "preferred_categories": [ + 1, + 3, + 8 + ] + }, + { + "user_id": 323, + "min_price": 197852, + "max_price": 291430, + "preferred_categories": [ + 2, + 7, + 11 + ] + }, + { + "user_id": 324, + "min_price": 145993, + "max_price": 281509, + "preferred_categories": [ + 7, + 10, + 11 + ] + }, + { + "user_id": 325, + "min_price": 105489, + "max_price": 450296, + "preferred_categories": [ + 4, + 7, + 11 + ] + }, + { + "user_id": 326, + "min_price": 130659, + "max_price": 304679, + "preferred_categories": [ + 1, + 4, + 8 + ] + }, + { + "user_id": 327, + "min_price": 138762, + "max_price": 383569, + "preferred_categories": [ + 2, + 9, + 11 + ] + }, + { + "user_id": 328, + "min_price": 60651, + "max_price": 353518, + "preferred_categories": [ + 3, + 5, + 10 + ] + }, + { + "user_id": 329, + "min_price": 155240, + "max_price": 274717, + "preferred_categories": [ + 4, + 8, + 11 + ] + }, + { + "user_id": 330, + "min_price": 155236, + "max_price": 384499, + "preferred_categories": [ + 8, + 9, + 12 + ] + }, + { + "user_id": 331, + "min_price": 153987, + "max_price": 465116, + "preferred_categories": [ + 9, + 10, + 11 + ] + }, + { + "user_id": 332, + "min_price": 142253, + "max_price": 422611, + "preferred_categories": [ + 4, + 8, + 11 + ] + }, + { + "user_id": 333, + "min_price": 46673, + "max_price": 273142, + "preferred_categories": [ + 1, + 3, + 7 + ] + }, + { + "user_id": 334, + "min_price": 53260, + "max_price": 276436, + "preferred_categories": [ + 2, + 4, + 10 + ] + }, + { + "user_id": 335, + "min_price": 38139, + "max_price": 202608, + "preferred_categories": [ + 1, + 3, + 5 + ] + }, + { + "user_id": 336, + "min_price": 179707, + "max_price": 243929, + "preferred_categories": [ + 7, + 8, + 9 + ] + }, + { + "user_id": 337, + "min_price": 141289, + "max_price": 258763, + "preferred_categories": [ + 1, + 3, + 12 + ] + }, + { + "user_id": 338, + "min_price": 58273, + "max_price": 322834, + "preferred_categories": [ + 2, + 7, + 10 + ] + }, + { + "user_id": 339, + "min_price": 151350, + "max_price": 211616, + "preferred_categories": [ + 2, + 7, + 10 + ] + }, + { + "user_id": 340, + "min_price": 43433, + "max_price": 417342, + "preferred_categories": [ + 3, + 8, + 10 + ] + }, + { + "user_id": 341, + "min_price": 53017, + "max_price": 333428, + "preferred_categories": [ + 6, + 10, + 12 + ] + }, + { + "user_id": 342, + "min_price": 112882, + "max_price": 453483, + "preferred_categories": [ + 4, + 5, + 12 + ] + }, + { + "user_id": 343, + "min_price": 108033, + "max_price": 266412, + "preferred_categories": [ + 1, + 2, + 8 + ] + }, + { + "user_id": 344, + "min_price": 140955, + "max_price": 408051, + "preferred_categories": [ + 5, + 7, + 11 + ] + }, + { + "user_id": 345, + "min_price": 94717, + "max_price": 456345, + "preferred_categories": [ + 7, + 11, + 12 + ] + }, + { + "user_id": 346, + "min_price": 28648, + "max_price": 457822, + "preferred_categories": [ + 1, + 3, + 6 + ] + }, + { + "user_id": 347, + "min_price": 92725, + "max_price": 255709, + "preferred_categories": [ + 7, + 9, + 11 + ] + }, + { + "user_id": 348, + "min_price": 192438, + "max_price": 451104, + "preferred_categories": [ + 1, + 6, + 8 + ] + }, + { + "user_id": 349, + "min_price": 79899, + "max_price": 420645, + "preferred_categories": [ + 1, + 7, + 12 + ] + }, + { + "user_id": 350, + "min_price": 125863, + "max_price": 392445, + "preferred_categories": [ + 2, + 8, + 11 + ] + }, + { + "user_id": 351, + "min_price": 78961, + "max_price": 207515, + "preferred_categories": [ + 2, + 5, + 9 + ] + }, + { + "user_id": 352, + "min_price": 53884, + "max_price": 317523, + "preferred_categories": [ + 2, + 7, + 11 + ] + }, + { + "user_id": 353, + "min_price": 197545, + "max_price": 444435, + "preferred_categories": [ + 4, + 8, + 9 + ] + }, + { + "user_id": 354, + "min_price": 42407, + "max_price": 316633, + "preferred_categories": [ + 7, + 9, + 11 + ] + }, + { + "user_id": 355, + "min_price": 173204, + "max_price": 258931, + "preferred_categories": [ + 5, + 8, + 11 + ] + }, + { + "user_id": 356, + "min_price": 190010, + "max_price": 372692, + "preferred_categories": [ + 2, + 4, + 8 + ] + }, + { + "user_id": 357, + "min_price": 37837, + "max_price": 343398, + "preferred_categories": [ + 3, + 4, + 11 + ] + }, + { + "user_id": 358, + "min_price": 59623, + "max_price": 281317, + "preferred_categories": [ + 1, + 4, + 8 + ] + }, + { + "user_id": 359, + "min_price": 26790, + "max_price": 332501, + "preferred_categories": [ + 4, + 6, + 9 + ] + }, + { + "user_id": 360, + "min_price": 158042, + "max_price": 384262, + "preferred_categories": [ + 1, + 8, + 10 + ] + }, + { + "user_id": 361, + "min_price": 93593, + "max_price": 428215, + "preferred_categories": [ + 1, + 3, + 9 + ] + }, + { + "user_id": 362, + "min_price": 163969, + "max_price": 249481, + "preferred_categories": [ + 1, + 4, + 5 + ] + }, + { + "user_id": 363, + "min_price": 50161, + "max_price": 414483, + "preferred_categories": [ + 2, + 8, + 12 + ] + }, + { + "user_id": 364, + "min_price": 118855, + "max_price": 464670, + "preferred_categories": [ + 1, + 11, + 12 + ] + }, + { + "user_id": 365, + "min_price": 172110, + "max_price": 474311, + "preferred_categories": [ + 1, + 7, + 12 + ] + }, + { + "user_id": 366, + "min_price": 114042, + "max_price": 348959, + "preferred_categories": [ + 9, + 10, + 11 + ] + }, + { + "user_id": 367, + "min_price": 101587, + "max_price": 234548, + "preferred_categories": [ + 8, + 10, + 12 + ] + }, + { + "user_id": 368, + "min_price": 174151, + "max_price": 219163, + "preferred_categories": [ + 1, + 5, + 7 + ] + }, + { + "user_id": 369, + "min_price": 65234, + "max_price": 302195, + "preferred_categories": [ + 2, + 3, + 4 + ] + }, + { + "user_id": 370, + "min_price": 147660, + "max_price": 422472, + "preferred_categories": [ + 6, + 9, + 12 + ] + }, + { + "user_id": 371, + "min_price": 146399, + "max_price": 227784, + "preferred_categories": [ + 5, + 6, + 8 + ] + }, + { + "user_id": 372, + "min_price": 171040, + "max_price": 498482, + "preferred_categories": [ + 4, + 6, + 7 + ] + }, + { + "user_id": 373, + "min_price": 25938, + "max_price": 373709, + "preferred_categories": [ + 4, + 8, + 9 + ] + }, + { + "user_id": 374, + "min_price": 35826, + "max_price": 470459, + "preferred_categories": [ + 1, + 3, + 6 + ] + }, + { + "user_id": 375, + "min_price": 120657, + "max_price": 354110, + "preferred_categories": [ + 7, + 8, + 12 + ] + }, + { + "user_id": 376, + "min_price": 117159, + "max_price": 206024, + "preferred_categories": [ + 4, + 7, + 9 + ] + }, + { + "user_id": 377, + "min_price": 83301, + "max_price": 358946, + "preferred_categories": [ + 7, + 8, + 9 + ] + }, + { + "user_id": 378, + "min_price": 59281, + "max_price": 308803, + "preferred_categories": [ + 1, + 2, + 9 + ] + }, + { + "user_id": 379, + "min_price": 31884, + "max_price": 474517, + "preferred_categories": [ + 7, + 10, + 11 + ] + }, + { + "user_id": 380, + "min_price": 142871, + "max_price": 242390, + "preferred_categories": [ + 4, + 7, + 11 + ] + }, + { + "user_id": 381, + "min_price": 187457, + "max_price": 340548, + "preferred_categories": [ + 4, + 5, + 9 + ] + }, + { + "user_id": 382, + "min_price": 177984, + "max_price": 299177, + "preferred_categories": [ + 2, + 9, + 11 + ] + }, + { + "user_id": 383, + "min_price": 82671, + "max_price": 270532, + "preferred_categories": [ + 1, + 2, + 3 + ] + }, + { + "user_id": 384, + "min_price": 88647, + "max_price": 268992, + "preferred_categories": [ + 8, + 9, + 10 + ] + }, + { + "user_id": 385, + "min_price": 71976, + "max_price": 259627, + "preferred_categories": [ + 2, + 8, + 11 + ] + }, + { + "user_id": 386, + "min_price": 39850, + "max_price": 266860, + "preferred_categories": [ + 1, + 2, + 7 + ] + }, + { + "user_id": 387, + "min_price": 112778, + "max_price": 202576, + "preferred_categories": [ + 2, + 6, + 8 + ] + }, + { + "user_id": 388, + "min_price": 148181, + "max_price": 289778, + "preferred_categories": [ + 4, + 5, + 9 + ] + }, + { + "user_id": 389, + "min_price": 98397, + "max_price": 318503, + "preferred_categories": [ + 1, + 2, + 10 + ] + }, + { + "user_id": 390, + "min_price": 126264, + "max_price": 307917, + "preferred_categories": [ + 10, + 11, + 12 + ] + }, + { + "user_id": 391, + "min_price": 93056, + "max_price": 369358, + "preferred_categories": [ + 5, + 9, + 12 + ] + }, + { + "user_id": 392, + "min_price": 59530, + "max_price": 373343, + "preferred_categories": [ + 6, + 9, + 11 + ] + }, + { + "user_id": 393, + "min_price": 191858, + "max_price": 278415, + "preferred_categories": [ + 7, + 9, + 12 + ] + }, + { + "user_id": 394, + "min_price": 78233, + "max_price": 254809, + "preferred_categories": [ + 2, + 11, + 12 + ] + }, + { + "user_id": 395, + "min_price": 41600, + "max_price": 358742, + "preferred_categories": [ + 4, + 6, + 10 + ] + }, + { + "user_id": 396, + "min_price": 136937, + "max_price": 435593, + "preferred_categories": [ + 2, + 3, + 12 + ] + }, + { + "user_id": 397, + "min_price": 79308, + "max_price": 444664, + "preferred_categories": [ + 2, + 5, + 8 + ] + }, + { + "user_id": 398, + "min_price": 189799, + "max_price": 257040, + "preferred_categories": [ + 5, + 10, + 12 + ] + }, + { + "user_id": 399, + "min_price": 107481, + "max_price": 471971, + "preferred_categories": [ + 2, + 5, + 6 + ] + }, + { + "user_id": 400, + "min_price": 69440, + "max_price": 285534, + "preferred_categories": [ + 2, + 4, + 7 + ] + }, + { + "user_id": 401, + "min_price": 28851, + "max_price": 399355, + "preferred_categories": [ + 2, + 4, + 6 + ] + }, + { + "user_id": 402, + "min_price": 130354, + "max_price": 267282, + "preferred_categories": [ + 9, + 11, + 12 + ] + }, + { + "user_id": 403, + "min_price": 90246, + "max_price": 376411, + "preferred_categories": [ + 1, + 2, + 6 + ] + }, + { + "user_id": 404, + "min_price": 68397, + "max_price": 417066, + "preferred_categories": [ + 3, + 10, + 12 + ] + }, + { + "user_id": 405, + "min_price": 50643, + "max_price": 312499, + "preferred_categories": [ + 1, + 5, + 11 + ] + }, + { + "user_id": 406, + "min_price": 70706, + "max_price": 329969, + "preferred_categories": [ + 2, + 8, + 11 + ] + }, + { + "user_id": 407, + "min_price": 70210, + "max_price": 468220, + "preferred_categories": [ + 3, + 9, + 12 + ] + }, + { + "user_id": 408, + "min_price": 162311, + "max_price": 414297, + "preferred_categories": [ + 1, + 2, + 5 + ] + }, + { + "user_id": 409, + "min_price": 187847, + "max_price": 219953, + "preferred_categories": [ + 3, + 4, + 5 + ] + }, + { + "user_id": 410, + "min_price": 192908, + "max_price": 413257, + "preferred_categories": [ + 2, + 5, + 11 + ] + }, + { + "user_id": 411, + "min_price": 192762, + "max_price": 334666, + "preferred_categories": [ + 3, + 4, + 8 + ] + }, + { + "user_id": 412, + "min_price": 50456, + "max_price": 222514, + "preferred_categories": [ + 8, + 9, + 11 + ] + }, + { + "user_id": 413, + "min_price": 123579, + "max_price": 259408, + "preferred_categories": [ + 1, + 3, + 9 + ] + }, + { + "user_id": 414, + "min_price": 16753, + "max_price": 319363, + "preferred_categories": [ + 2, + 4, + 12 + ] + }, + { + "user_id": 415, + "min_price": 95097, + "max_price": 398450, + "preferred_categories": [ + 3, + 6, + 8 + ] + }, + { + "user_id": 416, + "min_price": 107138, + "max_price": 388838, + "preferred_categories": [ + 3, + 5, + 8 + ] + }, + { + "user_id": 417, + "min_price": 19251, + "max_price": 256776, + "preferred_categories": [ + 2, + 10, + 12 + ] + }, + { + "user_id": 418, + "min_price": 82298, + "max_price": 383184, + "preferred_categories": [ + 6, + 7, + 8 + ] + }, + { + "user_id": 419, + "min_price": 77538, + "max_price": 262198, + "preferred_categories": [ + 2, + 3, + 7 + ] + }, + { + "user_id": 420, + "min_price": 139996, + "max_price": 276703, + "preferred_categories": [ + 1, + 2, + 5 + ] + }, + { + "user_id": 421, + "min_price": 38350, + "max_price": 276962, + "preferred_categories": [ + 1, + 6, + 11 + ] + }, + { + "user_id": 422, + "min_price": 140548, + "max_price": 461187, + "preferred_categories": [ + 4, + 8, + 10 + ] + }, + { + "user_id": 423, + "min_price": 45818, + "max_price": 480325, + "preferred_categories": [ + 2, + 3, + 12 + ] + }, + { + "user_id": 424, + "min_price": 83641, + "max_price": 394427, + "preferred_categories": [ + 3, + 8, + 11 + ] + }, + { + "user_id": 425, + "min_price": 99934, + "max_price": 435603, + "preferred_categories": [ + 3, + 5, + 10 + ] + }, + { + "user_id": 426, + "min_price": 67709, + "max_price": 279346, + "preferred_categories": [ + 4, + 7, + 12 + ] + }, + { + "user_id": 427, + "min_price": 93222, + "max_price": 306633, + "preferred_categories": [ + 3, + 9, + 11 + ] + }, + { + "user_id": 428, + "min_price": 14466, + "max_price": 483980, + "preferred_categories": [ + 1, + 8, + 12 + ] + }, + { + "user_id": 429, + "min_price": 173055, + "max_price": 214878, + "preferred_categories": [ + 1, + 3, + 9 + ] + }, + { + "user_id": 430, + "min_price": 160431, + "max_price": 263423, + "preferred_categories": [ + 4, + 7, + 9 + ] + }, + { + "user_id": 431, + "min_price": 194270, + "max_price": 396807, + "preferred_categories": [ + 5, + 6, + 12 + ] + }, + { + "user_id": 432, + "min_price": 139244, + "max_price": 468006, + "preferred_categories": [ + 5, + 8, + 11 + ] + }, + { + "user_id": 433, + "min_price": 54184, + "max_price": 386017, + "preferred_categories": [ + 4, + 7, + 11 + ] + }, + { + "user_id": 434, + "min_price": 115716, + "max_price": 237391, + "preferred_categories": [ + 3, + 4, + 8 + ] + }, + { + "user_id": 435, + "min_price": 29926, + "max_price": 415828, + "preferred_categories": [ + 8, + 10, + 11 + ] + }, + { + "user_id": 436, + "min_price": 56098, + "max_price": 208006, + "preferred_categories": [ + 4, + 8, + 9 + ] + }, + { + "user_id": 437, + "min_price": 92380, + "max_price": 282798, + "preferred_categories": [ + 7, + 8, + 11 + ] + }, + { + "user_id": 438, + "min_price": 139215, + "max_price": 322382, + "preferred_categories": [ + 7, + 8, + 9 + ] + }, + { + "user_id": 439, + "min_price": 24595, + "max_price": 495656, + "preferred_categories": [ + 5, + 10, + 12 + ] + }, + { + "user_id": 440, + "min_price": 156629, + "max_price": 487736, + "preferred_categories": [ + 4, + 6, + 8 + ] + }, + { + "user_id": 441, + "min_price": 162775, + "max_price": 348167, + "preferred_categories": [ + 2, + 9, + 10 + ] + }, + { + "user_id": 442, + "min_price": 160420, + "max_price": 413534, + "preferred_categories": [ + 2, + 8, + 9 + ] + }, + { + "user_id": 443, + "min_price": 155651, + "max_price": 292531, + "preferred_categories": [ + 1, + 6, + 7 + ] + }, + { + "user_id": 444, + "min_price": 64763, + "max_price": 405225, + "preferred_categories": [ + 5, + 6, + 7 + ] + }, + { + "user_id": 445, + "min_price": 172721, + "max_price": 388734, + "preferred_categories": [ + 1, + 3, + 9 + ] + }, + { + "user_id": 446, + "min_price": 69617, + "max_price": 200028, + "preferred_categories": [ + 4, + 6, + 11 + ] + }, + { + "user_id": 447, + "min_price": 150465, + "max_price": 368086, + "preferred_categories": [ + 3, + 10, + 12 + ] + }, + { + "user_id": 448, + "min_price": 88914, + "max_price": 453598, + "preferred_categories": [ + 5, + 7, + 11 + ] + }, + { + "user_id": 449, + "min_price": 13516, + "max_price": 490092, + "preferred_categories": [ + 3, + 5, + 10 + ] + }, + { + "user_id": 450, + "min_price": 195083, + "max_price": 260490, + "preferred_categories": [ + 4, + 5, + 11 + ] + }, + { + "user_id": 451, + "min_price": 27274, + "max_price": 455598, + "preferred_categories": [ + 1, + 3, + 8 + ] + }, + { + "user_id": 452, + "min_price": 161982, + "max_price": 494976, + "preferred_categories": [ + 4, + 10, + 12 + ] + }, + { + "user_id": 453, + "min_price": 28764, + "max_price": 396066, + "preferred_categories": [ + 2, + 3, + 11 + ] + }, + { + "user_id": 454, + "min_price": 88243, + "max_price": 455579, + "preferred_categories": [ + 2, + 5, + 7 + ] + }, + { + "user_id": 455, + "min_price": 70502, + "max_price": 409085, + "preferred_categories": [ + 5, + 7, + 10 + ] + }, + { + "user_id": 456, + "min_price": 72053, + "max_price": 371029, + "preferred_categories": [ + 4, + 5, + 6 + ] + }, + { + "user_id": 457, + "min_price": 196249, + "max_price": 295670, + "preferred_categories": [ + 1, + 3, + 7 + ] + }, + { + "user_id": 458, + "min_price": 150430, + "max_price": 361928, + "preferred_categories": [ + 1, + 5, + 12 + ] + }, + { + "user_id": 459, + "min_price": 173729, + "max_price": 451024, + "preferred_categories": [ + 1, + 9, + 12 + ] + }, + { + "user_id": 460, + "min_price": 98179, + "max_price": 490748, + "preferred_categories": [ + 6, + 9, + 12 + ] + }, + { + "user_id": 461, + "min_price": 30336, + "max_price": 491945, + "preferred_categories": [ + 6, + 9, + 10 + ] + }, + { + "user_id": 462, + "min_price": 70420, + "max_price": 241640, + "preferred_categories": [ + 2, + 5, + 12 + ] + }, + { + "user_id": 463, + "min_price": 35627, + "max_price": 223055, + "preferred_categories": [ + 3, + 7, + 8 + ] + }, + { + "user_id": 464, + "min_price": 172942, + "max_price": 467233, + "preferred_categories": [ + 6, + 9, + 10 + ] + }, + { + "user_id": 465, + "min_price": 90757, + "max_price": 209404, + "preferred_categories": [ + 6, + 10, + 12 + ] + }, + { + "user_id": 466, + "min_price": 63309, + "max_price": 235052, + "preferred_categories": [ + 4, + 7, + 12 + ] + }, + { + "user_id": 467, + "min_price": 122542, + "max_price": 352043, + "preferred_categories": [ + 6, + 8, + 11 + ] + }, + { + "user_id": 468, + "min_price": 71188, + "max_price": 464655, + "preferred_categories": [ + 3, + 5, + 11 + ] + }, + { + "user_id": 469, + "min_price": 99119, + "max_price": 452949, + "preferred_categories": [ + 4, + 6, + 9 + ] + }, + { + "user_id": 470, + "min_price": 83280, + "max_price": 426276, + "preferred_categories": [ + 2, + 3, + 7 + ] + }, + { + "user_id": 471, + "min_price": 72177, + "max_price": 216417, + "preferred_categories": [ + 1, + 3, + 5 + ] + }, + { + "user_id": 472, + "min_price": 71538, + "max_price": 475969, + "preferred_categories": [ + 2, + 4, + 12 + ] + }, + { + "user_id": 473, + "min_price": 16907, + "max_price": 470315, + "preferred_categories": [ + 2, + 5, + 7 + ] + }, + { + "user_id": 474, + "min_price": 110948, + "max_price": 278020, + "preferred_categories": [ + 4, + 6, + 11 + ] + }, + { + "user_id": 475, + "min_price": 30121, + "max_price": 440036, + "preferred_categories": [ + 6, + 9, + 12 + ] + }, + { + "user_id": 476, + "min_price": 30943, + "max_price": 314142, + "preferred_categories": [ + 2, + 7, + 10 + ] + }, + { + "user_id": 477, + "min_price": 20699, + "max_price": 386746, + "preferred_categories": [ + 5, + 6, + 9 + ] + }, + { + "user_id": 478, + "min_price": 14474, + "max_price": 261137, + "preferred_categories": [ + 1, + 10, + 11 + ] + }, + { + "user_id": 479, + "min_price": 39433, + "max_price": 331372, + "preferred_categories": [ + 2, + 4, + 7 + ] + }, + { + "user_id": 480, + "min_price": 32680, + "max_price": 405773, + "preferred_categories": [ + 8, + 9, + 10 + ] + }, + { + "user_id": 481, + "min_price": 132313, + "max_price": 429580, + "preferred_categories": [ + 2, + 5, + 11 + ] + }, + { + "user_id": 482, + "min_price": 157741, + "max_price": 356059, + "preferred_categories": [ + 5, + 9, + 12 + ] + }, + { + "user_id": 483, + "min_price": 55449, + "max_price": 271684, + "preferred_categories": [ + 5, + 6, + 10 + ] + }, + { + "user_id": 484, + "min_price": 95631, + "max_price": 347716, + "preferred_categories": [ + 5, + 6, + 7 + ] + }, + { + "user_id": 485, + "min_price": 62933, + "max_price": 411171, + "preferred_categories": [ + 4, + 8, + 12 + ] + }, + { + "user_id": 486, + "min_price": 75683, + "max_price": 428977, + "preferred_categories": [ + 5, + 9, + 10 + ] + }, + { + "user_id": 487, + "min_price": 187686, + "max_price": 466398, + "preferred_categories": [ + 3, + 8, + 12 + ] + }, + { + "user_id": 488, + "min_price": 33315, + "max_price": 270081, + "preferred_categories": [ + 9, + 11, + 12 + ] + }, + { + "user_id": 489, + "min_price": 51880, + "max_price": 485029, + "preferred_categories": [ + 1, + 4, + 12 + ] + }, + { + "user_id": 490, + "min_price": 108198, + "max_price": 261276, + "preferred_categories": [ + 1, + 9, + 11 + ] + }, + { + "user_id": 491, + "min_price": 92566, + "max_price": 407979, + "preferred_categories": [ + 1, + 7, + 12 + ] + }, + { + "user_id": 492, + "min_price": 173882, + "max_price": 243348, + "preferred_categories": [ + 4, + 6, + 12 + ] + }, + { + "user_id": 493, + "min_price": 174035, + "max_price": 411586, + "preferred_categories": [ + 5, + 8, + 12 + ] + }, + { + "user_id": 494, + "min_price": 144010, + "max_price": 297625, + "preferred_categories": [ + 1, + 4, + 7 + ] + }, + { + "user_id": 495, + "min_price": 92174, + "max_price": 402601, + "preferred_categories": [ + 7, + 8, + 10 + ] + }, + { + "user_id": 496, + "min_price": 69504, + "max_price": 266498, + "preferred_categories": [ + 4, + 6, + 7 + ] + }, + { + "user_id": 497, + "min_price": 41341, + "max_price": 303917, + "preferred_categories": [ + 5, + 6, + 11 + ] + }, + { + "user_id": 498, + "min_price": 26146, + "max_price": 205307, + "preferred_categories": [ + 1, + 6, + 7 + ] + }, + { + "user_id": 499, + "min_price": 124691, + "max_price": 471466, + "preferred_categories": [ + 1, + 3, + 8 + ] + }, + { + "user_id": 500, + "min_price": 196676, + "max_price": 363805, + "preferred_categories": [ + 2, + 8, + 9 + ] + }, + { + "user_id": 501, + "min_price": 62536, + "max_price": 328308, + "preferred_categories": [ + 3, + 4, + 8 + ] + }, + { + "user_id": 502, + "min_price": 85770, + "max_price": 267523, + "preferred_categories": [ + 3, + 7, + 11 + ] + }, + { + "user_id": 503, + "min_price": 84112, + "max_price": 332979, + "preferred_categories": [ + 1, + 3, + 11 + ] + }, + { + "user_id": 504, + "min_price": 180538, + "max_price": 309464, + "preferred_categories": [ + 5, + 6, + 10 + ] + }, + { + "user_id": 505, + "min_price": 185347, + "max_price": 488292, + "preferred_categories": [ + 1, + 8, + 10 + ] + }, + { + "user_id": 506, + "min_price": 165007, + "max_price": 361471, + "preferred_categories": [ + 7, + 8, + 12 + ] + }, + { + "user_id": 507, + "min_price": 105248, + "max_price": 208687, + "preferred_categories": [ + 3, + 7, + 8 + ] + }, + { + "user_id": 508, + "min_price": 161404, + "max_price": 232684, + "preferred_categories": [ + 2, + 6, + 8 + ] + }, + { + "user_id": 509, + "min_price": 16172, + "max_price": 442554, + "preferred_categories": [ + 5, + 11, + 12 + ] + }, + { + "user_id": 510, + "min_price": 170199, + "max_price": 204657, + "preferred_categories": [ + 3, + 11, + 12 + ] + }, + { + "user_id": 511, + "min_price": 70377, + "max_price": 239389, + "preferred_categories": [ + 3, + 5, + 9 + ] + }, + { + "user_id": 512, + "min_price": 101701, + "max_price": 218008, + "preferred_categories": [ + 1, + 5, + 8 + ] + }, + { + "user_id": 513, + "min_price": 194651, + "max_price": 383759, + "preferred_categories": [ + 3, + 9, + 11 + ] + }, + { + "user_id": 514, + "min_price": 61447, + "max_price": 306213, + "preferred_categories": [ + 4, + 5, + 7 + ] + }, + { + "user_id": 515, + "min_price": 48279, + "max_price": 312123, + "preferred_categories": [ + 3, + 5, + 7 + ] + }, + { + "user_id": 516, + "min_price": 116248, + "max_price": 361275, + "preferred_categories": [ + 4, + 11, + 12 + ] + }, + { + "user_id": 517, + "min_price": 90908, + "max_price": 388396, + "preferred_categories": [ + 2, + 8, + 10 + ] + }, + { + "user_id": 518, + "min_price": 133729, + "max_price": 288128, + "preferred_categories": [ + 5, + 6, + 11 + ] + }, + { + "user_id": 519, + "min_price": 76334, + "max_price": 425896, + "preferred_categories": [ + 4, + 7, + 10 + ] + }, + { + "user_id": 520, + "min_price": 49234, + "max_price": 227571, + "preferred_categories": [ + 3, + 7, + 10 + ] + }, + { + "user_id": 521, + "min_price": 137397, + "max_price": 479020, + "preferred_categories": [ + 5, + 6, + 9 + ] + }, + { + "user_id": 522, + "min_price": 43095, + "max_price": 204399, + "preferred_categories": [ + 3, + 8, + 12 + ] + }, + { + "user_id": 523, + "min_price": 154358, + "max_price": 338325, + "preferred_categories": [ + 4, + 5, + 8 + ] + }, + { + "user_id": 524, + "min_price": 132921, + "max_price": 336982, + "preferred_categories": [ + 3, + 4, + 9 + ] + }, + { + "user_id": 525, + "min_price": 91124, + "max_price": 341459, + "preferred_categories": [ + 3, + 10, + 12 + ] + }, + { + "user_id": 526, + "min_price": 63478, + "max_price": 406510, + "preferred_categories": [ + 4, + 9, + 12 + ] + }, + { + "user_id": 527, + "min_price": 64958, + "max_price": 332700, + "preferred_categories": [ + 2, + 6, + 11 + ] + }, + { + "user_id": 528, + "min_price": 86953, + "max_price": 254230, + "preferred_categories": [ + 3, + 7, + 8 + ] + }, + { + "user_id": 529, + "min_price": 171859, + "max_price": 216574, + "preferred_categories": [ + 4, + 10, + 11 + ] + }, + { + "user_id": 530, + "min_price": 41795, + "max_price": 482990, + "preferred_categories": [ + 4, + 6, + 12 + ] + }, + { + "user_id": 531, + "min_price": 123832, + "max_price": 330133, + "preferred_categories": [ + 5, + 10, + 11 + ] + }, + { + "user_id": 532, + "min_price": 53435, + "max_price": 395228, + "preferred_categories": [ + 1, + 8, + 11 + ] + }, + { + "user_id": 533, + "min_price": 83245, + "max_price": 219301, + "preferred_categories": [ + 1, + 5, + 11 + ] + }, + { + "user_id": 534, + "min_price": 116263, + "max_price": 241393, + "preferred_categories": [ + 2, + 4, + 10 + ] + }, + { + "user_id": 535, + "min_price": 50931, + "max_price": 209948, + "preferred_categories": [ + 4, + 7, + 11 + ] + }, + { + "user_id": 536, + "min_price": 63782, + "max_price": 434471, + "preferred_categories": [ + 1, + 4, + 8 + ] + }, + { + "user_id": 537, + "min_price": 161904, + "max_price": 402834, + "preferred_categories": [ + 3, + 5, + 6 + ] + }, + { + "user_id": 538, + "min_price": 132616, + "max_price": 441114, + "preferred_categories": [ + 1, + 6, + 7 + ] + }, + { + "user_id": 539, + "min_price": 31356, + "max_price": 467585, + "preferred_categories": [ + 2, + 4, + 5 + ] + }, + { + "user_id": 540, + "min_price": 95495, + "max_price": 348008, + "preferred_categories": [ + 1, + 8, + 10 + ] + }, + { + "user_id": 541, + "min_price": 136281, + "max_price": 445390, + "preferred_categories": [ + 3, + 9, + 11 + ] + }, + { + "user_id": 542, + "min_price": 25432, + "max_price": 323829, + "preferred_categories": [ + 3, + 6, + 8 + ] + }, + { + "user_id": 543, + "min_price": 12607, + "max_price": 205185, + "preferred_categories": [ + 7, + 10, + 12 + ] + }, + { + "user_id": 544, + "min_price": 26420, + "max_price": 490248, + "preferred_categories": [ + 4, + 6, + 8 + ] + }, + { + "user_id": 545, + "min_price": 161027, + "max_price": 463292, + "preferred_categories": [ + 5, + 9, + 11 + ] + }, + { + "user_id": 546, + "min_price": 157829, + "max_price": 480943, + "preferred_categories": [ + 2, + 4, + 8 + ] + }, + { + "user_id": 547, + "min_price": 29055, + "max_price": 347856, + "preferred_categories": [ + 1, + 3, + 12 + ] + }, + { + "user_id": 548, + "min_price": 96294, + "max_price": 239565, + "preferred_categories": [ + 2, + 11, + 12 + ] + }, + { + "user_id": 549, + "min_price": 62437, + "max_price": 255734, + "preferred_categories": [ + 1, + 8, + 11 + ] + }, + { + "user_id": 550, + "min_price": 183474, + "max_price": 242008, + "preferred_categories": [ + 2, + 8, + 10 + ] + }, + { + "user_id": 551, + "min_price": 28705, + "max_price": 278966, + "preferred_categories": [ + 2, + 4, + 9 + ] + }, + { + "user_id": 552, + "min_price": 17762, + "max_price": 266072, + "preferred_categories": [ + 3, + 4, + 10 + ] + }, + { + "user_id": 553, + "min_price": 37376, + "max_price": 380708, + "preferred_categories": [ + 4, + 7, + 11 + ] + }, + { + "user_id": 554, + "min_price": 109083, + "max_price": 207097, + "preferred_categories": [ + 2, + 4, + 9 + ] + }, + { + "user_id": 555, + "min_price": 167100, + "max_price": 220167, + "preferred_categories": [ + 2, + 3, + 8 + ] + }, + { + "user_id": 556, + "min_price": 185659, + "max_price": 328447, + "preferred_categories": [ + 7, + 10, + 12 + ] + }, + { + "user_id": 557, + "min_price": 158856, + "max_price": 263123, + "preferred_categories": [ + 2, + 4, + 10 + ] + }, + { + "user_id": 558, + "min_price": 101011, + "max_price": 244123, + "preferred_categories": [ + 4, + 5, + 12 + ] + }, + { + "user_id": 559, + "min_price": 197338, + "max_price": 212049, + "preferred_categories": [ + 1, + 6, + 10 + ] + }, + { + "user_id": 560, + "min_price": 29596, + "max_price": 244946, + "preferred_categories": [ + 1, + 5, + 10 + ] + }, + { + "user_id": 561, + "min_price": 45793, + "max_price": 358017, + "preferred_categories": [ + 6, + 8, + 11 + ] + }, + { + "user_id": 562, + "min_price": 132333, + "max_price": 344701, + "preferred_categories": [ + 1, + 3, + 8 + ] + }, + { + "user_id": 563, + "min_price": 180763, + "max_price": 411913, + "preferred_categories": [ + 5, + 6, + 7 + ] + }, + { + "user_id": 564, + "min_price": 131493, + "max_price": 449587, + "preferred_categories": [ + 1, + 2, + 4 + ] + }, + { + "user_id": 565, + "min_price": 50115, + "max_price": 486488, + "preferred_categories": [ + 4, + 8, + 10 + ] + }, + { + "user_id": 566, + "min_price": 138975, + "max_price": 362731, + "preferred_categories": [ + 1, + 6, + 8 + ] + }, + { + "user_id": 567, + "min_price": 190331, + "max_price": 496717, + "preferred_categories": [ + 2, + 3, + 7 + ] + }, + { + "user_id": 568, + "min_price": 157754, + "max_price": 306057, + "preferred_categories": [ + 3, + 9, + 10 + ] + }, + { + "user_id": 569, + "min_price": 85126, + "max_price": 338709, + "preferred_categories": [ + 3, + 9, + 12 + ] + }, + { + "user_id": 570, + "min_price": 143481, + "max_price": 200001, + "preferred_categories": [ + 4, + 5, + 11 + ] + }, + { + "user_id": 571, + "min_price": 100696, + "max_price": 223457, + "preferred_categories": [ + 4, + 6, + 9 + ] + }, + { + "user_id": 572, + "min_price": 25685, + "max_price": 441179, + "preferred_categories": [ + 3, + 9, + 11 + ] + }, + { + "user_id": 573, + "min_price": 110800, + "max_price": 353594, + "preferred_categories": [ + 1, + 9, + 10 + ] + }, + { + "user_id": 574, + "min_price": 13674, + "max_price": 393614, + "preferred_categories": [ + 3, + 6, + 7 + ] + }, + { + "user_id": 575, + "min_price": 20528, + "max_price": 430394, + "preferred_categories": [ + 3, + 5, + 10 + ] + }, + { + "user_id": 576, + "min_price": 152774, + "max_price": 331831, + "preferred_categories": [ + 1, + 4, + 9 + ] + }, + { + "user_id": 577, + "min_price": 120484, + "max_price": 398194, + "preferred_categories": [ + 6, + 7, + 10 + ] + }, + { + "user_id": 578, + "min_price": 176286, + "max_price": 276427, + "preferred_categories": [ + 1, + 3, + 8 + ] + }, + { + "user_id": 579, + "min_price": 117675, + "max_price": 499987, + "preferred_categories": [ + 6, + 9, + 10 + ] + }, + { + "user_id": 580, + "min_price": 113585, + "max_price": 290614, + "preferred_categories": [ + 3, + 4, + 5 + ] + }, + { + "user_id": 581, + "min_price": 195676, + "max_price": 478243, + "preferred_categories": [ + 3, + 7, + 12 + ] + }, + { + "user_id": 582, + "min_price": 128166, + "max_price": 402493, + "preferred_categories": [ + 6, + 8, + 10 + ] + }, + { + "user_id": 583, + "min_price": 143737, + "max_price": 393992, + "preferred_categories": [ + 4, + 7, + 9 + ] + }, + { + "user_id": 584, + "min_price": 88091, + "max_price": 327428, + "preferred_categories": [ + 2, + 3, + 6 + ] + }, + { + "user_id": 585, + "min_price": 164467, + "max_price": 462940, + "preferred_categories": [ + 6, + 9, + 12 + ] + }, + { + "user_id": 586, + "min_price": 97582, + "max_price": 265145, + "preferred_categories": [ + 6, + 9, + 10 + ] + }, + { + "user_id": 587, + "min_price": 125764, + "max_price": 451884, + "preferred_categories": [ + 1, + 4, + 10 + ] + }, + { + "user_id": 588, + "min_price": 123085, + "max_price": 470082, + "preferred_categories": [ + 4, + 5, + 12 + ] + }, + { + "user_id": 589, + "min_price": 55829, + "max_price": 302570, + "preferred_categories": [ + 2, + 4, + 6 + ] + }, + { + "user_id": 590, + "min_price": 163049, + "max_price": 271350, + "preferred_categories": [ + 6, + 9, + 10 + ] + }, + { + "user_id": 591, + "min_price": 190070, + "max_price": 463176, + "preferred_categories": [ + 3, + 5, + 11 + ] + }, + { + "user_id": 592, + "min_price": 115358, + "max_price": 239269, + "preferred_categories": [ + 7, + 8, + 12 + ] + }, + { + "user_id": 593, + "min_price": 80321, + "max_price": 492234, + "preferred_categories": [ + 6, + 7, + 8 + ] + }, + { + "user_id": 594, + "min_price": 150300, + "max_price": 447098, + "preferred_categories": [ + 3, + 9, + 11 + ] + }, + { + "user_id": 595, + "min_price": 191239, + "max_price": 289440, + "preferred_categories": [ + 2, + 4, + 7 + ] + }, + { + "user_id": 596, + "min_price": 181703, + "max_price": 395653, + "preferred_categories": [ + 6, + 7, + 9 + ] + }, + { + "user_id": 597, + "min_price": 39791, + "max_price": 413273, + "preferred_categories": [ + 4, + 5, + 7 + ] + }, + { + "user_id": 598, + "min_price": 56526, + "max_price": 225693, + "preferred_categories": [ + 2, + 7, + 12 + ] + }, + { + "user_id": 599, + "min_price": 135393, + "max_price": 457079, + "preferred_categories": [ + 3, + 9, + 11 + ] + }, + { + "user_id": 600, + "min_price": 92399, + "max_price": 406200, + "preferred_categories": [ + 3, + 6, + 12 + ] + }, + { + "user_id": 601, + "min_price": 55926, + "max_price": 391476, + "preferred_categories": [ + 4, + 7, + 10 + ] + }, + { + "user_id": 602, + "min_price": 98860, + "max_price": 425438, + "preferred_categories": [ + 6, + 7, + 9 + ] + }, + { + "user_id": 603, + "min_price": 120570, + "max_price": 334418, + "preferred_categories": [ + 1, + 9, + 12 + ] + }, + { + "user_id": 604, + "min_price": 28194, + "max_price": 348429, + "preferred_categories": [ + 1, + 2, + 8 + ] + }, + { + "user_id": 605, + "min_price": 37541, + "max_price": 400528, + "preferred_categories": [ + 4, + 5, + 7 + ] + }, + { + "user_id": 606, + "min_price": 42896, + "max_price": 319216, + "preferred_categories": [ + 6, + 10, + 12 + ] + }, + { + "user_id": 607, + "min_price": 46973, + "max_price": 480884, + "preferred_categories": [ + 5, + 9, + 12 + ] + }, + { + "user_id": 608, + "min_price": 197788, + "max_price": 319510, + "preferred_categories": [ + 1, + 4, + 12 + ] + }, + { + "user_id": 609, + "min_price": 74309, + "max_price": 311293, + "preferred_categories": [ + 3, + 4, + 10 + ] + }, + { + "user_id": 610, + "min_price": 181443, + "max_price": 393323, + "preferred_categories": [ + 3, + 7, + 11 + ] + }, + { + "user_id": 611, + "min_price": 145582, + "max_price": 311966, + "preferred_categories": [ + 1, + 5, + 10 + ] + }, + { + "user_id": 612, + "min_price": 90709, + "max_price": 406543, + "preferred_categories": [ + 5, + 10, + 11 + ] + }, + { + "user_id": 613, + "min_price": 155861, + "max_price": 302751, + "preferred_categories": [ + 2, + 9, + 11 + ] + }, + { + "user_id": 614, + "min_price": 47241, + "max_price": 207585, + "preferred_categories": [ + 6, + 9, + 11 + ] + }, + { + "user_id": 615, + "min_price": 21504, + "max_price": 275659, + "preferred_categories": [ + 4, + 6, + 11 + ] + }, + { + "user_id": 616, + "min_price": 28337, + "max_price": 406861, + "preferred_categories": [ + 5, + 8, + 9 + ] + }, + { + "user_id": 617, + "min_price": 158731, + "max_price": 362463, + "preferred_categories": [ + 5, + 8, + 9 + ] + }, + { + "user_id": 618, + "min_price": 30753, + "max_price": 411510, + "preferred_categories": [ + 6, + 8, + 10 + ] + }, + { + "user_id": 619, + "min_price": 143009, + "max_price": 485980, + "preferred_categories": [ + 5, + 6, + 7 + ] + }, + { + "user_id": 620, + "min_price": 110716, + "max_price": 220964, + "preferred_categories": [ + 2, + 4, + 7 + ] + }, + { + "user_id": 621, + "min_price": 151131, + "max_price": 315555, + "preferred_categories": [ + 5, + 7, + 9 + ] + }, + { + "user_id": 622, + "min_price": 68516, + "max_price": 471157, + "preferred_categories": [ + 1, + 3, + 5 + ] + }, + { + "user_id": 623, + "min_price": 61140, + "max_price": 406859, + "preferred_categories": [ + 2, + 6, + 11 + ] + }, + { + "user_id": 624, + "min_price": 152582, + "max_price": 464367, + "preferred_categories": [ + 5, + 10, + 11 + ] + }, + { + "user_id": 625, + "min_price": 71607, + "max_price": 384728, + "preferred_categories": [ + 2, + 8, + 9 + ] + }, + { + "user_id": 626, + "min_price": 43642, + "max_price": 442739, + "preferred_categories": [ + 2, + 4, + 12 + ] + }, + { + "user_id": 627, + "min_price": 39891, + "max_price": 345081, + "preferred_categories": [ + 8, + 9, + 10 + ] + }, + { + "user_id": 628, + "min_price": 151586, + "max_price": 356882, + "preferred_categories": [ + 9, + 10, + 11 + ] + }, + { + "user_id": 629, + "min_price": 51296, + "max_price": 467710, + "preferred_categories": [ + 5, + 9, + 12 + ] + }, + { + "user_id": 630, + "min_price": 133375, + "max_price": 320831, + "preferred_categories": [ + 7, + 8, + 11 + ] + }, + { + "user_id": 631, + "min_price": 98064, + "max_price": 277376, + "preferred_categories": [ + 8, + 10, + 11 + ] + }, + { + "user_id": 632, + "min_price": 92259, + "max_price": 336337, + "preferred_categories": [ + 4, + 8, + 12 + ] + }, + { + "user_id": 633, + "min_price": 12925, + "max_price": 205914, + "preferred_categories": [ + 2, + 7, + 9 + ] + }, + { + "user_id": 634, + "min_price": 180467, + "max_price": 334891, + "preferred_categories": [ + 2, + 3, + 4 + ] + }, + { + "user_id": 635, + "min_price": 93423, + "max_price": 293350, + "preferred_categories": [ + 1, + 6, + 11 + ] + }, + { + "user_id": 636, + "min_price": 102234, + "max_price": 248133, + "preferred_categories": [ + 4, + 10, + 11 + ] + }, + { + "user_id": 637, + "min_price": 66610, + "max_price": 463279, + "preferred_categories": [ + 6, + 10, + 12 + ] + }, + { + "user_id": 638, + "min_price": 144563, + "max_price": 233225, + "preferred_categories": [ + 5, + 6, + 10 + ] + }, + { + "user_id": 639, + "min_price": 24214, + "max_price": 480066, + "preferred_categories": [ + 1, + 5, + 9 + ] + }, + { + "user_id": 640, + "min_price": 68870, + "max_price": 298201, + "preferred_categories": [ + 2, + 9, + 12 + ] + }, + { + "user_id": 641, + "min_price": 22103, + "max_price": 316673, + "preferred_categories": [ + 6, + 10, + 11 + ] + }, + { + "user_id": 642, + "min_price": 113156, + "max_price": 435702, + "preferred_categories": [ + 1, + 10, + 12 + ] + }, + { + "user_id": 643, + "min_price": 131574, + "max_price": 382302, + "preferred_categories": [ + 4, + 5, + 6 + ] + }, + { + "user_id": 644, + "min_price": 103934, + "max_price": 308676, + "preferred_categories": [ + 1, + 6, + 9 + ] + }, + { + "user_id": 645, + "min_price": 88807, + "max_price": 424223, + "preferred_categories": [ + 2, + 8, + 9 + ] + }, + { + "user_id": 646, + "min_price": 44269, + "max_price": 447228, + "preferred_categories": [ + 2, + 6, + 11 + ] + }, + { + "user_id": 647, + "min_price": 55032, + "max_price": 277880, + "preferred_categories": [ + 1, + 7, + 11 + ] + }, + { + "user_id": 648, + "min_price": 158303, + "max_price": 222776, + "preferred_categories": [ + 6, + 9, + 10 + ] + }, + { + "user_id": 649, + "min_price": 61872, + "max_price": 472568, + "preferred_categories": [ + 1, + 6, + 12 + ] + }, + { + "user_id": 650, + "min_price": 106534, + "max_price": 326433, + "preferred_categories": [ + 1, + 4, + 12 + ] + }, + { + "user_id": 651, + "min_price": 90419, + "max_price": 339979, + "preferred_categories": [ + 2, + 5, + 6 + ] + }, + { + "user_id": 652, + "min_price": 137728, + "max_price": 444103, + "preferred_categories": [ + 3, + 5, + 10 + ] + }, + { + "user_id": 653, + "min_price": 109824, + "max_price": 453724, + "preferred_categories": [ + 4, + 8, + 12 + ] + }, + { + "user_id": 654, + "min_price": 127989, + "max_price": 487460, + "preferred_categories": [ + 1, + 2, + 8 + ] + }, + { + "user_id": 655, + "min_price": 182886, + "max_price": 483102, + "preferred_categories": [ + 2, + 4, + 11 + ] + }, + { + "user_id": 656, + "min_price": 127895, + "max_price": 249702, + "preferred_categories": [ + 7, + 10, + 12 + ] + }, + { + "user_id": 657, + "min_price": 61869, + "max_price": 474378, + "preferred_categories": [ + 6, + 9, + 10 + ] + }, + { + "user_id": 658, + "min_price": 145831, + "max_price": 362653, + "preferred_categories": [ + 8, + 10, + 11 + ] + }, + { + "user_id": 659, + "min_price": 71649, + "max_price": 370714, + "preferred_categories": [ + 6, + 8, + 10 + ] + }, + { + "user_id": 660, + "min_price": 28713, + "max_price": 258959, + "preferred_categories": [ + 2, + 6, + 7 + ] + }, + { + "user_id": 661, + "min_price": 24301, + "max_price": 405274, + "preferred_categories": [ + 7, + 8, + 9 + ] + }, + { + "user_id": 662, + "min_price": 99513, + "max_price": 220897, + "preferred_categories": [ + 1, + 3, + 4 + ] + }, + { + "user_id": 663, + "min_price": 156314, + "max_price": 454203, + "preferred_categories": [ + 9, + 11, + 12 + ] + }, + { + "user_id": 664, + "min_price": 164531, + "max_price": 462761, + "preferred_categories": [ + 4, + 8, + 11 + ] + }, + { + "user_id": 665, + "min_price": 59883, + "max_price": 325579, + "preferred_categories": [ + 6, + 9, + 11 + ] + }, + { + "user_id": 666, + "min_price": 154694, + "max_price": 473233, + "preferred_categories": [ + 3, + 4, + 9 + ] + }, + { + "user_id": 667, + "min_price": 199716, + "max_price": 420925, + "preferred_categories": [ + 1, + 6, + 10 + ] + }, + { + "user_id": 668, + "min_price": 106467, + "max_price": 200999, + "preferred_categories": [ + 2, + 3, + 7 + ] + }, + { + "user_id": 669, + "min_price": 124949, + "max_price": 251803, + "preferred_categories": [ + 1, + 2, + 6 + ] + }, + { + "user_id": 670, + "min_price": 29863, + "max_price": 498285, + "preferred_categories": [ + 2, + 9, + 11 + ] + }, + { + "user_id": 671, + "min_price": 122418, + "max_price": 262904, + "preferred_categories": [ + 2, + 6, + 8 + ] + }, + { + "user_id": 672, + "min_price": 59595, + "max_price": 422921, + "preferred_categories": [ + 6, + 7, + 11 + ] + }, + { + "user_id": 673, + "min_price": 177529, + "max_price": 420628, + "preferred_categories": [ + 1, + 9, + 11 + ] + }, + { + "user_id": 674, + "min_price": 104702, + "max_price": 324917, + "preferred_categories": [ + 4, + 6, + 9 + ] + }, + { + "user_id": 675, + "min_price": 75453, + "max_price": 430855, + "preferred_categories": [ + 5, + 7, + 11 + ] + }, + { + "user_id": 676, + "min_price": 74778, + "max_price": 285582, + "preferred_categories": [ + 1, + 2, + 7 + ] + }, + { + "user_id": 677, + "min_price": 49463, + "max_price": 496860, + "preferred_categories": [ + 2, + 6, + 7 + ] + }, + { + "user_id": 678, + "min_price": 187806, + "max_price": 423904, + "preferred_categories": [ + 2, + 5, + 11 + ] + }, + { + "user_id": 679, + "min_price": 36785, + "max_price": 204938, + "preferred_categories": [ + 1, + 3, + 4 + ] + }, + { + "user_id": 680, + "min_price": 196746, + "max_price": 375284, + "preferred_categories": [ + 5, + 8, + 9 + ] + }, + { + "user_id": 681, + "min_price": 29179, + "max_price": 244556, + "preferred_categories": [ + 5, + 10, + 12 + ] + }, + { + "user_id": 682, + "min_price": 127759, + "max_price": 229152, + "preferred_categories": [ + 7, + 8, + 12 + ] + }, + { + "user_id": 683, + "min_price": 64970, + "max_price": 361553, + "preferred_categories": [ + 3, + 5, + 11 + ] + }, + { + "user_id": 684, + "min_price": 113220, + "max_price": 271352, + "preferred_categories": [ + 3, + 4, + 12 + ] + }, + { + "user_id": 685, + "min_price": 74282, + "max_price": 295760, + "preferred_categories": [ + 1, + 5, + 9 + ] + }, + { + "user_id": 686, + "min_price": 33441, + "max_price": 318293, + "preferred_categories": [ + 7, + 8, + 11 + ] + }, + { + "user_id": 687, + "min_price": 40056, + "max_price": 383619, + "preferred_categories": [ + 3, + 9, + 12 + ] + }, + { + "user_id": 688, + "min_price": 136938, + "max_price": 314795, + "preferred_categories": [ + 5, + 7, + 11 + ] + }, + { + "user_id": 689, + "min_price": 189564, + "max_price": 478514, + "preferred_categories": [ + 4, + 5, + 10 + ] + }, + { + "user_id": 690, + "min_price": 188127, + "max_price": 404950, + "preferred_categories": [ + 4, + 5, + 6 + ] + }, + { + "user_id": 691, + "min_price": 106081, + "max_price": 445341, + "preferred_categories": [ + 1, + 4, + 5 + ] + }, + { + "user_id": 692, + "min_price": 77666, + "max_price": 449316, + "preferred_categories": [ + 1, + 3, + 6 + ] + }, + { + "user_id": 693, + "min_price": 138096, + "max_price": 302075, + "preferred_categories": [ + 6, + 7, + 8 + ] + }, + { + "user_id": 694, + "min_price": 36009, + "max_price": 456352, + "preferred_categories": [ + 4, + 7, + 11 + ] + }, + { + "user_id": 695, + "min_price": 92546, + "max_price": 490129, + "preferred_categories": [ + 2, + 9, + 11 + ] + }, + { + "user_id": 696, + "min_price": 55286, + "max_price": 433637, + "preferred_categories": [ + 2, + 5, + 6 + ] + }, + { + "user_id": 697, + "min_price": 31212, + "max_price": 210566, + "preferred_categories": [ + 7, + 9, + 12 + ] + }, + { + "user_id": 698, + "min_price": 122169, + "max_price": 402223, + "preferred_categories": [ + 2, + 3, + 7 + ] + }, + { + "user_id": 699, + "min_price": 198667, + "max_price": 244785, + "preferred_categories": [ + 1, + 10, + 12 + ] + }, + { + "user_id": 700, + "min_price": 166371, + "max_price": 402291, + "preferred_categories": [ + 6, + 9, + 12 + ] + }, + { + "user_id": 701, + "min_price": 78519, + "max_price": 313478, + "preferred_categories": [ + 2, + 8, + 11 + ] + }, + { + "user_id": 702, + "min_price": 134520, + "max_price": 438841, + "preferred_categories": [ + 1, + 3, + 9 + ] + }, + { + "user_id": 703, + "min_price": 70655, + "max_price": 213094, + "preferred_categories": [ + 5, + 9, + 12 + ] + }, + { + "user_id": 704, + "min_price": 43948, + "max_price": 350978, + "preferred_categories": [ + 3, + 4, + 8 + ] + }, + { + "user_id": 705, + "min_price": 172807, + "max_price": 254726, + "preferred_categories": [ + 7, + 9, + 10 + ] + }, + { + "user_id": 706, + "min_price": 189536, + "max_price": 434372, + "preferred_categories": [ + 4, + 11, + 12 + ] + }, + { + "user_id": 707, + "min_price": 80288, + "max_price": 345034, + "preferred_categories": [ + 2, + 9, + 11 + ] + }, + { + "user_id": 708, + "min_price": 187285, + "max_price": 232062, + "preferred_categories": [ + 2, + 5, + 9 + ] + }, + { + "user_id": 709, + "min_price": 19443, + "max_price": 411841, + "preferred_categories": [ + 6, + 8, + 10 + ] + }, + { + "user_id": 710, + "min_price": 18206, + "max_price": 453578, + "preferred_categories": [ + 2, + 5, + 11 + ] + }, + { + "user_id": 711, + "min_price": 176591, + "max_price": 241167, + "preferred_categories": [ + 6, + 11, + 12 + ] + }, + { + "user_id": 712, + "min_price": 166797, + "max_price": 371904, + "preferred_categories": [ + 9, + 10, + 12 + ] + }, + { + "user_id": 713, + "min_price": 73973, + "max_price": 496726, + "preferred_categories": [ + 1, + 7, + 12 + ] + }, + { + "user_id": 714, + "min_price": 39451, + "max_price": 285423, + "preferred_categories": [ + 1, + 2, + 9 + ] + }, + { + "user_id": 715, + "min_price": 76552, + "max_price": 235681, + "preferred_categories": [ + 2, + 7, + 11 + ] + }, + { + "user_id": 716, + "min_price": 172449, + "max_price": 204840, + "preferred_categories": [ + 7, + 8, + 9 + ] + }, + { + "user_id": 717, + "min_price": 175646, + "max_price": 405744, + "preferred_categories": [ + 1, + 2, + 3 + ] + }, + { + "user_id": 718, + "min_price": 116395, + "max_price": 247418, + "preferred_categories": [ + 1, + 7, + 10 + ] + }, + { + "user_id": 719, + "min_price": 54245, + "max_price": 268489, + "preferred_categories": [ + 5, + 7, + 11 + ] + }, + { + "user_id": 720, + "min_price": 165590, + "max_price": 328945, + "preferred_categories": [ + 3, + 10, + 12 + ] + }, + { + "user_id": 721, + "min_price": 141893, + "max_price": 410193, + "preferred_categories": [ + 6, + 7, + 10 + ] + }, + { + "user_id": 722, + "min_price": 40830, + "max_price": 345034, + "preferred_categories": [ + 1, + 3, + 5 + ] + }, + { + "user_id": 723, + "min_price": 64143, + "max_price": 364372, + "preferred_categories": [ + 4, + 5, + 12 + ] + }, + { + "user_id": 724, + "min_price": 129138, + "max_price": 290738, + "preferred_categories": [ + 2, + 3, + 8 + ] + }, + { + "user_id": 725, + "min_price": 85609, + "max_price": 338965, + "preferred_categories": [ + 2, + 6, + 8 + ] + }, + { + "user_id": 726, + "min_price": 143254, + "max_price": 467121, + "preferred_categories": [ + 5, + 11, + 12 + ] + }, + { + "user_id": 727, + "min_price": 27107, + "max_price": 389983, + "preferred_categories": [ + 2, + 7, + 10 + ] + }, + { + "user_id": 728, + "min_price": 56319, + "max_price": 483851, + "preferred_categories": [ + 4, + 5, + 10 + ] + }, + { + "user_id": 729, + "min_price": 165939, + "max_price": 424730, + "preferred_categories": [ + 1, + 2, + 4 + ] + }, + { + "user_id": 730, + "min_price": 48359, + "max_price": 249321, + "preferred_categories": [ + 2, + 3, + 7 + ] + }, + { + "user_id": 731, + "min_price": 81205, + "max_price": 307430, + "preferred_categories": [ + 1, + 2, + 11 + ] + }, + { + "user_id": 732, + "min_price": 37884, + "max_price": 347301, + "preferred_categories": [ + 1, + 3, + 9 + ] + }, + { + "user_id": 733, + "min_price": 110893, + "max_price": 203743, + "preferred_categories": [ + 5, + 6, + 9 + ] + }, + { + "user_id": 734, + "min_price": 183232, + "max_price": 292487, + "preferred_categories": [ + 1, + 5, + 9 + ] + }, + { + "user_id": 735, + "min_price": 39677, + "max_price": 322767, + "preferred_categories": [ + 1, + 5, + 11 + ] + }, + { + "user_id": 736, + "min_price": 80208, + "max_price": 358514, + "preferred_categories": [ + 4, + 6, + 8 + ] + }, + { + "user_id": 737, + "min_price": 139153, + "max_price": 427105, + "preferred_categories": [ + 2, + 5, + 9 + ] + }, + { + "user_id": 738, + "min_price": 63987, + "max_price": 357046, + "preferred_categories": [ + 4, + 5, + 11 + ] + }, + { + "user_id": 739, + "min_price": 26776, + "max_price": 307964, + "preferred_categories": [ + 1, + 3, + 12 + ] + }, + { + "user_id": 740, + "min_price": 39023, + "max_price": 316623, + "preferred_categories": [ + 2, + 9, + 10 + ] + }, + { + "user_id": 741, + "min_price": 62415, + "max_price": 228760, + "preferred_categories": [ + 1, + 8, + 10 + ] + }, + { + "user_id": 742, + "min_price": 150402, + "max_price": 338286, + "preferred_categories": [ + 1, + 2, + 7 + ] + }, + { + "user_id": 743, + "min_price": 154962, + "max_price": 438728, + "preferred_categories": [ + 1, + 5, + 11 + ] + }, + { + "user_id": 744, + "min_price": 192372, + "max_price": 404981, + "preferred_categories": [ + 5, + 9, + 11 + ] + }, + { + "user_id": 745, + "min_price": 25575, + "max_price": 359528, + "preferred_categories": [ + 2, + 7, + 9 + ] + }, + { + "user_id": 746, + "min_price": 163587, + "max_price": 349781, + "preferred_categories": [ + 1, + 3, + 9 + ] + }, + { + "user_id": 747, + "min_price": 59843, + "max_price": 385237, + "preferred_categories": [ + 8, + 10, + 11 + ] + }, + { + "user_id": 748, + "min_price": 183937, + "max_price": 384632, + "preferred_categories": [ + 5, + 6, + 10 + ] + }, + { + "user_id": 749, + "min_price": 148491, + "max_price": 306961, + "preferred_categories": [ + 5, + 6, + 8 + ] + }, + { + "user_id": 750, + "min_price": 30844, + "max_price": 396479, + "preferred_categories": [ + 5, + 9, + 10 + ] + }, + { + "user_id": 751, + "min_price": 189743, + "max_price": 353952, + "preferred_categories": [ + 6, + 11, + 12 + ] + }, + { + "user_id": 752, + "min_price": 72535, + "max_price": 458229, + "preferred_categories": [ + 2, + 7, + 12 + ] + }, + { + "user_id": 753, + "min_price": 162472, + "max_price": 423828, + "preferred_categories": [ + 3, + 5, + 8 + ] + }, + { + "user_id": 754, + "min_price": 195449, + "max_price": 369405, + "preferred_categories": [ + 6, + 9, + 11 + ] + }, + { + "user_id": 755, + "min_price": 59505, + "max_price": 394880, + "preferred_categories": [ + 1, + 7, + 11 + ] + }, + { + "user_id": 756, + "min_price": 75680, + "max_price": 216125, + "preferred_categories": [ + 3, + 4, + 6 + ] + }, + { + "user_id": 757, + "min_price": 185734, + "max_price": 269805, + "preferred_categories": [ + 2, + 3, + 7 + ] + }, + { + "user_id": 758, + "min_price": 157617, + "max_price": 413799, + "preferred_categories": [ + 6, + 7, + 9 + ] + }, + { + "user_id": 759, + "min_price": 181745, + "max_price": 302053, + "preferred_categories": [ + 6, + 7, + 12 + ] + }, + { + "user_id": 760, + "min_price": 167980, + "max_price": 473261, + "preferred_categories": [ + 3, + 8, + 12 + ] + }, + { + "user_id": 761, + "min_price": 106289, + "max_price": 445051, + "preferred_categories": [ + 1, + 2, + 3 + ] + }, + { + "user_id": 762, + "min_price": 132984, + "max_price": 212245, + "preferred_categories": [ + 2, + 10, + 11 + ] + }, + { + "user_id": 763, + "min_price": 113380, + "max_price": 480413, + "preferred_categories": [ + 3, + 10, + 12 + ] + }, + { + "user_id": 764, + "min_price": 53256, + "max_price": 352346, + "preferred_categories": [ + 5, + 6, + 11 + ] + }, + { + "user_id": 765, + "min_price": 26399, + "max_price": 449161, + "preferred_categories": [ + 2, + 8, + 10 + ] + }, + { + "user_id": 766, + "min_price": 66688, + "max_price": 400195, + "preferred_categories": [ + 1, + 5, + 6 + ] + }, + { + "user_id": 767, + "min_price": 41649, + "max_price": 360809, + "preferred_categories": [ + 2, + 3, + 12 + ] + }, + { + "user_id": 768, + "min_price": 143779, + "max_price": 487223, + "preferred_categories": [ + 3, + 5, + 10 + ] + }, + { + "user_id": 769, + "min_price": 163079, + "max_price": 364632, + "preferred_categories": [ + 4, + 9, + 10 + ] + }, + { + "user_id": 770, + "min_price": 116680, + "max_price": 332071, + "preferred_categories": [ + 1, + 5, + 7 + ] + }, + { + "user_id": 771, + "min_price": 89174, + "max_price": 396359, + "preferred_categories": [ + 1, + 3, + 8 + ] + }, + { + "user_id": 772, + "min_price": 92456, + "max_price": 320385, + "preferred_categories": [ + 3, + 4, + 6 + ] + }, + { + "user_id": 773, + "min_price": 93796, + "max_price": 380098, + "preferred_categories": [ + 2, + 9, + 10 + ] + }, + { + "user_id": 774, + "min_price": 102819, + "max_price": 385140, + "preferred_categories": [ + 1, + 2, + 11 + ] + }, + { + "user_id": 775, + "min_price": 163744, + "max_price": 473604, + "preferred_categories": [ + 6, + 7, + 10 + ] + }, + { + "user_id": 776, + "min_price": 178265, + "max_price": 296380, + "preferred_categories": [ + 7, + 8, + 12 + ] + }, + { + "user_id": 777, + "min_price": 187165, + "max_price": 217741, + "preferred_categories": [ + 2, + 7, + 11 + ] + }, + { + "user_id": 778, + "min_price": 141762, + "max_price": 468179, + "preferred_categories": [ + 3, + 5, + 11 + ] + }, + { + "user_id": 779, + "min_price": 157564, + "max_price": 265103, + "preferred_categories": [ + 1, + 7, + 10 + ] + }, + { + "user_id": 780, + "min_price": 57513, + "max_price": 318917, + "preferred_categories": [ + 5, + 6, + 12 + ] + }, + { + "user_id": 781, + "min_price": 73388, + "max_price": 335389, + "preferred_categories": [ + 3, + 7, + 12 + ] + }, + { + "user_id": 782, + "min_price": 41122, + "max_price": 344494, + "preferred_categories": [ + 2, + 5, + 11 + ] + }, + { + "user_id": 783, + "min_price": 43930, + "max_price": 468987, + "preferred_categories": [ + 1, + 6, + 10 + ] + }, + { + "user_id": 784, + "min_price": 64279, + "max_price": 480547, + "preferred_categories": [ + 2, + 8, + 9 + ] + }, + { + "user_id": 785, + "min_price": 122880, + "max_price": 375866, + "preferred_categories": [ + 8, + 10, + 11 + ] + }, + { + "user_id": 786, + "min_price": 138257, + "max_price": 438184, + "preferred_categories": [ + 2, + 9, + 12 + ] + }, + { + "user_id": 787, + "min_price": 42324, + "max_price": 221519, + "preferred_categories": [ + 1, + 6, + 7 + ] + }, + { + "user_id": 788, + "min_price": 114298, + "max_price": 207393, + "preferred_categories": [ + 1, + 2, + 9 + ] + }, + { + "user_id": 789, + "min_price": 168810, + "max_price": 356242, + "preferred_categories": [ + 9, + 10, + 11 + ] + }, + { + "user_id": 790, + "min_price": 87084, + "max_price": 394532, + "preferred_categories": [ + 2, + 10, + 12 + ] + }, + { + "user_id": 791, + "min_price": 160752, + "max_price": 322534, + "preferred_categories": [ + 5, + 6, + 10 + ] + }, + { + "user_id": 792, + "min_price": 177535, + "max_price": 296770, + "preferred_categories": [ + 2, + 7, + 8 + ] + }, + { + "user_id": 793, + "min_price": 181579, + "max_price": 359411, + "preferred_categories": [ + 7, + 9, + 10 + ] + }, + { + "user_id": 794, + "min_price": 147171, + "max_price": 215607, + "preferred_categories": [ + 5, + 6, + 9 + ] + }, + { + "user_id": 795, + "min_price": 29720, + "max_price": 252366, + "preferred_categories": [ + 3, + 8, + 12 + ] + }, + { + "user_id": 796, + "min_price": 62941, + "max_price": 481102, + "preferred_categories": [ + 1, + 3, + 6 + ] + }, + { + "user_id": 797, + "min_price": 165244, + "max_price": 264008, + "preferred_categories": [ + 6, + 8, + 11 + ] + }, + { + "user_id": 798, + "min_price": 198569, + "max_price": 344748, + "preferred_categories": [ + 1, + 3, + 6 + ] + }, + { + "user_id": 799, + "min_price": 95359, + "max_price": 491171, + "preferred_categories": [ + 1, + 4, + 6 + ] + }, + { + "user_id": 800, + "min_price": 95032, + "max_price": 213500, + "preferred_categories": [ + 8, + 9, + 12 + ] + }, + { + "user_id": 801, + "min_price": 132018, + "max_price": 450193, + "preferred_categories": [ + 1, + 5, + 6 + ] + }, + { + "user_id": 802, + "min_price": 154584, + "max_price": 341561, + "preferred_categories": [ + 6, + 9, + 12 + ] + }, + { + "user_id": 803, + "min_price": 180115, + "max_price": 491900, + "preferred_categories": [ + 4, + 7, + 12 + ] + }, + { + "user_id": 804, + "min_price": 151088, + "max_price": 206970, + "preferred_categories": [ + 2, + 4, + 9 + ] + }, + { + "user_id": 805, + "min_price": 25455, + "max_price": 316695, + "preferred_categories": [ + 5, + 9, + 11 + ] + }, + { + "user_id": 806, + "min_price": 34601, + "max_price": 382649, + "preferred_categories": [ + 1, + 2, + 10 + ] + }, + { + "user_id": 807, + "min_price": 194583, + "max_price": 256997, + "preferred_categories": [ + 2, + 6, + 8 + ] + }, + { + "user_id": 808, + "min_price": 184349, + "max_price": 365277, + "preferred_categories": [ + 2, + 6, + 9 + ] + }, + { + "user_id": 809, + "min_price": 152806, + "max_price": 485349, + "preferred_categories": [ + 2, + 4, + 11 + ] + }, + { + "user_id": 810, + "min_price": 53863, + "max_price": 480262, + "preferred_categories": [ + 2, + 4, + 6 + ] + }, + { + "user_id": 811, + "min_price": 95202, + "max_price": 486303, + "preferred_categories": [ + 2, + 3, + 8 + ] + }, + { + "user_id": 812, + "min_price": 55993, + "max_price": 258131, + "preferred_categories": [ + 8, + 11, + 12 + ] + }, + { + "user_id": 813, + "min_price": 126936, + "max_price": 463050, + "preferred_categories": [ + 2, + 6, + 8 + ] + }, + { + "user_id": 814, + "min_price": 29333, + "max_price": 270756, + "preferred_categories": [ + 3, + 7, + 12 + ] + }, + { + "user_id": 815, + "min_price": 109027, + "max_price": 231164, + "preferred_categories": [ + 1, + 6, + 7 + ] + }, + { + "user_id": 816, + "min_price": 33207, + "max_price": 463899, + "preferred_categories": [ + 2, + 3, + 11 + ] + }, + { + "user_id": 817, + "min_price": 123759, + "max_price": 399007, + "preferred_categories": [ + 2, + 7, + 11 + ] + }, + { + "user_id": 818, + "min_price": 61278, + "max_price": 417191, + "preferred_categories": [ + 2, + 6, + 11 + ] + }, + { + "user_id": 819, + "min_price": 130956, + "max_price": 343102, + "preferred_categories": [ + 2, + 4, + 11 + ] + }, + { + "user_id": 820, + "min_price": 117529, + "max_price": 444359, + "preferred_categories": [ + 2, + 3, + 8 + ] + }, + { + "user_id": 821, + "min_price": 148816, + "max_price": 456975, + "preferred_categories": [ + 1, + 6, + 12 + ] + }, + { + "user_id": 822, + "min_price": 127452, + "max_price": 281006, + "preferred_categories": [ + 4, + 7, + 12 + ] + }, + { + "user_id": 823, + "min_price": 100855, + "max_price": 397983, + "preferred_categories": [ + 2, + 5, + 8 + ] + }, + { + "user_id": 824, + "min_price": 76855, + "max_price": 355294, + "preferred_categories": [ + 2, + 8, + 9 + ] + }, + { + "user_id": 825, + "min_price": 194612, + "max_price": 422055, + "preferred_categories": [ + 1, + 4, + 9 + ] + }, + { + "user_id": 826, + "min_price": 97653, + "max_price": 214989, + "preferred_categories": [ + 6, + 9, + 11 + ] + }, + { + "user_id": 827, + "min_price": 157064, + "max_price": 269975, + "preferred_categories": [ + 1, + 5, + 6 + ] + }, + { + "user_id": 828, + "min_price": 152366, + "max_price": 494117, + "preferred_categories": [ + 1, + 5, + 9 + ] + }, + { + "user_id": 829, + "min_price": 65141, + "max_price": 231915, + "preferred_categories": [ + 3, + 5, + 6 + ] + }, + { + "user_id": 830, + "min_price": 198250, + "max_price": 458923, + "preferred_categories": [ + 1, + 6, + 9 + ] + }, + { + "user_id": 831, + "min_price": 141296, + "max_price": 389130, + "preferred_categories": [ + 2, + 3, + 6 + ] + }, + { + "user_id": 832, + "min_price": 42046, + "max_price": 470729, + "preferred_categories": [ + 3, + 5, + 12 + ] + }, + { + "user_id": 833, + "min_price": 30181, + "max_price": 474279, + "preferred_categories": [ + 1, + 7, + 11 + ] + }, + { + "user_id": 834, + "min_price": 98575, + "max_price": 406649, + "preferred_categories": [ + 4, + 10, + 11 + ] + }, + { + "user_id": 835, + "min_price": 184081, + "max_price": 267055, + "preferred_categories": [ + 1, + 7, + 11 + ] + }, + { + "user_id": 836, + "min_price": 156447, + "max_price": 276545, + "preferred_categories": [ + 4, + 5, + 12 + ] + }, + { + "user_id": 837, + "min_price": 36190, + "max_price": 482190, + "preferred_categories": [ + 4, + 7, + 9 + ] + }, + { + "user_id": 838, + "min_price": 199736, + "max_price": 370077, + "preferred_categories": [ + 2, + 5, + 8 + ] + }, + { + "user_id": 839, + "min_price": 154005, + "max_price": 231280, + "preferred_categories": [ + 2, + 4, + 9 + ] + }, + { + "user_id": 840, + "min_price": 71108, + "max_price": 495127, + "preferred_categories": [ + 2, + 6, + 9 + ] + }, + { + "user_id": 841, + "min_price": 151388, + "max_price": 379036, + "preferred_categories": [ + 2, + 3, + 6 + ] + }, + { + "user_id": 842, + "min_price": 166094, + "max_price": 275802, + "preferred_categories": [ + 1, + 6, + 11 + ] + }, + { + "user_id": 843, + "min_price": 65851, + "max_price": 382652, + "preferred_categories": [ + 2, + 3, + 8 + ] + }, + { + "user_id": 844, + "min_price": 19464, + "max_price": 442575, + "preferred_categories": [ + 3, + 4, + 10 + ] + }, + { + "user_id": 845, + "min_price": 124543, + "max_price": 250858, + "preferred_categories": [ + 1, + 4, + 12 + ] + }, + { + "user_id": 846, + "min_price": 103129, + "max_price": 337823, + "preferred_categories": [ + 5, + 8, + 11 + ] + }, + { + "user_id": 847, + "min_price": 144115, + "max_price": 245935, + "preferred_categories": [ + 8, + 10, + 12 + ] + }, + { + "user_id": 848, + "min_price": 14192, + "max_price": 370596, + "preferred_categories": [ + 5, + 6, + 9 + ] + }, + { + "user_id": 849, + "min_price": 20895, + "max_price": 399212, + "preferred_categories": [ + 2, + 3, + 6 + ] + }, + { + "user_id": 850, + "min_price": 166707, + "max_price": 476076, + "preferred_categories": [ + 4, + 7, + 12 + ] + }, + { + "user_id": 851, + "min_price": 130374, + "max_price": 467415, + "preferred_categories": [ + 4, + 5, + 9 + ] + }, + { + "user_id": 852, + "min_price": 159580, + "max_price": 367151, + "preferred_categories": [ + 1, + 7, + 9 + ] + }, + { + "user_id": 853, + "min_price": 97724, + "max_price": 320912, + "preferred_categories": [ + 4, + 7, + 12 + ] + }, + { + "user_id": 854, + "min_price": 36661, + "max_price": 227404, + "preferred_categories": [ + 2, + 4, + 12 + ] + }, + { + "user_id": 855, + "min_price": 178926, + "max_price": 216256, + "preferred_categories": [ + 5, + 10, + 12 + ] + }, + { + "user_id": 856, + "min_price": 80569, + "max_price": 387475, + "preferred_categories": [ + 7, + 9, + 11 + ] + }, + { + "user_id": 857, + "min_price": 26385, + "max_price": 249253, + "preferred_categories": [ + 3, + 5, + 8 + ] + }, + { + "user_id": 858, + "min_price": 176910, + "max_price": 375847, + "preferred_categories": [ + 6, + 7, + 10 + ] + }, + { + "user_id": 859, + "min_price": 82035, + "max_price": 251309, + "preferred_categories": [ + 8, + 9, + 12 + ] + }, + { + "user_id": 860, + "min_price": 50345, + "max_price": 384041, + "preferred_categories": [ + 6, + 8, + 9 + ] + }, + { + "user_id": 861, + "min_price": 106483, + "max_price": 477161, + "preferred_categories": [ + 5, + 7, + 10 + ] + }, + { + "user_id": 862, + "min_price": 27343, + "max_price": 218587, + "preferred_categories": [ + 1, + 3, + 12 + ] + }, + { + "user_id": 863, + "min_price": 71235, + "max_price": 284722, + "preferred_categories": [ + 3, + 4, + 11 + ] + }, + { + "user_id": 864, + "min_price": 138762, + "max_price": 223603, + "preferred_categories": [ + 1, + 3, + 7 + ] + }, + { + "user_id": 865, + "min_price": 13085, + "max_price": 399762, + "preferred_categories": [ + 5, + 6, + 9 + ] + }, + { + "user_id": 866, + "min_price": 114094, + "max_price": 299484, + "preferred_categories": [ + 1, + 2, + 12 + ] + }, + { + "user_id": 867, + "min_price": 70302, + "max_price": 407379, + "preferred_categories": [ + 2, + 5, + 8 + ] + }, + { + "user_id": 868, + "min_price": 137758, + "max_price": 292348, + "preferred_categories": [ + 4, + 8, + 9 + ] + }, + { + "user_id": 869, + "min_price": 138395, + "max_price": 287417, + "preferred_categories": [ + 4, + 7, + 9 + ] + }, + { + "user_id": 870, + "min_price": 66947, + "max_price": 200590, + "preferred_categories": [ + 3, + 5, + 12 + ] + }, + { + "user_id": 871, + "min_price": 85320, + "max_price": 440673, + "preferred_categories": [ + 2, + 8, + 11 + ] + }, + { + "user_id": 872, + "min_price": 116973, + "max_price": 356709, + "preferred_categories": [ + 2, + 4, + 7 + ] + }, + { + "user_id": 873, + "min_price": 186602, + "max_price": 386039, + "preferred_categories": [ + 1, + 3, + 4 + ] + }, + { + "user_id": 874, + "min_price": 75658, + "max_price": 270051, + "preferred_categories": [ + 5, + 8, + 9 + ] + }, + { + "user_id": 875, + "min_price": 164864, + "max_price": 436580, + "preferred_categories": [ + 5, + 6, + 10 + ] + }, + { + "user_id": 876, + "min_price": 113863, + "max_price": 202918, + "preferred_categories": [ + 1, + 2, + 8 + ] + }, + { + "user_id": 877, + "min_price": 149400, + "max_price": 318488, + "preferred_categories": [ + 1, + 4, + 8 + ] + }, + { + "user_id": 878, + "min_price": 140817, + "max_price": 315256, + "preferred_categories": [ + 4, + 8, + 9 + ] + }, + { + "user_id": 879, + "min_price": 18867, + "max_price": 489213, + "preferred_categories": [ + 2, + 4, + 8 + ] + }, + { + "user_id": 880, + "min_price": 70527, + "max_price": 446056, + "preferred_categories": [ + 1, + 11, + 12 + ] + }, + { + "user_id": 881, + "min_price": 106178, + "max_price": 409633, + "preferred_categories": [ + 8, + 11, + 12 + ] + }, + { + "user_id": 882, + "min_price": 49239, + "max_price": 451351, + "preferred_categories": [ + 9, + 10, + 12 + ] + }, + { + "user_id": 883, + "min_price": 15383, + "max_price": 215427, + "preferred_categories": [ + 4, + 7, + 10 + ] + }, + { + "user_id": 884, + "min_price": 31959, + "max_price": 406498, + "preferred_categories": [ + 2, + 10, + 12 + ] + }, + { + "user_id": 885, + "min_price": 108994, + "max_price": 365405, + "preferred_categories": [ + 2, + 4, + 7 + ] + }, + { + "user_id": 886, + "min_price": 104025, + "max_price": 280593, + "preferred_categories": [ + 1, + 3, + 12 + ] + }, + { + "user_id": 887, + "min_price": 182917, + "max_price": 275781, + "preferred_categories": [ + 1, + 2, + 10 + ] + }, + { + "user_id": 888, + "min_price": 51336, + "max_price": 278623, + "preferred_categories": [ + 1, + 8, + 12 + ] + }, + { + "user_id": 889, + "min_price": 137118, + "max_price": 479862, + "preferred_categories": [ + 1, + 9, + 12 + ] + }, + { + "user_id": 890, + "min_price": 109092, + "max_price": 371046, + "preferred_categories": [ + 4, + 9, + 12 + ] + }, + { + "user_id": 891, + "min_price": 133532, + "max_price": 226188, + "preferred_categories": [ + 2, + 7, + 8 + ] + }, + { + "user_id": 892, + "min_price": 178951, + "max_price": 413603, + "preferred_categories": [ + 4, + 5, + 6 + ] + }, + { + "user_id": 893, + "min_price": 191499, + "max_price": 330993, + "preferred_categories": [ + 2, + 7, + 8 + ] + }, + { + "user_id": 894, + "min_price": 144381, + "max_price": 487445, + "preferred_categories": [ + 2, + 4, + 6 + ] + }, + { + "user_id": 895, + "min_price": 102496, + "max_price": 446419, + "preferred_categories": [ + 2, + 7, + 8 + ] + }, + { + "user_id": 896, + "min_price": 159943, + "max_price": 411668, + "preferred_categories": [ + 9, + 10, + 12 + ] + }, + { + "user_id": 897, + "min_price": 49946, + "max_price": 274151, + "preferred_categories": [ + 7, + 9, + 11 + ] + }, + { + "user_id": 898, + "min_price": 173407, + "max_price": 454904, + "preferred_categories": [ + 6, + 8, + 10 + ] + }, + { + "user_id": 899, + "min_price": 42955, + "max_price": 468542, + "preferred_categories": [ + 6, + 8, + 10 + ] + }, + { + "user_id": 900, + "min_price": 61101, + "max_price": 317048, + "preferred_categories": [ + 6, + 8, + 12 + ] + }, + { + "user_id": 901, + "min_price": 74675, + "max_price": 385289, + "preferred_categories": [ + 1, + 6, + 11 + ] + }, + { + "user_id": 902, + "min_price": 72409, + "max_price": 266676, + "preferred_categories": [ + 3, + 7, + 8 + ] + }, + { + "user_id": 903, + "min_price": 100314, + "max_price": 254136, + "preferred_categories": [ + 2, + 5, + 9 + ] + }, + { + "user_id": 904, + "min_price": 151225, + "max_price": 314605, + "preferred_categories": [ + 1, + 5, + 8 + ] + }, + { + "user_id": 905, + "min_price": 45195, + "max_price": 459648, + "preferred_categories": [ + 6, + 9, + 10 + ] + }, + { + "user_id": 906, + "min_price": 86609, + "max_price": 295585, + "preferred_categories": [ + 2, + 7, + 11 + ] + }, + { + "user_id": 907, + "min_price": 75883, + "max_price": 371041, + "preferred_categories": [ + 3, + 7, + 9 + ] + }, + { + "user_id": 908, + "min_price": 57193, + "max_price": 371542, + "preferred_categories": [ + 4, + 8, + 10 + ] + }, + { + "user_id": 909, + "min_price": 32255, + "max_price": 419290, + "preferred_categories": [ + 5, + 6, + 12 + ] + }, + { + "user_id": 910, + "min_price": 154274, + "max_price": 332905, + "preferred_categories": [ + 2, + 7, + 8 + ] + }, + { + "user_id": 911, + "min_price": 92842, + "max_price": 396616, + "preferred_categories": [ + 1, + 2, + 8 + ] + }, + { + "user_id": 912, + "min_price": 72568, + "max_price": 225868, + "preferred_categories": [ + 4, + 5, + 11 + ] + }, + { + "user_id": 913, + "min_price": 158045, + "max_price": 483313, + "preferred_categories": [ + 3, + 8, + 9 + ] + }, + { + "user_id": 914, + "min_price": 59021, + "max_price": 409500, + "preferred_categories": [ + 8, + 9, + 10 + ] + }, + { + "user_id": 915, + "min_price": 136188, + "max_price": 347719, + "preferred_categories": [ + 1, + 3, + 6 + ] + }, + { + "user_id": 916, + "min_price": 70254, + "max_price": 300122, + "preferred_categories": [ + 3, + 5, + 7 + ] + }, + { + "user_id": 917, + "min_price": 172369, + "max_price": 306186, + "preferred_categories": [ + 7, + 10, + 11 + ] + }, + { + "user_id": 918, + "min_price": 48222, + "max_price": 317909, + "preferred_categories": [ + 8, + 9, + 10 + ] + }, + { + "user_id": 919, + "min_price": 51965, + "max_price": 243993, + "preferred_categories": [ + 7, + 11, + 12 + ] + }, + { + "user_id": 920, + "min_price": 172458, + "max_price": 322095, + "preferred_categories": [ + 1, + 2, + 7 + ] + }, + { + "user_id": 921, + "min_price": 60419, + "max_price": 305860, + "preferred_categories": [ + 3, + 4, + 12 + ] + }, + { + "user_id": 922, + "min_price": 24312, + "max_price": 399045, + "preferred_categories": [ + 1, + 4, + 12 + ] + }, + { + "user_id": 923, + "min_price": 25075, + "max_price": 466188, + "preferred_categories": [ + 5, + 6, + 12 + ] + }, + { + "user_id": 924, + "min_price": 44907, + "max_price": 328821, + "preferred_categories": [ + 1, + 9, + 12 + ] + }, + { + "user_id": 925, + "min_price": 194685, + "max_price": 392780, + "preferred_categories": [ + 2, + 9, + 10 + ] + }, + { + "user_id": 926, + "min_price": 186881, + "max_price": 263701, + "preferred_categories": [ + 5, + 7, + 11 + ] + }, + { + "user_id": 927, + "min_price": 149804, + "max_price": 485278, + "preferred_categories": [ + 2, + 3, + 9 + ] + }, + { + "user_id": 928, + "min_price": 25740, + "max_price": 265979, + "preferred_categories": [ + 5, + 7, + 12 + ] + }, + { + "user_id": 929, + "min_price": 13802, + "max_price": 296060, + "preferred_categories": [ + 2, + 3, + 5 + ] + }, + { + "user_id": 930, + "min_price": 183938, + "max_price": 314827, + "preferred_categories": [ + 2, + 3, + 10 + ] + }, + { + "user_id": 931, + "min_price": 75977, + "max_price": 327857, + "preferred_categories": [ + 1, + 4, + 6 + ] + }, + { + "user_id": 932, + "min_price": 195946, + "max_price": 336696, + "preferred_categories": [ + 3, + 9, + 10 + ] + }, + { + "user_id": 933, + "min_price": 61627, + "max_price": 381827, + "preferred_categories": [ + 5, + 10, + 12 + ] + }, + { + "user_id": 934, + "min_price": 37800, + "max_price": 402772, + "preferred_categories": [ + 5, + 10, + 11 + ] + }, + { + "user_id": 935, + "min_price": 103666, + "max_price": 419875, + "preferred_categories": [ + 4, + 5, + 10 + ] + }, + { + "user_id": 936, + "min_price": 147215, + "max_price": 370256, + "preferred_categories": [ + 3, + 8, + 10 + ] + }, + { + "user_id": 937, + "min_price": 81170, + "max_price": 499515, + "preferred_categories": [ + 2, + 4, + 9 + ] + }, + { + "user_id": 938, + "min_price": 123869, + "max_price": 489669, + "preferred_categories": [ + 3, + 4, + 9 + ] + }, + { + "user_id": 939, + "min_price": 157598, + "max_price": 318548, + "preferred_categories": [ + 8, + 9, + 10 + ] + }, + { + "user_id": 940, + "min_price": 73800, + "max_price": 378058, + "preferred_categories": [ + 3, + 8, + 12 + ] + }, + { + "user_id": 941, + "min_price": 155387, + "max_price": 295093, + "preferred_categories": [ + 4, + 7, + 10 + ] + }, + { + "user_id": 942, + "min_price": 77953, + "max_price": 255137, + "preferred_categories": [ + 4, + 10, + 12 + ] + }, + { + "user_id": 943, + "min_price": 175620, + "max_price": 460003, + "preferred_categories": [ + 3, + 7, + 8 + ] + }, + { + "user_id": 944, + "min_price": 67087, + "max_price": 435210, + "preferred_categories": [ + 7, + 9, + 10 + ] + }, + { + "user_id": 945, + "min_price": 21594, + "max_price": 408719, + "preferred_categories": [ + 9, + 11, + 12 + ] + }, + { + "user_id": 946, + "min_price": 64387, + "max_price": 442983, + "preferred_categories": [ + 1, + 5, + 9 + ] + }, + { + "user_id": 947, + "min_price": 170553, + "max_price": 417183, + "preferred_categories": [ + 1, + 3, + 4 + ] + }, + { + "user_id": 948, + "min_price": 60047, + "max_price": 245504, + "preferred_categories": [ + 6, + 8, + 9 + ] + }, + { + "user_id": 949, + "min_price": 99657, + "max_price": 253896, + "preferred_categories": [ + 1, + 2, + 8 + ] + }, + { + "user_id": 950, + "min_price": 78417, + "max_price": 360681, + "preferred_categories": [ + 6, + 9, + 12 + ] + }, + { + "user_id": 951, + "min_price": 140616, + "max_price": 217587, + "preferred_categories": [ + 2, + 3, + 9 + ] + }, + { + "user_id": 952, + "min_price": 26457, + "max_price": 399434, + "preferred_categories": [ + 2, + 6, + 7 + ] + }, + { + "user_id": 953, + "min_price": 142051, + "max_price": 311115, + "preferred_categories": [ + 1, + 5, + 7 + ] + }, + { + "user_id": 954, + "min_price": 130072, + "max_price": 468873, + "preferred_categories": [ + 8, + 9, + 11 + ] + }, + { + "user_id": 955, + "min_price": 54418, + "max_price": 387628, + "preferred_categories": [ + 3, + 6, + 10 + ] + }, + { + "user_id": 956, + "min_price": 79285, + "max_price": 311418, + "preferred_categories": [ + 3, + 6, + 12 + ] + }, + { + "user_id": 957, + "min_price": 153537, + "max_price": 282189, + "preferred_categories": [ + 1, + 6, + 9 + ] + }, + { + "user_id": 958, + "min_price": 113714, + "max_price": 242619, + "preferred_categories": [ + 7, + 9, + 12 + ] + }, + { + "user_id": 959, + "min_price": 187624, + "max_price": 326593, + "preferred_categories": [ + 5, + 7, + 11 + ] + }, + { + "user_id": 960, + "min_price": 105388, + "max_price": 219358, + "preferred_categories": [ + 1, + 7, + 8 + ] + }, + { + "user_id": 961, + "min_price": 34643, + "max_price": 212481, + "preferred_categories": [ + 7, + 9, + 10 + ] + }, + { + "user_id": 962, + "min_price": 142931, + "max_price": 493117, + "preferred_categories": [ + 6, + 8, + 10 + ] + }, + { + "user_id": 963, + "min_price": 79402, + "max_price": 256384, + "preferred_categories": [ + 3, + 10, + 11 + ] + }, + { + "user_id": 964, + "min_price": 99297, + "max_price": 496916, + "preferred_categories": [ + 1, + 6, + 11 + ] + }, + { + "user_id": 965, + "min_price": 174792, + "max_price": 423393, + "preferred_categories": [ + 2, + 7, + 8 + ] + }, + { + "user_id": 966, + "min_price": 177801, + "max_price": 473484, + "preferred_categories": [ + 1, + 5, + 6 + ] + }, + { + "user_id": 967, + "min_price": 80404, + "max_price": 371779, + "preferred_categories": [ + 5, + 10, + 11 + ] + }, + { + "user_id": 968, + "min_price": 71324, + "max_price": 384400, + "preferred_categories": [ + 3, + 9, + 12 + ] + }, + { + "user_id": 969, + "min_price": 143787, + "max_price": 217937, + "preferred_categories": [ + 1, + 5, + 10 + ] + }, + { + "user_id": 970, + "min_price": 98135, + "max_price": 213566, + "preferred_categories": [ + 1, + 6, + 10 + ] + }, + { + "user_id": 971, + "min_price": 56182, + "max_price": 289192, + "preferred_categories": [ + 2, + 7, + 8 + ] + }, + { + "user_id": 972, + "min_price": 73657, + "max_price": 403598, + "preferred_categories": [ + 3, + 6, + 8 + ] + }, + { + "user_id": 973, + "min_price": 130990, + "max_price": 284210, + "preferred_categories": [ + 1, + 4, + 8 + ] + }, + { + "user_id": 974, + "min_price": 40083, + "max_price": 401410, + "preferred_categories": [ + 2, + 7, + 11 + ] + }, + { + "user_id": 975, + "min_price": 22859, + "max_price": 337305, + "preferred_categories": [ + 4, + 10, + 12 + ] + }, + { + "user_id": 976, + "min_price": 158974, + "max_price": 226419, + "preferred_categories": [ + 4, + 6, + 12 + ] + }, + { + "user_id": 977, + "min_price": 105993, + "max_price": 316248, + "preferred_categories": [ + 4, + 7, + 9 + ] + }, + { + "user_id": 978, + "min_price": 180018, + "max_price": 319823, + "preferred_categories": [ + 6, + 8, + 10 + ] + }, + { + "user_id": 979, + "min_price": 123010, + "max_price": 468990, + "preferred_categories": [ + 2, + 4, + 12 + ] + }, + { + "user_id": 980, + "min_price": 147220, + "max_price": 403627, + "preferred_categories": [ + 7, + 9, + 11 + ] + }, + { + "user_id": 981, + "min_price": 57958, + "max_price": 317225, + "preferred_categories": [ + 5, + 6, + 11 + ] + }, + { + "user_id": 982, + "min_price": 168922, + "max_price": 229734, + "preferred_categories": [ + 4, + 8, + 10 + ] + }, + { + "user_id": 983, + "min_price": 155375, + "max_price": 468070, + "preferred_categories": [ + 4, + 7, + 8 + ] + }, + { + "user_id": 984, + "min_price": 174360, + "max_price": 252884, + "preferred_categories": [ + 4, + 9, + 12 + ] + }, + { + "user_id": 985, + "min_price": 100568, + "max_price": 466428, + "preferred_categories": [ + 6, + 10, + 12 + ] + }, + { + "user_id": 986, + "min_price": 72172, + "max_price": 452565, + "preferred_categories": [ + 6, + 7, + 12 + ] + }, + { + "user_id": 987, + "min_price": 170895, + "max_price": 220362, + "preferred_categories": [ + 4, + 7, + 11 + ] + }, + { + "user_id": 988, + "min_price": 101907, + "max_price": 270701, + "preferred_categories": [ + 6, + 8, + 11 + ] + }, + { + "user_id": 989, + "min_price": 45376, + "max_price": 391764, + "preferred_categories": [ + 3, + 4, + 5 + ] + }, + { + "user_id": 990, + "min_price": 145908, + "max_price": 305302, + "preferred_categories": [ + 6, + 9, + 10 + ] + }, + { + "user_id": 991, + "min_price": 130869, + "max_price": 356465, + "preferred_categories": [ + 1, + 4, + 9 + ] + }, + { + "user_id": 992, + "min_price": 156699, + "max_price": 260584, + "preferred_categories": [ + 6, + 8, + 10 + ] + }, + { + "user_id": 993, + "min_price": 101853, + "max_price": 264824, + "preferred_categories": [ + 4, + 7, + 9 + ] + }, + { + "user_id": 994, + "min_price": 55028, + "max_price": 229223, + "preferred_categories": [ + 1, + 5, + 9 + ] + }, + { + "user_id": 995, + "min_price": 14602, + "max_price": 226950, + "preferred_categories": [ + 4, + 10, + 11 + ] + }, + { + "user_id": 996, + "min_price": 36439, + "max_price": 280148, + "preferred_categories": [ + 5, + 9, + 12 + ] + }, + { + "user_id": 997, + "min_price": 51432, + "max_price": 254227, + "preferred_categories": [ + 7, + 10, + 12 + ] + }, + { + "user_id": 998, + "min_price": 168755, + "max_price": 404381, + "preferred_categories": [ + 1, + 9, + 12 + ] + }, + { + "user_id": 999, + "min_price": 17476, + "max_price": 265544, + "preferred_categories": [ + 2, + 4, + 6 + ] + }, + { + "user_id": 1000, + "min_price": 67260, + "max_price": 348762, + "preferred_categories": [ + 4, + 5, + 12 + ] + }, + { + "user_id": 1004, + "min_price": 10000, + "max_price": 90000, + "preferred_categories": [ + 1, + 2, + 3 + ] + }, + { + "user_id": 1005, + "min_price": 10000, + "max_price": 500000, + "preferred_categories": [ + 2, + 5, + 8 + ] + } +] \ No newline at end of file diff --git a/storage/output_feedback_json/.gitkeep b/storage/output_feedback_json/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/storage/output_feedback_json/Final_Reservation_Table.csv b/storage/output_feedback_json/Final_Reservation_Table.csv new file mode 100644 index 0000000..2d4a559 --- /dev/null +++ b/storage/output_feedback_json/Final_Reservation_Table.csv @@ -0,0 +1,283 @@ +reservation_date,created_at,id,reservation_time_id,restaurant_id,seat_type_id,user_id,status +2025.01.04,2025-03-10 05:56:04,1,7,56,1,1,COMPLETED +2025.30.04,2025-03-10 05:56:04,2,5,480,3,1,COMPLETED +2025.28.03,2025-03-10 05:56:04,3,10,258,1,1,CANCELED +2025.09.04,2025-03-10 05:56:04,4,2,604,1,1,COMPLETED +2025.22.04,2025-03-10 05:56:04,5,8,1028,1,1,COMPLETED +2025.22.04,2025-03-10 05:56:04,6,2,1175,3,2,COMPLETED +2025.03.03,2025-03-10 05:56:04,7,2,583,3,2,COMPLETED +2025.08.03,2025-03-10 05:56:04,8,1,326,2,2,COMPLETED +2025.11.04,2025-03-10 05:56:04,9,5,420,1,2,COMPLETED +2025.24.03,2025-03-10 05:56:04,10,1,821,2,2,COMPLETED +2025.31.03,2025-03-10 05:56:04,11,10,638,1,3,COMPLETED +2025.31.03,2025-03-10 05:56:04,12,3,248,2,4,COMPLETED +2025.08.03,2025-03-10 05:56:04,13,10,1653,2,4,COMPLETED +2025.21.04,2025-03-10 05:56:04,14,6,899,2,4,COMPLETED +2025.16.03,2025-03-10 05:56:04,15,2,292,3,4,COMPLETED +2025.19.03,2025-03-10 05:56:04,16,4,1,1,5,COMPLETED +2025.30.03,2025-03-10 05:56:04,17,8,507,2,5,COMPLETED +2025.26.03,2025-03-10 05:56:04,18,9,113,2,5,COMPLETED +2025.05.03,2025-03-10 05:56:04,19,9,1235,3,5,COMPLETED +2025.06.04,2025-03-10 05:56:04,20,9,577,3,5,CANCELED +2025.03.03,2025-03-10 05:56:04,21,6,21,2,6,COMPLETED +2025.14.03,2025-03-10 05:56:04,22,10,499,1,6,COMPLETED +2025.15.04,2025-03-10 05:56:04,23,11,1796,2,6,COMPLETED +2025.09.03,2025-03-10 05:56:04,24,3,1040,1,6,COMPLETED +2025.25.03,2025-03-10 05:56:04,25,5,418,1,7,CANCELED +2025.30.04,2025-03-10 05:56:04,26,10,1734,2,7,COMPLETED +2025.02.03,2025-03-10 05:56:04,27,11,2041,2,7,COMPLETED +2025.31.03,2025-03-10 05:56:04,28,10,2021,2,7,COMPLETED +2025.08.03,2025-03-10 05:56:04,29,5,271,3,7,COMPLETED +2025.24.04,2025-03-10 05:56:04,30,11,1626,2,8,COMPLETED +2025.21.04,2025-03-10 05:56:04,31,10,2166,3,8,COMPLETED +2025.30.04,2025-03-10 05:56:04,32,5,637,2,9,COMPLETED +2025.13.04,2025-03-10 05:56:04,33,4,1670,2,9,CANCELED +2025.25.03,2025-03-10 05:56:04,34,10,954,1,9,COMPLETED +2025.22.03,2025-03-10 05:56:04,35,8,1936,2,9,COMPLETED +2025.25.04,2025-03-10 05:56:04,36,7,501,1,10,COMPLETED +2025.22.03,2025-03-10 05:56:04,37,3,1444,1,10,COMPLETED +2025.06.04,2025-03-10 05:56:04,38,4,230,3,10,CANCELED +2025.15.03,2025-03-10 05:56:04,39,9,2176,3,10,COMPLETED +2025.02.03,2025-03-10 05:56:04,40,6,864,1,12,COMPLETED +2025.27.04,2025-03-10 05:56:04,41,3,468,3,12,COMPLETED +2025.23.04,2025-03-10 05:56:04,42,10,768,3,12,COMPLETED +2025.10.04,2025-03-10 05:56:04,43,2,1064,2,12,COMPLETED +2025.17.03,2025-03-10 05:56:04,44,9,152,1,13,COMPLETED +2025.15.03,2025-03-10 05:56:04,45,7,1537,1,13,COMPLETED +2025.14.04,2025-03-10 05:56:04,46,4,1790,1,13,COMPLETED +2025.18.04,2025-03-10 05:56:04,47,2,1702,1,13,COMPLETED +2025.25.03,2025-03-10 05:56:04,48,4,441,2,13,COMPLETED +2025.20.03,2025-03-10 05:56:04,49,3,2148,1,14,COMPLETED +2025.17.03,2025-03-10 05:56:04,50,1,1539,3,14,FAILED +2025.28.04,2025-03-10 05:56:04,51,9,2248,2,14,COMPLETED +2025.01.03,2025-03-10 05:56:04,52,11,1208,2,14,COMPLETED +2025.09.03,2025-03-10 05:56:04,53,1,261,1,14,COMPLETED +2025.31.03,2025-03-10 05:56:04,54,6,1693,1,15,COMPLETED +2025.12.04,2025-03-10 05:56:04,55,7,1607,2,16,COMPLETED +2025.17.03,2025-03-10 05:56:04,56,6,1916,3,16,COMPLETED +2025.24.03,2025-03-10 05:56:04,57,11,586,1,17,COMPLETED +2025.18.03,2025-03-10 05:56:04,58,2,1901,2,17,COMPLETED +2025.18.03,2025-03-10 05:56:04,59,7,1623,2,18,COMPLETED +2025.25.04,2025-03-10 05:56:04,60,3,1460,3,19,COMPLETED +2025.27.03,2025-03-10 05:56:04,61,1,684,2,19,COMPLETED +2025.20.04,2025-03-10 05:56:04,62,9,7,3,20,COMPLETED +2025.10.03,2025-03-10 05:56:04,63,9,1021,2,21,COMPLETED +2025.13.03,2025-03-10 05:56:04,64,2,905,2,21,COMPLETED +2025.30.04,2025-03-10 05:56:04,65,4,257,1,22,COMPLETED +2025.13.03,2025-03-10 05:56:04,66,8,2162,1,22,COMPLETED +2025.05.03,2025-03-10 05:56:04,67,6,606,2,22,COMPLETED +2025.22.04,2025-03-10 05:56:04,68,2,2010,2,22,COMPLETED +2025.12.04,2025-03-10 05:56:04,69,6,477,3,22,COMPLETED +2025.28.03,2025-03-10 05:56:04,70,3,1076,3,23,COMPLETED +2025.10.03,2025-03-10 05:56:04,71,6,1255,1,23,COMPLETED +2025.02.04,2025-03-10 05:56:04,72,2,1870,3,24,COMPLETED +2025.14.04,2025-03-10 05:56:04,73,4,1276,1,24,COMPLETED +2025.26.03,2025-03-10 05:56:04,74,7,1772,2,24,COMPLETED +2025.25.03,2025-03-10 05:56:04,75,5,1128,1,25,CANCELED +2025.03.03,2025-03-10 05:56:04,76,3,1360,3,26,COMPLETED +2025.19.03,2025-03-10 05:56:04,77,9,1686,2,26,COMPLETED +2025.03.03,2025-03-10 05:56:04,78,10,2092,2,27,CANCELED +2025.11.04,2025-03-10 05:56:04,79,4,1892,1,28,CANCELED +2025.01.04,2025-03-10 05:56:04,80,1,876,3,28,COMPLETED +2025.15.03,2025-03-10 05:56:04,81,8,2128,3,28,COMPLETED +2025.13.04,2025-03-10 05:56:04,82,3,1993,3,29,COMPLETED +2025.17.04,2025-03-10 05:56:04,83,2,41,1,30,COMPLETED +2025.27.04,2025-03-10 05:56:04,84,2,1955,1,30,COMPLETED +2025.09.03,2025-03-10 05:56:04,85,9,2164,2,30,COMPLETED +2025.07.03,2025-03-10 05:56:04,86,6,2213,3,30,COMPLETED +2025.08.04,2025-03-10 05:56:04,87,3,361,2,31,COMPLETED +2025.12.04,2025-03-10 05:56:04,88,5,150,1,32,COMPLETED +2025.13.03,2025-03-10 05:56:04,89,6,1764,3,32,COMPLETED +2025.11.03,2025-03-10 05:56:04,90,1,1837,1,32,COMPLETED +2025.26.03,2025-03-10 05:56:04,91,5,63,2,33,COMPLETED +2025.09.03,2025-03-10 05:56:04,92,1,703,2,33,COMPLETED +2025.17.04,2025-03-10 05:56:04,93,4,1061,1,33,COMPLETED +2025.25.03,2025-03-10 05:56:04,94,7,1857,3,35,COMPLETED +2025.14.04,2025-03-10 05:56:04,95,4,2234,1,36,COMPLETED +2025.27.04,2025-03-10 05:56:04,96,11,1866,1,36,COMPLETED +2025.16.04,2025-03-10 05:56:04,97,7,1143,3,36,COMPLETED +2025.03.04,2025-03-10 05:56:04,98,9,1322,3,36,FAILED +2025.30.04,2025-03-10 05:56:04,99,3,1491,2,37,CANCELED +2025.26.04,2025-03-10 05:56:04,100,2,484,2,37,CANCELED +2025.21.03,2025-03-10 05:56:04,101,8,1691,1,37,CANCELED +2025.13.03,2025-03-10 05:56:04,102,6,512,1,37,COMPLETED +2025.23.04,2025-03-10 05:56:04,103,7,2102,3,38,CANCELED +2025.23.03,2025-03-10 05:56:04,104,4,553,1,39,COMPLETED +2025.02.03,2025-03-10 05:56:04,105,8,1450,2,39,COMPLETED +2025.21.04,2025-03-10 05:56:04,106,11,492,2,39,COMPLETED +2025.24.04,2025-03-10 05:56:04,107,9,1431,3,40,COMPLETED +2025.06.03,2025-03-10 05:56:04,108,11,2048,2,40,COMPLETED +2025.07.04,2025-03-10 05:56:04,109,8,604,1,40,COMPLETED +2025.02.04,2025-03-10 05:56:04,110,3,1526,3,41,COMPLETED +2025.15.03,2025-03-10 05:56:04,111,2,706,2,41,COMPLETED +2025.06.03,2025-03-10 05:56:04,112,9,863,3,41,COMPLETED +2025.21.03,2025-03-10 05:56:04,113,11,230,2,41,COMPLETED +2025.07.03,2025-03-10 05:56:04,114,8,235,3,42,COMPLETED +2025.16.04,2025-03-10 05:56:04,115,4,1248,2,43,CANCELED +2025.18.03,2025-03-10 05:56:04,116,3,320,3,44,COMPLETED +2025.14.03,2025-03-10 05:56:04,117,2,2007,3,44,COMPLETED +2025.02.04,2025-03-10 05:56:04,118,9,1632,3,44,COMPLETED +2025.05.04,2025-03-10 05:56:04,119,2,1737,2,44,COMPLETED +2025.18.03,2025-03-10 05:56:04,120,1,1890,1,45,COMPLETED +2025.25.03,2025-03-10 05:56:04,121,1,1719,3,45,COMPLETED +2025.14.03,2025-03-10 05:56:04,122,10,171,3,45,COMPLETED +2025.24.03,2025-03-10 05:56:04,123,8,732,2,45,COMPLETED +2025.27.04,2025-03-10 05:56:04,124,8,1482,1,46,COMPLETED +2025.23.03,2025-03-10 05:56:04,125,2,24,2,46,COMPLETED +2025.24.03,2025-03-10 05:56:04,126,2,199,2,46,COMPLETED +2025.04.03,2025-03-10 05:56:04,127,7,251,1,46,COMPLETED +2025.20.04,2025-03-10 05:56:04,128,8,206,3,46,COMPLETED +2025.14.03,2025-03-10 05:56:04,129,4,1610,1,47,COMPLETED +2025.16.03,2025-03-10 05:56:04,130,2,2175,3,47,COMPLETED +2025.09.04,2025-03-10 05:56:04,131,10,1478,3,47,COMPLETED +2025.09.03,2025-03-10 05:56:04,132,6,13,3,48,COMPLETED +2025.10.04,2025-03-10 05:56:04,133,4,1415,2,48,COMPLETED +2025.09.03,2025-03-10 05:56:04,134,4,1344,3,48,CANCELED +2025.11.03,2025-03-10 05:56:04,135,7,1801,2,48,COMPLETED +2025.04.04,2025-03-10 05:56:04,136,2,942,2,48,COMPLETED +2025.01.04,2025-03-10 05:56:04,137,9,1192,1,49,FAILED +2025.20.03,2025-03-10 05:56:04,138,7,260,2,49,COMPLETED +2025.18.03,2025-03-10 05:56:04,139,11,373,3,49,COMPLETED +2025.22.04,2025-03-10 05:56:04,140,2,1967,3,49,COMPLETED +2025.02.03,2025-03-10 05:56:04,141,7,1972,2,51,COMPLETED +2025.25.03,2025-03-10 05:56:04,142,2,556,1,51,CANCELED +2025.06.03,2025-03-10 05:56:04,143,11,2114,1,51,COMPLETED +2025.28.04,2025-03-10 05:56:04,144,1,1714,3,51,COMPLETED +2025.02.04,2025-03-10 05:56:04,145,11,1056,3,51,COMPLETED +2025.16.03,2025-03-10 05:56:04,146,9,1545,1,52,COMPLETED +2025.28.03,2025-03-10 05:56:04,147,10,806,3,52,COMPLETED +2025.21.04,2025-03-10 05:56:04,148,10,201,1,52,COMPLETED +2025.25.03,2025-03-10 05:56:04,149,6,541,3,53,FAILED +2025.12.04,2025-03-10 05:56:04,150,11,1977,2,54,COMPLETED +2025.28.04,2025-03-10 05:56:04,151,6,428,2,54,COMPLETED +2025.06.04,2025-03-10 05:56:04,152,6,408,2,54,COMPLETED +2025.07.03,2025-03-10 05:56:04,153,6,2043,1,55,COMPLETED +2025.26.04,2025-03-10 05:56:04,154,6,605,3,55,COMPLETED +2025.16.03,2025-03-10 05:56:04,155,4,241,3,55,COMPLETED +2025.11.03,2025-03-10 05:56:04,156,9,1826,1,55,COMPLETED +2025.20.04,2025-03-10 05:56:04,157,11,1714,1,55,COMPLETED +2025.30.04,2025-03-10 05:56:04,158,1,1554,2,56,COMPLETED +2025.02.04,2025-03-10 05:56:04,159,10,1397,2,56,COMPLETED +2025.01.03,2025-03-10 05:56:04,160,1,765,3,56,COMPLETED +2025.05.03,2025-03-10 05:56:04,161,5,664,1,57,FAILED +2025.31.03,2025-03-10 05:56:04,162,4,140,2,57,COMPLETED +2025.01.03,2025-03-10 05:56:04,163,4,1765,3,57,COMPLETED +2025.09.03,2025-03-10 05:56:04,164,11,816,2,57,COMPLETED +2025.08.03,2025-03-10 05:56:04,165,7,1901,1,57,COMPLETED +2025.01.03,2025-03-10 05:56:04,166,3,1907,2,58,COMPLETED +2025.01.04,2025-03-10 05:56:04,167,10,127,2,58,COMPLETED +2025.18.04,2025-03-10 05:56:04,168,11,1566,1,58,COMPLETED +2025.23.03,2025-03-10 05:56:04,169,3,242,3,58,COMPLETED +2025.07.04,2025-03-10 05:56:04,170,3,1260,2,58,COMPLETED +2025.02.03,2025-03-10 05:56:04,171,10,154,2,59,COMPLETED +2025.05.04,2025-03-10 05:56:04,172,8,570,2,60,COMPLETED +2025.06.03,2025-03-10 05:56:04,173,11,555,1,60,COMPLETED +2025.25.03,2025-03-10 05:56:04,174,7,1163,1,60,COMPLETED +2025.17.03,2025-03-10 05:56:04,175,11,2134,1,60,COMPLETED +2025.20.03,2025-03-10 05:56:04,176,4,1111,2,60,COMPLETED +2025.14.03,2025-03-10 05:56:04,177,9,468,3,61,COMPLETED +2025.05.03,2025-03-10 05:56:04,178,4,296,2,61,CANCELED +2025.11.03,2025-03-10 05:56:04,179,11,1907,1,61,COMPLETED +2025.25.03,2025-03-10 05:56:04,180,5,810,2,61,COMPLETED +2025.29.04,2025-03-10 05:56:04,181,8,1718,2,63,COMPLETED +2025.14.04,2025-03-10 05:56:04,182,7,1830,1,63,COMPLETED +2025.24.04,2025-03-10 05:56:04,183,3,357,2,63,COMPLETED +2025.29.03,2025-03-10 05:56:04,184,3,1761,2,63,COMPLETED +2025.26.04,2025-03-10 05:56:04,185,11,2040,1,64,COMPLETED +2025.07.04,2025-03-10 05:56:04,186,9,160,3,64,COMPLETED +2025.14.03,2025-03-10 05:56:04,187,1,126,3,64,COMPLETED +2025.25.03,2025-03-10 05:56:04,188,11,458,3,64,CANCELED +2025.07.04,2025-03-10 05:56:04,189,7,1774,1,64,COMPLETED +2025.29.04,2025-03-10 05:56:04,190,2,900,2,65,COMPLETED +2025.25.04,2025-03-10 05:56:04,191,8,1178,3,66,COMPLETED +2025.02.04,2025-03-10 05:56:04,192,7,411,3,67,COMPLETED +2025.23.04,2025-03-10 05:56:04,193,2,1118,2,67,COMPLETED +2025.09.04,2025-03-10 05:56:04,194,7,1820,1,68,FAILED +2025.06.03,2025-03-10 05:56:04,195,3,922,2,68,COMPLETED +2025.14.03,2025-03-10 05:56:04,196,5,1959,3,68,COMPLETED +2025.04.03,2025-03-10 05:56:04,197,2,527,1,68,COMPLETED +2025.07.03,2025-03-10 05:56:04,198,7,530,3,69,COMPLETED +2025.27.03,2025-03-10 05:56:04,199,11,1718,2,70,COMPLETED +2025.22.03,2025-03-10 05:56:04,200,10,1361,1,70,COMPLETED +2025.31.03,2025-03-10 05:56:04,201,11,463,1,70,COMPLETED +2025.21.04,2025-03-10 05:56:04,202,9,647,1,70,COMPLETED +2025.28.03,2025-03-10 05:56:04,203,7,2196,2,70,COMPLETED +2025.24.03,2025-03-10 05:56:04,204,10,625,1,71,COMPLETED +2025.31.03,2025-03-10 05:56:04,205,7,34,2,71,COMPLETED +2025.02.03,2025-03-10 05:56:04,206,3,947,3,71,COMPLETED +2025.17.04,2025-03-10 05:56:04,207,4,1034,3,71,COMPLETED +2025.02.03,2025-03-10 05:56:04,208,5,68,2,71,COMPLETED +2025.13.04,2025-03-10 05:56:04,209,2,1680,2,72,COMPLETED +2025.11.03,2025-03-10 05:56:04,210,9,1675,3,72,COMPLETED +2025.11.03,2025-03-10 05:56:04,211,9,744,2,72,COMPLETED +2025.27.03,2025-03-10 05:56:04,212,11,2143,3,75,COMPLETED +2025.07.03,2025-03-10 05:56:04,213,2,940,3,75,COMPLETED +2025.02.04,2025-03-10 05:56:04,214,9,787,1,76,COMPLETED +2025.20.03,2025-03-10 05:56:04,215,8,1301,1,76,COMPLETED +2025.30.04,2025-03-10 05:56:04,216,10,1585,2,76,COMPLETED +2025.06.03,2025-03-10 05:56:04,217,7,1810,2,77,COMPLETED +2025.14.04,2025-03-10 05:56:04,218,4,17,1,77,COMPLETED +2025.25.03,2025-03-10 05:56:04,219,9,1087,2,77,COMPLETED +2025.14.04,2025-03-10 05:56:04,220,4,941,3,77,COMPLETED +2025.01.03,2025-03-10 05:56:04,221,5,1451,3,78,COMPLETED +2025.02.03,2025-03-10 05:56:04,222,11,1953,1,80,COMPLETED +2025.30.03,2025-03-10 05:56:04,223,2,986,3,80,COMPLETED +2025.24.04,2025-03-10 05:56:04,224,8,1523,3,80,COMPLETED +2025.14.03,2025-03-10 05:56:04,225,4,665,1,80,COMPLETED +2025.13.04,2025-03-10 05:56:04,226,1,801,2,80,COMPLETED +2025.08.03,2025-03-10 05:56:04,227,7,498,3,81,COMPLETED +2025.08.03,2025-03-10 05:56:04,228,7,1784,1,81,FAILED +2025.18.03,2025-03-10 05:56:04,229,5,1498,1,81,COMPLETED +2025.03.03,2025-03-10 05:56:04,230,10,2068,1,81,COMPLETED +2025.28.04,2025-03-10 05:56:04,231,8,1387,2,82,COMPLETED +2025.26.03,2025-03-10 05:56:04,232,7,72,1,82,COMPLETED +2025.05.04,2025-03-10 05:56:04,233,11,80,1,82,COMPLETED +2025.15.04,2025-03-10 05:56:04,234,3,1427,2,82,CANCELED +2025.13.04,2025-03-10 05:56:04,235,3,374,3,83,COMPLETED +2025.11.03,2025-03-10 05:56:04,236,3,2202,2,83,COMPLETED +2025.21.04,2025-03-10 05:56:04,237,10,1512,2,83,COMPLETED +2025.06.04,2025-03-10 05:56:04,238,3,921,3,83,COMPLETED +2025.02.03,2025-03-10 05:56:04,239,10,45,2,84,COMPLETED +2025.29.04,2025-03-10 05:56:04,240,9,1860,2,84,COMPLETED +2025.07.04,2025-03-10 05:56:04,241,7,1983,2,85,COMPLETED +2025.23.04,2025-03-10 05:56:04,242,9,608,1,85,CANCELED +2025.17.04,2025-03-10 05:56:04,243,9,1553,1,85,COMPLETED +2025.02.04,2025-03-10 05:56:04,244,10,630,1,85,COMPLETED +2025.18.03,2025-03-10 05:56:04,245,5,959,3,85,FAILED +2025.25.04,2025-03-10 05:56:04,246,9,1852,2,86,COMPLETED +2025.16.04,2025-03-10 05:56:04,247,6,978,1,86,COMPLETED +2025.21.03,2025-03-10 05:56:04,248,8,1504,1,86,COMPLETED +2025.02.03,2025-03-10 05:56:04,249,4,2141,1,86,COMPLETED +2025.03.04,2025-03-10 05:56:04,250,5,957,1,86,COMPLETED +2025.28.03,2025-03-10 05:56:04,251,8,956,3,87,COMPLETED +2025.24.04,2025-03-10 05:56:04,252,9,1079,2,87,COMPLETED +2025.24.03,2025-03-10 05:56:04,253,8,1844,3,87,CANCELED +2025.04.04,2025-03-10 05:56:04,254,10,314,3,90,COMPLETED +2025.14.03,2025-03-10 05:56:04,255,2,238,2,90,FAILED +2025.01.04,2025-03-10 05:56:04,256,10,1960,3,91,COMPLETED +2025.02.03,2025-03-10 05:56:04,257,2,2253,3,91,COMPLETED +2025.04.03,2025-03-10 05:56:04,258,1,1743,1,91,COMPLETED +2025.08.03,2025-03-10 05:56:04,259,11,616,1,91,COMPLETED +2025.18.04,2025-03-10 05:56:04,260,9,1951,3,92,CANCELED +2025.17.04,2025-03-10 05:56:04,261,2,1497,2,92,CANCELED +2025.21.04,2025-03-10 05:56:04,262,7,226,3,92,COMPLETED +2025.28.03,2025-03-10 05:56:04,263,3,1808,2,92,COMPLETED +2025.21.04,2025-03-10 05:56:04,264,10,888,2,92,COMPLETED +2025.04.04,2025-03-10 05:56:04,265,5,1375,3,94,COMPLETED +2025.19.04,2025-03-10 05:56:04,266,7,993,1,95,CANCELED +2025.27.04,2025-03-10 05:56:04,267,7,1555,3,95,COMPLETED +2025.18.03,2025-03-10 05:56:04,268,4,1737,3,95,COMPLETED +2025.20.04,2025-03-10 05:56:04,269,10,1934,1,95,COMPLETED +2025.11.03,2025-03-10 05:56:04,270,5,1972,1,95,COMPLETED +2025.09.03,2025-03-10 05:56:04,271,9,834,1,96,COMPLETED +2025.13.04,2025-03-10 05:56:04,272,10,1463,1,96,COMPLETED +2025.12.04,2025-03-10 05:56:04,273,7,48,3,96,COMPLETED +2025.24.03,2025-03-10 05:56:04,274,2,111,3,96,COMPLETED +2025.08.03,2025-03-10 05:56:04,275,6,934,2,97,COMPLETED +2025.10.04,2025-03-10 05:56:04,276,2,1425,3,98,COMPLETED +2025.13.03,2025-03-10 05:56:04,277,9,881,1,98,COMPLETED +2025.15.04,2025-03-10 05:56:04,278,8,301,1,98,COMPLETED +2025.22.03,2025-03-10 05:56:04,279,5,56,3,99,COMPLETED +2025.03.03,2025-03-10 05:56:04,280,3,1469,3,99,COMPLETED +2025.07.03,2025-03-10 05:56:04,281,7,2183,3,99,COMPLETED +2025.27.03,2025-03-10 05:56:04,282,4,1677,2,100,COMPLETED diff --git a/storage/output_feedback_json/Updated_User_Preference_Category_Table.csv b/storage/output_feedback_json/Updated_User_Preference_Category_Table.csv new file mode 100644 index 0000000..1e041c5 --- /dev/null +++ b/storage/output_feedback_json/Updated_User_Preference_Category_Table.csv @@ -0,0 +1,301 @@ +category_id,user_preference_id +8,1 +1,1 +11,1 +8,2 +5,2 +6,2 +9,3 +7,3 +4,3 +5,4 +8,4 +10,4 +3,5 +1,5 +6,5 +9,6 +7,6 +11,6 +1,7 +11,7 +9,7 +3,8 +12,8 +9,8 +5,9 +10,9 +12,9 +3,10 +9,10 +4,10 +4,11 +6,11 +7,11 +9,12 +6,12 +4,12 +2,13 +10,13 +7,13 +7,14 +4,14 +12,14 +2,15 +5,15 +7,15 +5,16 +6,16 +11,16 +1,17 +2,17 +9,17 +3,18 +2,18 +11,18 +7,19 +10,19 +12,19 +5,20 +3,20 +12,20 +6,21 +11,21 +2,21 +5,22 +4,22 +3,22 +6,23 +11,23 +7,23 +5,24 +2,24 +1,24 +7,25 +11,25 +12,25 +6,26 +10,26 +11,26 +2,27 +10,27 +11,27 +11,28 +5,28 +6,28 +4,29 +5,29 +1,29 +5,30 +8,30 +3,30 +8,31 +4,31 +5,31 +5,32 +1,32 +8,32 +8,33 +5,33 +12,33 +4,34 +3,34 +11,34 +1,35 +9,35 +5,35 +7,36 +8,36 +1,36 +11,37 +10,37 +3,37 +3,38 +1,38 +7,38 +3,39 +11,39 +6,39 +9,40 +12,40 +4,40 +1,41 +9,41 +10,41 +3,42 +10,42 +1,42 +3,43 +7,43 +4,43 +12,44 +7,44 +6,44 +12,45 +1,45 +10,45 +8,46 +12,46 +7,46 +11,47 +4,47 +12,47 +6,48 +5,48 +10,48 +11,49 +2,49 +1,49 +10,50 +12,50 +11,50 +9,51 +10,51 +12,51 +2,52 +8,52 +3,52 +11,53 +6,53 +9,53 +9,54 +5,54 +6,54 +4,55 +5,55 +2,55 +5,56 +9,56 +4,56 +9,57 +11,57 +2,57 +1,58 +5,58 +7,58 +6,59 +11,59 +7,59 +2,60 +1,60 +9,60 +4,61 +7,61 +12,61 +5,62 +11,62 +2,62 +11,63 +9,63 +3,63 +5,64 +12,64 +10,64 +5,65 +2,65 +4,65 +2,66 +12,66 +6,66 +12,67 +6,67 +1,67 +6,68 +12,68 +2,68 +9,69 +3,69 +11,69 +1,70 +3,70 +9,70 +8,71 +6,71 +12,71 +7,72 +1,72 +2,72 +12,73 +11,73 +1,73 +2,74 +6,74 +11,74 +8,75 +2,75 +3,75 +4,76 +5,76 +6,76 +6,77 +1,77 +11,77 +3,78 +2,78 +1,78 +11,79 +4,79 +6,79 +1,80 +4,80 +9,80 +7,81 +5,81 +10,81 +3,82 +6,82 +12,82 +7,83 +9,83 +3,83 +9,84 +7,84 +6,84 +4,85 +1,85 +7,85 +11,86 +3,86 +2,86 +5,87 +3,87 +9,87 +10,88 +3,88 +4,88 +6,89 +11,89 +5,89 +4,90 +6,90 +10,90 +4,91 +3,91 +9,91 +9,92 +12,92 +8,92 +6,93 +3,93 +12,93 +1,94 +2,94 +7,94 +1,95 +11,95 +6,95 +5,96 +4,96 +1,96 +8,97 +3,97 +10,97 +7,98 +12,98 +8,98 +11,99 +5,99 +10,99 +10,100 +9,100 +6,100 diff --git a/storage/output_feedback_json/Updated_User_Preference_Table.csv b/storage/output_feedback_json/Updated_User_Preference_Table.csv new file mode 100644 index 0000000..cd9eed1 --- /dev/null +++ b/storage/output_feedback_json/Updated_User_Preference_Table.csv @@ -0,0 +1,101 @@ +max_price,min_price,user_id +360000,270000,1 +310000,210000,2 +640000,250000,3 +650000,400000,4 +230000,110000,5 +340000,320000,6 +730000,310000,7 +830000,670000,8 +70000,0,9 +110000,30000,10 +400000,240000,11 +560000,450000,12 +590000,580000,13 +60000,30000,14 +210000,130000,15 +740000,240000,16 +460000,140000,17 +460000,0,18 +990000,300000,19 +580000,190000,20 +940000,40000,21 +70000,60000,22 +510000,480000,23 +850000,760000,24 +390000,200000,25 +490000,310000,26 +560000,340000,27 +700000,100000,28 +620000,370000,29 +700000,360000,30 +260000,240000,31 +970000,630000,32 +680000,50000,33 +550000,360000,34 +900000,680000,35 +770000,580000,36 +390000,310000,37 +60000,40000,38 +580000,120000,39 +600000,370000,40 +560000,100000,41 +570000,550000,42 +990000,490000,43 +880000,460000,44 +760000,590000,45 +350000,250000,46 +180000,110000,47 +80000,40000,48 +250000,160000,49 +710000,50000,50 +950000,900000,51 +970000,780000,52 +630000,10000,53 +980000,830000,54 +50000,10000,55 +950000,650000,56 +810000,140000,57 +990000,140000,58 +530000,270000,59 +10000,0,60 +190000,160000,61 +970000,870000,62 +420000,320000,63 +480000,240000,64 +960000,860000,65 +300000,270000,66 +530000,510000,67 +330000,250000,68 +680000,440000,69 +280000,260000,70 +900000,140000,71 +830000,40000,72 +140000,90000,73 +240000,30000,74 +100000,90000,75 +670000,80000,76 +470000,40000,77 +440000,340000,78 +570000,520000,79 +710000,80000,80 +410000,130000,81 +810000,700000,82 +220000,170000,83 +250000,10000,84 +20000,20000,85 +410000,350000,86 +820000,150000,87 +350000,240000,88 +320000,250000,89 +460000,310000,90 +630000,310000,91 +390000,200000,92 +670000,650000,93 +720000,70000,94 +160000,100000,95 +60000,50000,96 +440000,390000,97 +250000,150000,98 +940000,300000,99 +210000,120000,100 diff --git a/storage/output_feedback_json/User_Table.csv b/storage/output_feedback_json/User_Table.csv new file mode 100644 index 0000000..e14c9f2 --- /dev/null +++ b/storage/output_feedback_json/User_Table.csv @@ -0,0 +1,101 @@ +empty_ticket_count,is_deleted,normal_ticket_count,sex,id,image_url,nickname,phone_number,status +1,False,42,FEMALE,1,https://example.com/image1.jpg,Ava85,010-1470-4237,AVAILABLE +2,False,47,FEMALE,2,https://example.com/image2.jpg,Charlotte39,010-2128-5779,AVAILABLE +0,False,107,MALE,3,https://example.com/image3.jpg,David94,010-5889-3876,AVAILABLE +4,False,44,MALE,4,https://example.com/image4.jpg,Lucas13,010-1086-4409,AVAILABLE +2,True,102,FEMALE,5,https://example.com/image5.jpg,Sebastian45,010-4565-6374,AVAILABLE +4,False,23,FEMALE,6,https://example.com/image6.jpg,Alice70,010-3080-4043,AVAILABLE +2,False,109,MALE,7,https://example.com/image7.jpg,Noah71,010-6869-2477,AVAILABLE +4,False,71,FEMALE,8,https://example.com/image8.jpg,Jack42,010-9021-8466,AVAILABLE +3,False,112,FEMALE,9,https://example.com/image9.jpg,Sophia46,010-8293-1568,AVAILABLE +0,False,74,FEMALE,10,https://example.com/image10.jpg,Isabella68,010-8877-5847,AVAILABLE +1,True,82,FEMALE,11,https://example.com/image11.jpg,James52,010-2480-8164,AVAILABLE +3,False,109,MALE,12,https://example.com/image12.jpg,Alexander19,010-3241-3760,AVAILABLE +0,False,15,MALE,13,https://example.com/image13.jpg,Alice39,010-2984-7798,AVAILABLE +5,False,24,MALE,14,https://example.com/image14.jpg,Noah16,010-3058-9524,AVAILABLE +4,True,10,MALE,15,https://example.com/image15.jpg,Sunny91,010-8906-8031,AVAILABLE +1,False,85,FEMALE,16,https://example.com/image16.jpg,Benjamin45,010-1499-1768,AVAILABLE +4,False,84,FEMALE,17,https://example.com/image17.jpg,Michael93,010-1594-4855,AVAILABLE +0,True,105,MALE,18,https://example.com/image18.jpg,Emily86,010-5522-3420,AVAILABLE +5,False,46,MALE,19,https://example.com/image19.jpg,Emma6,010-9168-8775,AVAILABLE +2,False,119,MALE,20,https://example.com/image20.jpg,David9,010-9596-8695,AVAILABLE +0,False,77,FEMALE,21,https://example.com/image21.jpg,Alice78,010-2756-6745,AVAILABLE +0,False,74,MALE,22,https://example.com/image22.jpg,Sunny56,010-5655-6889,AVAILABLE +4,False,37,FEMALE,23,https://example.com/image23.jpg,Alexander60,010-7489-3061,AVAILABLE +4,False,24,MALE,24,https://example.com/image24.jpg,William56,010-9604-7990,AVAILABLE +4,True,23,MALE,25,https://example.com/image25.jpg,Liam47,010-7839-5490,AVAILABLE +0,False,108,FEMALE,26,https://example.com/image26.jpg,Alexander33,010-9062-9114,AVAILABLE +4,False,55,FEMALE,27,https://example.com/image27.jpg,Evelyn86,010-4564-6136,AVAILABLE +1,False,54,FEMALE,28,https://example.com/image28.jpg,James38,010-9752-7208,AVAILABLE +3,True,112,MALE,29,https://example.com/image29.jpg,Sunny51,010-3237-3844,AVAILABLE +5,False,54,MALE,30,https://example.com/image30.jpg,Benjamin76,010-6707-2914,AVAILABLE +2,False,35,FEMALE,31,https://example.com/image31.jpg,James21,010-5115-8778,AVAILABLE +5,False,26,FEMALE,32,https://example.com/image32.jpg,Isabella68,010-3487-2064,AVAILABLE +4,False,42,MALE,33,https://example.com/image33.jpg,Amelia25,010-1074-2638,AVAILABLE +0,False,48,MALE,34,https://example.com/image34.jpg,Amelia49,010-2762-7849,AVAILABLE +5,True,42,FEMALE,35,https://example.com/image35.jpg,Emma32,010-1718-1051,AVAILABLE +2,False,52,MALE,36,https://example.com/image36.jpg,Daniel44,010-9740-6059,AVAILABLE +1,True,91,MALE,37,https://example.com/image37.jpg,Sophia20,010-2985-8303,AVAILABLE +5,True,72,FEMALE,38,https://example.com/image38.jpg,Alice7,010-7831-6875,AVAILABLE +3,True,41,FEMALE,39,https://example.com/image39.jpg,Amelia16,010-1932-9569,AVAILABLE +3,False,71,MALE,40,https://example.com/image40.jpg,Lucas92,010-3936-3021,AVAILABLE +4,False,74,FEMALE,41,https://example.com/image41.jpg,Ella46,010-4087-2066,AVAILABLE +0,False,117,MALE,42,https://example.com/image42.jpg,Jack91,010-7324-4791,AVAILABLE +2,False,95,FEMALE,43,https://example.com/image43.jpg,Amelia68,010-5119-8187,AVAILABLE +4,False,49,FEMALE,44,https://example.com/image44.jpg,Emily10,010-2209-4874,AVAILABLE +1,False,93,MALE,45,https://example.com/image45.jpg,Lucas31,010-3077-9540,AVAILABLE +1,False,113,MALE,46,https://example.com/image46.jpg,Lucas48,010-9144-4368,AVAILABLE +0,False,58,MALE,47,https://example.com/image47.jpg,James7,010-4193-2810,AVAILABLE +3,True,61,FEMALE,48,https://example.com/image48.jpg,Isabella17,010-4278-3372,AVAILABLE +3,False,100,FEMALE,49,https://example.com/image49.jpg,Isabella25,010-1362-7656,AVAILABLE +0,True,87,MALE,50,https://example.com/image50.jpg,Lucas8,010-8748-6296,AVAILABLE +1,False,22,MALE,51,https://example.com/image51.jpg,Kevin9,010-1605-9777,AVAILABLE +1,False,69,MALE,52,https://example.com/image52.jpg,Olivia87,010-2302-5160,AVAILABLE +3,False,91,FEMALE,53,https://example.com/image53.jpg,Alexander57,010-5841-2209,AVAILABLE +2,False,15,MALE,54,https://example.com/image54.jpg,Mia24,010-4332-6716,AVAILABLE +2,False,75,MALE,55,https://example.com/image55.jpg,Amelia20,010-6893-4560,AVAILABLE +5,True,60,MALE,56,https://example.com/image56.jpg,Michael96,010-6404-7737,AVAILABLE +4,False,101,MALE,57,https://example.com/image57.jpg,Sunny33,010-4500-3036,AVAILABLE +2,False,51,MALE,58,https://example.com/image58.jpg,Noah77,010-2670-4991,AVAILABLE +3,True,90,FEMALE,59,https://example.com/image59.jpg,Abigail93,010-5990-2712,AVAILABLE +1,False,30,FEMALE,60,https://example.com/image60.jpg,Alice28,010-1202-5358,AVAILABLE +0,True,35,MALE,61,https://example.com/image61.jpg,Ethan92,010-5212-1222,AVAILABLE +5,False,34,FEMALE,62,https://example.com/image62.jpg,Kevin76,010-1853-9012,AVAILABLE +1,False,37,FEMALE,63,https://example.com/image63.jpg,Alexander36,010-7018-8499,AVAILABLE +3,True,110,FEMALE,64,https://example.com/image64.jpg,Olivia24,010-9894-7576,AVAILABLE +0,False,105,FEMALE,65,https://example.com/image65.jpg,Liam10,010-6799-9257,AVAILABLE +1,False,83,FEMALE,66,https://example.com/image66.jpg,Alexander61,010-7607-9136,AVAILABLE +4,False,69,MALE,67,https://example.com/image67.jpg,Ava68,010-1904-9655,AVAILABLE +1,False,62,MALE,68,https://example.com/image68.jpg,Emily94,010-1680-9422,AVAILABLE +2,False,6,MALE,69,https://example.com/image69.jpg,Noah29,010-1130-9815,AVAILABLE +0,False,111,FEMALE,70,https://example.com/image70.jpg,Ethan63,010-6237-8493,AVAILABLE +4,False,39,FEMALE,71,https://example.com/image71.jpg,Lucas99,010-2772-5810,AVAILABLE +0,False,79,MALE,72,https://example.com/image72.jpg,William84,010-1077-6940,AVAILABLE +3,False,72,FEMALE,73,https://example.com/image73.jpg,Alice77,010-1915-8342,AVAILABLE +1,False,65,FEMALE,74,https://example.com/image74.jpg,Harper16,010-1279-4093,AVAILABLE +5,False,5,MALE,75,https://example.com/image75.jpg,Lucas86,010-7503-7903,AVAILABLE +3,False,100,FEMALE,76,https://example.com/image76.jpg,Sunny24,010-7791-1038,AVAILABLE +4,True,94,FEMALE,77,https://example.com/image77.jpg,Sophia66,010-8973-9099,AVAILABLE +3,False,62,MALE,78,https://example.com/image78.jpg,James89,010-8185-9540,AVAILABLE +3,True,7,FEMALE,79,https://example.com/image79.jpg,Ava70,010-2294-4644,AVAILABLE +4,False,72,FEMALE,80,https://example.com/image80.jpg,Abigail60,010-1942-5228,AVAILABLE +3,True,14,MALE,81,https://example.com/image81.jpg,Abigail89,010-1740-8302,AVAILABLE +5,False,86,MALE,82,https://example.com/image82.jpg,Lucas11,010-4482-4978,AVAILABLE +1,True,28,MALE,83,https://example.com/image83.jpg,Abigail48,010-2969-2370,AVAILABLE +5,False,101,MALE,84,https://example.com/image84.jpg,Alexander19,010-4363-8760,AVAILABLE +4,False,33,MALE,85,https://example.com/image85.jpg,Isabella99,010-1494-5982,AVAILABLE +3,False,24,FEMALE,86,https://example.com/image86.jpg,Sunny1,010-9241-9444,AVAILABLE +5,False,21,FEMALE,87,https://example.com/image87.jpg,Emma45,010-1523-6528,AVAILABLE +4,False,118,FEMALE,88,https://example.com/image88.jpg,Liam41,010-7042-4754,AVAILABLE +0,False,36,MALE,89,https://example.com/image89.jpg,Sunny89,010-7388-9855,AVAILABLE +4,False,39,FEMALE,90,https://example.com/image90.jpg,Liam19,010-3530-9247,AVAILABLE +2,False,60,MALE,91,https://example.com/image91.jpg,William20,010-9271-4509,AVAILABLE +1,False,17,MALE,92,https://example.com/image92.jpg,Evelyn73,010-5701-3171,AVAILABLE +2,False,73,MALE,93,https://example.com/image93.jpg,Sunny16,010-6179-3432,AVAILABLE +0,True,16,MALE,94,https://example.com/image94.jpg,Daniel42,010-9612-5301,AVAILABLE +5,False,88,MALE,95,https://example.com/image95.jpg,Noah70,010-4503-5878,AVAILABLE +1,False,104,MALE,96,https://example.com/image96.jpg,Alexander83,010-9461-6656,AVAILABLE +2,False,89,FEMALE,97,https://example.com/image97.jpg,Sunny70,010-6069-9419,AVAILABLE +1,False,114,MALE,98,https://example.com/image98.jpg,Isabella19,010-5360-3314,AVAILABLE +4,False,108,FEMALE,99,https://example.com/image99.jpg,Sunny21,010-9062-4224,AVAILABLE +0,False,49,FEMALE,100,https://example.com/image100.jpg,Daniel56,010-4785-4745,AVAILABLE diff --git a/storage/output_feedback_json/recommendation_1_1743337006.json b/storage/output_feedback_json/recommendation_1_1743337006.json new file mode 100644 index 0000000..f77dee4 --- /dev/null +++ b/storage/output_feedback_json/recommendation_1_1743337006.json @@ -0,0 +1,110 @@ +{ + "user": "1", + "recommendations": [ + { + "category_id": 1, + "restaurant_id": 32, + "score": 5.0, + "predicted_score": 3.784, + "composite_score": 4.849 + }, + { + "category_id": 1, + "restaurant_id": 41, + "score": 5.0, + "predicted_score": 3.439, + "composite_score": 4.847 + }, + { + "category_id": 1, + "restaurant_id": 29, + "score": 4.7, + "predicted_score": 3.668, + "composite_score": 4.786 + }, + { + "category_id": 1, + "restaurant_id": 21, + "score": 4.4, + "predicted_score": 3.802, + "composite_score": 4.782 + }, + { + "category_id": 1, + "restaurant_id": 17, + "score": 4.2, + "predicted_score": 3.889, + "composite_score": 4.78 + }, + { + "category_id": 1, + "restaurant_id": 26, + "score": 4.7, + "predicted_score": 3.805, + "composite_score": 4.779 + }, + { + "category_id": 1, + "restaurant_id": 16, + "score": 4.2, + "predicted_score": 3.685, + "composite_score": 4.734 + }, + { + "category_id": 1, + "restaurant_id": 27, + "score": 4.5, + "predicted_score": 3.589, + "composite_score": 4.719 + }, + { + "category_id": 1, + "restaurant_id": 34, + "score": 4.4, + "predicted_score": 3.54, + "composite_score": 4.691 + }, + { + "category_id": 1, + "restaurant_id": 1, + "score": 4.0, + "predicted_score": 3.781, + "composite_score": 4.69 + }, + { + "category_id": 1, + "restaurant_id": 43, + "score": 4.4, + "predicted_score": 3.886, + "composite_score": 4.687 + }, + { + "category_id": 1, + "restaurant_id": 35, + "score": 4.3, + "predicted_score": 3.597, + "composite_score": 4.638 + }, + { + "category_id": 1, + "restaurant_id": 36, + "score": 4.3, + "predicted_score": 3.368, + "composite_score": 4.634 + }, + { + "category_id": 1, + "restaurant_id": 19, + "score": 4.2, + "predicted_score": 3.46, + "composite_score": 4.615 + }, + { + "category_id": 1, + "restaurant_id": 9, + "score": 3.7, + "predicted_score": 3.723, + "composite_score": 4.609 + } + ] +} \ No newline at end of file diff --git a/storage/output_feedback_json/recommendation_1_1743337019.json b/storage/output_feedback_json/recommendation_1_1743337019.json new file mode 100644 index 0000000..7fa3ec5 --- /dev/null +++ b/storage/output_feedback_json/recommendation_1_1743337019.json @@ -0,0 +1,110 @@ +{ + "user": "1", + "recommendations": [ + { + "category_id": 12, + "restaurant_id": 2244, + "score": 5.0, + "predicted_score": 4.064, + "composite_score": 4.88 + }, + { + "category_id": 12, + "restaurant_id": 2256, + "score": 5.0, + "predicted_score": 3.531, + "composite_score": 4.859 + }, + { + "category_id": 12, + "restaurant_id": 2247, + "score": 5.0, + "predicted_score": 3.579, + "composite_score": 4.852 + }, + { + "category_id": 1, + "restaurant_id": 32, + "score": 5.0, + "predicted_score": 3.784, + "composite_score": 4.849 + }, + { + "category_id": 1, + "restaurant_id": 41, + "score": 5.0, + "predicted_score": 3.439, + "composite_score": 4.847 + }, + { + "category_id": 12, + "restaurant_id": 2241, + "score": 4.9, + "predicted_score": 3.89, + "composite_score": 4.819 + }, + { + "category_id": 12, + "restaurant_id": 2254, + "score": 4.8, + "predicted_score": 3.435, + "composite_score": 4.813 + }, + { + "category_id": 12, + "restaurant_id": 2234, + "score": 4.8, + "predicted_score": 3.789, + "composite_score": 4.81 + }, + { + "category_id": 1, + "restaurant_id": 29, + "score": 4.7, + "predicted_score": 3.668, + "composite_score": 4.786 + }, + { + "category_id": 1, + "restaurant_id": 21, + "score": 4.4, + "predicted_score": 3.802, + "composite_score": 4.782 + }, + { + "category_id": 1, + "restaurant_id": 17, + "score": 4.2, + "predicted_score": 3.889, + "composite_score": 4.78 + }, + { + "category_id": 1, + "restaurant_id": 26, + "score": 4.7, + "predicted_score": 3.805, + "composite_score": 4.779 + }, + { + "category_id": 12, + "restaurant_id": 2243, + "score": 4.3, + "predicted_score": 3.767, + "composite_score": 4.775 + }, + { + "category_id": 12, + "restaurant_id": 2239, + "score": 4.4, + "predicted_score": 3.758, + "composite_score": 4.755 + }, + { + "category_id": 12, + "restaurant_id": 2232, + "score": 4.4, + "predicted_score": 3.755, + "composite_score": 4.742 + } + ] +} \ No newline at end of file diff --git a/storage/output_feedback_json/recommendation_1_1743337486.json b/storage/output_feedback_json/recommendation_1_1743337486.json new file mode 100644 index 0000000..267e111 --- /dev/null +++ b/storage/output_feedback_json/recommendation_1_1743337486.json @@ -0,0 +1,110 @@ +{ + "user": "1", + "recommendations": [ + { + "category_id": 12, + "restaurant_id": 2244, + "score": 5.0, + "predicted_score": 4.676, + "composite_score": 4.88 + }, + { + "category_id": 12, + "restaurant_id": 2244, + "score": 5.0, + "predicted_score": 4.676, + "composite_score": 4.88 + }, + { + "category_id": 12, + "restaurant_id": 2256, + "score": 5.0, + "predicted_score": 3.146, + "composite_score": 4.859 + }, + { + "category_id": 12, + "restaurant_id": 2256, + "score": 5.0, + "predicted_score": 3.146, + "composite_score": 4.859 + }, + { + "category_id": 12, + "restaurant_id": 2247, + "score": 5.0, + "predicted_score": 4.818, + "composite_score": 4.852 + }, + { + "category_id": 12, + "restaurant_id": 2247, + "score": 5.0, + "predicted_score": 4.818, + "composite_score": 4.852 + }, + { + "category_id": 1, + "restaurant_id": 32, + "score": 5.0, + "predicted_score": 4.324, + "composite_score": 4.849 + }, + { + "category_id": 1, + "restaurant_id": 32, + "score": 5.0, + "predicted_score": 4.324, + "composite_score": 4.849 + }, + { + "category_id": 1, + "restaurant_id": 41, + "score": 5.0, + "predicted_score": 4.485, + "composite_score": 4.847 + }, + { + "category_id": 1, + "restaurant_id": 41, + "score": 5.0, + "predicted_score": 4.485, + "composite_score": 4.847 + }, + { + "category_id": 12, + "restaurant_id": 2241, + "score": 4.9, + "predicted_score": 4.008, + "composite_score": 4.819 + }, + { + "category_id": 12, + "restaurant_id": 2241, + "score": 4.9, + "predicted_score": 4.008, + "composite_score": 4.819 + }, + { + "category_id": 12, + "restaurant_id": 2254, + "score": 4.8, + "predicted_score": 4.477, + "composite_score": 4.813 + }, + { + "category_id": 12, + "restaurant_id": 2254, + "score": 4.8, + "predicted_score": 4.477, + "composite_score": 4.813 + }, + { + "category_id": 12, + "restaurant_id": 2234, + "score": 4.8, + "predicted_score": 4.379, + "composite_score": 4.81 + } + ] +} \ No newline at end of file diff --git a/storage/output_feedback_json/recommendation_toby_1741933122.json b/storage/output_feedback_json/recommendation_toby_1741933122.json new file mode 100644 index 0000000..052282e --- /dev/null +++ b/storage/output_feedback_json/recommendation_toby_1741933122.json @@ -0,0 +1,110 @@ +{ + "user": "toby", + "recommendations": [ + { + "category_id": 6, + "restaurant_id": 49, + "score": 5.0, + "predicted_score": 4.138, + "composite_score": 4.9 + }, + { + "category_id": 12, + "restaurant_id": 21, + "score": 5.0, + "predicted_score": 4.132, + "composite_score": 4.88 + }, + { + "category_id": 6, + "restaurant_id": 32, + "score": 4.7, + "predicted_score": 4.156, + "composite_score": 4.867 + }, + { + "category_id": 6, + "restaurant_id": 63, + "score": 4.9, + "predicted_score": 4.078, + "composite_score": 4.863 + }, + { + "category_id": 6, + "restaurant_id": 33, + "score": 5.0, + "predicted_score": 3.931, + "composite_score": 4.862 + }, + { + "category_id": 6, + "restaurant_id": 13, + "score": 5.0, + "predicted_score": 4.039, + "composite_score": 4.857 + }, + { + "category_id": 12, + "restaurant_id": 24, + "score": 5.0, + "predicted_score": 4.005, + "composite_score": 4.852 + }, + { + "category_id": 1, + "restaurant_id": 32, + "score": 5.0, + "predicted_score": 3.733, + "composite_score": 4.849 + }, + { + "category_id": 1, + "restaurant_id": 41, + "score": 5.0, + "predicted_score": 3.468, + "composite_score": 4.847 + }, + { + "category_id": 6, + "restaurant_id": 12, + "score": 5.0, + "predicted_score": 3.832, + "composite_score": 4.844 + }, + { + "category_id": 6, + "restaurant_id": 77, + "score": 5.0, + "predicted_score": 4.021, + "composite_score": 4.842 + }, + { + "category_id": 6, + "restaurant_id": 16, + "score": 5.0, + "predicted_score": 3.419, + "composite_score": 4.84 + }, + { + "category_id": 12, + "restaurant_id": 18, + "score": 4.9, + "predicted_score": 3.801, + "composite_score": 4.819 + }, + { + "category_id": 12, + "restaurant_id": 31, + "score": 4.8, + "predicted_score": 3.672, + "composite_score": 4.813 + }, + { + "category_id": 12, + "restaurant_id": 11, + "score": 4.8, + "predicted_score": 3.941, + "composite_score": 4.81 + } + ] +} \ No newline at end of file diff --git a/test_data_sync.py b/test_data_sync.py new file mode 100644 index 0000000..2824db5 --- /dev/null +++ b/test_data_sync.py @@ -0,0 +1,39 @@ +# test_data_sync.py +import os +import logging +from dotenv import load_dotenv +from app.services.mongo_data_sync import fetch_data_from_mongodb + +# .env 파일 로드 +load_dotenv() + +# 로깅 설정 +logging.basicConfig(level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(name)s - %(message)s') + +# 환경 변수 확인 (비밀번호는 출력하지 않음) +print(f"MongoDB 연결 정보:") +print(f"MONGO_HOST: {os.environ.get('MONGO_HOST')}") +print(f"MONGO_PORT: {os.environ.get('MONGO_PORT')}") +print(f"MONGO_USER: {os.environ.get('MONGO_USER')}") +print(f"MONGO_DATABASE: {os.environ.get('MONGO_DATABASE')}") +print(f"MONGO_PASSWORD: {'*' * len(os.environ.get('MONGO_PASSWORD', ''))} (길이: {len(os.environ.get('MONGO_PASSWORD', ''))})") + +# SSH 터널링 정보 +use_ssh_tunnel = os.environ.get('USE_SSH_TUNNEL', 'false').lower() == 'true' +if use_ssh_tunnel: + print("\nSSH 터널링 설정:") + print(f"SSH_HOST: {os.environ.get('SSH_HOST')}") + print(f"SSH_PORT: {os.environ.get('SSH_PORT')}") + print(f"SSH_USER: {os.environ.get('SSH_USER')}") + + if os.environ.get('SSH_PASSWORD'): + print(f"SSH_PASSWORD: {'*' * len(os.environ.get('SSH_PASSWORD', ''))} (길이: {len(os.environ.get('SSH_PASSWORD', ''))})") + + if os.environ.get('SSH_KEY_PATH'): + print(f"SSH_KEY_PATH: {os.environ.get('SSH_KEY_PATH')}") + +# MongoDB 데이터 동기화 함수 실행 +print("\n데이터 동기화 시작...") +result = fetch_data_from_mongodb() +print(f"데이터 동기화 결과: {'성공' if result else '실패'}") \ No newline at end of file