Files
marka/registry/schema-org/BedDetails.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

24 lines
1.0 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:BedDetails",
"title": "BedDetails",
"description": "An entity holding detailed information about the available bed types, e.g. the quantity of twin beds for a hotel room. For the single case of just one bed of a certain type, you can use bed directly with a text. See also [[BedType]] (under development).",
"type": "object",
"allOf": [
{
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.",
"$ref": "schema:Intangible"
}
],
"properties": {
"numberOfBeds": {
"description": "The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.",
"type": "number"
},
"typeOfBed": {
"description": "The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity.",
"anyOf": [{ "type": "string" }, { "$ref": "schema:BedType" }]
}
}
}