32 lines
2.3 KiB
JSON
32 lines
2.3 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:Suite",
|
|
"title": "Suite",
|
|
"description": "A suite in a hotel or other public accommodation, denotes a class of luxury accommodations, the key feature of which is multiple rooms (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Suite_(hotel)).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"description": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use [[additionalType]] with external vocabularies.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
|
|
"$ref": "schema:Accommodation"
|
|
}
|
|
],
|
|
"properties": {
|
|
"bed": {
|
|
"description": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property.",
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "$ref": "schema:BedDetails" },
|
|
{ "$ref": "schema:BedType" }
|
|
]
|
|
},
|
|
"numberOfRooms": {
|
|
"description": "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue.",
|
|
"anyOf": [{ "type": "number" }, { "$ref": "schema:QuantitativeValue" }]
|
|
},
|
|
"occupancy": {
|
|
"description": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person.",
|
|
"$ref": "schema:QuantitativeValue"
|
|
}
|
|
}
|
|
}
|