Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&hide_recurring_children=true&page=126
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 19452,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=127",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=125"
    },
    "data": [
        {
            "id": "kulke:64377",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152080,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-12T13:14:49.849603Z",
                    "last_modified_time": "2024-08-12T13:14:49.849618Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750214.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152080/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2024-08-12T13:14:49.832853Z",
            "last_modified_time": "2024-12-20T01:14:25.195976Z",
            "date_published": null,
            "start_time": "2024-12-18T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa syksyllä 2024!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/9AC5D5DC27A4DBFCFDAAC3623D15A0FA/Kipina_x_Stoa"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kipinä x Stoa"
            },
            "description": {
                "fi": "<p>Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa syksyllä 2024!</p><p>Lavalle nousevat mm. Helsinki Unity Musicin artistit ja muut Kipinän toimijat. Kipinä x Stoa -tapahtumien sisällöt ja aikataulut tarkentuvat myöhemmin.</p><p>Tsekkaa ajankohtaisin tieto Nuorten toimintatalo Kipinän Instagramissa @kipina_official sekä nettisivuilla https://nuorten.hel.fi/nuorisotalot/nuorten-toimintatalo-kipina-itakeskus/.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64377/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65103",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-crossing-3780609/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-crossing-3780609/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-crossing-3780609/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153095,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-27T11:14:31.296484Z",
                    "last_modified_time": "2024-11-27T11:14:31.296502Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745823.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153095/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-27T11:14:31.271410Z",
            "last_modified_time": "2024-12-20T01:14:25.112441Z",
            "date_published": null,
            "start_time": "2024-12-18T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D865520CA63A948D22A0B16EB2AE1C0D/Crossing_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D865520CA63A948D22A0B16EB2AE1C0D/Crossing_7_",
                "en": "http://www.malmitalo.fi/en/events/event/D865520CA63A948D22A0B16EB2AE1C0D/Crossing_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Crossing (7) – Kino Helios",
                "sv": "Crossing (7) – Kino Helios",
                "en": "Crossing (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle.</p><p>Georgialainen rantakylä. Opettajana uransa tehnyt Lia haluaa löytää kadonneen sisarentyttärensä Teklan. Rähjäinen naapurinpoika Achi väittää tietävänsä Teklan uuden osoitteen Istanbulissa.</p><p>Kaksikko ylittää rajan ja seilaa Bosporin salmen yli ajattomaan ja uskomattomaan Istanbuliin, missä totuudella on monet kasvot. Jostain löytyy apua aina kun tilanne tuntuu toivottomalta. Trans-oikeuksien puolesta kampanjoiva Evrim näyttää tuntevan kaikki, ja kaikki avaavat hänelle ovensa.</p><p>And Then We Danced -ohjaaja Levan Akin on kirjoittanut ja ohjannut paikan tuntua sykkivän tarinan, jossa syrjäisten kujien musiikki kuljettaa kaksikkoa yhä uusiin yhteisöihin. Tekla halusi ehkä kadota, mutta hän tuntuu olevan koko ajan yhä lähempänä.</p><p>Ruotsin ehdokas Pohjoismaiden neuvoston vuoden 2024 elokuvapalkinnon saajaksi.</p><p>Ikäraja: 7<br>Kesto: 106 min.<br>Ensi-ilta: 08.11.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65103/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64527",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152310,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-05T11:14:03.655171Z",
                    "last_modified_time": "2024-09-05T11:14:03.655185Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749851.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152310/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-09-05T11:14:03.637650Z",
            "last_modified_time": "2024-12-20T01:14:25.020070Z",
            "date_published": null,
            "start_time": "2024-12-18T08:00:00Z",
            "end_time": "2024-12-18T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.",
                "en": "Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/862840E1114184116E8A0B23F0A820D6/Naperokino",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/862840E1114184116E8A0B23F0A820D6/Knattebion",
                "en": "http://www.annantalo.fi/en/events/event/862840E1114184116E8A0B23F0A820D6/Toddler_cinema"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Naperokino",
                "sv": "Knattebion",
                "en": "Toddler cinema"
            },
            "description": {
                "fi": "<p>Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokinossa esitetään lapsille laadukkaita elokuvia ja totutellaan heitä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ovella lapsia on tervehtimässä Pikku-Myyrä. Isoa Myyrää pääsee tapaamaan syyslomaviikolla ke 16.10. ja Lapsen oikeuksien päivänä ke 20.11.</p><p>Naperokinon näytöksillä on joka viikko vaihtuva teema.</p><p>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa<br>Kieli: suomi<br>Maksuton</p><p>Naperokinon teemat syksyllä 2024:</p><p>Ke 4.9.2024 Naperokino: Luonto ja eläimet<br>Ke 11.9.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 18.9.2024 Naperokino: seikkailu ja matka<br>Ke 25.9.2024 Naperokino: huolenpito ja rakkaus</p><p>Ke 2.10.2024 Naperokino: rohkeus ja auttaminen<br>Ke 9.10.2024 Naperokino: ystävät ja perhe<br>Ke 16.10.2024 Naperokino: luovuus ja taiteet<br>Ke 23.10.2024 Naperokino: luonto ja eläimet<br>Ke 30.10.2024 Naperokino: mielikuvitus</p><p>Ke 6.11.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 13.11.2024 Naperokino: seikkailu ja matka<br>Ke 20.11.2024 Naperokino: huolenpito ja rakkaus<br>Ke 27.11.2024 Naperokino: rohkeus ja auttaminen</p><p>Ke 4.12.2024 Naperokino: ystävät ja perhe<br>Ke 11.12.2024 Naperokino: luovuus ja taiteet<br>Ke 18.12.2024 Naperokino: luonto ja eläimet</p>",
                "sv": "<p>Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Den avslappnade, bekväma lokalen och situationen gör det möjligt att värma mat, mata/amma och introducera barnen till biografen i deras egen takt. Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Knattebion visar barnen filmer av hög kvalitet och vänjer dem gradvis vid att titta på långa barnfilmer på biografer. Den första halvan av visningen som varar två timmar består av animerade filmer utan tal och den andra halvan av favoritfilmer med tal. Vid sidan av filmerna är Knattebion en mötesplats för små barn och deras vuxna.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Barnen hälsas välkomna vid dörren av Lilla Mullvaden. Du kan träffa Stora Mullvaden under höstlovsveckan ons 16.10. och på Barnrättsdagen ons 20.11.</p><p>Temat för Knattebions föreställningar varierar varje vecka.</p><p>Åldersrekommendation: 0–3-åringar i sällskap med sina föräldrar<br>Språk: finska<br>Fritt inträde</p><p>Teman för Knattebion hösten 2024:</p><p>Ons 4.9.2024 Knattebion: Natur och djur<br>Ons 11.9.2024 Knattebion: samhälle och stad<br>Ons 18.9.2024 Knattebion: äventyr och resor<br>Ons 25.9.2024 Knattebion: omsorg och kärlek</p><p>Ons 2.10.2024 Knattebion: mod och att hjälpa andra<br>Ons 9.10.2024 Knattebion: vänner och familj<br>Ons 16.10.2024 Knattebion: kreativitet och konst<br>Ons 23.10.2024 Knattebion: natur och djur<br>Ons 30.10.2024 Knattebion: fantasi</p><p>Ons 6.11.2024 Knattebion: samhälle och stad<br>Ons 13.11.2024 Knattebion: äventyr och resor<br>Ons 20.11.2024 Knattebion: omsorg och kärlek<br>Ons 27.11.2024 Knattebion: mod och att hjälpa andra</p><p>Ons 4.12.2024 Knattebion: vänner och familj<br>Ons 11.12.2024 Knattebion: kreativitet och konst<br>Ons 18.12.2024 Knattebion: natur och djur</p>",
                "en": "<p>Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>A relaxed, comfortable venue and setting allows you to heat up food, feed or breastfeed, and introduce your child to cinema at their own pace. A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler cinema presents high-quality films for children and gradually get them used to watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue. Alongside the films, the Toddler Cinema serves as a meeting place for small children and their adults.</p><p>Toddler Cinema is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>Little Mole will greet the children at the door. Big Mole will be available to meet on Wednesday, 16 October during the autumn holiday week as well as on Children's Day, Wednesday, 20 November.</p><p>The Toddler Cinema screenings have a different theme each week.</p><p>Age recommendation: For 0–3-year-olds with parents<br>Language: Finnish<br>Free of charge</p><p>Toddler Cinema themes for autumn 2024:</p><p>Wed 04 Sept 2024 Toddler Cinema: Nature and Animals<br>Wed 11 Sept 2024 Toddler Cinema: Society and the City<br>Wed 18 Sept 2024 Toddler Cinema: Adventure and Travel<br>Wed 25 Sept 2024 Toddler Cinema: Care and Love</p><p>Wed 2 Oct 2024 Toddler Cinema: Courage and Helping Others<br>Wed 9 Oct 2024 Toddler Cinema: Friends and Family<br>Wed 16 Oct 2024 Toddler Cinema: Creativity and the Arts<br>Wed 23 Oct 2024 Toddler Cinema: Nature and Animals<br>Wed 30 Oct 2024 Toddler Cinema: The Imagination</p><p>Wed 06 Nov 2024 Toddler Cinema: Society and the City<br>Wed 13 Nov 2024 Toddler Cinema: Adventure and Travel<br>Wed 20 Nov 2024 Toddler Cinema: Care and Love<br>Wed 27 Nov 2024 Toddler Cinema: Courage and Helping Others</p><p>Wed 04 Dec 2024 Toddler Cinema: Friends and Family<br>Wed 11 Dec 2024 Toddler Cinema: Creativity and the Arts<br>Wed 18 Dec 2024 Toddler Cinema: Nature and Animals</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64527/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64662",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/milagro-de-navidad-joulun-ihme-3656357/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/milagro-de-navidad-joulun-ihme-3656357/",
                        "en": "https://www.lippu.fi/artist/malmitalo/milagro-de-navidad-joulun-ihme-3656357/"
                    },
                    "price": {
                        "fi": "22,50 € / 17,50 €",
                        "sv": "22,50 € / 17,50 €",
                        "en": "22,50 € / 17,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152742,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-07T09:15:35.773980Z",
                    "last_modified_time": "2024-10-07T09:15:35.773997Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758913.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152742/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-07T09:15:35.708560Z",
            "last_modified_time": "2024-12-20T01:14:24.933941Z",
            "date_published": null,
            "start_time": "2024-12-17T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Flamencotanssin ja -musiikin tunteiden paloa, upeita tanssiesityksiä alkeista ammattilaisiin.",
                "sv": "Flamencodansens och -musikens passion, fantastiska dansuppvisningar från nybörjare till proffs.",
                "en": "The passion of flamenco dance and music, great dance performances from beginners to professionals."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4D48B40E8DA6646CB6A05854978DC386/Milagro_de_navidad_Joulun_ihme_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4D48B40E8DA6646CB6A05854978DC386/Milagro_de_navidad_Julens_under_",
                "en": "http://www.malmitalo.fi/en/events/event/4D48B40E8DA6646CB6A05854978DC386/Milagro_de_navidad_Miracle_of_Christmas_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Milagro de navidad – Joulun ihme – Fiesta Flamencan ja Vuelta Flamencon joulunäytös 2024",
                "sv": "Milagro de navidad – Julens under – Fiesta Flamencas och Vuelta Flamencos juluppvisning 2024",
                "en": "Milagro de navidad – Miracle of Christmas – Fiesta Flamenca and Vuelta Flamenco Christmas Show 2024"
            },
            "description": {
                "fi": "<p>Flamencotanssin ja -musiikin tunteiden paloa, upeita tanssiesityksiä alkeista ammattilaisiin.</p><p>Joulun ihme -näytös kuljettaa katsojan Korvatunturilta kuumaan Andalusiaan ja sieltä takaisin maagiseen Pohjolaan.</p><p>Tanssijoiden koreografioista ja musiikista vastaavat suomalaiset flamencotaiteilijat Anne Riikola-Sarkkila, Marianna Stråhlmann ja kitaristi-säveltäjä Toni Jokiniitty.</p><p>Kesto: 80 min, ei väliaikaa<br>Tuotanto: Fiesta Flamenca ja tmi Vuelta</p>",
                "sv": "<p>Flamencodansens och -musikens passion, fantastiska dansuppvisningar från nybörjare till proffs.</p><p>Uppvisningen Julens under sveper med publiken från Korvatunturi till det heta Andalusien och tillbaka till magiska Norden.</p><p>För dansarnas koreografi och musik svarar de finländska flamencoartisterna Anne Riikola-Sarkkila, Marianna Stråhlmann och gitarristen och kompositören Toni Jokiniitty.</p><p>Produktion: Fiesta Flamenca och fma Vuelta</p>",
                "en": "<p>The passion of flamenco dance and music, great dance performances from beginners to professionals.</p><p>The Christmas Miracle show transports the viewer from Korvatunturi to hot Andalusia and back again to the magical North.</p><p>The dancers' choreographies and music are performed by Finnish flamenco artists Anne Riikola-Sarkkila, Marianna Stråhlmann and guitarist-composer Toni Jokiniitty.</p><p>Production: Fiesta Flamenca and tmi Vuelta</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64662/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64985",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3771981",
                        "en": "https://www.lippu.fi/eventseries/name-3771981"
                    },
                    "price": {
                        "fi": "38,90-55,60 €",
                        "en": "38,90-55,60 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153035,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-15T12:14:41.518487Z",
                    "last_modified_time": "2024-11-15T12:14:41.518508Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763178.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153035/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-13T10:14:39.858355Z",
            "last_modified_time": "2024-12-20T01:14:24.852566Z",
            "date_published": null,
            "start_time": "2024-12-17T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Hüseyin Turan, Seyhmus Fidan, Ertan Tekin, Ercan Kilkil",
                "en": "Hüseyin Turan, Seyhmus Fidan, Ertan Tekin, Ercan Kilkil"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2A1CE5014A0BFE6A9A35D3EF7101CF40/Anadolunun_Kadim_Ezgileri_Anatolian_ikivanhat_savelmat",
                "en": "http://www.savoyteatteri.fi/en/events/event/2A1CE5014A0BFE6A9A35D3EF7101CF40/Anadolunun_Kadim_Ezgileri_Anatolian_ikivanhat_savelmat"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Anadolunun Kadim Ezgileri / Anatolian ikivanhat sävelmät",
                "en": "Anadolunun Kadim Ezgileri / Anatolian ikivanhat sävelmät"
            },
            "description": {
                "fi": "<p>Hüseyin Turan, Seyhmus Fidan, Ertan Tekin, Ercan Kilkil</p><p>Meditatif müzik projeleri, genellikle ruhsal ve zihinsel rahatlama sağlamak, konsantrasyonu artırmak ve içsel dengeyi bulmaya yardımcı olmak amacıyla oluşturulan çalışmalardır. Bu projelerde çeşitli kültürel geçmişlere sahip müzisyenler bir araya gelerek, dinleyicilere benzersiz ve zengin bir deneyim sunmak için farklı müzik unsurlarını harmanlarlar.</p><p>“Üç Ayak” müzik projesi Geçmişten günümüze Anadolu’da var olmuş bütün kültürlere ait müziklerin, büyük bir ustalıkla harmanlandığı bir içeriğe sahip. İnsanların ruhlarının farkındalığı,  hayata bakış açıları ve yaşantılarını doğrudan etkilemekte. Üç Ayak müzik projesi, bireylerin tamamen ruhuna yönelik yani ruhsal bir farkındalık yaratan canlı gerçekleştirilen bir müzik projesidir. Özel bir repertuvarla, özgün bir sunum ile izleyici ve dinleyenleri ile buluşuyor.</p><p>Her katılımcı, müziğin içinde kaybolup kendi içsel yolculuğuna çıkabilir.</p><p>***</p><p>Meditatiiviset musiikkiprojektit ovat yleensä kehitetty tarjoamaan hengellistä ja henkistä rentoutumista, lisäämään keskittymistä ja auttamaan sisäisen tasapainon löytämisessä. Näissä projekteissa eri kulttuuritaustoista tulevat muusikot kokoontuvat yhteen sekoittamaan erilaisia musiikkielementtejä, tarjoten kuuntelijoille ainutlaatuisen ja rikastuttavan kokemuksen.</p><p>\"Üç Ayak\" musiikkiprojekti sisältää taitavasti yhdistettyä musiikkia kaikista kulttuureista, jotka ovat olleet olemassa Anatoliassa menneisyydestä nykypäivään. Se vaikuttaa suoraan ihmisten sielun tietoisuuteen, elämän näkemyksiin ja kokemuksiin. \"Üç Ayak\" musiikkiprojekti on elävä musiikkikokemus, joka luo hengellistä tietoisuutta yksilöille. Se esittelee erityisen ohjelmiston ja ainutlaatuisen esityksen, jonka myötä se kohtaa yleisönsä ja kuuntelijansa.</p><p>Jokainen osallistuja voi uppoutua musiikkiin ja aloittaa oman sisäisen matkansa</p><p>Kesto n. 3 h, ei väliaikaa</p><p>Ikäraja: S</p>",
                "en": "<p>Hüseyin Turan, Seyhmus Fidan, Ertan Tekin, Ercan Kilkil</p><p>Meditatif müzik projeleri, genellikle ruhsal ve zihinsel rahatlama sağlamak, konsantrasyonu artırmak ve içsel dengeyi bulmaya yardımcı olmak amacıyla oluşturulan çalışmalardır. Bu projelerde çeşitli kültürel geçmişlere sahip müzisyenler bir araya gelerek, dinleyicilere benzersiz ve zengin bir deneyim sunmak için farklı müzik unsurlarını harmanlarlar.</p><p>“Üç Ayak” müzik projesi Geçmişten günümüze Anadolu’da var olmuş bütün kültürlere ait müziklerin, büyük bir ustalıkla harmanlandığı bir içeriğe sahip. İnsanların ruhlarının farkındalığı,  hayata bakış açıları ve yaşantılarını doğrudan etkilemekte. Üç Ayak müzik projesi, bireylerin tamamen ruhuna yönelik yani ruhsal bir farkındalık yaratan canlı gerçekleştirilen bir müzik projesidir. Özel bir repertuvarla, özgün bir sunum ile izleyici ve dinleyenleri ile buluşuyor.</p><p>Her katılımcı, müziğin içinde kaybolup kendi içsel yolculuğuna çıkabilir.</p><p>***</p><p>Meditative music projects are generally created to provide spiritual and mental relaxation, enhance concentration, and assist individuals in finding inner balance. In these projects, musicians from various cultural backgrounds come together to blend different musical elements, offering listeners a unique and enriching experience.</p><p>The \"Üç Ayak\" music project features content that skillfully combines music from all the cultures that have existed in Anatolia throughout history. It directly influences people's awareness of their souls, their perspectives on life, and their experiences. The \"Üç Ayak\" music project is a live musical experience that fosters spiritual awareness in individuals. It presents a special repertoire and unique performance, engaging the audience and listeners in a profound way.</p><p>Each participant can immerse themselves in the music and embark on their own inner journey.</p>"
            },
            "provider": {
                "fi": "Me Turkkilaiset ry",
                "en": "Me Turkkilaiset ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64985/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64988",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153021,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-14T09:14:46.783427Z",
                    "last_modified_time": "2024-11-14T09:14:46.783446Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763330.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153021/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-14T09:14:46.739779Z",
            "last_modified_time": "2024-12-20T01:14:24.766630Z",
            "date_published": null,
            "start_time": "2024-12-17T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kauneimmat joululaulut siivittävät kuulijansa pehmeästi kohti joulun riemastuttavaa aikaa.",
                "sv": "De vackraste julsångerna leder varsamt lyssnarna mot den glada jultiden.",
                "en": "The most beautiful Christmas songs smoothly propel their listeners towards an exhilarating Christmas."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E87D51B31900D779CE13C65B648EB31A/Kauneimmat_joululaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E87D51B31900D779CE13C65B648EB31A/De_vackraste_julsangerna",
                "en": "http://www.malmitalo.fi/en/events/event/E87D51B31900D779CE13C65B648EB31A/The_Most_Beautiful_Christmas_Songs"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kauneimmat joululaulut",
                "sv": "De vackraste julsångerna – på finska",
                "en": "The Most Beautiful Christmas Songs – in Finnish"
            },
            "description": {
                "fi": "<p>Kauneimmat joululaulut siivittävät kuulijansa pehmeästi kohti joulun riemastuttavaa aikaa.</p><p>Yhteiseen jouluperinteeseen ja kauneimpiin joululauluihin johdattamassa Heidi Visa, laulu, Aino Hänninen, viulu, sekä kanttori Mari Torri-Tuominen ja pastori Kirsi Ojansuu-Kaunisto Malmin seurakunnasta.<br> <br>Vapaa pääsy!</p><p>Kesto 1 tunti.</p>",
                "sv": "<p>De vackraste julsångerna leder varsamt lyssnarna mot den glada jultiden.</p><p>Heidi Visa, sång, Aino Hänninen, violin, samt kantor Mari Torri-Tuominen och pastor Kirsi Ojansuu-Kaunisto från Malms församling leder den gemensamma jultraditionen och de vackraste julsångerna.<br> <br>Fritt inträde!</p><p>Längd 1 h</p>",
                "en": "<p>The most beautiful Christmas songs smoothly propel their listeners towards an exhilarating Christmas.</p><p>Heidi Visa, vocals, Aino Hänninen, violin, as well as chantress Mari Torri-Tuominen and pastor Kirsi Ojansuu-Kaunisto from the Malmi parish will guide everyone into our shared Christmas traditions and the most beautiful Christmas songs.<br> <br>Admission is free!</p><p>Duration: 1 h</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64988/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63898",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/club-for-five/club-for-five-jouluna-2024-3655862/"
                    },
                    "price": {
                        "fi": "47 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151693,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-11T12:14:20.072840Z",
                    "last_modified_time": "2024-07-11T12:14:20.072859Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753397.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151693/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-25T08:12:55.039087Z",
            "last_modified_time": "2024-12-20T01:14:24.686611Z",
            "date_published": null,
            "start_time": "2024-12-16T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2374E32DF633B9417C44D6808AA06B49/CLUB_FOR_FIVE_Jouluna_2024"
            },
            "location_extra_info": null,
            "name": {
                "fi": "CLUB FOR FIVE: Jouluna 2024 – Loppuunmyyty! / Sold out!"
            },
            "description": {
                "fi": "<p>Perinteinen Club For Fiven JOULUNA -konsertti yllättää yleisönsä jälleen täysin uudella joulukattauksella. Rakastettu lauluyhtye taikoo joulun monet sävyt herkästä tunnelmoinnista virtuoottiseen ilotteluun ja nostaa juhlan odotuksen riemun ylimmilleen. Tule antautumaan joulun vietäväksi ja koe vuoden odotetuin konsertti.<br> <br>Ikäraja: S<br> <br>Kesto n. 2 h 15 min, sisältää väliajan</p>"
            },
            "provider": {
                "fi": "Helmi Promotion Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63898/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64164",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151624,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-03T13:13:24.653519Z",
                    "last_modified_time": "2024-07-03T13:13:24.653532Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751055.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151624/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-07-03T13:13:24.639333Z",
            "last_modified_time": "2024-12-20T01:14:24.602561Z",
            "date_published": null,
            "start_time": "2024-12-16T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!",
                "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!",
                "en": "Nothing is more fun than singing – except for singing together!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7094A89140E1EDA2CF3E7BF2668C50B0/Nyt_lauletaan_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/7094A89140E1EDA2CF3E7BF2668C50B0/Nu_sjunger_vi_",
                "en": "http://www.kanneltalo.fi/en/events/event/7094A89140E1EDA2CF3E7BF2668C50B0/Let_us_sing_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Nyt lauletaan! – Maksuttomat maanantait",
                "sv": "Nu sjunger vi! – Kostnadsfria måndagar",
                "en": "Let us sing! – Free Mondays"
            },
            "description": {
                "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko <b>Mari Kätkä.</b></p><p>Kesto: 1 t<br>Vapaa pääsy</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. <b>Mari Kätkä</b> leder allsången.</p><p>Längd: 1 timme</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by <b>Mari Kätkä.</b></p><p>Duration: 1 hour</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64164/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63897",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/club-for-five/club-for-five-jouluna-2024-3655862/"
                    },
                    "price": {
                        "fi": "47 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151692,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-11T12:14:19.934264Z",
                    "last_modified_time": "2024-07-11T12:14:19.934281Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751901.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151692/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-25T08:12:54.959170Z",
            "last_modified_time": "2024-12-20T01:14:24.521420Z",
            "date_published": null,
            "start_time": "2024-12-15T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/CE9DCE80A24D39E4264ADE81031E3005/CLUB_FOR_FIVE_Jouluna_2024"
            },
            "location_extra_info": null,
            "name": {
                "fi": "CLUB FOR FIVE: Jouluna 2024"
            },
            "description": {
                "fi": "<p>Perinteinen Club For Fiven JOULUNA -konsertti yllättää yleisönsä jälleen täysin uudella joulukattauksella. Rakastettu lauluyhtye taikoo joulun monet sävyt herkästä tunnelmoinnista virtuoottiseen ilotteluun ja nostaa juhlan odotuksen riemun ylimmilleen. Tule antautumaan joulun vietäväksi ja koe vuoden odotetuin konsertti.<br> <br>Ikäraja: S<br> <br>Kesto n. 2 h 15 min, sisältää väliajan</p>"
            },
            "provider": {
                "fi": "Helmi Promotion Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63897/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63896",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/club-for-five/club-for-five-jouluna-2024-3655862/"
                    },
                    "price": {
                        "fi": "47 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151691,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-11T12:14:19.846895Z",
                    "last_modified_time": "2024-07-11T12:14:19.846912Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751900.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151691/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-25T08:12:54.886884Z",
            "last_modified_time": "2024-12-20T01:14:24.440142Z",
            "date_published": null,
            "start_time": "2024-12-15T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/85AAEDC4075FA2C4E981F41E606545CA/CLUB_FOR_FIVE_Jouluna_2024"
            },
            "location_extra_info": null,
            "name": {
                "fi": "CLUB FOR FIVE: Jouluna 2024"
            },
            "description": {
                "fi": "<p>Perinteinen Club For Fiven JOULUNA -konsertti yllättää yleisönsä jälleen täysin uudella joulukattauksella. Rakastettu lauluyhtye taikoo joulun monet sävyt herkästä tunnelmoinnista virtuoottiseen ilotteluun ja nostaa juhlan odotuksen riemun ylimmilleen. Tule antautumaan joulun vietäväksi ja koe vuoden odotetuin konsertti.<br> <br>Ikäraja: S<br> <br>Kesto n. 2 h 15 min, sisältää väliajan</p>"
            },
            "provider": {
                "fi": "Helmi Promotion Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63896/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61388",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/jarkko-tamminen/"
                    },
                    "price": {
                        "fi": "42,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6448,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-05T16:13:48.290450Z",
                    "last_modified_time": "2024-02-06T13:23:45.322218Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740127.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6448/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-05T16:13:48.269237Z",
            "last_modified_time": "2024-12-20T01:14:24.270381Z",
            "date_published": null,
            "start_time": "2024-12-14T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Imitaattori Jarkko Tamminen lähtee syksyllä 2024 soolokiertueelle ympäri Suomea."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C3A8EECFCE93E3885F027D4636C02467/Jarkko_Tamminen_Kuuleeko_Helsinki_-imitaatioshow"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jarkko Tamminen \"Kuuleeko Helsinki?\" -imitaatioshow"
            },
            "description": {
                "fi": "<p>Imitaattori Jarkko Tamminen lähtee syksyllä 2024 soolokiertueelle ympäri Suomea.</p><p>Jarkko lähtee kiertämään Suomenmaata jo suosituksi tulleella konseptilla: päivitetyllä \"Kuuleeko..\"-esityksellään.</p><p>Show koostuu sekä puhe- että lauluimitaatioista. Esityksessä Jarkko esittää yli 40 hahmoa. Lavalla nähdään ja kuullaan imitaatioita Kape Aihisesta Kaija Koohon, Pasi Rautiaisesta Stigiin ja Olli Jokisesta Käärijään. Myös yleisöllä on mahdollisuus vaikuttaa esityksessä nähtäviin hahmoihin toiveiden kautta. Illan aikana käydään läpi ajankohtaisia aiheita ja lisäksi kunkin kiertuepaikkakunnan paikallisuutiset saavat osansa, kun hahmot ottavat esille aina kullakin paikkakunnalla puhuttavia aiheita.</p><p>Esityksessä Jarkko on lavalla yksin ja esityksessä käytetään vain pientä rekvisiittaa: lakkeja, peruukkeja ja takkeja. Lauluosuudet esitetään taustanauhojen kera. Esityksen sisältö on pääosin parhaita paloja Jarkon edelliskiertueiden jutuista, mutta mukaan mahtuu myös runsaasti uutta materiaalia.</p><p>Ilta koostuu kahdesta noin 45min setistä, joiden välissä on väliaika.<br>Esityksen kesto on siis 2 h, sisältäen puolen tunnin mittaisen väliajan.</p><p>Katso kiertuepaikkakunnat, liput ja lisätiedot osoitteesta: www.jarkkotamminen.com</p><p>Ikäsuositus: +12</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>"
            },
            "provider": {
                "fi": "Comedy Corner Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61388/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64350",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kinetic-orchestra/",
                        "sv": "https://www.lippu.fi/artist/kinetic-orchestra/",
                        "en": "https://www.lippu.fi/artist/kinetic-orchestra/"
                    },
                    "price": {
                        "fi": "24,80 € / 15 €",
                        "sv": "24,80 € / 15 €",
                        "en": "24,80 € / 15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152727,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-03T13:14:15.841523Z",
                    "last_modified_time": "2024-10-03T13:14:15.841535Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756020.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-03T13:14:15.829942Z",
            "last_modified_time": "2024-12-20T01:14:24.183604Z",
            "date_published": null,
            "start_time": "2024-12-14T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Gravity on nopeatempoinen ja liikkeellisesti sykähdyttävä esitys kahdeksalle virtuoottiselle tanssijalle.",
                "sv": "Gravity är en föreställning med snabbt tempo och hänförande rörelser för åtta virtuosa dansare.",
                "en": "Gravity is a 50-minute long, high-paced, physically stunning performance danced by eight highly skilled dancers."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/C6055316FC42E8CD63B650FDC0D47C9A/Kinetic_Orchestra_Gravity",
                "sv": "http://www.stoa.fi/sv/evenemang/event/C6055316FC42E8CD63B650FDC0D47C9A/Kinetic_Orchestra_Gravity",
                "en": "http://www.stoa.fi/en/events/event/C6055316FC42E8CD63B650FDC0D47C9A/Kinetic_Orchestra_Gravity"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kinetic Orchestra: Gravity",
                "sv": "Kinetic Orchestra: Gravity",
                "en": "Kinetic Orchestra: Gravity"
            },
            "description": {
                "fi": "<p>Gravity on nopeatempoinen ja liikkeellisesti sykähdyttävä esitys kahdeksalle virtuoottiselle tanssijalle.</p><p>Teos on jatkumoa koreografi <b>Jarkko Mandelinin</b> työlle äärimmäisen fyysisten ja liikelähtöisten tanssiteosten parissa.</p><p>”Gravity on kuin aikansa kuva. Monikerroksinen, nopeatempoinen ja monista eri liiketekniikoista ja liikekulttuureista koostuva verkko. Sen vauhti ja liikekeskeisyys eivät ainoastaan tutki ja tee näkyväksi painovoimaa, mutta myös aikaa niin kirjaimellisesti kuin yleisemminkin sitä omalla olemassaolollaan kommentoiden.” – Koreografi Jarkko Mandelin</p><p>Gravity tuntuu samanaikaisesti vetävän meitä puoleensa ja riippuvan uhkaavana päällämme. Tämä heijastuu myös William Ilesin yksinkertaisessa mutta tehokkaassa skenografiassa sekä Janne Hastin periksiantamattomassa äänisuunnittelussa.</p><p>Vauhdin ja rytmin voimakas manipulointi, nykivät liikkeet sekä pysähdykset ja romahdukset, jotka nopeasti katkovat yhä kiihtyviä liikejaksoja, tuovat Gravityyn todellisen tuntuman painovoimasta ja sen rajoitteista. Teoksen dramaturginen rakenne seuraa toisiinsa limittyvien lyhyiden kohtausten kiihkeää kehää ja tuntuu näin saavuttavan jotain olennaista tästä ajasta ja sen hektisestä tahdista.</p><p>Teos on toteutettu Helsinki Dance Companyn ja Kinetic Orchestran yhteistyönä.</p><p>Kesto: noin 50 minuuttia<br> <br><b>Työryhmä:</b><br>Koreografia: Jarkko Mandelin ja työryhmä<br>Tanssijat: Sanni Giordani, Jyrki Kasper, Mia Jaatinen, Kalle Lähde, Heidi Naakka, Mikko Paloniemi, Justus Pienmunne, ja Oskari Turpeinen<br>Tanssijat kiertueella: Sanni Giordani,  Mia Jaatinen, Kalle Lähde, Oskari Turpeinen, Minna Kaaronen, Suvi Nieminen, Manuela Hierl, Hugo Sellam</p><p>Kiertueteknikko: Niila Rantala<br>Skenografia: William Iles<br>Äänisuunnittelu: Janne Hast<br>Puvustus: Elina Kolehmainen<br>Koreografin assistentti: Suvi Nieminen<br>Tuotanto: Helsinki Dance Company / Helsingin kaupunginteatteri<br>Kiertuetuotanto: Kinetic Orchestra</p><p><i>”GRAVITY on kuin tuuli ja aurinko ja raikas sade tanssin puutteesta nääntyneelle sielulle.”</i><br>Merja Koskiniemi, HS 14.11.2021<br> <br><i>”Tekee melkein mieli sanoa, että jos aikoo tänä syksynä katsoa vain yhden tanssiesityksen, tämä 45-minuuttinen on must.”</i> Annikki Alku, Demokraatti 12.11.2021</p>",
                "sv": "<p>Gravity är en föreställning med snabbt tempo och hänförande rörelser för åtta virtuosa dansare.</p><p>Verket fortsätter koreografen <b>Jarkko Mandelins</b> arbete med extremt fysiska och rörelsebaserade dansverk.</p><p>\"Gravity är som en bild av sin tid. Ett nätverk med flera skikt och snabbt tempo som består av många olika rörelsetekniker och rörelsekulturer. Tempot och fokusen på rörelse studerar och synliggör inte bara tyngdkraften, utan också tiden, både bokstavligen och mer allmänt, genom att kommentera den med sin egen existens.\" – Koreografen Jarkko Mandelin</p><p>Gravity verkar samtidigt dra oss till sig och hotfullt hänga över oss. Detta återspeglas också i den enkla men effektiva scenografin av William Iles och den orubbliga ljuddesignen av Janne Hast.</p><p>Den kraftiga manipulationen av tempot och rytmen, de ryckiga rörelserna samt pauserna och kollapserna som snabbt avbryter de ständigt accelererande rörelseserierna ger Gravity en verklig känsla av tyngdkraft och dess begränsningar. Verkets dramaturgiska struktur följer en intensiv cirkel av överlappande korta scener och tycks därmed uppnå något väsentligt med denna tid och dess hektiska tempo.</p><p>Verket har genomförts i samarbete mellan Helsinki Dance Company och Kinetic Orchestra.</p><p><b>Arbetsgrupp</b><br>Koreografi: Jarkko Mandelin och arbetsgruppen<br>Dansare: Sanni Giordani, Jyrki Kasper,  Mia Jaatinen, Kalle Lähde, Heidi Naakka, Mikko Paloniemi, Justus Pienmunne och Oskari Turpeinen<br>Dansare på turnén: Sanni Giordani, Mia Jaatinen, Kalle Lähde, Oskari Turpeinen, Minna Kaaronen, Suvi Nieminen, Manuela Hierl, Hugo Sellam<br>Turnétekniker: Niila Rantala<br>Scenografi: William Iles<br>Ljuddesign: Janne Hast<br>Kostymdesign: Elina Kolehmainen<br>Koreografassistent: Suvi Nieminen<br>Produktion: Helsinki Dance Company/Helsingfors stadsteater<br>Turnéproduktion: Kinetic Orchestra</p><p><i>\"GRAVITY är som vind och sol och ett friskt regn för en själ som svälter av brist på dans.\"</i><br>Merja Koskiniemi, HS 14.11.2021</p><p><i>\"Jag får nästan lust att säga att om du bara ska se en dansföreställning i höst, så är de här 45 minuterna ett måste.”</i><br>Annikki Alku, Demokraatti 12.11.2021</p><p>Längd: 50 minuter<br>Inget språk</p>",
                "en": "<p>Gravity is a 50-minute long, high-paced, physically stunning performance danced by eight highly skilled dancers.</p><p>The piece follows the continuum of choreographer <b>Jarkko Mandelin's</b> extremely physical and movement-focused dance works.</p><p>“Gravity functions as a sign of the times. Multi-layered and fast-paced, a web weaved from many different movement techniques and cultures of physicality. The speed and emphasis on movement not only research and visualise gravity but also time, both literally and more generally by commenting on it through its mere existence.” – Choreographer Jarkko Mandelin</p><p>The dancers fly in the air, catch, lift and carry each other, seamlessly blending acrobatic partnering into the fabric of the piece in Kinetic Orchestra’s distinctive style. Forceful manipulation of pace and rhythm, twitching movement and stills and crashes that quickly bring accelerated movement sequences to a halt further create the sense and feeling of Gravity. This is echoed in the simple yet effective scenography by William Iles and Janne Hast’s relentless sound design.</p><p>Gravity creates an immersive atmosphere of something pulling us in and simultaneously looming over us. The dramaturgical structure follows an urgent loop of overlapping scenes, each less than two minutes long. While doing so, the work grasps something fundamental about the time we live in and its unrelenting pace.</p><p>The piece was produced in collaboration with Helsinki City Theatre's Dance Company HDC.</p><p>Duration: 50 minutes</p><p><b>Working group:</b><br>Choreography: Jarkko Mandelin & the working group<br>Dancers: Sanni Giordani, Jyrki Kasper, Mia Jaatinen, Kalle Lähde, Heidi Naakka, Mikko Paloniemi, Justus Pienmunne, ja Oskari Turpeinen<br>Dancers on tour: Sanni Giordani, Mia Jaatinen, Kalle Lähde, Suvi Nieminen, Hugo Sellam, Manuela Hierl, Minna Kaaronen, Oskari Turpeinen</p><p>Technician on tour: Niila Rantala<br>Scenography: William Iles<br>Sound Design: Janne Hast<br>Costume Design: Elina Kolehmainen<br>Choreographer's assistant: Suvi Nieminen</p><p>Production: Helsinki Dance Company and Helsinki City Theatre<br>Tour production: Kinetic Orchestra <br>Photos: Petra Tiihonen</p><p>Reviews:</p><p>“Gravity is like the wind, and the sun, and fresh rain, for the soul starving for dance.” – Merja Koskiniemi, HS 14.11.2021</p><p>“I feel an urge to say that if one is going to see only one dance performance this fall, then this 50-min is a must.” – Annikki Alku, Demokraatti 12.11.2021</p><p>“Jarkko Mandelin’s choreography is a combination of bubbling energy and skin-piercing sensitivity.” – Matti Saarela, blog: Kielipuolen päiväkirja, 12.11.2021</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64350/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64818",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": {
                        "fi": "20 € / 16 €",
                        "sv": "20 € / 16 €",
                        "en": "20 € / 16 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152920,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-31T09:15:05.462423Z",
                    "last_modified_time": "2024-10-31T09:15:05.462440Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760301.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152920/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-31T09:15:05.426399Z",
            "last_modified_time": "2024-12-20T01:14:24.099153Z",
            "date_published": null,
            "start_time": "2024-12-14T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nova Star ilma-akrobatiakilpailu on lämminhenkinen harrastetason kilpailu, jossa nähdään sekä lasten- että aikuisten sarjat."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/49F0D6A6A8FE1A13D09AC180593407A2/Nova_Star_ilma-akrobatiakilpailu",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/49F0D6A6A8FE1A13D09AC180593407A2/Nova_Star_ilma-akrobatiakilpailu",
                "en": "http://www.malmitalo.fi/en/events/event/49F0D6A6A8FE1A13D09AC180593407A2/Nova_Star_ilma-akrobatiakilpailu"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Nova Star ilma-akrobatiakilpailu",
                "sv": "Nova Star ilma-akrobatiakilpailu",
                "en": "Nova Star ilma-akrobatiakilpailu"
            },
            "description": {
                "fi": "<p>Nova Star ilma-akrobatiakilpailu on lämminhenkinen harrastetason kilpailu, jossa nähdään sekä lasten- että aikuisten sarjat.</p><p>Esiintyjiä on ympäri Suomen.</p><p>Kilpailun järjestää Roof Aerial Club.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64818/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64281",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/haemaerinkaeinen-3663680/#calendar-start=2024-12",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/haemaerinkaeinen-3663680/#calendar-start=2024-12",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/haemaerinkaeinen-3663680/#calendar-start=2024-12"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151842,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T09:14:55.922198Z",
                    "last_modified_time": "2024-07-25T09:14:55.922219Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749951.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151842/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-25T09:14:55.893336Z",
            "last_modified_time": "2024-12-20T01:14:23.937261Z",
            "date_published": null,
            "start_time": "2024-12-14T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ystävällisyyttä ja taikaa juhlistava koko perheen nukketeatteriesitys.",
                "sv": "En dockteaterföreställning för hela familjen som firar vänlighet och magi.",
                "en": "A family puppet show celebrating kindness and magic."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3A54E1B64369B3473C9216941BA5445B/Hamarinkainen",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/3A54E1B64369B3473C9216941BA5445B/Hamarinkainen",
                "en": "http://www.vuotalo.fi/en/events/event/3A54E1B64369B3473C9216941BA5445B/Hamarinkainen"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Hämärinkäinen",
                "sv": "Hämärinkäinen",
                "en": "Hämärinkäinen"
            },
            "description": {
                "fi": "<p>Ystävällisyyttä ja taikaa juhlistava koko perheen nukketeatteriesitys.</p><p>Hämärinkäinen on pieni hahmo, joka kutoo kangaspuillaan hämärää keskitalven juhlaa varten. Hän työskentelee yhdessä muiden talven salaperäisten olentojen kanssa.</p><p>Ihmiset ovat omissa juhlavalmisteluissaan hyvin kiireisiä, erityisesti kukkakauppias Keikander. Keikander ei pidä pimeän tulosta, sillä silloin kukat eivät valmistu tarpeeksi nopeasti. Hän päättää vangita Hämärinkäisen. Mutta mitä tapahtuisi luonnolle ja ihmisten kaupungille, jos Hämärinkäinen ei voisikaan kutoa hämäräänsä? Entä miten pieni kukankutoja Flora saa suurimman työnsä valmiiksi?</p><p>Hämärinkäinen-esitys kehottaa hiljentymään ja unohtamaan kiireen. Lopulta erilaiset olennot, eläimet ja ihmiset oppivat kunnioittamaan toisiaan. Yhdessä valmistetaan keskitalven juhla.</p><p>Tekijät ovat esittävän taiteen ammattilaisia, ja monien viime vuosien arvostettujen teosten tekijöitä. Esitys sopii erityisesti n. 4–9-vuotiaille, ja kaikille sadunhohtoa ja talven ihmeitä kaipaaville. Se ei ole tunnustuksellinen, ja poikkeaa raikkaasti tavanomaisesta joulukuvastosta. Hämärinkäinen on joulunajan esitys kaikille uskontokuntiin katsomatta - teos luo omaa mytologiaansa, joka on kaikille yhtäläisesti uusi ja avoin.</p><p>Kesto: n. 35 min<br>Ikäsuositus: 4+, koko perheelle</p><p>Kantaesitys: 7.12.2022 Lastenkulttuurikeskus Pessi, Vantaa</p><p><b>Työryhmä:</b><br>Alkuperäisteos: Kirjoittaja Mila Teräs, kuvittaja Karoliina Pertamo <br>Dramatisointi, nukenrakennus, ohjaus, lavastus: Maria-Elina Koivula <br>Valosuunnittelu: Jere Suontausta <br>Sävellys ja laulujen sanat: Roosa Halme <br>Esiintyjät/nukettajat: Linda Lemmetty, Mila Nirhamo ja Maria-Elina Koivula</p><p>Esitystä ovat tukeneet Taiteen edistämiskeskus, Helsingin kaupunki ja Aura of Puppets</p>",
                "sv": "<p>En dockteaterföreställning för hela familjen som firar vänlighet och magi.</p><p>Hämärinkäinen är en liten figur som väver på sin vävstol inför en midvinterfest i skymningen. Hämärinkäinen arbetar tillsammans med vinterns andra mystiska varelser.</p><p>Folk är mycket upptagna med sina egna festförberedelser, särskilt blomsterhandlaren Keikander. Keikander tycker inte om skymningen, för då blir blommorna inte klara tillräckligt snabbt. Han bestämmer sig för att fånga Hämärinkäinen. Men vad skulle hända med naturen och människornas stad om Hämärinkäinen inte kunde väva sin skymning? Och hur får den lilla blomstervävaren Flora sitt största arbete färdigt?</p><p>Föreställningen Hämärinkäinen uppmanar publiken att stanna upp och glömma brådskan. Till slut lär sig olika varelser, djur och människor att respektera varandra. Tillsammans förbereder de midvinterfesten.</p><p>Konstnärerna är professionella inom scenkonst och skapare till många uppskattade verk under de senaste åren. Föreställningen passar särskilt bra för ungefär 4–9-åringar och för alla som längtar efter sagor och vintermirakel. Berättelsen är inte religiös och avviker på ett uppfriskande sätt från den traditionella bilden av julen. Hämärinkäinen är en julföreställning för alla, oavsett religion – verket skapar sin egen mytologi som är lika ny och öppen för alla.</p><p>Längd: ca 35 min<br>Åldersrekommendation: 4+, för hela familjen <br>Biljetter: 6 €, Lippu.fi<br>Premiär: 7.12.2022 Barnens kulturcentrum Pessi, Vanda</p><p><b>ARBETSGRUPP</b><br>Ursprungsverk: Författare Mila Teräs, illustratör Karoliina Pertamo <br>Dramatisering, docktillverkning, regi, scenografi: Maria-Elina Koivula <br>Ljusdesign: Jere Suontausta <br>Tonsättning och sångtexter: Roosa Halme <br>Artister/dockförare: Linda Lemmetty, Mila Nirhamo och Maria-Elina Koivula</p><p>Föreställningen har fått stöd av Centret för konstfrämjande, Helsingfors stad och Aura of Puppets.</p>",
                "en": "<p>A family puppet show celebrating kindness and magic.</p><p>Hämärinkäinen is a small character who weaves the dusk for the midwinter celebration on its loom. It works together with other mysterious winter creatures.</p><p>People are very busy with their own party preparations, especially florist Keikander. Keikander does not like the onset of darkness, because then the flowers will not bloom fast enough. He decides to capture the Hämärinkäinen. But what would happen to nature and the city of people if Hämärinkäinen could not weave its twilight? And how does the little flower weaver Flora complete her biggest work?</p><p>The performance encourages the audience to slow down and forget about the hurry. Eventually, different creatures, animals and people learn to respect each other. They prepare a midwinter festival together.</p><p>The makers of the performance are performing arts professionals and creators of many of the most prestigious works of recent years. The performance is particularly suitable for children aged around 4 to 9 and for anyone who longs for the enchantment of fairy tales and the wonders of winter. It is non-religious and refreshingly different from typical Christmas imagery.</p><p>Hämärinkäinen is a Christmas performance for everyone, regardless of religion - the work creates its own mythology, which is equally new and open to everyone.</p><p>Duration: approx. 35 min<br>Age recommendation: 4+, for the whole family <br>Tickets: €6, Lippu.fi<br>Premiere: 7 December 2022 Children’s Cultural Centre Pessi, Vantaa</p><p><b>WORKING GROUP</b><br>Original work: Author Mila Teräs, illustrator Karoliina Pertamo <br>Dramatisation, puppet construction, direction, set design: Maria-Elina Koivula <br>Lighting design: Jere Suontausta <br>Composition and lyrics: Roosa Halme <br>Performers/puppets: Linda Lemmetty, Mila Nirhamo and Maria-Elina Koivula</p><p>The performance has been supported by the Arts Promotion Centre Finland, the City of Helsinki and the Aura of Puppets.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64281/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63848",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kannelmaeen-voimistelijat-ry-joulunaeytoes-kanneltalo-19531067/",
                        "sv": "https://www.lippu.fi/event/kannelmaeen-voimistelijat-ry-joulunaeytoes-kanneltalo-19531067/",
                        "en": "https://www.lippu.fi/event/kannelmaeen-voimistelijat-ry-joulunaeytoes-kanneltalo-19531067/"
                    },
                    "price": {
                        "fi": "15,30 € / 8,10 €",
                        "sv": "15,30 € / 8,10 €",
                        "en": "15,30 € / 8,10 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152130,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-16T12:15:42.718074Z",
                    "last_modified_time": "2024-08-16T12:15:42.718092Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753213.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152130/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-16T12:15:42.683463Z",
            "last_modified_time": "2024-12-20T01:14:23.853594Z",
            "date_published": null,
            "start_time": "2024-12-14T15:00:00Z",
            "end_time": "2024-12-14T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kannelmäen voimistelijoiden perinteinen joulunäytös nähdään jälleen Kanneltalolla",
                "sv": "Kannelmäen Voimistelijats traditionella julföreställning ses igen på Gamlasgården.",
                "en": "Kanneltalo again presents traditional Christmas performance by Kannelmäki gymnasts."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/BE50597EFCB04AF064E21C15BD43C7DC/Kannelmaen_voimistelijoiden_joulunaytos",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/BE50597EFCB04AF064E21C15BD43C7DC/Kannelmaen_Voimistelijats_julforestallning",
                "en": "http://www.kanneltalo.fi/en/events/event/BE50597EFCB04AF064E21C15BD43C7DC/Christmas_show_of_Kannelmaen_Voimistelijat_Kannelmaki_Gymnasts_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kannelmäen voimistelijoiden joulunäytös",
                "sv": "Kannelmäen Voimistelijats julföreställning",
                "en": "Christmas show of Kannelmäen Voimistelijat (Kannelmäki Gymnasts)"
            },
            "description": {
                "fi": "<p>Kannelmäen voimistelijoiden perinteinen joulunäytös nähdään jälleen Kanneltalolla</p><p>Tiedot näytöksissä esiintyvistä ryhmistä julkaistaan Kannelmäen voimistelijoiden verkkosivuilla: <u><a href=\"https://www.kannelmaenvoimistelijat.fi/\">https://www.kannelmaenvoimistelijat.fi/</a></u></p><p>Kesto: n. 1 t</p>",
                "sv": "<p>Kannelmäen Voimistelijats traditionella julföreställning ses igen på Gamlasgården.</p><p>Information om grupperna som deltar i föreställningarna finns på Kannelmäen Voimistelijats webbplats: <u><a href=\"https://www.kannelmaenvoimistelijat.fi/\">https://www.kannelmaenvoimistelijat.fi/</a></u></p><p>Längd: cirka 1 timma</p>",
                "en": "<p>Kanneltalo again presents traditional Christmas performance by Kannelmäki gymnasts.</p><p>Information on the performing groups is available on the Kannelmäki Gymnasts’ website at <u><a href=\"https://www.kannelmaenvoimistelijat.fi/\">https://www.kannelmaenvoimistelijat.fi/</a></u></p><p>Duration: 1 hour.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63848/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65046",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/"
                    },
                    "price": {
                        "fi": "5 €",
                        "sv": "5 €",
                        "en": "5 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153072,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-22T13:14:27.876922Z",
                    "last_modified_time": "2024-11-22T13:14:27.876938Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745820.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153072/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-22T13:14:27.844156Z",
            "last_modified_time": "2024-12-20T01:14:23.766067Z",
            "date_published": null,
            "start_time": "2024-12-14T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3E3108C03AD27A367CAEE537969BF001/Vaiana_2_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3E3108C03AD27A367CAEE537969BF001/Vaiana_2_7_",
                "en": "http://www.malmitalo.fi/en/events/event/3E3108C03AD27A367CAEE537969BF001/Vaiana_2_7_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vaiana 2 (7) – Kino Helios",
                "sv": "Vaiana 2 (7) – Kino Helios",
                "en": "Vaiana 2 (7) – Kino Helios"
            },
            "description": {
                "fi": "<p>Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!</p><p>Vaiana kuulee odottamattoman kutsun ympäri Oseaniaa purjehtineilta esi-isiltään. Siihen vastatakseen hänen on matkattava merten ääriin, tuntemattomille ja vaarallisille vesille, missä häntä odottaa seikkailu, jollaista hän ei ole vielä kuunaan kokenut.</p><p>VAIANA 2 -elokuva sisältää kohtauksia, joissa esiintyy välkkyviä valoja, jotka voivat toimia ärsykkeinä niille, jotka ovat alttiita valoherkälle epilepsialle tai muille valoherkkyysoireille.</p><p>Ikäraja: 7<br>Kesto: 99 min.<br>Ensi-ilta: 29.11.2024<br>Elokuva on puhuttu ja tekstitetty suomeksi</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65046/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61387",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/jarkko-tamminen/"
                    },
                    "price": {
                        "fi": "42,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6447,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-05T16:13:48.180857Z",
                    "last_modified_time": "2024-02-06T13:23:45.233405Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740247.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6447/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-05T16:13:48.160080Z",
            "last_modified_time": "2024-12-20T01:14:23.681386Z",
            "date_published": null,
            "start_time": "2024-12-14T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Imitaattori Jarkko Tamminen lähtee syksyllä 2024 soolokiertueelle ympäri Suomea."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/E5E108F10F178192795660DFACA6D787/Jarkko_Tamminen_Kuuleeko_Helsinki_-imitaatioshow"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jarkko Tamminen \"Kuuleeko Helsinki?\" -imitaatioshow"
            },
            "description": {
                "fi": "<p>Imitaattori Jarkko Tamminen lähtee syksyllä 2024 soolokiertueelle ympäri Suomea.</p><p>Jarkko lähtee kiertämään Suomenmaata jo suosituksi tulleella konseptilla: päivitetyllä \"Kuuleeko..\"-esityksellään.</p><p>Show koostuu sekä puhe- että lauluimitaatioista. Esityksessä Jarkko esittää yli 40 hahmoa. Lavalla nähdään ja kuullaan imitaatioita Kape Aihisesta Kaija Koohon, Pasi Rautiaisesta Stigiin ja Olli Jokisesta Käärijään. Myös yleisöllä on mahdollisuus vaikuttaa esityksessä nähtäviin hahmoihin toiveiden kautta. Illan aikana käydään läpi ajankohtaisia aiheita ja lisäksi kunkin kiertuepaikkakunnan paikallisuutiset saavat osansa, kun hahmot ottavat esille aina kullakin paikkakunnalla puhuttavia aiheita.</p><p>Esityksessä Jarkko on lavalla yksin ja esityksessä käytetään vain pientä rekvisiittaa: lakkeja, peruukkeja ja takkeja. Lauluosuudet esitetään taustanauhojen kera. Esityksen sisältö on pääosin parhaita paloja Jarkon edelliskiertueiden jutuista, mutta mukaan mahtuu myös runsaasti uutta materiaalia.</p><p>Ilta koostuu kahdesta noin 45min setistä, joiden välissä on väliaika.<br>Esityksen kesto on siis 2 h, sisältäen puolen tunnin mittaisen väliajan.</p><p>Katso kiertuepaikkakunnat, liput ja lisätiedot osoitteesta: www.jarkkotamminen.com</p><p>Ikäsuositus: +12</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>"
            },
            "provider": {
                "fi": "Comedy Corner Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61387/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64280",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/haemaerinkaeinen-3663680/#calendar-start=2024-12",
                        "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/haemaerinkaeinen-3663680/#calendar-start=2024-12",
                        "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/haemaerinkaeinen-3663680/#calendar-start=2024-12"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151841,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T09:14:55.766132Z",
                    "last_modified_time": "2024-07-25T09:14:55.766151Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749950.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151841/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-25T09:14:55.736063Z",
            "last_modified_time": "2024-12-20T01:14:23.592300Z",
            "date_published": null,
            "start_time": "2024-12-14T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ystävällisyyttä ja taikaa juhlistava koko perheen nukketeatteriesitys.",
                "sv": "En dockteaterföreställning för hela familjen som firar vänlighet och magi.",
                "en": "A family puppet show celebrating kindness and magic."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A8DCF1E64EF929F04461D885182491C3/Hamarinkainen",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A8DCF1E64EF929F04461D885182491C3/Hamarinkainen",
                "en": "http://www.vuotalo.fi/en/events/event/A8DCF1E64EF929F04461D885182491C3/Hamarinkainen"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Hämärinkäinen",
                "sv": "Hämärinkäinen",
                "en": "Hämärinkäinen"
            },
            "description": {
                "fi": "<p>Ystävällisyyttä ja taikaa juhlistava koko perheen nukketeatteriesitys.</p><p>Hämärinkäinen on pieni hahmo, joka kutoo kangaspuillaan hämärää keskitalven juhlaa varten. Hän työskentelee yhdessä muiden talven salaperäisten olentojen kanssa.</p><p>Ihmiset ovat omissa juhlavalmisteluissaan hyvin kiireisiä, erityisesti kukkakauppias Keikander. Keikander ei pidä pimeän tulosta, sillä silloin kukat eivät valmistu tarpeeksi nopeasti. Hän päättää vangita Hämärinkäisen. Mutta mitä tapahtuisi luonnolle ja ihmisten kaupungille, jos Hämärinkäinen ei voisikaan kutoa hämäräänsä? Entä miten pieni kukankutoja Flora saa suurimman työnsä valmiiksi?</p><p>Hämärinkäinen-esitys kehottaa hiljentymään ja unohtamaan kiireen. Lopulta erilaiset olennot, eläimet ja ihmiset oppivat kunnioittamaan toisiaan. Yhdessä valmistetaan keskitalven juhla.</p><p>Tekijät ovat esittävän taiteen ammattilaisia, ja monien viime vuosien arvostettujen teosten tekijöitä. Esitys sopii erityisesti n. 4–9-vuotiaille, ja kaikille sadunhohtoa ja talven ihmeitä kaipaaville. Se ei ole tunnustuksellinen, ja poikkeaa raikkaasti tavanomaisesta joulukuvastosta. Hämärinkäinen on joulunajan esitys kaikille uskontokuntiin katsomatta - teos luo omaa mytologiaansa, joka on kaikille yhtäläisesti uusi ja avoin.</p><p>Kesto: n. 35 min<br>Ikäsuositus: 4+, koko perheelle</p><p>Kantaesitys: 7.12.2022 Lastenkulttuurikeskus Pessi, Vantaa</p><p><b>Työryhmä:</b><br>Alkuperäisteos: Kirjoittaja Mila Teräs, kuvittaja Karoliina Pertamo <br>Dramatisointi, nukenrakennus, ohjaus, lavastus: Maria-Elina Koivula <br>Valosuunnittelu: Jere Suontausta <br>Sävellys ja laulujen sanat: Roosa Halme <br>Esiintyjät/nukettajat: Linda Lemmetty, Mila Nirhamo ja Maria-Elina Koivula</p><p>Esitystä ovat tukeneet Taiteen edistämiskeskus, Helsingin kaupunki ja Aura of Puppets</p>",
                "sv": "<p>En dockteaterföreställning för hela familjen som firar vänlighet och magi.</p><p>Hämärinkäinen är en liten figur som väver på sin vävstol inför en midvinterfest i skymningen. Hämärinkäinen arbetar tillsammans med vinterns andra mystiska varelser.</p><p>Folk är mycket upptagna med sina egna festförberedelser, särskilt blomsterhandlaren Keikander. Keikander tycker inte om skymningen, för då blir blommorna inte klara tillräckligt snabbt. Han bestämmer sig för att fånga Hämärinkäinen. Men vad skulle hända med naturen och människornas stad om Hämärinkäinen inte kunde väva sin skymning? Och hur får den lilla blomstervävaren Flora sitt största arbete färdigt?</p><p>Föreställningen Hämärinkäinen uppmanar publiken att stanna upp och glömma brådskan. Till slut lär sig olika varelser, djur och människor att respektera varandra. Tillsammans förbereder de midvinterfesten.</p><p>Konstnärerna är professionella inom scenkonst och skapare till många uppskattade verk under de senaste åren. Föreställningen passar särskilt bra för ungefär 4–9-åringar och för alla som längtar efter sagor och vintermirakel. Berättelsen är inte religiös och avviker på ett uppfriskande sätt från den traditionella bilden av julen. Hämärinkäinen är en julföreställning för alla, oavsett religion – verket skapar sin egen mytologi som är lika ny och öppen för alla.</p><p>Längd: ca 35 min<br>Åldersrekommendation: 4+, för hela familjen <br>Biljetter: 6 €, Lippu.fi<br>Premiär: 7.12.2022 Barnens kulturcentrum Pessi, Vanda</p><p><b>ARBETSGRUPP</b><br>Ursprungsverk: Författare Mila Teräs, illustratör Karoliina Pertamo <br>Dramatisering, docktillverkning, regi, scenografi: Maria-Elina Koivula <br>Ljusdesign: Jere Suontausta <br>Tonsättning och sångtexter: Roosa Halme <br>Artister/dockförare: Linda Lemmetty, Mila Nirhamo och Maria-Elina Koivula</p><p>Föreställningen har fått stöd av Centret för konstfrämjande, Helsingfors stad och Aura of Puppets.</p>",
                "en": "<p>A family puppet show celebrating kindness and magic.</p><p>Hämärinkäinen is a small character who weaves the dusk for the midwinter celebration on its loom. It works together with other mysterious winter creatures.</p><p>People are very busy with their own party preparations, especially florist Keikander. Keikander does not like the onset of darkness, because then the flowers will not bloom fast enough. He decides to capture the Hämärinkäinen. But what would happen to nature and the city of people if Hämärinkäinen could not weave its twilight? And how does the little flower weaver Flora complete her biggest work?</p><p>The performance encourages the audience to slow down and forget about the hurry. Eventually, different creatures, animals and people learn to respect each other. They prepare a midwinter festival together.</p><p>The makers of the performance are performing arts professionals and creators of many of the most prestigious works of recent years. The performance is particularly suitable for children aged around 4 to 9 and for anyone who longs for the enchantment of fairy tales and the wonders of winter. It is non-religious and refreshingly different from typical Christmas imagery.</p><p>Hämärinkäinen is a Christmas performance for everyone, regardless of religion - the work creates its own mythology, which is equally new and open to everyone.</p><p>Duration: approx. 35 min<br>Age recommendation: 4+, for the whole family <br>Tickets: €6, Lippu.fi<br>Premiere: 7 December 2022 Children’s Cultural Centre Pessi, Vantaa</p><p><b>WORKING GROUP</b><br>Original work: Author Mila Teräs, illustrator Karoliina Pertamo <br>Dramatisation, puppet construction, direction, set design: Maria-Elina Koivula <br>Lighting design: Jere Suontausta <br>Composition and lyrics: Roosa Halme <br>Performers/puppets: Linda Lemmetty, Mila Nirhamo and Maria-Elina Koivula</p><p>The performance has been supported by the Arts Promotion Centre Finland, the City of Helsinki and the Aura of Puppets.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64280/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64319",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805299/",
                        "sv": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805299/",
                        "en": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805299/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151975,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T12:14:01.423741Z",
                    "last_modified_time": "2024-07-30T12:14:01.423753Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751579.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151975/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-30T12:14:01.409572Z",
            "last_modified_time": "2024-12-20T01:14:23.401458Z",
            "date_published": null,
            "start_time": "2024-12-14T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Livian ja Adrianon lapsille suunnatussa konserttiesityksessä kuullaan huiluja, berimbauta, laulua ja muita instrumentteja, ja se on saanut innoituksensa pienestä kirjasta nimeltä ”The Voice of the Ocean” (Valtameren ääni).",
                "sv": "Livia och Adriano presenterar med hjälp av flöjter, berimbau, sång och mer en konsert för barn som inspirerats av den lilla boken The Voice of the Ocean.",
                "en": "Livia and Adriano through flutes, berimbau, voice and more, will present a concert-performance for children inspired by a small book 'The Voice of the Ocean'."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/D3B31D7324EE781AD389B622E2B4B489/The_Voice_of_The_Ocean",
                "sv": "http://www.caisa.fi/sv/evenemang/event/D3B31D7324EE781AD389B622E2B4B489/The_Voice_of_The_Ocean",
                "en": "http://www.caisa.fi/en/events/event/D3B31D7324EE781AD389B622E2B4B489/The_Voice_of_The_Ocean"
            },
            "location_extra_info": null,
            "name": {
                "fi": "The Voice of The Ocean – Global Club lapsille",
                "sv": "The Voice of The Ocean – Global Club för barn",
                "en": "The Voice of The Ocean – Global Club for children"
            },
            "description": {
                "fi": "<p>Livian ja Adrianon lapsille suunnatussa konserttiesityksessä kuullaan huiluja, berimbauta, laulua ja muita instrumentteja, ja se on saanut innoituksensa pienestä kirjasta nimeltä ”The Voice of the Ocean” (Valtameren ääni).</p><p>Valtameri voidaan nähdä yksinkertaisena ja kauniina vertauskuvana virtaavasta todellisuudestamme, jossa me kaikki olemme yhteydessä toisiimme ja jaamme ”saman veden”. Aaltojen ääni voi kuljettaa mukanaan monia tarinoita, viestejä ja muistoja eri maista ja ajoilta. Simpukankuoret voivat kannustaa kuuntelemaan tarkasti pienimpiä ja hiljaisimpia ääniä. Jos on tarpeeksi onnekas, kaukaa voi kuulua salaperäinen merenneitolaulu, joka kutsuu meitä laulamaan mukana.</p><p>Valtamereen ja suolaiseen veteen liittyy paljon historiaa ja mielikuvia, jotka kutkuttavat mielikuvitustamme. Livialle ja Adrianolle nämä mielikuvat ovat improvisaatioon, tutkailuun ja yhdessä nautittaviin äänimaisemiin perustuvan musiikillisen matkan lähde.</p><p>Esityksessä on myös tilaisuus tutustua erilaisiin huiluihin, berimbauhun ja muutamiin lyömäsoittimiin. Kullakin soittimella on omat perinteensä ja historiansa, ja tässä konsertissa iloitaan siitä, mitä tapahtuu, kun soittimet, mielikuvitus ja tarinat kohtaavat.</p><p>Livia Schweizer: huilut<br>Adriano Adewale: berimbau ja lyömäsoittimet<br>Esitys perustuu Livian ja italialaisen kuvittaja Costanza Lettierin yhdessä julkaisemaan kirjaan ”The Voice of the Ocean”.</p><p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä. Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa.</p><p>Kesto: 60 min<br>Kieli: englanti, suomi</p>",
                "sv": "<p>Livia och Adriano presenterar med hjälp av flöjter, berimbau, sång och mer en konsert för barn som inspirerats av den lilla boken The Voice of the Ocean.</p><p>Havet kan ses som en enkel och vacker metafor för vår flytande verklighet där vi alla är sammankopplade och alla delar ”samma vatten”. Ljudet av vågor som kommer och går kan berätta många historier, budskap och minnen från olika länder och svunna tider. Snäckskal kan uppmuntra till att lyssna noga på de minsta och tystaste ljuden, och om man har tillräckligt med tur kan en mystisk sjöjungfrusång dyka upp långt bortifrån och bjuda in oss att sjunga med.</p><p>Havet och det salta vattnet gömmer mycket historia och många bilder som kan kittla vår fantasi, och för Livia och Adriano utgör dessa bilder grunden för en musikalisk resa med improvisation, utforskning och ljudlandskap att njuta av tillsammans.</p><p>Föreställningen är också ett tillfälle att lära känna olika slags flöjter, berimbau och några slagverk. Varje instrument bär på olika traditioner och historier, och med den här konserten vill vi fira mötet mellan instrument, fantasi och berättelser.</p><p>Livia Schweizer: flöjter<br>Adriano Adewale: berimbau och slagverk<br>Föreställningen är inspirerad av boken The Voice of the Ocean som Livia publicerat tillsammans med den italienska illustratören Constanza Lettieri.</p>",
                "en": "<p>Livia and Adriano through flutes, berimbau, voice and more, will present a concert-performance for children inspired by a small book 'The Voice of the Ocean'.</p><p>The Ocean can be seen as a simple and beautiful metaphor of our fluid reality where we are all connected, and we all share 'the same water'. The sound of the waves coming and going can carry many stories, messages and memories from different lands and times. Seashells can encourage to listen closely to the tiniest and quietest sounds, and if one is lucky enough a mysterious mermaid song can emerge from far away inviting us to sing along.</p><p>The Ocean and salty water hold a lot of history and images to tickle our imagination, and for Livia and Adriano these images will be at the roots of a musical journey of improvisation, exploration, and soundscapes to enjoy together.</p><p>The performance will be an occasion also to get to know different kind of flutes, the berimbau and a few percussions; every instrument carry different traditions and histories too, and what we want to celebrate with this concert is what happens when instruments, imaginations and stories come together.</p><p>Livia Schweizer: flutes<br>Adriano Adewale: berimbau & percussions<br>Performance is inspired by a book 'The Voice of the Ocean' that Livia published in collaboration with the italian illustrator Costanza Lettieri.</p><p>Duration: 60 min<br>Age: for all ages<br>Language: English, Finnish</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64319/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64817",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=malmitalo&sort=DateAsc&dateFrom=2024-10-31",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=malmitalo&sort=DateAsc&dateFrom=2024-10-31",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=malmitalo&sort=DateAsc&dateFrom=2024-10-31"
                    },
                    "price": {
                        "fi": "15 € / 10 €",
                        "sv": "15 € / 10 €",
                        "en": "15 € / 10 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152916,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-31T08:15:05.476792Z",
                    "last_modified_time": "2024-10-31T08:15:05.476809Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760300.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152916/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-31T08:15:05.443843Z",
            "last_modified_time": "2024-12-20T01:14:23.313604Z",
            "date_published": null,
            "start_time": "2024-12-14T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Roof Aerial Clubin joulunäytöksessä nähdään lasten ja nuorten sirkus-ja ilma-akrobatiaryhmien esityksiä.",
                "sv": "Roof Aerial Clubs juluppvisning omfattar uppträdanden av cirkus- och luftakrobatikgrupper för barn och unga.",
                "en": "The Roof Aerial Club's Christmas Show will feature performances by children and young people's circus performers and aerial acrobatics groups."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1F817E389F9416951761782EF00A157E/Roof_Aerial_Clubin_Joulunaytos_2024",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1F817E389F9416951761782EF00A157E/Roof_Aerial_Clubs_juluppvisning_2024",
                "en": "http://www.malmitalo.fi/en/events/event/1F817E389F9416951761782EF00A157E/Roof_Aerial_Club_Christmas_Show_2024"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Roof Aerial Clubin Joulunäytös 2024",
                "sv": "Roof Aerial Clubs juluppvisning 2024",
                "en": "Roof Aerial Club Christmas Show 2024"
            },
            "description": {
                "fi": "<p>Roof Aerial Clubin joulunäytöksessä nähdään lasten ja nuorten sirkus-ja ilma-akrobatiaryhmien esityksiä.</p><p>Luvassa on pyramideja, akrobatiaa sekä ilma-akrobatiaa useilla eri välineillä. Harrastajat ovat osallistuneet esityksen ideointiin.</p><p>Kesto: 1 h 30 min</p>",
                "sv": "<p>Roof Aerial Clubs juluppvisning omfattar uppträdanden av cirkus- och luftakrobatikgrupper för barn och unga.</p><p>Pyramider, akrobatik och luftakrobatik med olika typer av redskap utlovas. Utövarna har deltagit i utformningen av uppvisningen.</p>",
                "en": "<p>The Roof Aerial Club's Christmas Show will feature performances by children and young people's circus performers and aerial acrobatics groups.</p><p>You can expect human pyramids, acrobatics and aerial acrobatics with a variety of tools. Enthusiasts helped to brainstorm the show’s content.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64817/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}