文档中心 > International Hotel

Bed Type Description

Fliggy categorizes room bed types into four categories: King/Queen (Large Bed), Twin Beds, Single Bed, and Multiple Beds. The primary bed type codes are as follows: 1 for King/Queen (Large Bed), 2 for Twin Beds, 3 for Single Bed, and 4 for Multiple Beds.

A King/Queen (Large Bed) generally refers to a room type (not a single room; the same room type may have multiple bedrooms, with the bed type being the sum of all beds in the rooms) that has one bed with a width of at least 1.5 meters. For specific sub-bed types, see the bed type definition enumeration.
Twin Beds refer to a room type that has two identical beds, such as two single beds or two double beds. If the two beds are not the same, it is recommended to categorize them as Multiple Beds.
A Single Bed generally refers to a room type that has one bed with a width less than 1.5 meters. For specific sub-bed types, see the bed type definition enumeration.
Multiple Beds refer to a room type that has two or more beds, such as three single beds or one large bed and one single bed. If the room type has two identical beds, it is recommended to categorize them as Twin Beds.

Bed Type Combinations

Within the main bed types, king beds, single beds, and twin beds can be freely combined in pairs. Multiple beds must exist independently and not be combined with other bed types.

When the main bed type is 1, 2, or 3 (king bed, twin beds, single bed), only one sub-bed type is allowed. When the main bed type is 4, multiple sub-bed types can be specified.

Bed type definition enumeration

Bed type code Bed type name Minimum bed width (meters) Maximum bed width (meters) Bed classification Remarks
0 Large Bed 1.5(inclusive) 1.8(inclusive) Large Bed .
2 Single Bed 0.8(inclusive) 1.3(inclusive) Single Bed .
3 Water Bed 1.3(exclusive) 5(inclusive) Large Bed .
7 Extra Large Bed 1.8(exclusive) 10(inclusive) Large Bed .
8 Tatami 0.8(inclusive) 10(inclusive) Large Bed .
9 Round Bed 1.3(exclusive) 5(inclusive) Large Bed .
14 Bunk Bed 0.8(inclusive) 2(inclusive) Multiple Beds 1 Bunk Bed = 2 Beds
16 Bed Space 0.8(inclusive) 2(inclusive) Single Bed .
17 Kang (Traditional Chinese Bed) 0.8(inclusive) 10(inclusive) Single Bed .
18 Tent 0.8(inclusive) 10(inclusive) Single Bed .
19 Heart-shaped Bed 1.3(exclusive) 5(inclusive) Large Bed .
20 Sofa Bed 0.8(inclusive) 1.8(inclusive) Single Bed .
21 Mother-Child Bed 1.3(exclusive) 10(inclusive) Multiple Beds .
23 Sleeping Bag . . Single Bed .
25 Communal Bed 0.8(inclusive) 10(inclusive) Single Bed .
44 Japanese Mattress 0.8(inclusive) 10(inclusive) Large Bed .
45 Double Bed 1.3(inclusive) 1.5(inclusive) Large Bed .
57 Extra Large Wall Bed . . Large Bed .
58 Large Wall Bed . . Large Bed .
59 Double Wall Bed . . Large Bed .
60 Single Wall Bed . . Large Bed .
74 Capsule Bed . . Single Bed .

Sub-bed Type Restrictions

  • When the parent bed type is a large bed, the sub-bed type can only be a large bed as classified in the bed type enumeration, and the number of beds must be 1.
  • When the parent bed type is a single bed, the sub-bed type can only be a single bed (excluding bunk beds) as classified in the bed type enumeration, and the
    number of beds must be 1.
  • When the parent bed type is a double bed, the sub-bed type can be any type except for bunk beds, and the number of beds must be 2.
  • When the parent bed type is multiple beds, the sub-bed type can be any type; however, it must be noted that 1 set of bunk beds equals 2 beds.

Other restrictions:

Bed type and maximum occupancy conflict: If not multiple beds, and the main bed type is a large bed, then the maximum occupancy must be ≤2; if the main bed type is a single bed, then the maximum occupancy must be ≤2; if the main bed type is twin beds, then the maximum occupancy must be ≤4.

Bed type example

API parameter example

Double bed, 1 double bed (1.8M)

[
  {
    "main_bed_type": 1,
    "sub_bed_type": [
      {
        "sub_bed_num": 1,
        "bed_type": "0",
        "width": "1.8"
      }
    ]
  }
]

Single bed, 1 single bed (1.2M)

[
  {
    "main_bed_type": 3,
    "sub_bed_type": [
      {
        "sub_bed_num": 1,
        "bed_type": "2",
        "width": "1.2"
      }
    ]
  }
]

Twin bed, 2 single beds (1.2M)

[
  {
    "main_bed_type": 2,
    "sub_bed_type": [
      {
        "sub_bed_num": 2,
        "bed_type": "2",
        "width": "1.2"
      }
    ]
  }
]

Multiple beds, 3 single beds (1.2M)

[
  {
    "main_bed_type": 4,
    "sub_bed_type": [
      {
        "sub_bed_num": 3,
        "bed_type": "2",
        "width": "1.2"
      }
    ]
  }
]

Multiple beds, 1 large bed (1.8M) and 1 single bed (1.2M)

[
  {
    "main_bed_type": 4,
    "sub_bed_type": [
      {
        "sub_bed_num": 1,
        "bed_type": "0",
        "width": "1.8"
      },
      {
        "sub_bed_num": 1,
        "bed_type": "2",
        "width": "1.2"
      }
    ]
  }
]

King or Twin Beds 1 King Bed (1.8M)/2 Single Beds (1.2M)

[
  {
    "main_bed_type": 1,
    "sub_bed_type": [
      {
        "sub_bed_num": 1,
        "bed_type": "0",
        "width": "1.8"
      }
    ]
  }, {
    "main_bed_type": 2,
    "sub_bed_type": [
      {
        "sub_bed_num": 2,
        "bed_type": "2",
        "width": "1.2"
      }
    ]
  }
]

King or Single Bed 1 King Bed (1.8M)/1 Single Bed (1.2M)

[
  {
    "main_bed_type": 1,
    "sub_bed_type": [
      {
        "sub_bed_num": 1,
        "bed_type": "0",
        "width": "1.8"
      }
    ]
  }, {
    "main_bed_type": 3,
    "sub_bed_type": [
      {
        "sub_bed_num": 1,
        "bed_type": "2",
        "width": "1.2"
      }
    ]
  }
]

FAQ

关于此文档暂时还没有FAQ
返回
顶部