휴가용 임대 숙소의 유닛 구성
2026년 1월 출시 예정: 휴가용 숙소 구성 스키마 업데이트
휴가 숙소의 경우, 콘텐츠 API()는 unit_configurations라는 객체를 반환하며, 여기에는 각 숙박 시설의 객실 및 침대 옵션에 대한 정보가 포함되어 있습니다. 이 개체를 사용하면 객실 및 침대 옵션을 시각적으로 표시할 수 있습니다.

앞으로 몇 달 내에 API에 대한 일부 업데이트를 구현할 예정이며, 이에 따라 현재 API가 사용하는 일부 속성이 더 이상 사용되지 않게 됩니다.
장치 구성 업데이트
새 버전의 스키마에서는 이제 unit_configurations개체에 더 자세한 설명이 포함됩니다:
multi-unit 시나리오에서는 보다 정확한 단위 정보를 받을 수 있습니다. 예를 들어, 현재 객체 키
1또는Other1대신 새 접근 방식에서는 다음과 같이 각 유닛의 키에 룸 ID를 추가합니다:231607625123_Bedroom1.침대 유형 값이 모두 대문자에서 보다 컴팩트한 구조로 변경됩니다. 예를 들어
TWIN_SINGLE_BED은TwinBed이 됩니다.사용 가능한 침대에 대한 설명이 간소화되고 있습니다. 예를 들어
Twin/Single bed(s) -는 이제Twin Bed(s) -로 표시됩니다.
스키마 변경 예제
Multi-unit 휴가 렌탈
이 예는 각각 침실이 하나씩 있는 3개의 개별 유닛으로 구성된 multi-unit 휴가용 임대 숙소 숙박 시설를 보여줍니다.
이전 스키마
{
"property_id": "49154578123",
"vacation_rental": {
"unit_configurations": {
"1": [
{
"quantity": 1,
"description": "King bed(s) - ",
"type": "KING_BED"
}
],
"2": [
{
"quantity": 2,
"description": "Queen bed(s) - ",
"type": "QUEEN_BED"
},
{
"quantity": 1,
"description": "Sleep sofa/futon(s) - ",
"type": "SLEEP_SOFA_FUTON"
}
],
"3": [
{
"quantity": 1,
"description": "Sleep sofa/futon(s) - ",
"type": "SLEEP_SOFA_FUTON"
}
]
}
}
}새로운 스키마
{
"property_id": "491545781237",
"vacation_rental": {
"unit_configurations": {
"831607625124_Bedroom1": [
{
"quantity": 1,
"description": "King Bed(s) - ",
"type": "KingBed"
}
],
"831607648123_Bedroom1": [
{
"quantity": 2,
"description": "Queen Bed(s) - ",
"type": "QueenBed"
},
{
"quantity": 1,
"description": "Futon(s) - ",
"type": "Futon"
}
],
"231607641239123_Bedroom1": [
{
"quantity": 1,
"description": "Futon(s) - ",
"type": "Futon"
}
]
}
}
}Two-bedroom Vrbo 숙박 시설
이 예는 침실이 2개인 Vrbo 숙박 시설를 보여줍니다.
이전 스키마
{
"property_id": "721545781234",
"vacation_rental": {
"unit_configurations": {
"1": [
{
"quantity": 1,
"description": "King bed(s) - ",
"type": "KING_BED"
}
],
"2": [
{
"quantity": 2,
"description": "Queen bed(s) - ",
"type": "QUEEN_BED"
},
{
"quantity": 1,
"description": "Sleep sofa/futon(s) - ",
"type": "SLEEP_SOFA_FUTON"
}
]
}
}
}새로운 스키마
{
"property_id": "721545781234",
"vacation_rental": {
"unit_configurations": {
"6516076251239_Bedroom1": [
{
"quantity": 1,
"description": "King Bed(s) - ",
"type": "KingBed"
}
],
"6516076251239_Bedroom2": [
{
"quantity": 2,
"description": "Queen Bed(s) - ",
"type": "QueenBed"
},
{
"quantity": 1,
"description": "Futon(s) - ",
"type": "Futon"
}
]
}
}
}이러한 변경 사항에 대해 궁금한 점이 있거나 Rapid 구현에 어떤 영향을 미치는지 궁금한 점이 있으면 지원팀에 문의하세요 .