/v2/local/search/address 특정 주소 응답 오류 문의

안녕하세요.

카카오 로컬 주소 검색 API(/v2/local/search/address) 사용 중 문의드립니다.

현재 주소 검색 시 대부분의 주소는 정상적으로 응답이 내려오고 파싱에도 문제가 없으나, 경기 시흥시 대야동 495-13 해당 주소로 요청할 경우에만 응답을 정상적으로 매핑하지 못하고 아래와 같은 오류가 발생하고 있습니다.

Error while extracting response for type
[class com.dendenpeople.core.common.address.payload.KakaoAddressResponse]
and content type [application/json;charset=utf-8]

HTTP 응답 자체는 내려오고 있으나, 응답 구조가 다른 경우인지 혹은 예외적으로 처리되는 주소인지 확인이 필요해 문의드립니다.

해당 주소가 정상적인 주소인지, 또는 API 측에서 별도로 처리되는 케이스인지 확인해주실 수 있을까요?

주소 검색의 응답 구조는 문서에 안내된 구조와 동일합니다.
다만 검색한 주소에 따라 지번 주소, 도로명 주소 정보 유무는 다를 수 있습니다.
아래는 해당 주소의 응답 결과이며 현재 코드에서 파싱 로직이 아래 구조도 지원하고 있는지 확인 부탁드립니다.

{
  "documents": [
    {
      "address": {
        "address_name": "경기 시흥시 대야동 495-13",
        "b_code": "4139010100",
        "h_code": "4139051000",
        "main_address_no": "495",
        "mountain_yn": "N",
        "region_1depth_name": "경기",
        "region_2depth_name": "시흥시",
        "region_3depth_h_name": "대야동",
        "region_3depth_name": "대야동",
        "sub_address_no": "13",
        "x": "126.785935543963",
        "y": "37.4437748051203"
      },
      "address_name": "경기 시흥시 대야동 495-13",
      "address_type": "REGION_ADDR",
      "road_address": {
        "address_name": "경기 시흥시 호현로40번길 5",
        "building_name": "",
        "main_building_no": "5",
        "region_1depth_name": "경기",
        "region_2depth_name": "시흥시",
        "region_3depth_name": "대야동",
        "road_name": "호현로40번길",
        "sub_building_no": "",
        "underground_yn": "N",
        "x": "126.78594234526",
        "y": "37.4437674291312",
        "zone_no": "14909"
      },
      "x": "126.785935543963",
      "y": "37.4437748051203"
    },
    {
      "address": {
        "address_name": "경기 시흥시 계수동 495-13",
        "b_code": "4139011300",
        "h_code": "4139051000",
        "main_address_no": "495",
        "mountain_yn": "N",
        "region_1depth_name": "경기",
        "region_2depth_name": "시흥시",
        "region_3depth_h_name": "대야동",
        "region_3depth_name": "계수동",
        "sub_address_no": "13",
        "x": "126.809031221209",
        "y": "37.4490691757624"
      },
      "address_name": "경기 시흥시 계수동 495-13",
      "address_type": "REGION_ADDR",
      "road_address": {},
      "x": "126.809031221209",
      "y": "37.4490691757624"
    }
  ],
  "meta": {
    "is_end": true,
    "pageable_count": 2,
    "total_count": 2
  }
}