big tings

This commit is contained in:
Max Richter
2025-08-17 15:16:17 +02:00
parent 40b9be887d
commit c687eff53d
958 changed files with 32279 additions and 704 deletions

View File

@@ -0,0 +1,34 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:TouristDestination",
"title": "TouristDestination",
"description": "A tourist destination. In principle any [[Place]] can be a [[TouristDestination]] from a [[City]], Region or [[Country]] to an [[AmusementPark]] or [[Hotel]]. This Type can be used on its own to describe a general [[TouristDestination]], or be used as an [[additionalType]] to add tourist relevant properties to any other [[Place]]. A [[TouristDestination]] is defined as a [[Place]] that contains, or is colocated with, one or more [[TouristAttraction]]s, often linked by a similar theme or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) defines Destination (main destination of a tourism trip) as the place visited that is central to the decision to take the trip.\n (See examples below.)",
"type": "object",
"allOf": [
{
"description": "Entities that have a somewhat fixed, physical extension.",
"$ref": "schema:Place"
}
],
"properties": {
"includesAttraction": {
"description": "Attraction located at destination.",
"oneOf": [
{ "$ref": "schema:TouristAttraction" },
{ "type": "array", "items": { "$ref": "schema:TouristAttraction" } }
]
},
"touristType": {
"description": "Attraction suitable for type(s) of tourist. E.g. children, visitors from a particular country, etc. ",
"oneOf": [
{ "anyOf": [{ "type": "string" }, { "$ref": "schema:Audience" }] },
{
"type": "array",
"items": {
"anyOf": [{ "type": "string" }, { "$ref": "schema:Audience" }]
}
}
]
}
}
}