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

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

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 normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). 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=255
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 21996,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=256",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=254"
    },
    "data": [
        {
            "id": "kulke:64227",
            "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: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: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:732/?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:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151790,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-22T14:13:36.776085Z",
                    "last_modified_time": "2024-07-22T14:13:36.776102Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750152.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151790/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-22T14:13:36.761528Z",
            "last_modified_time": "2024-12-20T01:14:21.784175Z",
            "date_published": null,
            "start_time": "2024-12-12T09:45:00Z",
            "end_time": "2024-12-12T11:15: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/0E20166834FAF07052AD37997070E899/Opi_suomea_laulaen",
                "sv": "http://www.stoa.fi/sv/evenemang/event/0E20166834FAF07052AD37997070E899/Lar_dig_finska_genom_att_sjunga_",
                "en": "http://www.stoa.fi/en/events/event/0E20166834FAF07052AD37997070E899/Learn_Finnish_by_Singing_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min <br>Mukaan ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Syksyn muut laulupajakerrat: <br>To 3.10. klo 10 ja 11.45 <br>To 14.11. klo 10 ja 11.45 <br>To 12.12. Klo 10 ja 11.45</p>",
                "sv": "<p>Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Kom med och sjung, även om du bara kan lite finska!</p>",
                "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. Come and sing with us, even if you know just a little Finnish!</p>"
            },
            "short_description": {
                "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.",
                "sv": "Har du flyttat till Finland och vill studera finska? Kom och prova ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.",
                "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare",
                "en": "Learn Finnish by Singing – Song workshops for immigrants"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64227/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64284",
            "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": [],
                    "description": null,
                    "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 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152725,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-03T13:14:14.439835Z",
                    "last_modified_time": "2024-10-03T13:14:14.439848Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756019.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152725/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-03T13:14:14.400774Z",
            "last_modified_time": "2024-12-20T01:14:21.605348Z",
            "date_published": null,
            "start_time": "2024-12-11T17: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/383232B17DECF82FE2B2448001C70F7B/Kinetic_Orchestra_Gravity",
                "sv": "http://www.stoa.fi/sv/evenemang/event/383232B17DECF82FE2B2448001C70F7B/Kinetic_Orchestra_Gravity",
                "en": "http://www.stoa.fi/en/events/event/383232B17DECF82FE2B2448001C70F7B/Kinetic_Orchestra_Gravity"
            },
            "provider": null,
            "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>"
            },
            "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."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kinetic Orchestra: Gravity",
                "sv": "Kinetic Orchestra: Gravity",
                "en": "Kinetic Orchestra: Gravity"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64284/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64207",
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3695509"
                    },
                    "price": {
                        "fi": "35 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151724,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-16T15:13:56.802303Z",
                    "last_modified_time": "2024-07-16T15:13:56.802319Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756131.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151724/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-16T15:13:56.735311Z",
            "last_modified_time": "2024-12-20T01:14:21.523130Z",
            "date_published": null,
            "start_time": "2024-12-11T17: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A8AECBC8C1063B8075C6A21D8D9BB90F/The_Most_Wonderful_Time"
            },
            "provider": {
                "fi": "Let Us Be Frank"
            },
            "description": {
                "fi": "<p>Suositut a cappella kuorot joulukonsertissa</p><p>Let Us Be Frank järjestää tänä vuonna aivan erityisen joulukonsertin yhdessä ruotsalaisen trion Solalan kanssa, joka on yksi Ruotsin suosituimmista a cappella -yhtyeistä! Ryhmästä on tullut ilmiö sosiaalisessa mediassa ja se on myös tunnettu Ruotsin televisiosta. Solala on aiemmin myynyt loppuun konserttinsa Suomessa, joten hanki lippusi ajoissa!</p><p>Tarjoamme sekä svengaavaa, raikasta ohjelmistoa, että klassikoita joulutunnelmissa.</p><p>Lisää meistä: www.letusbefrank.fi  ja www.solala.se<br>Instagramissa @letusbefrankchoir</p><p>Konsertti kestää noin 2 tuntia väliajan kanssa, tauko on 30 minuutin pituinen.</p><p>Tapahtuma sopii koko perheelle, mutta koska konsertti on melko pitkä, emme suosittele sitä perheen kaikkein pienimmille.</p>"
            },
            "short_description": {
                "fi": "Suositut a cappella kuorot joulukonsertissa"
            },
            "location_extra_info": null,
            "name": {
                "fi": "The Most Wonderful Time – SOLALA (SWE) & Let Us be Frank"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64207/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63827",
            "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:348/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/tapiola-big-band/",
                        "sv": "https://www.lippu.fi/artist/tapiola-big-band/",
                        "en": "https://www.lippu.fi/artist/tapiola-big-band/"
                    },
                    "price": {
                        "fi": "24,50 € / 20 €",
                        "sv": "24,50 € / 20 €",
                        "en": "24,50 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152908,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-30T10:15:14.831390Z",
                    "last_modified_time": "2024-10-30T10:15:14.831407Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753148.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152908/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-30T10:15:14.775885Z",
            "last_modified_time": "2024-12-20T01:14:21.435383Z",
            "date_published": null,
            "start_time": "2024-12-11T17: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3D4CF96828E4BC2E7D32A7998559D0DD/Christmas_Time_is_Here",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3D4CF96828E4BC2E7D32A7998559D0DD/Christmas_Time_is_Here",
                "en": "http://www.malmitalo.fi/en/events/event/3D4CF96828E4BC2E7D32A7998559D0DD/Christmas_Time_is_Here"
            },
            "provider": null,
            "description": {
                "fi": "<p>Legendaarisen Tapiola Big Bandin joulukonserttiin on valikoitu parhaat koti- ja ulkomaiset joulun klassikkosävelmät.</p><p>Tapiola Big Bandin tunnelmallisessa Christmas Time is Here -joulukonsertissa kuullaan rakkaita ja tuttuja joululauluja eri vuosikymmeniltä. Lähde mukaan tunnelmalliselle matkalle läpi vuosikymmenten joululaulujen parissa. Konsertissa kuullaan perinteisten joululaulujen lisäksi musiikkia mm. Sammy Nesticolta, joka edustaa big band-musiikin säveltäjien raskainta sarjaa ja on kirjoittanut musiikkia esimerkiksi Count Basien orkesterille.</p><p>Vuonna 1969 perustettu Tapiola big band koostuu tunnetuista jazzmuusiikoista ja aktiiviharrastajista. Tänä vuonna 55 v täyttävä legendaarinen orkesteri on yksi Suomen vanhimmista aktiivisesti toimivista big band -kokoonpanoista ja Tapiola big band onkin monelle jazz-harrastajalle lähes synonyymi suomalaiselle big band -perinteelle. Orkesterin ohjelmistoon kuuluu tunnettujen big bandien klassikot sekä uudempi kotimainen big band musiikki.<br>Tapiola Big Bandiä johtaa kapellimestari Markku Renko, joka on trumpetinsoiton mestari ja musiikin monipuolinen ammattilainen. Hän on arvostettu muusikko, säveltäjä, sovittaja, kapellimestari ja pedagogi, joka on soittanut yli 500 äänitteellä.</p><p>Konsertin valovoimainen solisti, Anna Inginmaa, on artisti, jonka intensiivinen tulkinta ja tummanpuhuva ääni kuljettavat musiikilliseen maailmaan, jonka mittakaava ulottuu tarkkanäköisestä pohdiskelusta laajankin kankaan vaivattomasti täyttävään melodraamaan. Anna Inginmaa on lumoava tulkitsija, joka kuuluu maamme jazzlaulajien kärkinimiin.</p>",
                "sv": "<p>Legendariska Tapiola Big Bands julkonsert innehåller ett urval av de bästa julklassikerna både från hemlandet och utlandet.</p><p>I den stämningsfulla julkonserten \"Christmas Time is Here\" med Tapiola Big Band får vi höra älskade och välbekanta julsånger från olika årtionden. Följ med på en stämningsfull resa genom julens sånger över årtionden. Utöver traditionella julsånger framförs musik från bland annat Sammy Nestico, en av de främsta kompositörerna inom storbandsmusik, som har skrivit musik för exempelvis Count Basies orkester.</p><p>Tapiola Big Band, som grundades år 1969, består av kända jazzmusiker och aktiva entusiaster. Den legendariska orkestern, som i år fyller 55 år, är en av Finlands äldsta aktivt verksamma storbandsensembler och är för många jazzentusiaster närapå synonymt med den finska storbandstraditionen. Orkesterns repertoar omfattar klassiker från kända storband samt nyare inhemsk storbandsmusik. Tapiola Big Band leds av kapellmästare Markku Renko, en mästare på trumpet och en mångsidig musikproffs. Han är en respekterad musiker, kompositör, arrangör, dirigent och pedagog som har medverkat på över 500 inspelningar.</p><p>Konsertens lysande solist, Anna Inginmaa, är en artist vars intensiva tolkning och mörka röst skapar en musikaliskt storslagen värld, från skarp iakttagelse till storslagen melankoli. Anna Inginmaa är en fängslande tolkare och en av vårt lands främsta jazzsångare.</p>",
                "en": "<p>The legendary Tapiola Big Band’s Christmas concert includes the best Christmas classics from Finland and abroad.</p><p>In Tapiola Big Band’s atmospheric \"Christmas Time is Here\" concert, cherished and familiar Christmas songs from various decades will be performed. Embark on an evocative journey through decades of Christmas music. In addition to traditional Christmas songs, the concert will feature music from, among others, Sammy Nestico, one of the most esteemed composers in big band music, who has written for the likes of Count Basie’s orchestra.</p><p>Founded in 1969, Tapiola Big Band is composed of renowned jazz musicians and active enthusiasts. This legendary orchestra, celebrating its 55th anniversary this year, is one of Finland's oldest active big bands and, for many jazz fans, is nearly synonymous with the Finnish big band tradition. The orchestra’s repertoire includes classics from well-known big bands as well as more recent Finnish big band music. Tapiola Big Band is led by conductor Markku Renko, a trumpet master and a versatile music professional. He is a respected musician, composer, arranger, conductor, and educator who has played on over 500 recordings.</p><p>The concert's brilliant soloist, Anna Inginmaa, is an artist whose intense interpretation and rich, dark voice transport listeners into a musical realm spanning sharp insight to sweeping melodrama. Anna Inginmaa is an enchanting performer and one of the leading jazz vocalists in Finland.</p>"
            },
            "short_description": {
                "fi": "Legendaarisen Tapiola Big Bandin joulukonserttiin on valikoitu parhaat koti- ja ulkomaiset joulun klassikkosävelmät.",
                "sv": "Legendariska Tapiola Big Bands julkonsert innehåller ett urval av de bästa julklassikerna både från hemlandet och utlandet.",
                "en": "The legendary Tapiola Big Band’s Christmas concert includes the best Christmas classics from Finland and abroad."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Christmas Time is Here – Tapiola Big Band solistinaan Anna Inginmaa",
                "sv": "Christmas Time is Here – Tapiola Big Band med Anna Inginmaa som solist",
                "en": "Christmas Time is Here – Tapiola Big Band with vocal soloist Anna Inginmaa"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63827/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65101",
            "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": [],
                    "description": null,
                    "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 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153091,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-27T11:14:29.251843Z",
                    "last_modified_time": "2024-11-27T11:14:29.251937Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745815.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153091/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-27T11:14:29.210605Z",
            "last_modified_time": "2024-12-20T01:14:21.350553Z",
            "date_published": null,
            "start_time": "2024-12-11T16: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1EB9ACC467D1708A89F2F77A18BEB6EA/Crossing_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1EB9ACC467D1708A89F2F77A18BEB6EA/Crossing_7_",
                "en": "http://www.malmitalo.fi/en/events/event/1EB9ACC467D1708A89F2F77A18BEB6EA/Crossing_7_"
            },
            "provider": null,
            "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>"
            },
            "short_description": {
                "fi": "Crossing on oodi ihmisarvolle ja Istanbulin moninaisuudelle."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Crossing (7) – Kino Helios",
                "sv": "Crossing (7) – Kino Helios",
                "en": "Crossing (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65101/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65005",
            "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:29/?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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153042,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-16T13:14:59.507696Z",
                    "last_modified_time": "2024-11-16T13:14:59.507713Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763387.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153042/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-16T13:14:59.469189Z",
            "last_modified_time": "2024-12-20T01:14:21.259198Z",
            "date_published": null,
            "start_time": "2024-12-11T16: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C25F8A7CE29C44079647C952D407397A/Mummola_7_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C25F8A7CE29C44079647C952D407397A/Mummola_7_",
                "en": "http://www.vuotalo.fi/en/events/event/C25F8A7CE29C44079647C952D407397A/Mummola_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tia Kouvon ohjaama ja käsikirjoittama elokuva Mummola on humoristinen ja terävä kuvaelma perhesuhteista.</p><p>Joka vuosi joulun aikaan, sisarukset Susanna (Ria Kataja) ja Helena (Elina Knihtilä) vierailevat perheineen vanhempiensa luona. Kuten tavallista, isoisä Lasse (Tom Wentzel) juo liikaa, isoäiti Ella (Leena Uotila) on huolissaan kaikista ja sisarukset lankeavat vanhoihin riitoihinsa. Vain lapsilla tuntuu olevan kivaa. Joulun jälkeen jokainen lähtee omille teilleen ja palaa arkeen.</p><p>Tia Kouvon purevan humoristinen, elämänmakuinen elokuvadebyytti on tragikoominen tutkielma perhedynamiikasta, yksinäisyydestä ja yhdessäolosta — kuinka yritämme löytää yhteyden, mutta emme aina onnistu siinä.</p><p>Kesto: 115 min<br>K-7<br>Kieli: suomi, tekstitys ruotsiksi<br>Vapaa sisäänpääsy!<br>Ohjaaja: Tia Kouvo, 2023<br>Näyttelijät:Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä ja Jarkko Pajunen.</p>",
                "sv": "<p>Mummola är regisserad och skriven av Tia Kouvo, och är en humoristisk och gripande skildring av familjerelationer.</p><p>Varje år vid jul besöker systrarna Susanna (Ria Kataja) och Helena (Elina Knihtilä) sina föräldrar med sina familjer. Som vanligt dricker morfar Lasse (Tom Wentzel) för mycket, mormor Ella (Leena Uotila) oroar sig för alla och syskonen faller in i sina gamla gräl. Bara barnen verkar ha roligt. Efter julen går alla skilda vägar och återgår till vardagen.</p><p>Tia Kouvos bitande humoristiska och livsbejakande filmdebut är en tragikomisk studie av familjedynamik, ensamhet och samvaro – hur vi försöker få kontakt men inte alltid lyckas.</p><p>Längd: 115 min.<br>F-7<br>Språk: finska, undertexter på svenska<br>Fri entré!<br>Regi: Tia Kouvo<br>I rollerna: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä och Jarkko Pajunen.</p>",
                "en": "<p>The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships.</p><p>The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships.</p><p>Every year at Christmas, sisters Susanna (Ria Kataja) and Helena (Elina Knihtilä) and their parents visit their parents. As usual, Grandpa Lasse (Tom Wentzel) drinks too much, Grandma Ella (Leena Uotila) is worried about everyone and the sisters fall back into their old quarrels. Only the children seem to be having fun. After Christmas, everyone goes their separate ways and to their everyday lives.</p><p>Tia Kouvo's bitingly humorous film debut is a tragicomic treatise on family dynamics, loneliness and togetherness — how we try to find a connection but don't always succeed.</p><p>Duration: 115 mins.<br>Age recommendation: 7+<br>Language: Finnish with subtitles in Swedish<br>Free entry!<br>Director: Tia Kouvo<br>Cast: Ria Kataja, Leena Uotila, Tom Wentzel, Elina Knihtilä and Jarkko Pajunen.</p>"
            },
            "short_description": {
                "fi": "Tia Kouvon ohjaama ja käsikirjoittama elokuva Mummola on humoristinen ja terävä kuvaelma perhesuhteista.",
                "sv": "Mummola är regisserad och skriven av Tia Kouvo, och är en humoristisk och gripande skildring av familjerelationer.",
                "en": "The film Mummola, directed and written by Tia Kouvo, is a humorous and sharp picture of family relationships."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Mummola (7) – Keskiviikkokino",
                "sv": "Mummola (7) – Onsdagskino",
                "en": "Mummola (7) – Wednesday movie"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65005/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63579",
            "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: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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jore-marjaranta-olli-ahvenlahti-joulun-tuoksu-joulukonsertti-kanneltalo-19102697/",
                        "sv": "https://www.lippu.fi/event/jore-marjaranta-olli-ahvenlahti-joulun-tuoksu-joulukonsertti-kanneltalo-19102697/",
                        "en": "https://www.lippu.fi/event/jore-marjaranta-olli-ahvenlahti-joulun-tuoksu-joulukonsertti-kanneltalo-19102697/"
                    },
                    "price": {
                        "fi": "25 €",
                        "sv": "25 €",
                        "en": "25 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152128,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-16T12:15:41.715462Z",
                    "last_modified_time": "2024-08-16T12:15:41.715480Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751672.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152128/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-16T12:15:41.681018Z",
            "last_modified_time": "2024-12-20T01:14:21.141312Z",
            "date_published": null,
            "start_time": "2024-12-11T16: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5406261668F9CCD58CB8C40F7EEC5D37/Jore_Marjaranta_Olli_Ahvenlahti",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5406261668F9CCD58CB8C40F7EEC5D37/Jore_Marjaranta_Olli_Ahvenlahti",
                "en": "http://www.kanneltalo.fi/en/events/event/5406261668F9CCD58CB8C40F7EEC5D37/Jore_Marjaranta_Olli_Ahvenlahti"
            },
            "provider": null,
            "description": {
                "fi": "<p>Virittäydytään jouluun! Konsertissa kuullaan tunnelmallisia ja koskettavia joululauluja.</p><p>Leningrad Cowboys -yhtyeen keulahahmona tutuksi tullut kaunisääninen pop-tenori Jore Marjaranta on tehnyt mittavan soolouran laulaja-lauluntekijänä useiden albumien ja esiintymisten myötä.</p><p>Pianon ääreen istahtaa Olli Ahvenlahti, tuo television monista musiikkiohjelmista tuttu pianisti, säveltäjä ja kapellimestari, kotimaisen musiikkiviihteen grand old man.</p><p>Kaksikon Joulun tuoksu -konserttikokonaisuudessa kuullaan tunnelmallisia ja koskettavia joululauluja.</p><p>Kesto 1 t 50 min, sis. 20 min väliajan</p>",
                "sv": "<p>Vi kommer i julstämning! På konserten får vi höra stämningsfulla och älskade julsånger.</p><p>Den skönsjungande poptenoren Jore Marjaranta, som blev känd som frontfigur i bandet Leningrad Cowboys, har haft en omfattande solokarriär som sångare och låtskrivare med flera album och framträdanden.</p><p>Vid pianot sitter Olli Ahvenlahti, pianist, kompositör och dirigent, den finländska musikunderhållningens grand old man, känd från många musikprogram i TV.</p><p>Duons konsert Joulun tuoksu innefattar stämningsfulla och älskade julsånger.</p><p>Längd 1 h 50 min., inkl. en paus på 20 minuter</p>",
                "en": "<p>Let's get ready for Christmas! The concert will feature atmospheric and touching Christmas carols.</p><p>The beautiful pop-tenor of Jore Marjaranta, known for being the frontman of the Leningrad Cowboys, has forged an extensive solo career as a singer-songwriter with several albums and shows.</p><p>At the piano, we have Olli Ahvenlahti, pianist, composer and conductor familiar from many music shows on television, the grand old man of Finland’s music entertainment.</p><p>The duo's Christmas Concert will feature atmospheric and touching Christmas songs.</p><p>Duration 1 h 50 min, incl. 20 min intermission</p>"
            },
            "short_description": {
                "fi": "Virittäydytään jouluun! Konsertissa kuullaan tunnelmallisia ja koskettavia joululauluja.",
                "sv": "Vi kommer i julstämning! På konserten får vi höra stämningsfulla och älskade julsånger.",
                "en": "Let's get ready for Christmas! The concert will feature atmospheric and touching Christmas carols."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jore Marjaranta & Olli Ahvenlahti – Joulun tuoksu -konsertti",
                "sv": "Jore Marjaranta & Olli Ahvenlahti – Konsert – Joulun tuoksu, Doften av jul",
                "en": "Jore Marjaranta & Olli Ahvenlahti – Christmas Concert"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63579/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64932",
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-ismo-maailman-hauskin-ulkopuolinen-3764508/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-ismo-maailman-hauskin-ulkopuolinen-3764508/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-ismo-maailman-hauskin-ulkopuolinen-3764508/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152978,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-06T15:14:50.716424Z",
                    "last_modified_time": "2024-11-06T15:14:50.716438Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745814.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152978/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-06T15:14:50.680274Z",
            "last_modified_time": "2024-12-20T01:14:20.961585Z",
            "date_published": null,
            "start_time": "2024-12-11T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/22C4DEE784E1F7D35CA23EDB2563A6CB/ISMO_-_Maailman_hauskin_ulkopuolinen_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/22C4DEE784E1F7D35CA23EDB2563A6CB/ISMO_-_Maailman_hauskin_ulkopuolinen_S_",
                "en": "http://www.malmitalo.fi/en/events/event/22C4DEE784E1F7D35CA23EDB2563A6CB/ISMO_-_Maailman_hauskin_ulkopuolinen_S_"
            },
            "provider": null,
            "description": {
                "fi": "<p>ISMO - Maailman hauskin ulkopuolinen on elokuvaversio sanonnasta \"Vaikeuksien kautta voittoon\".</p><p>Jyväskylässä varttunut Ismo Leikola on vilkkaalla mielikuvituksella varustettu ujo poika, jolla on vaikeuksia kuulua joukkoon. Parikymppisenä opiskelijana hän törmää Suomessa uuteen ilmaisumuotoon, stand up -komediaan, joka sopii hänelle täydellisesti. Ismo nousee nopeasti Suomen menestyneimmäksi stand up -esiintyjäksi, mutta se ei hänelle riitä. Ismo päättää lähteä luomaan uraa Yhdysvaltoihin, maailman tunnetuimpien koomikkojen kotimaahan.</p><p>Elokuva kertoo miten itsensä ulkopuoliseksi kokeva pienen paikkakunnan kasvatti kääntää erikoislaatuisensa supervoimaksi ja äärimmäisen kovalla työllä sekä itseensä uskomalla onnistuu nousemaan omaääniseksi ja rakastetuksi supertähdeksi.</p><p>Ikäraja: S<br>Kesto: 98 min.<br>Ensi-ilta: 1.11.2024</p>"
            },
            "short_description": {
                "fi": "ISMO - Maailman hauskin ulkopuolinen on elokuvaversio sanonnasta \"Vaikeuksien kautta voittoon\"."
            },
            "location_extra_info": null,
            "name": {
                "fi": "ISMO - Maailman hauskin ulkopuolinen (S) – Kino Helios",
                "sv": "ISMO - Maailman hauskin ulkopuolinen (S) – Kino Helios",
                "en": "ISMO - Maailman hauskin ulkopuolinen (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64932/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64437",
            "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:205/?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:p1235/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152198,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-23T08:15:24.405156Z",
                    "last_modified_time": "2024-08-23T08:15:24.405179Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757206.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152198/?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-08-23T08:15:24.380230Z",
            "last_modified_time": "2024-12-20T01:14:20.783465Z",
            "date_published": null,
            "start_time": "2024-12-11T08:30:00Z",
            "end_time": "2024-12-11T09:20: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/231224548B21DE38659315261B9E6B08/Jouluinen_koulukino_Joulupukki_ja_noitarumpu",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/231224548B21DE38659315261B9E6B08/Jouluinen_koulukino_Joulupukki_ja_noitarumpu",
                "en": "http://www.vuotalo.fi/en/events/event/231224548B21DE38659315261B9E6B08/Jouluinen_koulukino_Joulupukki_ja_noitarumpu"
            },
            "provider": null,
            "description": {
                "fi": "<p>Virittäydytään joulun tunnelmaan! Mauri Kunnaksen lämminhenkinen koko perheen animaatioelokuva täynnä jännitystä ja hauskoja yllätyksiä.</p><p>Lukiessaan joululahjatoiveita Joulupukki saa erikoisen kirjeen. Kaikki olettavat sen sisältävän joululahjatoiveen Vekara-nimiseltä lapselta. Joulupukki ei saa viestissä olevasta kuvasta selvää, joten hän päättää käydä yhdessä Nooran ja Villen kanssa näyttämässä kuvaa mestaritontuille. Samaan aikaan kylässä tapahtuu kummia, kun Joulupukkia vainoavat erilaiset oudot onnettomuudet. Mitä kummaa Korvatunturilla tapahtuu?</p><p>Elokuva valmistui vuonna 1996. <br> Kesto: 50 min <br>Kieli: suomi  <br>Ikäraja: sallittu</p><p>Ryhmille ennakkoilmoittautumiset osoitteessa kultus.fi</p>",
                "sv": "<p>Låt oss hitta julstämningen! Mauri Kunnas varma animationsfilm för hela familjen, full av spänning och roliga överraskningar.</p><p>Längd: 50 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi</p>",
                "en": "<p>Let’s get into the Christmas spirit! Mauri Kunnas’ warm-hearted animated film for the whole family, full of excitement and great surprises.</p><p>Duration: 50 min<br>Language: Finnish<br>Registration for groups at kultus.fi</p>"
            },
            "short_description": {
                "fi": "Virittäydytään joulun tunnelmaan! Mauri Kunnaksen lämminhenkinen koko perheen animaatioelokuva täynnä jännitystä ja hauskoja yllätyksiä."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jouluinen koulukino: Joulupukki ja noitarumpu",
                "sv": "Jouluinen koulukino: Joulupukki ja noitarumpu",
                "en": "Jouluinen koulukino: Joulupukki ja noitarumpu"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64437/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64526",
            "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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152309,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-05T11:14:02.852954Z",
                    "last_modified_time": "2024-09-05T11:14:02.852973Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749849.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152309/?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:02.836529Z",
            "last_modified_time": "2024-12-20T01:14:20.670354Z",
            "date_published": null,
            "start_time": "2024-12-11T08:00:00Z",
            "end_time": "2024-12-11T10: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A9851AB1584170A88D0CB265FAF3B7F6/Naperokino",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/A9851AB1584170A88D0CB265FAF3B7F6/Knattebion",
                "en": "http://www.annantalo.fi/en/events/event/A9851AB1584170A88D0CB265FAF3B7F6/Toddler_cinema"
            },
            "provider": null,
            "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>"
            },
            "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."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Naperokino",
                "sv": "Knattebion",
                "en": "Toddler cinema"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64526/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63871",
            "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: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: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/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": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152210,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-23T13:15:57.871536Z",
                    "last_modified_time": "2024-08-23T13:15:57.871562Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753341.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152210/?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-08-23T13:15:57.842937Z",
            "last_modified_time": "2024-12-20T01:14:20.578778Z",
            "date_published": null,
            "start_time": "2024-12-11T08: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/82B5EDFCDEB03995F5142E6E88BA131E/Kuskit_Company_Superkehot"
            },
            "provider": null,
            "description": {
                "fi": "<p>Superkehot on asiantuntijatietoon pohjautuva esitys 3–5-vuotiaiden lasten suhteesta omaan ja toisten kehoon. TÄYTEEN VARATTU</p><p>Se on syliä ja haleja, hassuttelua, höpöttelyä, nukkumista, heräämistä, nujuamista, hyppimistä, heilumista, juoksemista, tanssimista. Se on leikkiä, ja se on tärkeitä sanoja. Se on turvataitoja ja turvallista tahtomista, se on EI EI EI EI EI, se on KYLLÄ ja se on en tiedä...!</p><p>Se on se kaikkein tärkein – ikioma keho!</p><p>Vuoden 2024 Itu-palkittu esitys pohtii nukketeatterin keinoin kehoitsetunnon rakentumisen peruspalikoita, hellästi ja konkreettisesti.</p><p>Työryhmä:<br>Skenografia ja nuket: K Rasila<br>Dramaturgia ja ohjaus: Valto Kuuluvainen<br>Äänisuunnittelu: Maura Korhonen<br>Valosuunnitelu: Anna Pöllänen<br>Näyttämöllä: Eero Ojala ja Elisa Salo<br>Lopun superkehomusiikki: Sävellys Pasi Huttula, sovitus Maura Korhonen<br>Käsiohjelma: Leena Aronen<br>Esityskuva: Mikael Ahlfors ja K Rasila<br>Esityksen kesto 45 minuuttia</p><p>Vanhemmille tietosivusto: hyvakysymys.fi/lapsijaseksuaalisuus<br>Vanhemman vihkonen: https://www.vaestoliitto.fi/uploads/2020/11/bac46f71-vanhemmantietovihko-netti-2-20.pdf</p><p>Pikku Kakkosen videot: https://yle.fi/aihe/artikkeli/2019/06/05/pikku-kakkosessa-annetaan-kaikille-kehon-osille-nimi-ja-opetellaan</p><p>Ikäsuositus: 3–5-v<br>Kieli: suomi</p><p>Arkiaamuesityksiin ilmoittautuminen: kultus.fi perjantaista 1.11. klo 8 alkaen</p>"
            },
            "short_description": {
                "fi": "Superkehot on asiantuntijatietoon pohjautuva esitys 3–5-vuotiaiden lasten suhteesta omaan ja toisten kehoon. TÄYTEEN VARATTU"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kuskit Company: Superkehot – Ilmoittautuminen kultus.fi"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63871/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65031",
            "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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153064,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-20T15:14:30.872979Z",
                    "last_modified_time": "2024-11-20T15:14:30.872999Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763597.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153064/?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-11-20T15:14:30.827856Z",
            "last_modified_time": "2024-12-20T01:14:20.492556Z",
            "date_published": null,
            "start_time": "2024-12-11",
            "end_time": "2025-03-01",
            "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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/68858C428473958085D3C8A6FF86F219/Kissoista_linnuista_kaloista_ja_ihmisista"
            },
            "provider": null,
            "description": {
                "fi": "<p>Aulan taiteilijoiden Kissoista, linnuista, kaloista ja ihmisistä -yhteisnäyttely on nähtävissä Annantalon kahvilassa.</p><p>Eläimet, ihmiset ja kaikki heidän erikoiset tapansa ovat kiehtovia tutkimuskohteita kuvataiteessa. Teokset pursuavat värejä ja runsautta, ja niistä välittyy jokaisen Aulan taiteilijan oma, ainutkertainen taiteellisen ilmaisun polku. Teokset ovat syntyneet pääasiassa vuoden 2024 aikana, ja ne on toteutettu eri tekniikoin, mm. maalaamalla ja piirtämällä.</p><p>Näyttelyssä ovat mukana taiteilijat <b>Mariam Aloui</b>, <b>Karel Alunurm</b>, <b>Dari Dejev</b>, <b>Mia Haski</b>, <b>Ibrahim Korkmaz</b>, <b>Petra Kuisma</b>, <b>Tiina Lyytinen</b>,  <b>Linnea Mettälä</b>, <b>Mervi Peltomaa</b>, <b>Minna Reilly</b>, <b>Tom Runeberg</b>, <b>Joel Rämö </b>, <b>Anna-Marija Sabo</b>, <b>Kiira Siikala</b>, <b>Veeti Sipponen</b> ja <b>Katrina Taylor</b>.</p><p>Näyttely on Annantalon kahvilassa ja avoinna Annantalon aukioloaikoina.</p><p>Vapaa pääsy.</p><p><b>Tervetuloa näyttelyn avajaisiin tiistaina 10.12. klo 13–14!</b></p><p>Aula on voittoa tavoittelematon yhdistys, jonka tavoitteena on auttaa erityistä tukea tarvitsevia ihmisiä oman elämän rakentamisessa. Aulan Taidestudiossa taiteilijoita rohkaistaan löytämään omannäköinen polku taiteelliselle ilmaisulle kannustamalla kokeilemaan uusia tekniikoita ja tuomaan omia vahvuuksia esiin. Taidestudion kautta voidaan myös mahdollistaa näyttelyitä ja luoda verkostoja.</p><p>Taidestudiossa työskentelee tällä hetkellä yhteensä 30 kunnianhimoista taiteilijaa, jotka pyrkivät jatkuvasti kehittymään ja osallistumaan näyttelytoimintaan sekä muihin taidemaailman merkittäviin tapahtumiin.</p>"
            },
            "short_description": {
                "fi": "Aulan taiteilijoiden Kissoista, linnuista, kaloista ja ihmisistä -yhteisnäyttely on nähtävissä Annantalon kahvilassa."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kissoista, linnuista, kaloista ja ihmisistä – Aulan taiteilijat"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65031/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64436",
            "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:205/?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:p1235/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152197,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-23T08:15:24.216153Z",
                    "last_modified_time": "2024-08-23T08:15:24.216173Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757205.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152197/?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-08-23T08:15:24.177218Z",
            "last_modified_time": "2024-12-20T01:14:20.400755Z",
            "date_published": null,
            "start_time": "2024-12-11T07: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D60F447715334900662DEBDDAB6ED85D/Jouluinen_Skidikino_Lumiukko",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D60F447715334900662DEBDDAB6ED85D/Jouluinen_Skidikino_Lumiukko",
                "en": "http://www.vuotalo.fi/en/events/event/D60F447715334900662DEBDDAB6ED85D/Jouluinen_Skidikino_Lumiukko"
            },
            "provider": null,
            "description": {
                "fi": "<p>Lumiukko on koskettava tarina pikkupojan ja lumiukon lämpimästä ystävyydestä ja yhteisistä leikeistä.</p><p>Lumisena jouluaattopäivänä sataa lunta. Pieni poika menee nauttimaan ulos lumisateesta ja tekee lumiukon. Lumiukon valmistuttua on hänen aika mennä nukkumaan. Hän ei kuitenkaan saa unta ja lähtee keskellä yötä katsomaan tekemäänsä lumiukkoa, joka herää pojan hämmästykseksi yhtäkkiä henkiin!</p><p>Skidikino on lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa. Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Vuotalon nettisivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Kesto: n. 30 min<br>ryhmille ilmoittautuminen: kultus.fi</p>",
                "sv": "<p>Skidikino är en kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Vuotalos webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Anmälan för grupper på kultus.fi</p>",
                "en": "<p>Skidikino is a short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>Before your visit, you can download Pikkukroko (Little Crocodile) study materials from Vuotalo’s website. The illustrated material tells a story about going to the cinema.</p><p>Duration: 30 min<br>Registration for daycare groups at Kultus!</p>"
            },
            "short_description": {
                "fi": "Lumiukko on koskettava tarina pikkupojan ja lumiukon lämpimästä ystävyydestä ja yhteisistä leikeistä."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jouluinen Skidikino: Lumiukko",
                "sv": "Jouluinen Skidikino: Lumiukko",
                "en": "Jouluinen Skidikino: Lumiukko"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64436/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63826",
            "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": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/johanna-mikko-iivanainen-joulu-talven-tulilla-malmitalo-19106809/",
                        "sv": "https://www.lippu.fi/event/johanna-mikko-iivanainen-joulu-talven-tulilla-malmitalo-19106809/",
                        "en": "https://www.lippu.fi/event/johanna-mikko-iivanainen-joulu-talven-tulilla-malmitalo-19106809/"
                    },
                    "price": {
                        "fi": "24,80 € / 30 € ovelta",
                        "sv": "24,80 € / 30 € ovelta",
                        "en": "24,80 € / 30 € ovelta"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152450,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-18T08:13:38.891138Z",
                    "last_modified_time": "2024-09-18T08:13:38.891154Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753147.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152450/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-18T08:13:38.854787Z",
            "last_modified_time": "2024-12-20T01:14:20.309899Z",
            "date_published": null,
            "start_time": "2024-12-10T17: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6298BFC7090DD555A8542F01958CE88E/Johanna_Mikko_Iivanainen_joulukonsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6298BFC7090DD555A8542F01958CE88E/Johanna_Mikko_Iivanainen_julkonsert",
                "en": "http://www.malmitalo.fi/en/events/event/6298BFC7090DD555A8542F01958CE88E/Johanna_and_Mikko_Iivanainen_Christmas_Concert"
            },
            "provider": null,
            "description": {
                "fi": "<p>Johanna Iivanainen ja Mikko Iivanainen kutsuvat sinut rauhoittumaan talven tulille ja kohti joulua.</p><p>Iivanaiset ovat valmistaneet kiertueelleen lämminhenkisen ohjelmiston perinteisistä joululauluista sekä uudemmista jouluisista sävelmistä.</p><p>Ohjelmistossa kuullaan mm. rauhallinen Mökit nukkuu lumiset, klassikoksi muodostunut Have Yourself A Merry Little Christmas ja oma kappale Talven tulilla, joka on tehty joulukiertuetta varten.</p><p>Tyylitajuinen, herkkä ja sielukas laulu ja soitto ovat tekemisen pohjana tällä jo yli kaksi vuosikymmentä toistensa kanssa musisoineella pariskunnalla.</p><p><b>Johanna Iivanainen</b> on tullut suurelle yleisölle tutuksi SuomiLOVE-ohjelman solistina v. 2014–2019. Johannan raikas, luonnollinen esiintyminen ja sävykkäät tulkinnat ovat saavuttaneet suuren suosion. Artistin monipuolisuus hätkähdyttää: levytyksiä jazzin, a cappellan, popin, dancen ja lastenmusiikin alueilta. Iivanaisen poikkeuksellisen kattava diskografia sisältää yli 50 levytystä.</p><p><b>Mikko Iivanainen</b> on monipuolinen kitarataituri, joka on tehnyt yhteistyötä vaimonsa Johannan lisäksi myös mm. Maria Kalaniemen, Timo Alakotilan, Edu Kettusen, Mika Kuokkasen ja Juhani Aaltosen kanssa. Suurella soundipaletilla maalaava kitarataiteilija on julkaissut kolme sooloalbumia: Progesävyisen ensemblealbumin Last Room (2014) sekä soolokitaralevyt A River Runs Through It (2020) ja Lullaby for Lost Souls (2023).</p><p>Kesto: 1h 15min, ei väliaikaa</p>",
                "sv": "<p>Johanna Iivanainen och Mikko Iivanainen bjuder in dig att lugna dig ner vid vintereldar och inför julen.</p><p>För sin turné har paret Iivanainen förberett ett varmt program med traditionella julsånger och nyare juliga melodier.</p><p>På konserterna hörs bland annat den lugna låten Mökit nukkuu lumiset, Have Yourself A Merry Little Christmas som blivit en klassiker och en egen låt Talven tulille som har skrivits för julturnén.</p><p>Elegant, känslig och själfull sång och musik utgör grunden för paret som har musicerat tillsammans redan över två årtionden.</p><p>Johanna Iivanainen har blivit känd för den stora allmänheten som solist i programmet SuomiLOVE 2014–2019. Johannas fräscha, naturliga uppträdande och melodiska tolkningar har blivit mycket populära. Artisten är häpnadsväckande mångsidig: inspelningar av jazz, a cappella, pop, dance och barnmusik. I Iivanainens exceptionellt omfattande diskografi ingår över 50 inspelningar.</p><p>Mikko Iivanainen är en mångsidig gitarrvirtuos som har samarbetat med sin fru Johanna och dessutom bland annat med Maria Kalaniemi, Timo Alakotila, Edu Kettunen, Mika Kuokkanen och Juhani Aaltonen. Gitarristen som målar med omfattande soundpalett har gett ut tre soloalbum: Ensemblealbumet med progenyanser Last Room (2014) och gitarrsoloalbumen A River Runs Through It (2020) och Lullaby for Lost Souls (2023).</p><p>Längd: 1h 15 min, ingen paus</p>",
                "en": "<p>Johanna Iivanainen and Mikko Iivanainen invite you to calm down in front of the winter fire before Christmas.</p><p>For their tour, the Iivanainens have prepared a warm-hearted repertoire of traditional Christmas carols and newer Christmassy tunes, including the peaceful ‘Mökit nukkuu lumiset’, the classic ‘Have Yourself A Merry Little Christmas’ and their own song written especially for this tour, ‘Talven tulilla’.</p><p>The couple have been making stylish, emotive and soulful music together for more than 20 years.</p><p>Johanna Iivanainen is best known by the general public as the soloist in the SuomiLOVE TV show from 2014 to 2019. Johanna’s fresh, natural stage appeal and rich interpretations have gained her great popularity. She is a strikingly versatile artist: she has recorded jazz, a cappella, pop, dance and children’s music. Iivanainen’s exceptionally comprehensive discography includes more than 50 recordings.</p><p>Mikko Iivanainen is a versatile guitar master who has collaborated not only with his wife Johanna, but also with Maria Kalaniemi, Timo Alakotila, Edu Kettunen, Mika Kuokkanen and Juhani Aaltonen, among others. Painting with a large sound palette, the guitar artist has released three solo albums: prog-style ensemble album Last Room (2014) and solo guitar albums A River Runs Through It (2020) and Lullaby for Lost Souls (2023).</p><p>Duration: 1h 15min, no interval</p>"
            },
            "short_description": {
                "fi": "Johanna Iivanainen ja Mikko Iivanainen kutsuvat sinut rauhoittumaan talven tulille ja kohti joulua.",
                "sv": "Johanna Iivanainen och Mikko Iivanainen bjuder in dig att lugna dig ner vid vintereldar och inför julen.",
                "en": "Johanna Iivanainen and Mikko Iivanainen invite you to calm down in front of the winter fire before Christmas."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Johanna & Mikko Iivanainen – joulukonsertti",
                "sv": "Johanna & Mikko Iivanainen – julkonsert",
                "en": "Johanna and Mikko Iivanainen – Christmas Concert"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63826/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63915",
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/18755090"
                    },
                    "price": {
                        "fi": "45-47 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151329,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-31T14:12:59.546313Z",
                    "last_modified_time": "2024-05-31T14:12:59.546330Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751914.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151329/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-31T14:12:59.500088Z",
            "last_modified_time": "2024-12-20T01:14:20.227361Z",
            "date_published": null,
            "start_time": "2024-12-10T17: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/88A217633C4D0E64640E3708546CA5F6/The_Ukulele_Orchestra_Of_Great_Britain_UK_"
            },
            "provider": {
                "fi": "Nem Agency Oy"
            },
            "description": {
                "fi": "<p>The Ukulele Orchestra Of Great Britain pitkästä aikaa Suomeen!</p><p>Rockin ja viihdemusiikin klassikoista ainutlaatuisiksi ukuleleversioiksi muuttava The Ukulele Orchestra Of Great Britain kiertää joulukuussa Suomea ja tarjoaa soitannollista suvereniteettiä ja kuivakkaa brittihuumoria!</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>"
            },
            "short_description": {
                "fi": "The Ukulele Orchestra Of Great Britain pitkästä aikaa Suomeen!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "The Ukulele Orchestra Of Great Britain (UK)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63915/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63828",
            "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/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151448,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-13T10:13:05.614720Z",
                    "last_modified_time": "2024-06-13T10:13:05.614739Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753149.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151448/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-13T10:13:05.585912Z",
            "last_modified_time": "2024-12-20T01:14:20.141248Z",
            "date_published": null,
            "start_time": "2024-12-10T15: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/077D8990293D4D8A40AD7273A252332D/Yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/077D8990293D4D8A40AD7273A252332D/Yhteislaulut",
                "en": "http://www.malmitalo.fi/en/events/event/077D8990293D4D8A40AD7273A252332D/Yhteislaulut"
            },
            "provider": null,
            "description": {
                "fi": "<p>Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.</p><p>Yhteislauluja järjestetään Malmitalon pienessä salissa kerran kuussa tiistaisin seuraavasti:</p><p>Ti 10.9. klo 17–18<br>Ti 8.10. klo 17–18<br>Ti 12.11. klo 17–18<br>Ti 10.12. klo 17–18</p><p>Tervetuloa mukaan!<br>Vapaa pääsy</p>",
                "sv": "<p>De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!</p><p>Här får alla sjunga härliga favoritlåtar av hjärtats lust under ledning av Jukka Okkonen och Pauli Kainulainen.</p><p>Allsången ordnas i den lilla salen i Malms kulturhus en gång i månaden på tisdagar.</p><p>Välkommen med!<br>Fritt inträde</p>",
                "en": "<p>The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to wonderful classics.</p><p>Sing-along sessions are held in the small hall of Malmitalo once a month on Tuesdays.</p><p>Welcome!<br>Free admission</p>"
            },
            "short_description": {
                "fi": "Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!",
                "sv": "De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!",
                "en": "The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Yhteislaulut",
                "sv": "Yhteislaulut",
                "en": "Yhteislaulut"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63828/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65001",
            "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:733/?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:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153047,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-19T08:14:41.536501Z",
                    "last_modified_time": "2024-11-19T08:14:41.536519Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763389.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153047/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-19T08:14:41.495012Z",
            "last_modified_time": "2024-12-20T01:14:20.052862Z",
            "date_published": null,
            "start_time": "2024-12-10T15:00:00Z",
            "end_time": "2024-12-10T17: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/255699589437797B4B34074C13D043EB/Kantsun_kahvit",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/255699589437797B4B34074C13D043EB/Kaffe_i_Kantsu",
                "en": "http://www.kanneltalo.fi/en/events/event/255699589437797B4B34074C13D043EB/Kantsu_coffee"
            },
            "provider": null,
            "description": {
                "fi": "<p>Aiheena kestävä kehitys – Miten säästää rahaa ja luontoa omassa arjessa?</p><p>Aiheesta kertoo Terhi Takala Kestävät arjen valinnat -hankkeesta. Alustuksen jälkeen jatkamme keskustelua yhdessä.</p><p>Tule jakamaan parhaat vinkkisi! Tarjoamme kahvia, teetä ja pientä syötävää.</p><p>Tapahtumaan ei tarvitse ilmoittautua ja se on maksuton. Voit osallistua suomeksi tai englanniksi. Kantsun kahvit järjestää yhteistyössä alueen asukkaat, Kannelmäen D-asema ja Helsingin kaupunki.</p><p>Paikka: Kahvilan stage<br>Kesto: 2 tuntia<br>Maksuton, vapaa pääsy</p>",
                "sv": "<p>Ämnet är hållbar utveckling – Hur spara pengar och miljön i vardagen?</p><p>Terhi Takala från projektet Kestävät arjen valinnat (Hållbara vardagsval) berättar om ämnet. Efter introduktionen fortsätter vi diskussionen tillsammans. Kom och dela med dig av dina bästa tips. Kom och dela med dig av dina bästa tips! Vi bjuder på kaffe, te och litet tilltugg.</p><p>Du behöver inte anmäla dig och evenemanget är avgiftsfritt. Du kan delta på finska eller engelska. Kaffe i Kantsu ordnas i samarbete med invånarna i området, Kannelmäen D-asema och Helsingfors stad.</p><p>Plats: Kaféets stage<br>Längd: 2 timmar<br>Avgiftsfritt, fritt inträde</p>",
                "en": "<p>The topic is sustainable development – How to save money and nature in your daily life?</p><p>Terhi Takala from the Sustainable Everyday Choices project is here to tell you about this subject. After the introduction, we can continue the discussion together. Come and share your best tips. Come and share your best tips! We have coffee, tea and small bites.</p><p>Advance registration is not needed for this free event. You can participate in Finnish or English. Kantsu coffee is organised in cooperation with the area’s residents, Kannelmäki D-station and the City of Helsinki.</p><p>Location: Café stage<br>Duration: 2 hours<br>Free admission</p>"
            },
            "short_description": {
                "fi": "Aiheena kestävä kehitys – Miten säästää rahaa ja luontoa omassa arjessa?",
                "sv": "Ämnet är hållbar utveckling – Hur spara pengar och miljön i vardagen?",
                "en": "The topic is sustainable development – How to save money and nature in your daily life?"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kantsun kahvit",
                "sv": "Kaffe i Kantsu",
                "en": "Kantsu coffee"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65001/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65006",
            "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: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: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": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153045,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-18T14:14:41.614650Z",
                    "last_modified_time": "2024-11-18T14:14:41.614676Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763422.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153045/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-18T14:14:41.568809Z",
            "last_modified_time": "2024-12-20T01:14:19.959164Z",
            "date_published": null,
            "start_time": "2024-12-10T14:00:00Z",
            "end_time": "2024-12-10T17: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D0CE073E662D6B7DDD6F07161202021E/Puurojuhla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D0CE073E662D6B7DDD6F07161202021E/Grotfest_",
                "en": "http://www.malmitalo.fi/en/events/event/D0CE073E662D6B7DDD6F07161202021E/Porridge_party_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tip tap, nyt töppöstä toisensa eteen ja suunta kohti Malmitalon joulupuuroa.</p><p>Haluamme toivottaa kaikille hyvää joulua herkullisen joulupuuron myötä. Tule mukaan aterioimaan ja juhlimaan riemastuttavaa joulunaikaa kanssamme. <br> <br>Vapaa pääsy!</p><p><b>Ohjelma:</b></p><p><b>Aula</b><br>Puurotarjoilu 300 ensimmäiselle klo 16-19<br>Emma Kuntsin jouluista kantelemusiikkia klo 16-17 ja 18-19</p><p><b>Pieni sali</b><br>Joululauluja yhteislaulujen merkeissä Jukka Okkosen ja Pauli Kainulaisen johdolla klo 17-18</p><p><b>Kirjasto</b><br>Lasten jouluhetki: askarrellaan, etsitään tonttuja ja koristellaan kuusta! 16-19<br>Joulusatutuokiot perheen pienimmille klo 16, 17 ja 18.</p><p>Vapaa pääsy!</p><p>Puurojuhlan jälkeen Malmisalissa on maksullinen Johanna & Mikko Iivanaisen Joulu talven tulilla -konsertti. <a href=\"https://www.lippu.fi/event/johanna-mikko-iivanainen-joulu-talven-tulilla-malmitalo-19106809/\">Osta lippu konserttiin</a></p><p>Yhteistyössä Malmitalo ja Malmin kirjasto</p>",
                "sv": "<p>Tipp tapp, nu är det dags att tassa iväg mot julgröten på Malms kulturhus.</p><p>Vi vill önska alla en riktigt god jul med läcker julgröt. Kom och ät med oss och fira den härliga jultiden tillsammans med oss. <br> <br>Fritt inträde! Det finns gröt till cirka 300 personer.</p>",
                "en": "<p>Tip tap, put one foot in front of the other and head to Malmitalo for Christmas porridge.</p><p>We want to wish everyone a happy Christmas with delicious Christmas porridge. Join us for porridge and celebrate an exhilarating holiday season. <br> <br>Admission is free! Porridge is available for approx. 300 people.</p>"
            },
            "short_description": {
                "fi": "Tip tap, nyt töppöstä toisensa eteen ja suunta kohti Malmitalon joulupuuroa.",
                "sv": "Tipp tapp, nu är det dags att tassa iväg mot julgröten på Malms kulturhus.",
                "en": "Tip tap, put one foot in front of the other and head to Malmitalo for Christmas porridge."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Puurojuhla",
                "sv": "Grötfest",
                "en": "Porridge party"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65006/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64219",
            "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:350/?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/kulke:732/?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:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151788,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-22T14:13:36.451065Z",
                    "last_modified_time": "2024-07-22T14:13:36.451080Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755960.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151788/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-22T14:13:36.435458Z",
            "last_modified_time": "2024-12-20T01:14:19.877480Z",
            "date_published": null,
            "start_time": "2024-12-10T12:00:00Z",
            "end_time": "2024-12-10T13: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/4E97A610DDF98C0C546961E9778FC9BD/Paivatanssit_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/4E97A610DDF98C0C546961E9778FC9BD/Paivatanssit_",
                "en": "http://www.stoa.fi/en/events/event/4E97A610DDF98C0C546961E9778FC9BD/Paivatanssit_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.</p><p>Aiempaa osaamista et tarvitse, eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!<br>Tanssiminen tapahtuu joko oman parin kanssa tai soolona.</p><p>Ohjauskieli: suomi<br>Vapaa pääsy.</p>",
                "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska<br>Fritt inträde.</p>",
                "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish<br>Free entry</p>"
            },
            "short_description": {
                "fi": "Tule opettelemaan ja tanssimaan Katja Koukkulan ja Jussi Väänäsen ammattitaitoisella ohjauksella Stoan aulaan.",
                "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas aula.",
                "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Päivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa",
                "sv": "Päivätanssit – med Jussi Väänänen och Katja Koukkula",
                "en": "Päivätanssit – with Jussi Väänänen and Katja Koukkula"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64219/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63870",
            "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: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: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/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": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151999,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T16:16:06.538841Z",
                    "last_modified_time": "2024-07-30T16:16:06.538867Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753339.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151999/?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-30T16:16:06.507396Z",
            "last_modified_time": "2024-12-20T01:14:19.786892Z",
            "date_published": null,
            "start_time": "2024-12-10T08: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F7B29C829D18D58897A28C424E2ECBFE/Kuskit_Company_Superkehot"
            },
            "provider": null,
            "description": {
                "fi": "<p>Superkehot on asiantuntijatietoon pohjautuva esitys 3–5-vuotiaiden lasten suhteesta omaan ja toisten kehoon. TÄYTEEN VARATTU</p><p>Se on syliä ja haleja, hassuttelua, höpöttelyä, nukkumista, heräämistä, nujuamista, hyppimistä, heilumista, juoksemista, tanssimista. Se on leikkiä, ja se on tärkeitä sanoja. Se on turvataitoja ja turvallista tahtomista, se on EI EI EI EI EI, se on KYLLÄ ja se on en tiedä...!</p><p>Se on se kaikkein tärkein – ikioma keho!</p><p>Vuoden 2024 Itu-palkittu esitys pohtii nukketeatterin keinoin kehoitsetunnon rakentumisen peruspalikoita, hellästi ja konkreettisesti.</p><p>Työryhmä:<br>Skenografia ja nuket: K Rasila<br>Dramaturgia ja ohjaus: Valto Kuuluvainen<br>Äänisuunnittelu: Maura Korhonen<br>Valosuunnitelu: Anna Pöllänen<br>Näyttämöllä: Eero Ojala ja Elisa Salo<br>Lopun superkehomusiikki: Sävellys Pasi Huttula, sovitus Maura Korhonen<br>Käsiohjelma: Leena Aronen<br>Esityskuva: Mikael Ahlfors ja K Rasila<br>Esityksen kesto 45 minuuttia</p><p>Vanhemmille tietosivusto: hyvakysymys.fi/lapsijaseksuaalisuus<br>Vanhemman vihkonen: https://www.vaestoliitto.fi/uploads/2020/11/bac46f71-vanhemmantietovihko-netti-2-20.pdf</p><p>Pikku Kakkosen videot: https://yle.fi/aihe/artikkeli/2019/06/05/pikku-kakkosessa-annetaan-kaikille-kehon-osille-nimi-ja-opetellaan</p><p>Ikäsuositus: 3–5-v<br>Kieli: suomi</p><p>Arkiaamuesityksiin ilmoittautuminen: kultus.fi perjantaista 1.11. klo 8 alkaen</p>"
            },
            "short_description": {
                "fi": "Superkehot on asiantuntijatietoon pohjautuva esitys 3–5-vuotiaiden lasten suhteesta omaan ja toisten kehoon. TÄYTEEN VARATTU"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kuskit Company: Superkehot – Ilmoittautuminen kultus.fi"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63870/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}