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/?division=malmi&format=api&page=36
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 1655,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=37",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=35"
    },
    "data": [
        {
            "id": "kulke:64988",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153021,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-14T09:14:46.783427Z",
                    "last_modified_time": "2024-11-14T09:14:46.783446Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763330.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153021/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-14T09:14:46.739779Z",
            "last_modified_time": "2024-12-20T01:14:24.766630Z",
            "date_published": null,
            "start_time": "2024-12-17T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E87D51B31900D779CE13C65B648EB31A/Kauneimmat_joululaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E87D51B31900D779CE13C65B648EB31A/De_vackraste_julsangerna",
                "en": "http://www.malmitalo.fi/en/events/event/E87D51B31900D779CE13C65B648EB31A/The_Most_Beautiful_Christmas_Songs"
            },
            "provider": null,
            "description": {
                "fi": "<p>Kauneimmat joululaulut siivittävät kuulijansa pehmeästi kohti joulun riemastuttavaa aikaa.</p><p>Yhteiseen jouluperinteeseen ja kauneimpiin joululauluihin johdattamassa Heidi Visa, laulu, Aino Hänninen, viulu, sekä kanttori Mari Torri-Tuominen ja pastori Kirsi Ojansuu-Kaunisto Malmin seurakunnasta.<br> <br>Vapaa pääsy!</p><p>Kesto 1 tunti.</p>",
                "sv": "<p>De vackraste julsångerna leder varsamt lyssnarna mot den glada jultiden.</p><p>Heidi Visa, sång, Aino Hänninen, violin, samt kantor Mari Torri-Tuominen och pastor Kirsi Ojansuu-Kaunisto från Malms församling leder den gemensamma jultraditionen och de vackraste julsångerna.<br> <br>Fritt inträde!</p><p>Längd 1 h</p>",
                "en": "<p>The most beautiful Christmas songs smoothly propel their listeners towards an exhilarating Christmas.</p><p>Heidi Visa, vocals, Aino Hänninen, violin, as well as chantress Mari Torri-Tuominen and pastor Kirsi Ojansuu-Kaunisto from the Malmi parish will guide everyone into our shared Christmas traditions and the most beautiful Christmas songs.<br> <br>Admission is free!</p><p>Duration: 1 h</p>"
            },
            "short_description": {
                "fi": "Kauneimmat joululaulut siivittävät kuulijansa pehmeästi kohti joulun riemastuttavaa aikaa.",
                "sv": "De vackraste julsångerna leder varsamt lyssnarna mot den glada jultiden.",
                "en": "The most beautiful Christmas songs smoothly propel their listeners towards an exhilarating Christmas."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kauneimmat joululaulut",
                "sv": "De vackraste julsångerna – på finska",
                "en": "The Most Beautiful Christmas Songs – in Finnish"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64988/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64818",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": {
                        "fi": "20 € / 16 €",
                        "sv": "20 € / 16 €",
                        "en": "20 € / 16 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152920,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-31T09:15:05.462423Z",
                    "last_modified_time": "2024-10-31T09:15:05.462440Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760301.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152920/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-31T09:15:05.426399Z",
            "last_modified_time": "2024-12-20T01:14:24.099153Z",
            "date_published": null,
            "start_time": "2024-12-14T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/49F0D6A6A8FE1A13D09AC180593407A2/Nova_Star_ilma-akrobatiakilpailu",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/49F0D6A6A8FE1A13D09AC180593407A2/Nova_Star_ilma-akrobatiakilpailu",
                "en": "http://www.malmitalo.fi/en/events/event/49F0D6A6A8FE1A13D09AC180593407A2/Nova_Star_ilma-akrobatiakilpailu"
            },
            "provider": null,
            "description": {
                "fi": "<p>Nova Star ilma-akrobatiakilpailu on lämminhenkinen harrastetason kilpailu, jossa nähdään sekä lasten- että aikuisten sarjat.</p><p>Esiintyjiä on ympäri Suomen.</p><p>Kilpailun järjestää Roof Aerial Club.</p>"
            },
            "short_description": {
                "fi": "Nova Star ilma-akrobatiakilpailu on lämminhenkinen harrastetason kilpailu, jossa nähdään sekä lasten- että aikuisten sarjat."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Nova Star ilma-akrobatiakilpailu",
                "sv": "Nova Star ilma-akrobatiakilpailu",
                "en": "Nova Star ilma-akrobatiakilpailu"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64818/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65046",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-vaiana-2-3780608/"
                    },
                    "price": {
                        "fi": "5 €",
                        "sv": "5 €",
                        "en": "5 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153072,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-22T13:14:27.876922Z",
                    "last_modified_time": "2024-11-22T13:14:27.876938Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745820.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153072/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-22T13:14:27.844156Z",
            "last_modified_time": "2024-12-20T01:14:23.766067Z",
            "date_published": null,
            "start_time": "2024-12-14T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3E3108C03AD27A367CAEE537969BF001/Vaiana_2_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3E3108C03AD27A367CAEE537969BF001/Vaiana_2_7_",
                "en": "http://www.malmitalo.fi/en/events/event/3E3108C03AD27A367CAEE537969BF001/Vaiana_2_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!</p><p>Vaiana kuulee odottamattoman kutsun ympäri Oseaniaa purjehtineilta esi-isiltään. Siihen vastatakseen hänen on matkattava merten ääriin, tuntemattomille ja vaarallisille vesille, missä häntä odottaa seikkailu, jollaista hän ei ole vielä kuunaan kokenut.</p><p>VAIANA 2 -elokuva sisältää kohtauksia, joissa esiintyy välkkyviä valoja, jotka voivat toimia ärsykkeinä niille, jotka ovat alttiita valoherkälle epilepsialle tai muille valoherkkyysoireille.</p><p>Ikäraja: 7<br>Kesto: 99 min.<br>Ensi-ilta: 29.11.2024<br>Elokuva on puhuttu ja tekstitetty suomeksi</p>"
            },
            "short_description": {
                "fi": "Eeppisen animaatiomusikaalin toisessa osassa Vaiana ja Maui palaavat yhteen suunnatakseen entistä huikeammalle seikkailulle!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vaiana 2 (7) – Kino Helios",
                "sv": "Vaiana 2 (7) – Kino Helios",
                "en": "Vaiana 2 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65046/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64817",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=malmitalo&sort=DateAsc&dateFrom=2024-10-31",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=malmitalo&sort=DateAsc&dateFrom=2024-10-31",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=malmitalo&sort=DateAsc&dateFrom=2024-10-31"
                    },
                    "price": {
                        "fi": "15 € / 10 €",
                        "sv": "15 € / 10 €",
                        "en": "15 € / 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152916,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-31T08:15:05.476792Z",
                    "last_modified_time": "2024-10-31T08:15:05.476809Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760300.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152916/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-31T08:15:05.443843Z",
            "last_modified_time": "2024-12-20T01:14:23.313604Z",
            "date_published": null,
            "start_time": "2024-12-14T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1F817E389F9416951761782EF00A157E/Roof_Aerial_Clubin_Joulunaytos_2024",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1F817E389F9416951761782EF00A157E/Roof_Aerial_Clubs_juluppvisning_2024",
                "en": "http://www.malmitalo.fi/en/events/event/1F817E389F9416951761782EF00A157E/Roof_Aerial_Club_Christmas_Show_2024"
            },
            "provider": null,
            "description": {
                "fi": "<p>Roof Aerial Clubin joulunäytöksessä nähdään lasten ja nuorten sirkus-ja ilma-akrobatiaryhmien esityksiä.</p><p>Luvassa on pyramideja, akrobatiaa sekä ilma-akrobatiaa useilla eri välineillä. Harrastajat ovat osallistuneet esityksen ideointiin.</p><p>Kesto: 1 h 30 min</p>",
                "sv": "<p>Roof Aerial Clubs juluppvisning omfattar uppträdanden av cirkus- och luftakrobatikgrupper för barn och unga.</p><p>Pyramider, akrobatik och luftakrobatik med olika typer av redskap utlovas. Utövarna har deltagit i utformningen av uppvisningen.</p>",
                "en": "<p>The Roof Aerial Club's Christmas Show will feature performances by children and young people's circus performers and aerial acrobatics groups.</p><p>You can expect human pyramids, acrobatics and aerial acrobatics with a variety of tools. Enthusiasts helped to brainstorm the show’s content.</p>"
            },
            "short_description": {
                "fi": "Roof Aerial Clubin joulunäytöksessä nähdään lasten ja nuorten sirkus-ja ilma-akrobatiaryhmien esityksiä.",
                "sv": "Roof Aerial Clubs juluppvisning omfattar uppträdanden av cirkus- och luftakrobatikgrupper för barn och unga.",
                "en": "The Roof Aerial Club's Christmas Show will feature performances by children and young people's circus performers and aerial acrobatics groups."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Roof Aerial Clubin Joulunäytös 2024",
                "sv": "Roof Aerial Clubs juluppvisning 2024",
                "en": "Roof Aerial Club Christmas Show 2024"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64817/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65102",
            "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": 153093,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-27T11:14:30.095397Z",
                    "last_modified_time": "2024-11-27T11:14:30.095416Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745818.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153093/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-27T11:14:30.065673Z",
            "last_modified_time": "2024-12-20T01:14:22.783978Z",
            "date_published": null,
            "start_time": "2024-12-13T16: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/44001AF1280E8A7CAE43347C68FF4D83/Crossing_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/44001AF1280E8A7CAE43347C68FF4D83/Crossing_7_",
                "en": "http://www.malmitalo.fi/en/events/event/44001AF1280E8A7CAE43347C68FF4D83/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:65102/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65105",
            "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-pieni-pala-kakkua-3780610/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-pieni-pala-kakkua-3780610/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-pieni-pala-kakkua-3780610/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153092,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-27T11:14:29.899222Z",
                    "last_modified_time": "2024-11-27T11:14:29.899241Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745817.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153092/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-27T11:14:29.877874Z",
            "last_modified_time": "2024-12-20T01:14:22.514904Z",
            "date_published": null,
            "start_time": "2024-12-13T13: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/1175629E45BE5A61E4BAEFF557207019/Pieni_pala_kakkua_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1175629E45BE5A61E4BAEFF557207019/Pieni_pala_kakkua_7_",
                "en": "http://www.malmitalo.fi/en/events/event/1175629E45BE5A61E4BAEFF557207019/Pieni_pala_kakkua_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Pieni pala kakkua on hätkähdyttävä viipale onnea ja kaunis ensitreffien tarina.</p><p>Pitkään leskenä omin päin elänyt Mahin viettää puheliasta iltaa tyttökaveriensa kanssa, ja päättää että elämässä voisi vielä kerran olla tilaa romanssille. Mahin kohtaa sympaattisen taksikuskin eläkeläisten lounaspaikassa. Faramarz saa ajaa Mahinin kotiin. Mahin kaivaa esiin pitkään piilotellun viinipullon ja leipoo herkullisen kakun. On aika jakaa yhteinen, onnellinen illallinen.</p><p>Naisia alistava mikroskooppisen tarkka sääntöjen ja kieltojen verkko tekee sympaattisista hetkistä Teheranissa harvinaista herkkua.</p><p>Suomen elokuvasäätiön maahantuontituki 2024.</p><p>Ikäraja: 7<br>Kesto: 97 min.<br>Ensi-ilta: 06.12.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>"
            },
            "short_description": {
                "fi": "Pieni pala kakkua on hätkähdyttävä viipale onnea ja kaunis ensitreffien tarina."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Pieni pala kakkua (7) – Kino Helios",
                "sv": "Pieni pala kakkua (7) – Kino Helios",
                "en": "Pieni pala kakkua (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65105/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64740",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152851,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-22T11:15:25.475296Z",
                    "last_modified_time": "2024-10-22T11:15:25.475315Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759111.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152851/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-22T11:15:25.425558Z",
            "last_modified_time": "2024-12-20T01:14:22.322134Z",
            "date_published": null,
            "start_time": "2024-12-13T12: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/8B2E122B4BF71F75492621C0162E0850/Luciakulkue_ja_-kuoro",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8B2E122B4BF71F75492621C0162E0850/Staffansby_Lucia_och_de_vackraste_julsangerna",
                "en": "http://www.malmitalo.fi/en/events/event/8B2E122B4BF71F75492621C0162E0850/Staffansby_Lucia_and_the_Most_Beautiful_Christmas_Songs"
            },
            "provider": null,
            "description": {
                "fi": "<p>Staffansbyn koulun kolmasluokkalaisten Luciakulkue tuo valoa ja iloa joulukuun pimeyteen.</p><p>Luciakulkue esiintyy Malmitalon aulassa. Kulkueen jälkeen siirrymme toiseen kerrokseen kokoushuoneeseen 2, jossa tarjoillaan kahvia ja pientä purtavaa sekä lauletaan yhdessä joululauluja Petrus församlingin kanssa.</p><p>Paikalla on myös infopiste, jossa Helsingin kaupunki ja eri järjestöt esittelevät senioreille suunnattuja palvelujaan ruotsiksi.</p><p>Maksuton, ei ennakkoilmoittautumista.</p><p><b>Kieli:</b> Ruotsi<br><b>Paikka:</b> Malmitalon aula ja kokoushuone 2<br><b>Järjestäjä:</b> Seniornätverket i Helsingfors</p>",
                "sv": "<p>Luciaföljet från Staffansby skola, årskurs 3, sprider ljus och glädje i decembermörkret med ett uppträdande i Malms kulturhus aula.</p><p>Efter Luciaföljet förflyttar vi oss upp i mötesrum 2, andra våningen, där det serveras kaffe med tilltugg och bjuds på julig allsång tillsammans med Petrus församling. På plats finns även ett infotorg där Helsingfors stad och olika organisationer presenterar sin verksamhet riktad till seniorer på svenska.</p><p>Gratis, ingen förhandsanmälning.</p><p><b>Plats:</b> Malm kulturhus, aulan och mötesrum 2<br><b>Arrangör:</b> Seniornätverket i Helsingfors</p>",
                "en": "<p>The Staffansby Primary School’s 3rd graders' Lucia procession will bring light and joy to the December darkness with a performance in the lobby of Malmi Cultural Centre.</p><p>After the procession, we’ll move upstairs to meeting room 2 on the second floor, where coffee and snacks will be served.</p><p>You’re also invited to join in a festive sing-along of Christmas songs with Petrus församling.</p><p>There will also be an information desk where the City of Helsinki and various organizations will present their services aimed at seniors in Swedish.</p><p>Free entry</p><p><b>Language:</b> Swedish<br><b>Location:</b> Lobby and meeting room 2<br><b>Organizer:</b> Seniornätverket i Helsingfors</p>"
            },
            "short_description": {
                "fi": "Staffansbyn koulun kolmasluokkalaisten Luciakulkue tuo valoa ja iloa joulukuun pimeyteen.",
                "sv": "Luciaföljet från Staffansby skola, årskurs 3, sprider ljus och glädje i decembermörkret med ett uppträdande i Malms kulturhus aula.",
                "en": "The Staffansby Primary School’s 3rd graders' Lucia procession will bring light and joy to the December darkness with a performance in the lobby of Malmi Cultural Centre."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Luciakulkue ja -kuoro",
                "sv": "Staffansby Lucia och de vackraste julsångerna",
                "en": "Staffansby Lucia and the Most Beautiful Christmas Songs"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64740/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64860",
            "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:732/?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"
                },
                {
                    "@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": 152927,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-01T10:14:53.323093Z",
                    "last_modified_time": "2024-11-01T10:14:53.323110Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757767.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152927/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-01T10:14:53.291524Z",
            "last_modified_time": "2024-12-20T01:14:21.966808Z",
            "date_published": null,
            "start_time": "2024-12-12T10:00:00Z",
            "end_time": "2024-12-12T12: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/B0272BCD3B164D8953171D0B773D120B/Vaikuta_ikaihmisten_liikuntapalveluihin_tervetuloa_liikuntaraatiin"
            },
            "provider": {
                "fi": "Helsinki Liikkuu"
            },
            "description": {
                "fi": "<p>Ikäihmisten liikuntaraati on tilaisuus, jossa on mahdollisuus osallistua Helsingin liikuntapalvelujen kehittämiseen.</p><p>Ensimmäisen liikuntaraadin teemana on ikääntyneiden ohjatut liikuntapalvelut ja omatoimiset liikuntamahdollisuudet. Käsittelemme teemaa erityisesti Malmin alueen liikuntapalveluiden näkökulmasta.</p><p>Liikuntaraatiin voivat ilmoittautua yli 64-vuotiaat helsinkiläiset. Tilaisuus järjestetään Malmitalossa osoitteessa Ala-Malmin tori 1. Malmitalossa kokoonnumme Kokoushuone 3:ssa.</p><p>Tilaisuudessa on kahvitarjoilu, ja lisäksi saat vaivasi palkaksi pienen tuotelahjan.</p><p><b>Lisätiedot ja ilmoittautumiset tilaisuuteen 5.12.2024 mennessä:</b><br>Minna Ekman, erityssuunnittelija<br>minna.ekman@hel.fi, puh. 040 334 5605</p>"
            },
            "short_description": {
                "fi": "Ikäihmisten liikuntaraati on tilaisuus, jossa on mahdollisuus osallistua Helsingin liikuntapalvelujen kehittämiseen."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vaikuta ikäihmisten liikuntapalveluihin – tervetuloa liikuntaraatiin"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64860/?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: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: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: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: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:64718",
            "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": 152825,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-16T10:15:56.718879Z",
                    "last_modified_time": "2024-10-16T10:15:56.718899Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759323.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152825/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-16T10:15:56.670320Z",
            "last_modified_time": "2024-12-20T01:14:19.342298Z",
            "date_published": null,
            "start_time": "2024-12-09T07:00:00Z",
            "end_time": "2024-12-09T12: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/663AA080A1B779BBA3FB4C854D2BCB7B/Seniorien_palvelutori_loyda_oma_tapasi_liikkua_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/663AA080A1B779BBA3FB4C854D2BCB7B/Servicetorget_for_aldre_hitta_ditt_satt_att_motionera_",
                "en": "http://www.malmitalo.fi/en/events/event/663AA080A1B779BBA3FB4C854D2BCB7B/The_Palvelutori_senior_service_event_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Maksuton palvelutori tarjoaa kohtaamisia, mielekästä tekemistä ja tietoa vapaa-ajan mahdollisuuksista alueella. Laita päivä kalenteriin ja tule mukaan!</p><p>Alueen yhdistykset ja toimijat esittelevät palveluitaan, pääset kysymään ja kokeilemaan. Tule mukaan ja tuo kaverisikin!</p><p><b>Tapahtuman aikataulu</b><br>9.30–9.45 Tuolijumppa (Tanssisali)<br>9.40–10.00 Kaija Rädyn tanssiopetus (Malmisali)<br>10.00–10.15 Tasapainojumppa (Tanssisali)<br>10.00–11.00 DJ Börjen SenioriDisco (Malmisali)<br>10.00–13.00 Jouluisia koristeita -työpaja (Työväenopisto, 2. krs, käsityöluokka)<br>10.30–10.45 Kehonhuolto (Tanssisali)<br>11.00–11.15 Tasapainojumppa (Tanssisali)<br>11.30–12.30 Jorma Uotisen puheenvuoro (Malmisali)<br>12.00–12.15 SenioriKarate (Tanssisali)<br>13.00–14.00 DJ Börjen SenioriDisco (Malmisali)<br>13.30–13.45 SenioriKarate (Tanssisali)<br>14.30–15.00 Etätuolijumppa (Työväenopisto, 2. krs, luokka 1)</p><p>HUOM! Jorma Uotisen puheenvuoroa mahtuu kuuntelemaan 200 henkilöä.</p><p>Lisäksi n. 20 eri näytteilleasettajaa Malmitalon 1. ja 2. kerroksen aulatiloissa. Valoinstallaation avajaiset Malmitalon 2. kerroksen aulassa.</p><p>Ikääntyneiden palvelutori maanantaina 9.12.2024 klo 9–14 <br>Malmitalo, Ala-Malmin tori 1<br>Vapaa pääsy!</p><p><b>Yhteistyössä</b><br>Malmitalo, Liikuntapalveluiden Alueliikunta ja Liikuntaluotsit, Syystien palvelukeskus, Seniori-info, Naapuruuspiiri, Hyvinvoiva Helsinki –hanke, Työväenopisto, Yhteisötalot, KauKo-hanke, Forum Virium, Urheiluhallit, Malmin uimahalli, Miina Sillanpää –säätiö, SenioriKamu- hanke, Jade-yhteisö, Vanhustyön keskusliitto, Koillis-Helsingin lähimmäistyö Milja ry, Mereo ry, Helsingin seudun 4H-yhdistys, Käpyrinne, Lilinkotisäätiö, Tapanilan EräKarate, Seniorikarate, Helsingin NMKY, Lääkäriasema Medipulssi, Malmin Nova, Malmin Varustamo, Malmin seurakunta, Helsingin seurakuntayhtymä ja Stadin AO.</p>",
                "sv": "<p>Det avgiftsfria evenemanget bjuder på möten, meningsfulla aktiviteter och information om fritidsmöjligheter i området.</p><p>Områdets föreningar och aktörer presenterar sina tjänster, du får fråga och prova. Kom med och ta med dina kompisar!</p><p><b>Inspirerande program:</b><br>Jorma Uotinens tal<br>SeniorDisco med DJ Börje<br>Dansstunder med dansartist Kaija Räty <br>SeniorKarate<br>Stolgymnastik<br>Arbetarinstitutets hantarbetsverkstad<br>Motionstips<br>Aktiviteter i område<br>Idéer för vardagen<br>Samtalspartner och kompisar<br>Kaffe och te</p><p>Servicetorg för äldre måndagen 9.12 kl. 9–14<br>Malms kulturhus – Nedre Malms torg 1<br>Fritt inträde!</p>",
                "en": "<p>The free Palvelutori service concept offers encounters, meaningful activities and information on leisure opportunities in the area.</p><p>Associations and operators in the area present their services, and you have the chance to ask them questions and try out the options they offer. Come and see, and bring your friend with you!</p><p><b>Inspiring programme:</b><br>Speech by Jorma Uotinen<br>Senior disco by DJ Börje<br>Moments of dance by dance artist Kaija Räty<br>Karate for seniors<br>Chair exercises<br>Handcrafting workshop by the Adult Education Centre<br>Tips for physical activities<br>Things to do in your area<br>Ideas for everyday life<br>People to talk and spend time with<br>Coffee and tea</p><p>The Palvelutori senior service event on Monday, 9 December from 9 a.m. to 2 p.m.<br>Malmitalo, Ala-Malmin tori 1<br>Free entrance!</p>"
            },
            "short_description": {
                "fi": "Maksuton palvelutori tarjoaa kohtaamisia, mielekästä tekemistä ja tietoa vapaa-ajan mahdollisuuksista alueella. Laita päivä kalenteriin ja tule mukaan!",
                "sv": "Det avgiftsfria evenemanget bjuder på möten, meningsfulla aktiviteter och information om fritidsmöjligheter i området.",
                "en": "The free Palvelutori service concept offers encounters, meaningful activities and information on leisure opportunities in the area."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Seniorien palvelutori – löydä oma tapasi liikkua!",
                "sv": "Servicetorget för äldre – hitta ditt sätt att motionera!",
                "en": "The Palvelutori senior service event"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64718/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64923",
            "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: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-the-room-next-door-3764519/"
                    },
                    "price": {
                        "fi": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152967,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-06T14:14:59.439791Z",
                    "last_modified_time": "2024-11-06T14:14:59.439810Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760464.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152967/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-06T14:14:59.414539Z",
            "last_modified_time": "2024-12-20T01:14:19.076009Z",
            "date_published": null,
            "start_time": "2024-12-07T16: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/F1AF385323A47F85E4C8EBD4BC3E983D/The_Room_Next_Door_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ingrid (Julianne Moore) ja Martha (Tilda Swinton) olivat nuoruudessaan läheisiä ystäviä työskennellessään samassa lehdessä.</p><p>Ingrid jatkoi uraansa kirjailijaksi, kun taas Marthasta tuli sotareportteri, ja heidän tiensä erkanivat elämän viedessä eri suuntiin. Vuosien jälkeen he tapaavat uudelleen äärimmäisessä, mutta oudon kauniissa tilanteessa.</p><p>Elokuvan on ohjannut Pedro Almodóvar.</p><p>Ikäraja: 12<br>Kesto: 107 min.<br>Ensi-ilta: 1.11.2024<br>Elokuva on tekstitetty suomeksi ja ruotsiksi</p>"
            },
            "short_description": {
                "fi": "Ingrid (Julianne Moore) ja Martha (Tilda Swinton) olivat nuoruudessaan läheisiä ystäviä työskennellessään samassa lehdessä."
            },
            "location_extra_info": null,
            "name": {
                "fi": "The Room Next Door (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64923/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64769",
            "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:105/?format=api"
                },
                {
                    "@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:755/?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:p4354/?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/satusopanen-tuttiorkesteri/"
                    },
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152869,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-24T11:15:00.875412Z",
                    "last_modified_time": "2024-10-24T11:15:00.875436Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759208.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152869/?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-10-24T11:15:00.851539Z",
            "last_modified_time": "2024-12-20T01:14:18.988132Z",
            "date_published": null,
            "start_time": "2024-12-07T13: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/3A577ADA3C5EBA1D2CD053C818FB8FB2/Joulun_perhepaiva_Satu_Sopanen_ja_Tuttiorkesteri_Tontun_puuhat_-konsertti_LOPPUUNMYYTY_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tonttulan puuhissa on melkoinen tahti, touhua siivittää musiikin mahti. Laulut ne raikaa ja rytmit kaikaa, täällä on oikeaa Joulun taikaa!</p><p>Tervetuloa koko perheen voimin laulamaan, leikkimään ja seuraamaan Tonttulan väen iloista menoa! Joulutunnelman lavalle loihtii iki-ihana Satu Sopanen ja vallattomat Tuttiorkesterin tontut!<br> <br>Jo yli 35 vuotta lapsia laulattanut, Emmallakin palkittu yhtye jatkaa suomalaisen lastenmusiikin huipulla. Satu Sopasen ja Tuttiorkesterin tavaramerkki on lumoavat musiikilliset tarinat sekä yhdessä laulamisen ja leikkimisen riemu – konserttielämys tempaa mukaansa niin pienet kuin isommatkin kuulijat! <br> <br>Esitys sopii kaikenikäisille.</p>"
            },
            "short_description": {
                "fi": "Tonttulan puuhissa on melkoinen tahti, touhua siivittää musiikin mahti. Laulut ne raikaa ja rytmit kaikaa, täällä on oikeaa Joulun taikaa!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Joulun perhepäivä: Satu Sopanen ja Tuttiorkesteri: Tontun puuhat -konsertti (LOPPUUNMYYTY)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64769/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64298",
            "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:105/?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: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:732/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 151901,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T19:14:20.596693Z",
                    "last_modified_time": "2024-07-25T19:14:20.596709Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751038.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151901/?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-25T19:14:20.571296Z",
            "last_modified_time": "2024-12-20T01:14:18.701119Z",
            "date_published": null,
            "start_time": "2024-12-07T11:00:00Z",
            "end_time": "2024-12-07T14: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/50604A34BA8B4C0A36799AE6BE16B1C3/Joulun_perhepaiva",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/50604A34BA8B4C0A36799AE6BE16B1C3/Julens_familjedag",
                "en": "http://www.malmitalo.fi/en/events/event/50604A34BA8B4C0A36799AE6BE16B1C3/Family_Day_at_Christmas"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ota kardemumman ja kanelin lisäksi ripaus taidetta jouluusi!</p><p>Otetaan varaslähtö joulun riemukkaisiin rientoihin Malmitalon perinteisessä joulun perhepäivässä. Tule askartelemaan, fiilistelemään konserttiin rakastettuja joululauluja ja uppoutumaan lämpimään tunnelmaan jouluteemaisissa työpajoissa.</p><p><b>Päivän ohjelma</b></p><p><b>klo 13–15 Tähtitaivas, talven kylä -nonstop-työpaja Malmitalon parvella</b><br>Tervetuloa askartelemaan jouluisia koristeita kierrätysmateriaaleista! Koristeelliset talot valmistuvat kierrätyspahvista. Talojen ylle syttyy tuikkimaan perinteisiä lankatähtiä. Vapaa pääsy.</p><p><b>klo 13-15 Joulukoristetyöpaja Malmitalon aulassa </b> <br>Nonstop-työpajassa valmistetaan paperinarusta sydämiä sekä erilaisista kankaista, nauhoista ja paperinaruja hyödyntäen kuusia Taito Etelä-Suomen osaavien ohjaajien johdolla. Vapaa pääsy.</p><p><b>klo 13-15 Joulupukki tavattavissa Malmitalon aulassa</b> <br>Tule tervehtimään joulupukkia tai vaikkapa kuiskaamaan joululahjatoiveesi hänen korvaansa! Vapaa pääsy.</p><p><b>klo 13 Grinch –elokuva (K7) Pienessä salissa </b><br>Äkäpussi Grinch aikoo varastaa joulun, mutta pienen tytön joulumieli sulattaa hänen sydämensä. Suomeksi puhuttu animaatioelokuva. Kesto 90 min, vapaa pääsy.</p><p><b>klo 15 Vonkka –elokuva (K7) Pienessä salissa</b><br>”Vonkka” perustuu Roald Dahlin ikonisen ja huippusuositun lastenkirjan Jali ja suklaatehdas hämmästyttäviin hahmoihin. Pääosassa Timothée Chalamet. Kesto 116 min, vapaa pääsy.</p><p><b>klo 15 Satu Sopanen ja Tuttiorkesteri: Tontun puuhat –konsertti</b><br>Joulutunnelman lavalle loihtii iki-ihana Satu Sopanen ja vallattomat Tuttiorkesterin tontut! Liput 8 €</p>",
                "sv": "<p>Utöver kardemumma och kanel kan du krydda din jul med en gnutta konst!</p><p>Vi tar en tjuvstart med julfirandet på julens traditionella familjedag i Malms kulturhus. Kom och pyssla, njut av en konsert med älskade julsånger och fördjupa dig i den varma stämningen i workshopparna med jultema.</p><p><b>Dagens program</b></p><p><b>kl. 13–15 Juldekorationsworkshop i lobbyn till Malms kulturhus </b> <br>I nonstop-workshoppen lagar vi hjärtan av papperssnören och granar av olika tyger, band och papperssnören under ledning av skickliga instruktörer från Taito Etelä-Suomi. Fritt inträde.</p><p><b>kl. 13–15 Julgubben är anträffbar i lobbyn till Malms kulturhus</b> <br>Kom och hälsa på julgubben eller viska dina julklappsönskemål i hans öra! Fritt inträde.</p><p><b>kl. 13–15 Nonstop-workshoppen Stjärnhimmel, vinterby på loftet i Malms kulturhus</b><br>Välkommen att pyssla juldekorationer av återvunnet material! Vi gör dekorativa hus av återvunnen kartong. Ovan om husen tänds traditionella trådstjärnor. Fritt inträde.</p><p><b>kl. 13 filmen The Grinch (F7) i Lilla salen </b><br>Den sure Grinch är ute efter att stjäla julen, men en liten flickas julkänsla får hans hjärta att smälta. Animerad film med finskt tal. Längd 90 min., fritt inträde.</p><p><b>kl. 15 filmen Wonka (F7) i Lilla salen</b><br>“Wonka” är baserad på de fantastiska karaktärerna i Roald Dahls ikoniska och enormt populära barnbok “Kalle och chokladfabriken”. Timothée Chalamet i huvudrollen. Längd 116 min., fritt inträde.</p><p><b>kl. 15 Satu Sopanen och Tuttiorkesteri: Konserten Tontun puuhat (Tomtens stök)</b><br>Den alltid lika älskvärda Satu Sopanen och Tuttiorkesteris busiga nissar skapar julstämning på scenen! Biljetter 8 €</p>",
                "en": "<p>In addition to cardamom and cinnamon, add a pinch of art into your Christmas!</p><p>Let's get a head start on the joyous holiday season at Malmitalo's traditional Family Day at Christmas. Come and do crafts, listen to the Christmas carols you love at a concert, and immerse yourself in the warm atmosphere in the Christmas-themed workshops.</p><p><b>Programme</b></p><p><b>1–3 pm Christmas decoration workshop in the Malmitalo lobby</b><br>In this Nonstop Workshop, you get to create hearts from paper string and Christmas trees from various fabrics, ribbons and paper string under the guidance of skilled instructors from Taito Southern Finland. Admission is free.</p><p><b>1–3 pm Meet Santa Claus in the Malmitalo lobby</b><br>Come greet Santa or tell him your Christmas gift wishes! Admission is free.</p><p><b>1–3 pm Starry Sky, Winter Village Nonstop Workshop on the Malmitalo gallery</b><br>Come and create Christmas decorations from recycled materials! Make decorative houses from recycled cardboard. Light up traditional yarn stars above the houses. Admission is free.</p><p><b>1 pm Movie screening: Grinch (K7) in the Small Hall</b><br>The Grinch intends to steal Christmas, but a little girl's Christmas spirit melts his heart. Animated film, Finnish dub. Duration 90 min, free entry.</p><p><b>3 pm Movie screening: Wonka (K7) in the Small Hall</b><br>“Wonka” is based on the amazing characters of Roald Dahl's iconic and hugely popular children's book, Charlie and the Chocolate Factory. Starring Timothée Chalamet. Duration 116 min, free entry.</p><p><b>3 pm Satu Sopanen and Tuttiorkesteri: Tontun puuhat concert</b><br>Satu Sopanen enchants the stage with Christmas magic with the mischievous Elves of Tuttiorkesteri! Tickets €8</p>"
            },
            "short_description": {
                "fi": "Ota kardemumman ja kanelin lisäksi ripaus taidetta jouluusi!",
                "sv": "Utöver kardemumma och kanel kan du krydda din jul med en gnutta konst!",
                "en": "In addition to cardamom and cinnamon, add a pinch of art into your Christmas!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Joulun perhepäivä – Joulupukki tavattavissa! Lisäksi työpajoja ja joululeffoja",
                "sv": "Julens familjedag – Julgubben är anträffbar! Dessutom workshoppar och julfilmer.",
                "en": "Family Day at Christmas – Come see Santa! We also have workshops and Christmas movies."
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64298/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64990",
            "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: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: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:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153018,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-14T08:14:20.766522Z",
                    "last_modified_time": "2024-11-14T08:14:20.766535Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745853.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153018/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-14T08:14:20.718283Z",
            "last_modified_time": "2024-12-20T01:14:18.429144Z",
            "date_published": null,
            "start_time": "2024-12-06T13:00:00Z",
            "end_time": "2024-12-06T14: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/435A38500F39854CFB8E5949A33975A7/Itsenaisyyspaivan_juhla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/435A38500F39854CFB8E5949A33975A7/Sjalvstandighetsdagsfest",
                "en": "http://www.malmitalo.fi/en/events/event/435A38500F39854CFB8E5949A33975A7/Independence_Day_Celebration"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!</p><p>Ohjelmassa on salitapahtumaa ja kahvitarjoilu, Maamme-laulua unohtamatta.</p><p><b>Aikataulu</b> <br>Ohjelmaa klo 15–16</p><p><b>Tervetulotoivotukset</b><br>Juhlapuhe: teatteritaiteen tohtori ja dramaturgi Eero Siren <br>Juhlakonsertti: Pekka Haahti, Anna-Kaisa Pippuri ja Taru Ritavesi <br>Runonlausunta: Heidi Herala Maamme-laulu Juhlakonsertissa kuullaan Erkki Melartinin säveltämä Mattinata sekä Uljas Pulkkiksen säveltämä Lamentoso.</p><p>Itsenäisyyspäivän juhlassa kantaesityksenä kuultava Lamentoso pohjautuu Raatteentie-oopperaan. Raatteentien taistelu käytiin Suomen ja Neuvostoliiton välillä alkuvuodesta 1940 osana Suomussalmen taistelua.</p><p>Kappaleiden esittäjät: Pekka Haahti, sello Anna-Kaisa Pippuri, oboe Taru Ritavesi, flyygeli <br> <br>Ohjelman jälkeen kahvitarjoilu klo 16 alkaen Malmitalon aulassa, jossa esiintymässä kanteletaiteilija Emma Kuntsi.<br> <br>Vapaa pääsy. Huomioithan, että paikkoja salissa on rajoitetusti. <br> <br>Yhteistyössä Malmi-seura ja Malmitalo</p>",
                "sv": "<p>Välkommen att fira Finlands självständighet på självständighetsdagens traditionella fest i Malms kulturhus!</p><p>På programmet står bland annat evenemang i salen och kaffeservering, för att inte glömma sången Vårt land.</p><p><b>Program</b> <br> Kl. 15–16 festtal, musikframträdanden, recitation och naturligtvis sången Vårt land. Efter programmet serveras en kaffe och bulla i lobbyn till Malms kulturhus.<br> <br>Fritt inträde, observera att antalet sittplatser i salen är begränsat.</p>",
                "en": "<p>Join us and celebrate independent Finland with the traditional Independence Day celebration at Malmitalo!</p><p>The programme includes events in the hall and a coffee service, and naturally includes our anthem.</p><p><b>Schedule</b> <br> The programme takes place at 3–4 pm includes a festive speech, music performances, recitation and, of course, our anthem. After the programme, there will be coffee service in the lobby of Malmitalo.<br> <br>Free entry, keep in mind that seats in the hall are limited.</p>"
            },
            "short_description": {
                "fi": "Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!",
                "sv": "Välkommen att fira Finlands självständighet på självständighetsdagens traditionella fest i Malms kulturhus!",
                "en": "Join us and celebrate independent Finland with the traditional Independence Day celebration at Malmitalo!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Itsenäisyyspäivän juhla",
                "sv": "Självständighetsdagsfest",
                "en": "Independence Day Celebration"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64990/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63825",
            "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/event/malmijazz-virta-ja-d-o-p-a-malmitalo-18622500/",
                        "sv": "https://www.lippu.fi/event/malmijazz-virta-ja-d-o-p-a-malmitalo-18622500/",
                        "en": "https://www.lippu.fi/event/malmijazz-virta-ja-d-o-p-a-malmitalo-18622500/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151900,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T19:14:20.415171Z",
                    "last_modified_time": "2024-07-25T19:14:20.415194Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753146.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151900/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T19:14:20.386620Z",
            "last_modified_time": "2024-12-20T01:14:18.057760Z",
            "date_published": null,
            "start_time": "2024-12-05T17: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/E015030CA3E1CB37D79842246B3A9A35/Virta_D_O_P_A_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E015030CA3E1CB37D79842246B3A9A35/Virta_D_O_P_A_",
                "en": "http://www.malmitalo.fi/en/events/event/E015030CA3E1CB37D79842246B3A9A35/Virta_D_O_P_A_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Jazzia, progea, elektropoppia ja musiikillisia tutkimusmatkoja hämärän rajamaille</p><p>Erik Fräkin, Antti Hevosmaan ja Heikki Selamon muodostama Virta tunnetaan elämyksellisistä keikoistaan sekä omintakeisesta äänipaletistaan, jota on vaikea ahtaa yhteen tyylilokeroon. Bändin uniikki tapa yhdistellä ambienttia elektronista musiikkia pohjoismaiseen jazzperinteeseen, post-rockiin ja psykedeliaan on vailla vertaansa.</p><p>Viimevuosien ajan Virta on käynyt läpi metamorfoosia, jonka seurauksia vuonna 2023 julkaistu Horros-albumi (Svart Records) heijastaa. Vuonna 2011 Kuopiossa perustettu, sittemmin helsinkiläistynyt trio on laajentanut äänipalettiaan uusin instrumentein ja suomenkielisin vokaalein. Bändi jatkaa musiikillista tutkimusmatkaansa yhä syvemmälle hämärän rajamaille.</p><p>Yhtyeen aiemmat julkaisut Hurmos (Svart Records, 2016) ja Tales From the Deep Waters (Tourist Information, 2012) keräsivät julkaisuvuosinaan paljon kiitosta kriitikoilta ja yleisöltä. Rumba nimesi vuoden 2019 Jazzfemmalla palkitun yhtyeen ”tulevaisuuden kulttibändiksi” ja Savon Sanomat ”sukupolvensa suunnannäyttäjäksi”.</p><p>Muun muassa Olavi Uusivirran yhtyeestä tutun kitaristin, Timo Kämäräisen, uusi yhtye D.O.P.A sekoittaa musiikissaan jazzia, progea ja elektropoppia. Timo Kämäräinen on monipuolinen musiikintekijä, joka tunnetaan etenkin moniulotteisesta kitaroinnistaan. Kämäräinen on myös kirjoittanut paljon lauluja ja säveltänyt instrumentaalimusiikkia. Kämäräinen on uransa aikana toiminut monipuolisesti freelancerina tyylisuuntien ulottuessa aina rockista modernin jazzin kautta nykymusiikkiteoksiin isojen orkesterien kanssa.</p><p>MalmiJazz tarjoilee monipuolisesti jazz-musiikin eri tyylilajeja ensiluokkaisessa konserttisaliympäristössä. Nouseva, numeroitu katsomo tarjoaa jokaiselle konserttivieraalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Malmisalin erinomaiset akustiset, äänentoistolliset ja valaistukselliset puitteet takaavat laadukkaan keikkaelämyksen.</p>",
                "sv": "<p>Jazz, proge, elektropop och musikaliska forskningsresor i skymningszonen.</p><p>Virta som består av Erik Fräki, Antti Hevosmaa och Heikki Selamo är känt för sina upplevelsebaserade spelningar och sin distinkta ljudpalett, som är svår att begränsa till en genre. Bandets unika sätt att kombinera ambient elektronisk musik med den nordiska jazztraditionen, postrock och psykedelika är oöverträffat.</p><p>Under de senaste åren har Virta genomgått en metamorfos, vars konsekvenser återspeglas i albumet Horros (Svart Records), som släpptes år 2023. Trion grundades i Kuopio 2011 och har sedermera flyttat till Helsingfors, och utökat sin ljudpalett med nya instrument och finskspråkig sång. Bandet fortsätter sin musikaliska forskningsresa allt djupare in i skymningszonen.</p><p>Bandets tidigare album Hurmos (Svart Records, 2016) och Tales From the Deep Waters (Tourist Information, 2012) fick mycket beröm av både kritiker och publik samma år som de släpptes. Rumba kallade bandet som belönades med Jazzfemman år 2019 \"framtidens kultband\" och Savon Sanomat kallade dem \"trendsättare inom sin generation\".</p><p>Timo Kämäräinen är välbekant bland annat som gitarrist i Olavi Uusivirtas band. Kämäräinens nya band D.O.P.A blandar jazz, proge och elektropop i sin musik. Timo Kämäräinen är en mångsidig musiker, som framför allt är känd för sitt mångdimensionella gitarrspel. Kämäräinen har också skrivit många låtar och komponerat instrumentalmusik. Under sin karriär har Kämäräinen arbetat mångsidigt som frilansare med en mängd olika stilar, allt från rock via modern jazz till samtida musikverk med stora orkestrar.</p><p>MalmiJazz bjuder på ett brett utbud av jazzmusikens stilarter i en förstklassig konserthusmiljö. Den upphöjningsbara, numrerade läktaren erbjuder varje konsertbesökare en bekväm sittplats och en bra utsikt över scenen. De utmärkta akustik-, ljudåtergivnings- och ljusförhållandena i Malmsalen garanterar en konsertupplevelse av hög kvalitet.</p>",
                "en": "<p>Jazz, prog, electropop, and musical explorations into the twilight zone.</p><p>Formed by Erik Fräki, Antti Hevosmaa and Heikki Selamo, Virta is known for its experimental gigs and distinctive sound palette, which is difficult to place in any single genre. The band's unique way of combining ambient electronic music with Nordic jazz tradition, post-rock and psychedelia is unparalleled.</p><p>Over the past few years, Virta has gone through a metamorphosis, the results of which are reflected in their 2023 album, Horros (Svart Records). Founded in Kuopio in 2011, the trio, who have since moved to Helsinki, has expanded its sound palette with new instruments and Finnish-language vocals. The band continues their musical exploration of the twilight zone even further.</p><p>The band's previous releases, Hurmos (Svart Records, 2016) and Tales From the Deep Waters (Tourist Information, 2012) garnered a lot of praise from critics and the public. Rumba named them the “cult band of the future” with its 2019 Jazzfemma award and Savon Sanomat the called them the “trendsetter of a generation”.</p><p>Timo Kämäräinen, known as Olavi Uusivirta’s guitarist, among others, has formed a new band, D.O.P.A, which combines jazz, prog and electropop. Timo Kämäräinen is a versatile musician, known especially for his multi-dimensional guitar playing. Kämäräinen has also written a lot of songs and composed instrumental music. Kämäräinen has worked as a freelance musician in a variety of styles, ranging from rock through modern jazz to contemporary music with large orchestras.</p><p>MalmiJazz provides a wide range of jazz music genres in a first-class concert hall environment. The ascending, numbered auditorium provides each concert guest with their own comfortable seat and a good view of the stage. The excellent acoustic, sound and lighting equipment of Malmisali guarantee a high-quality concert experience.</p>"
            },
            "short_description": {
                "fi": "Jazzia, progea, elektropoppia ja musiikillisia tutkimusmatkoja hämärän rajamaille",
                "sv": "Jazz, proge, elektropop och musikaliska forskningsresor i skymningszonen.",
                "en": "Jazz, prog, electropop, and musical explorations into the twilight zone."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Virta & D.O.P.A. – MalmiJazz",
                "sv": "Virta & D.O.P.A. – MalmiJazz",
                "en": "Virta & D.O.P.A. – MalmiJazz"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63825/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}