Organizations and connections
Select an existing organization
In the user interface, you can search for existing organizations. Once you have found the right organization, select it.
Under accommodation, activities, food and drink, and guest harbors, you will find the Organizations section, where you can create or search for an organization.
Create new organization
If you cannot find the organization you are looking for, you can create a new one. Organizations can be added directly in the form when you enter other information about your destination. Click on the magnifying glass and then Create.
Under Accommodation, Activities, Food and drink, and Guest harbor, you will find the Organizations section where you can search for or create an organization.
Under Events, you will find the Organizer property where you can search for or create an organization.
Under Experience packages, you will find the Tour operator property where you can search for or create an organization.
Example 1 - Organization responsible for an event or an experience package
classDiagram
class Organization
class Museum
class Tour
class Experience package
class Castle
Organization --> Tour : organizer
Organization --> Experience package : tour operator
Tour --> Museum : guided tour
Experience package --> Museum : consists of
Experience package --> Castle : consists of
class Organization {
name
description
entry page
}
class Castle {
name
description
entry page
}
class Museum {
name
description
Entrance page
Coordinates
}
class Tour {
Type
Description
Entrance page
Organizer
}
class Experience package {
Type
Destination
Description
Travel organizer
}
Example 2 - Member of organization and part of organization
classDiagram
class Visita
Class Scandic
class Restaurant
class Hotel
Restaurant --> Visita : Member of organization
Hotel --> Visita : Member of organization
Hotel --> Scandic : Part of organization
class Visita {
name
description
entry page
}
class Scandic {
name
description
entry page
}
class Restaurant {
name
description
entry page
coordinates
}
class Hotel {
type
description
entry page
organizer
}