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=52
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 1627,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=53",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=51"
    },
    "data": [
        {
            "id": "kulke:63150",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-dream-scenario-3601622/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-dream-scenario-3601622/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-dream-scenario-3601622/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11193,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-04T13:14:00.270874Z",
                    "last_modified_time": "2024-03-04T13:14:00.270891Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745125.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11193/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-04T13:14:00.246891Z",
            "last_modified_time": "2024-04-05T17:13:56.903060Z",
            "date_published": null,
            "start_time": "2024-03-23T16: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,
            "short_description": {
                "fi": "Maailman suurimmalla elokuvafestivaalilla Torontossa syyskuussa ensiesityksensä saanut Dream Scenario on ohjaaja Kristoffer Borglin omaan käsikirjoitukseen perustuva absurdi kauhukomedia."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5F53C97BD7B4A68DDE50F2A07727E12F/Dream_scenario_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5F53C97BD7B4A68DDE50F2A07727E12F/Dream_scenario_16_",
                "en": "http://www.malmitalo.fi/en/events/event/5F53C97BD7B4A68DDE50F2A07727E12F/Dream_scenario_16_"
            },
            "description": {
                "fi": "<p>Maailman suurimmalla elokuvafestivaalilla Torontossa syyskuussa ensiesityksensä saanut Dream Scenario on ohjaaja Kristoffer Borglin omaan käsikirjoitukseen perustuva absurdi kauhukomedia.</p><p>Nicolas Cage esittää yliopistoprofessoria, joka alkaa ilmaantua satunnaisesti ihmisten uniin passiivisena oloneuvoksena. Tohvelisankari yrittää sivuuttaa selittämättömät tapahtumat olankohautuksella, mutta media päättääkin luoda hänestä ilmiön.</p><p>Yhtenä tuottajana elokuvassa on Ari Aster, joka muistetaan ohjauksista Midsommar – loputon yö ja Hereditary – pahan perintö.</p><p>Kesto 100 min<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi<br>Ikäraja 16<br>Ensi-ilta 23.2.2024</p>"
            },
            "name": {
                "fi": "Dream scenario (16) – Kino Helios",
                "sv": "Dream scenario (16) – Kino Helios",
                "en": "Dream scenario (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63150/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:62986",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/lauluyhtye-chime-rakkautta-ja-rajoja-malmitalo-18012078/",
                        "sv": "https://www.lippu.fi/event/lauluyhtye-chime-rakkautta-ja-rajoja-malmitalo-18012078/",
                        "en": "https://www.lippu.fi/event/lauluyhtye-chime-rakkautta-ja-rajoja-malmitalo-18012078/"
                    },
                    "description": null,
                    "price": {
                        "fi": "18 € / 16 €",
                        "sv": "18 € / 16 €",
                        "en": "18 € / 16 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7380,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-26T09:13:17.529386Z",
                    "last_modified_time": "2024-02-06T13:23:27.055713Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744305.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-26T09:13:17.510205Z",
            "last_modified_time": "2024-04-05T17:13:56.779602Z",
            "date_published": null,
            "start_time": "2024-03-23T16: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,
            "short_description": {
                "fi": "Riemua, räiskettä ja kenties vähän raivoakin - mutta aina, aina rakkaudella!",
                "sv": "Glädje, dunder och kanske lite ilska – men alltid, alltid med kärlek!",
                "en": "Joy, sparkle and perhaps even a little rage – but always, always with love!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7F05CE5941212FE8014232A0884EA23D/Lauluyhtye_Chime_Rakkautta_ja_rajoja",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7F05CE5941212FE8014232A0884EA23D/Sangbandet_Chime_Karlek_och_granser",
                "en": "http://www.malmitalo.fi/en/events/event/7F05CE5941212FE8014232A0884EA23D/Lauluyhtye_Chime_Love_and_Boundaries"
            },
            "description": {
                "fi": "<p>Riemua, räiskettä ja kenties vähän raivoakin - mutta aina, aina rakkaudella!</p><p>Perheitä on monenlaisia ja niihin mahtuu paljon tunteita, joskus jopa liikaakin. Välillä tarvitsemme hetken yksin, jotta voimme tulla takaisin vahvempina ja valmiina rakastamaan. Kuulostaako tutulta?</p><p>Perheen koko tunnekirjo nyt a cappellana!</p>",
                "sv": "<p>Glädje, dunder och kanske lite ilska – men alltid, alltid med kärlek!</p><p>Det finns många olika slags familjer och i den finns det rum för mycket känslor, ibland till och med lite för mycket.</p>",
                "en": "<p>Joy, sparkle and perhaps even a little rage – but always, always with love!</p><p>Families come in many forms and can hold a lot of emotions, sometimes too much.</p>"
            },
            "name": {
                "fi": "Lauluyhtye Chime – Rakkautta ja rajoja",
                "sv": "Sångbandet Chime – Kärlek och gränser",
                "en": "Lauluyhtye Chime – Love and Boundaries"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:62986/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61798",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/frigg/",
                        "sv": "https://www.lippu.fi/artist/frigg/",
                        "en": "https://www.lippu.fi/artist/frigg/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6879,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-28T11:12:53.146384Z",
                    "last_modified_time": "2024-02-06T13:23:26.593372Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733091.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6879/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-28T11:12:53.131886Z",
            "last_modified_time": "2024-04-05T17:13:56.260397Z",
            "date_published": null,
            "start_time": "2024-03-22T17: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,
            "short_description": {
                "fi": "Jo käsitteeksi muodostunut viulusoundi, vastustamattomasti puskeva kielisoitinten helinä sekä kontrabasson syke – tästä hypnoottisesta yhdistelmästä Frigg tunnetaan!",
                "sv": "Den hypnotiska kombinationen av kännspakt fiolsound, oemotståndligt klingande stränginstrument och rytmisk kontrabas är folkmusikbandet Friggs varumärke och har redan blivit ett begrepp!",
                "en": "The now instantly recognisable sound of the violin, the irresistible strumming of stringed instruments and the pulse of the double bass – this is the hypnotic combination for which the folk band Frigg is known!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/22B8651623D7C9B636EDBEAB1EDFE03A/LOPPUUNMYYTY_A_la_Malmi_Frigg_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/22B8651623D7C9B636EDBEAB1EDFE03A/UTSALD_A_la_Malmi_Frigg_",
                "en": "http://www.malmitalo.fi/en/events/event/22B8651623D7C9B636EDBEAB1EDFE03A/SOLD_OUT_A_la_Malmi_Frigg_"
            },
            "description": {
                "fi": "<p>Jo käsitteeksi muodostunut viulusoundi, vastustamattomasti puskeva kielisoitinten helinä sekä kontrabasson syke – tästä hypnoottisesta yhdistelmästä Frigg tunnetaan!</p><p>Yhtyeellä on takanaan kaksivuosikymmentä, lukuisia ylistäviä levyarvioita ja tuhatkuntakeikkaa kolmessakymmenessä maassa. Tämä Suomen yksi kansainvälisesti menestyneimmistä kansanmusiikkiyhtyeistä julkaisi ylistystä keränneenuuden levyn keväällä 2023! Tällä yhdennellätoista levyllään Perintö–Heritage Frigg palaa juurilleen kumartaen suomalaisen perinnemusiikin suuntaan. Materiaalinlähtökohtana on kaustislainen viulunsoittoperinne, jonka UNESCO liitti aineettoman kulttuuriperinnön luetteloonsa vuonna2021, mutta levyn materiaalia on koottu myös muiden maakuntien viulumestareilta keskeisiä suomalaisianuottijulkaisuja unohtamatta.</p><p>Frigg lähestyy materiaalia omalla tyylillään, ennakkoluulottomalla ja tuoreella näkemyksellä samalla kuitenkin perinnettä kunnioittaen. Frigg on valloittanut maailmaa vahvasti pohjoismaiseen pelimannimusiikkiin nojaavalla länsimaistenkansanmusiikkityylien fuusiolla, jota kuvaamaan maailmanmusiikkimedia on kehittänyt termin nordgrass. Yhtye viekin kuulijansa perisuomalaisen polskan, bluegrassin ja balkanrytmien kautta jopa taidemusiikillisiin sfääreihin–ikään kuin lavalla vierailisi samalla keikalla useita eri kokoonpanoja!<br> <br>Alina Järvelä, viulu<br>Esko Järvelä, viulu<br>Tommi Asplund, viulu<br>Tero Hyväluoma, viulu<br>Petri Prauda, mandoliini ja cittern<br>Topi Korhonen, kitara<br>Juho Kivivuori, basso</p><p>Kesto: 110 min sis. väliajan 20 min.</p>",
                "sv": "<p>Den hypnotiska kombinationen av kännspakt fiolsound, oemotståndligt klingande stränginstrument och rytmisk kontrabas är folkmusikbandet Friggs varumärke och har redan blivit ett begrepp!</p><p>Frigg räknas bland de internationellt mest kända folkmusikbanden från Finland. Gruppen tar med lyssnarna på en resa via purfinsk polska, bluegrass och balkanrytmer ända ut i konstmusikens sfärer – det är nästan som om flera olika ensembler skulle stå på scenen under en och samma spelning!</p>",
                "en": "<p>The now instantly recognisable sound of the violin, the irresistible strumming of stringed instruments and the pulse of the double bass – this is the hypnotic combination for which the folk band Frigg is known!</p><p>Frigg is one of the most internationally renowned folk music bands from Finland. This band takes its audience on a musical journey through traditional Finnish polka, bluegrass and Balkan rhythms, even into the realms of art music – it’s as if several different bands were on stage at the same show!</p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY A la Malmi: Frigg",
                "sv": "UTSÅLD A la Malmi: Frigg",
                "en": "SOLD OUT A la Malmi: Frigg"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61798/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61925",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?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: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/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-ingri-fiksdal-lava-forest-3532669/",
                        "sv": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-ingri-fiksdal-lava-forest-3532669/",
                        "en": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-ingri-fiksdal-lava-forest-3532669/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7206,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-16T15:14:41.924777Z",
                    "last_modified_time": "2024-02-06T13:23:26.230671Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739504.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7206/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-16T15:14:41.887619Z",
            "last_modified_time": "2024-04-05T17:13:55.973603Z",
            "date_published": null,
            "start_time": "2024-03-21T17: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,
            "short_description": {
                "fi": "Salaperäisiä olentoja kasvaa lattiasta. Niillä on pitkät lonkerot ja suuret päät. Ne keikkuvat ja ryömivät, pyörivät ja kaatuvat. Ovatko ne toiselta planeetalta?",
                "sv": "Mystiska varelser växer upp från golvet. De har långa tentakler och stora huvuden. De gungar och kryper, snurrar och faller omkull. Är de från en annan planet?",
                "en": "Mysterious creatures grow from the floor. They have long tentacles and large heads. They sway and crawl, spin and fall. Are they from another planet?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EE45D9CDCF6B3729A46D735B96E830E4/Ingri_Fiksdal_Lava_Forest",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EE45D9CDCF6B3729A46D735B96E830E4/Ingri_Fiksdal_Lava_Forest",
                "en": "http://www.malmitalo.fi/en/events/event/EE45D9CDCF6B3729A46D735B96E830E4/Ingri_Fiksdal_Lava_Forest"
            },
            "description": {
                "fi": "<p>Salaperäisiä olentoja kasvaa lattiasta. Niillä on pitkät lonkerot ja suuret päät. Ne keikkuvat ja ryömivät, pyörivät ja kaatuvat. Ovatko ne toiselta planeetalta?</p><p>The Lava Forest (Laavametsä) on tanssiesitys, jossa kolme esiintyjää liikkuu suuressa kasassa värikkäitä tekstiilejä. Tanssijat muovautuvat erilaisiksi olennoiksi ja liikuttavat sekä omaa kehoaan että kankaista muotoutuvaa lavastusta tavoilla, jotka luovat assosiaatioita erilaisista maisemista ja ympäristöistä.</p><p>Esitys mahdollistaa moniaistillisen kokemuksen, joka kannustaa lapsia tutkimaan liikettä ja tanssia. Esityksen lähtökohtana on ollut ilmastokriisi ja sen vaikutus ympäristöön, jossa elämme.</p><p>Sanaton<br>Ikäsuositus 6+<br>Kesto: noin 40 min.</p><p>Konsepti ja koreografia: Ingri Fiksdal<br>Tanssi ja koreografia: Hawa Janlo, Mariama Fatou Kalley Slåttøy and Ole Marius Støle<br>Lavatus ja puvut: Fredrik Floen<br>Musiikki: Camilla Vatne Barratt-Due and Ådne Meisfjord<br>Valosuunnittelu ja tekniikka: Christian Paulsen<br>Outside Eye: Kjell Moberg<br>Valokuvat: Simen Thornquist<br>Tuotanto ja levitys: Nicole Schuchardt<br>Tuotanto ja hallinto: Eva Grainger ja Ida Frømyr Borgen<br>Tuottaja: Fiksdal Dans Stiftelse<br>Yhteistuottaja: Kloden Teater<br>Tukija: Arts Council Norway and SPENN</p>",
                "sv": "<p>Mystiska varelser växer upp från golvet. De har långa tentakler och stora huvuden. De gungar och kryper, snurrar och faller omkull. Är de från en annan planet?</p><p>The Lava Forest (Lavaskogen) är en dansföreställning där tre artister rör sig i en stor hög av färgglada textilier.</p>",
                "en": "<p>Mysterious creatures grow from the floor. They have long tentacles and large heads. They sway and crawl, spin and fall. Are they from another planet?</p><p>Lava Forest is a dance performance with three performers moving around in a large pile of colourful textiles.</p>"
            },
            "name": {
                "fi": "Ingri Fiksdal: Lava Forest – Bravo!-festivaali",
                "sv": "Ingri Fiksdal: Lava Forest – Bravo! Festivalen",
                "en": "Ingri Fiksdal: Lava Forest – Bravo! Festival"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61925/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61797",
            "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/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6878,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-28T11:12:53.041296Z",
                    "last_modified_time": "2024-02-06T13:23:25.956857Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739616.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6878/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-28T11:12:53.023593Z",
            "last_modified_time": "2024-04-05T17:13:55.788147Z",
            "date_published": null,
            "start_time": "2024-03-21T16: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,
            "short_description": {
                "fi": "Stand By Me on epätavallinen ja älykäs elokuva ystävyydestä ja niistä uskomattomista seikkailuista, jotka kuuluvat erottamattomana osana kasvamiseen.",
                "sv": "Stand By Me är en ovanlig och intelligent film om vänskap och de otroliga äventyr som är en oskiljaktig del av att växa upp.",
                "en": "Stand By Me is an unusual and intelligent film about friendship and the incredible adventures that are an integral part of growing up."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3306B9D75ADD56B45C8007072B746752/Kuukauden_klassikkoelokuva_Stand_by_me_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3306B9D75ADD56B45C8007072B746752/Manadens_klassiska_film_Stand_by_me_12_",
                "en": "http://www.malmitalo.fi/en/events/event/3306B9D75ADD56B45C8007072B746752/Classic_Film_of_the_Month_Stand_by_Me_12_"
            },
            "description": {
                "fi": "<p>Stand By Me on epätavallinen ja älykäs elokuva ystävyydestä ja niistä uskomattomista seikkailuista, jotka kuuluvat erottamattomana osana kasvamiseen.</p><p>Jännittävä ja herkkä tarina perustuu Stephen Kingin romaaniin The Body.</p><p>Kesto 89 min<br>Ikäraja 12</p><p><b>Malmin oma elokuvateatteri uudistui!</b><br>Elokuvasaliin on hankittu nyt mukavat tuolit, jotka kannattaa tulla testaamaan! Näe elokuvat edullisesti ja mukavasti Malmitalossa!</p>",
                "sv": "<p>Stand By Me är en ovanlig och intelligent film om vänskap och de otroliga äventyr som är en oskiljaktig del av att växa upp.</p>",
                "en": "<p>Stand By Me is an unusual and intelligent film about friendship and the incredible adventures that are an integral part of growing up.</p>"
            },
            "name": {
                "fi": "Kuukauden klassikkoelokuva: Stand by me (12)",
                "sv": "Månadens klassiska film: Stand by me (12)",
                "en": "Classic Film of the Month: Stand by Me (12)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61797/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61803",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/",
                        "sv": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/",
                        "en": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22 € / 14,50 €",
                        "sv": "22 € / 14,50 €",
                        "en": "22 € / 14,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7239,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-18T13:13:58.462588Z",
                    "last_modified_time": "2024-02-06T13:23:25.590468Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737829.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7239/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-18T13:13:58.427677Z",
            "last_modified_time": "2024-04-05T17:13:55.403838Z",
            "date_published": null,
            "start_time": "2024-03-20T17: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,
            "short_description": {
                "fi": "Kultainen 30-luku oli swing-musiikin ja musikaalisävellysten juhlaa. Aikakaudelta tunnetaan svengaavat big band-legendat kuten Count Basie, Benny Goodman ja Duke Ellington.",
                "sv": "Det gyllene 30-talet var swing-musikens och musikalkompositionernas fest. Big band-legender från denna tid inkluderar Count Basie, Benny Goodman och Duke Ellington.",
                "en": "The Golden ‘30s were a decade of swing music and musical compositions. The era is known for swinging big band legends like Count Basie, Benny Goodman and Duke Ellington."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/47885A1BA89CEB7FADD65D93E3941B8B/The_Great_Helsinki_Swing_Big_Band_Swingin_30s",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/47885A1BA89CEB7FADD65D93E3941B8B/The_Great_Helsinki_Swing_Big_Band_Swingin_30s",
                "en": "http://www.malmitalo.fi/en/events/event/47885A1BA89CEB7FADD65D93E3941B8B/The_Great_Helsinki_Swing_Big_Band_Swingin_30s"
            },
            "description": {
                "fi": "<p>Kultainen 30-luku oli swing-musiikin ja musikaalisävellysten juhlaa. Aikakaudelta tunnetaan svengaavat big band-legendat kuten Count Basie, Benny Goodman ja Duke Ellington.</p><p>Useat legendaariset jazz-standardit saivat syntynsä Brodway-musikaalien myötä ja yleisö sai tutustua kappaleisiin kuten Over The Rainbow, All Of Me sekä Caravan.</p><p>Tässä konsertissa orkesteri tarjoaa valikoidun kattauksen 30-luvun helmistä solistinaan <b>Sami Pitkämö</b>, joka tunnetaan mm Tanssii Tähtien Kanssa- ohjelmasta.</p><p>Kapellimestarina palkittu nuori <b>Aarni Häkkinen</b>.</p>",
                "sv": "<p>Det gyllene 30-talet var swing-musikens och musikalkompositionernas fest. Big band-legender från denna tid inkluderar Count Basie, Benny Goodman och Duke Ellington.</p><p>Broadway-musikalerna födde fram flera legendariska jazz-standarder, och publiken fick lära känna låtar såsom Over The Rainbow, All Of Me och Caravan.</p><p>På denna konsert bjuder orkestern på en rad utvalda 30-talspärlor med Sami Pitkämö som solist. Pitkämö är bekant från bland annat TV-programmet Tanssii Tähtien Kanssa.</p><p>Som kapellmästare fungerar unga och prisbelönta Aarni Häkkinen.</p>",
                "en": "<p>The Golden ‘30s were a decade of swing music and musical compositions. The era is known for swinging big band legends like Count Basie, Benny Goodman and Duke Ellington.</p><p>Several legendary jazz hits were born from Broadway musicals, and audiences were introduced to songs such as Over The Rainbow, All Of Me and Caravan.</p><p>In this concert, the orchestra will perform a selection of ‘30s gems with Sami Pitkämö on vocals, who is known for his work on Finland’s Dancing with the Stars television show.</p><p>The conductor will be the award-winning young musician Aarni Häkkinen.</p>"
            },
            "name": {
                "fi": "The Great Helsinki Swing Big Band: Swingin' 30s",
                "sv": "The Great Helsinki Swing Big Band: Swingin' 30s",
                "en": "The Great Helsinki Swing Big Band: Swingin' 30s"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61803/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63149",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-dream-scenario-3601622/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-dream-scenario-3601622/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-dream-scenario-3601622/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11192,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-04T13:13:58.755089Z",
                    "last_modified_time": "2024-03-04T13:13:58.755108Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745119.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11192/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-04T13:13:58.730837Z",
            "last_modified_time": "2024-04-05T17:13:55.275484Z",
            "date_published": null,
            "start_time": "2024-03-20T16: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,
            "short_description": {
                "fi": "Maailman suurimmalla elokuvafestivaalilla Torontossa syyskuussa ensiesityksensä saanut Dream Scenario on ohjaaja Kristoffer Borglin omaan käsikirjoitukseen perustuva absurdi kauhukomedia."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/70D3EB86447133A702D302E8CB85CEC0/Dream_scenario_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/70D3EB86447133A702D302E8CB85CEC0/Dream_scenario_16_",
                "en": "http://www.malmitalo.fi/en/events/event/70D3EB86447133A702D302E8CB85CEC0/Dream_scenario_16_"
            },
            "description": {
                "fi": "<p>Maailman suurimmalla elokuvafestivaalilla Torontossa syyskuussa ensiesityksensä saanut Dream Scenario on ohjaaja Kristoffer Borglin omaan käsikirjoitukseen perustuva absurdi kauhukomedia.</p><p>Nicolas Cage esittää yliopistoprofessoria, joka alkaa ilmaantua satunnaisesti ihmisten uniin passiivisena oloneuvoksena. Tohvelisankari yrittää sivuuttaa selittämättömät tapahtumat olankohautuksella, mutta media päättääkin luoda hänestä ilmiön.</p><p>Yhtenä tuottajana elokuvassa on Ari Aster, joka muistetaan ohjauksista Midsommar – loputon yö ja Hereditary – pahan perintö.</p><p>Kesto 100 min<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi<br>Ikäraja 16<br>Ensi-ilta 23.2.2024</p>"
            },
            "name": {
                "fi": "Dream scenario (16) – Kino Helios",
                "sv": "Dream scenario (16) – Kino Helios",
                "en": "Dream scenario (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63149/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63146",
            "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:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-madeleinen-pariisi-3604192/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-madeleinen-pariisi-3604192/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-madeleinen-pariisi-3604192/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11191,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-04T13:13:58.556286Z",
                    "last_modified_time": "2024-03-04T13:13:58.556304Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745117.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11191/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-04T13:13:58.528988Z",
            "last_modified_time": "2024-04-05T17:13:55.211718Z",
            "date_published": null,
            "start_time": "2024-03-20T13: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,
            "short_description": {
                "fi": "Madeleinen Pariisi on matka läpi muistojen, ja Pariisin käänteentekevien paikkojen."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9102EBC2F7DF1793A1F8A3A02125DC2E/Madeleinen_Pariisi",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9102EBC2F7DF1793A1F8A3A02125DC2E/Madeleinen_Pariisi",
                "en": "http://www.malmitalo.fi/en/events/event/9102EBC2F7DF1793A1F8A3A02125DC2E/Madeleinen_Pariisi"
            },
            "description": {
                "fi": "<p>Madeleinen Pariisi on matka läpi muistojen, ja Pariisin käänteentekevien paikkojen.</p><p>Huolien riivaama taksikuski Charles (Dany Boon) ottaa rahakkaan tuntuisen ajokeikan Pariisin laidalta toiselle. Pian käy ilmi, että 92-vuotias Madeleine on menossa vanhainkotiin, mutta haluaa ensin ajella muistorikkaiden paikkojen kautta vailla kiirettä.</p><p>Ensirakkaudet, tulinen ero, radikaalit kamppailut naisten oikeuksista ja historian myllerrykset vyöryvät esiin Madeleinen tarinan myötä. Nimiroolissa loistaa ikinuori näyttelijätär Line Renaud, joka tunnetaan mm. Relaxes-vous (Ottakaa rennosti) duetosta Dean Martinin kanssa. ”Hymy nuorentaa” kuvastaa Madeleinen elämänasennetta. Automatkan aikana pari ystävystyy tavalla, joka muuttaa kummankin elämän.</p><p>Kesto 91 min<br>Ensi-ilta 15.3.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p><p><b>Malmin oma elokuvateatteri Kino Helios uudistui!</b><br>Malmitalossa sijaitseva Kino Helios tarjoaa ensi-iltaleffoja edullisesti aikuisille ja lapsiperheille. 92-paikkainen elokuvateatteri tuo Malmille uusimpien elokuvien lisäksi leffafestareiden suosikkeja sekä eriteemaisia elokuvasarjoja.</p><p>Elokuvasaliin on hankittu nyt mukavat tuolit, jotka kannattaa tulla testaamaan! Näe ensi-iltaelokuvat edullisesti ja mukavasti Kino Helioksessa!</p>"
            },
            "name": {
                "fi": "Madeleinen Pariisi – Kino Helios",
                "sv": "Madeleinen Pariisi – Kino Helios",
                "en": "Madeleinen Pariisi – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63146/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63144",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-dyyni-3601646/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-dyyni-3601646/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-dyyni-3601646/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 11190,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-04T13:13:57.127795Z",
                    "last_modified_time": "2024-03-04T13:13:57.127814Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745114.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11190/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-04T13:13:57.081990Z",
            "last_modified_time": "2024-04-05T17:13:53.783351Z",
            "date_published": null,
            "start_time": "2024-03-16T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Dyyni: Osa kaksi seuraa Paul Atreidesin myyttistä matkaa hänen liittoutuessaan Chanin ja fremenien kanssa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0DFBDB07C56487B74EDD1B20D14FAB28/Dyyni_II_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0DFBDB07C56487B74EDD1B20D14FAB28/Dyyni_II_12_",
                "en": "http://www.malmitalo.fi/en/events/event/0DFBDB07C56487B74EDD1B20D14FAB28/_Dyyni_II_12_"
            },
            "description": {
                "fi": "<p>Dyyni: Osa kaksi seuraa Paul Atreidesin myyttistä matkaa hänen liittoutuessaan Chanin ja fremenien kanssa.</p><p>Tästä alkaa kostoretki salaliittolaisia vastaan, jotka tuhosivat hänen perheensä.</p><p>Kohdatessaan valinnan elämänsä rakkauden ja tunnetun universumin kohtalon välillä hän ponnistelee ehkäistäkseen hirvittävän tulevaisuuden, jonka vain hän voi nähdä ennalta.</p><p>Saaga jatkuu palkitun elokuvantekijä Denis Villeneuven aloittaessa seuraavan luvun Frank Herbertin maineikkaasta romaanista Dyyni, tähtiluokan kansainvälisen näyttelijäkaartin kanssa. Warner Bros. Picturesin ja Legendary Picturesin Dyyni: Osa kaksi on kovasti odotettu jatko-osa vuoden 2021 kuusi Oscaria voittaneelle Dyynille.</p><p>Ikäraja: 12</p><p>Pituus 166 min</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Ensi-ilta 28.2.2024</p><p><b>Malmin oma elokuvateatteri Kino Helios uudistui!</b></p><p>Malmitalossa sijaitseva Kino Helios tarjoaa ensi-iltaleffoja edullisesti aikuisille ja lapsiperheille. 92-paikkainen elokuvateatteri tuo Malmille uusimpien elokuvien lisäksi leffafestareiden suosikkeja sekä eriteemaisia elokuvasarjoja.</p><p>Elokuvasaliin on hankittu nyt mukavat tuolit, jotka kannattaa tulla testaamaan! Näe ensi-iltaelokuvat edullisesti ja mukavasti Kino Helioksessa!</p>"
            },
            "name": {
                "fi": "Dyyni II (12) – Kino Helios",
                "sv": "Dyyni II (12) – Kino Helios",
                "en": "Dyyni II (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63144/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61796",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/micke-bjoerkloef-blue-strip-30v-colors-of-jealousy-tour-malmitalo-18029034/",
                        "sv": "https://www.lippu.fi/event/micke-bjoerkloef-blue-strip-30v-colors-of-jealousy-tour-malmitalo-18029034/",
                        "en": "https://www.lippu.fi/event/micke-bjoerkloef-blue-strip-30v-colors-of-jealousy-tour-malmitalo-18029034/"
                    },
                    "description": null,
                    "price": {
                        "fi": "25 € / 20 €",
                        "sv": "25 € / 20 €",
                        "en": "25 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7387,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-26T10:14:28.991051Z",
                    "last_modified_time": "2024-02-06T13:23:19.636012Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742046.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7387/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-26T10:14:28.960094Z",
            "last_modified_time": "2024-04-05T17:13:51.456907Z",
            "date_published": null,
            "start_time": "2024-03-08T17: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,
            "short_description": {
                "fi": "Palkittu Micke Björklöf & Blue Strip on yksi kansainvälisesti menestyneimmistä kotimaisista blues/bluesrock yhtyeistä.",
                "sv": "Prisbelönta Micke Björklöf & Blue Strip räknas bland de internationellt mest framgångsrika inhemska blues/bluesrock-bänden.",
                "en": "The award-winning Micke Björklöf & Blue Strip is one of the most internationally successful Finnish blues/blues rock bands."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/45A18DFDD316370C63AFB30E155DD3CE/Micke_Bjorklof_Blue_Strip_Colors_of_Jealousy",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/45A18DFDD316370C63AFB30E155DD3CE/Micke_Bjorklof_Blue_Strip_Colors_of_Jealousy",
                "en": "http://www.malmitalo.fi/en/events/event/45A18DFDD316370C63AFB30E155DD3CE/Micke_Bjorklof_Blue_Strip_Colors_of_Jealousy"
            },
            "description": {
                "fi": "<p>Palkittu Micke Björklöf & Blue Strip on yksi kansainvälisesti menestyneimmistä kotimaisista blues/bluesrock yhtyeistä.</p><p>Björklöf on kokoonpanoineen esiintynyt lähes 20 maassa. Tinkimätön oman polkunsa kulkija on vuosien mittaan raivannut tietää kohti alan kansainvälistä kärkeä.</p><p>Kesäkuussa julkaistiin bändin uusi pitkäsoitto ”Colors Of Jealousy” joka on järjestyksessä kokoonpanon seitsemäs studioalbumi ja samalla 30-vuotisjuhlajulkaisu. Talven ja kevään aikana yhtye toteuttaa sarjan juhlakonsertteja ympäri Suomea. Luvassa on mielenkiintoinen kattaus bändin uran tuotannosta, jossa keskiössä on uuden albumin materiaali.</p><p><i>“Hyvillä biiseillä, vahvalla solistilla ja maailmanluokan kitaristilla siunattu bändi pyrkii systemaattisesti ulos kliseistä. Lisäksi heitetään sekaan vielä artistin oma, persoonallinen mauste. Juuri näin Micke Björklöf sinisen saran kyntäjineen toimii – he vievät suomalaista bluesrockia eteenpäin olemalla yksi kiinnostavimmista ja kansainvälisimmistä bändeistämme”</i> – Esa Kuloniemi, Bluesministeri</p><p>Micke Björklöf: laulu, huuliharppu, kitara<br>Lefty Leppänen: sähkö- ja resonaattori kitara, taustalaulu<br>Teemu Vuorela: rummut<br>Seppo Nuolikoski: basso, taustalaulu<br>Timo Roiko-Jokela: perkussiot, malletkat</p>",
                "sv": "<p>Prisbelönta Micke Björklöf & Blue Strip räknas bland de internationellt mest framgångsrika inhemska blues/bluesrock-bänden.</p><p>Björklöf och hans ensemble har framträtt i nästan 20 länder. Bandet har orubbligt gått sin egen väg, och under årens lopp avancerat mot den internationella toppen.</p>",
                "en": "<p>The award-winning Micke Björklöf & Blue Strip is one of the most internationally successful Finnish blues/blues rock bands.</p><p>Björklöf and his band have performed in nearly 20 countries. Over the years, the uncompromising maverick has forged a path towards international prominence in the industry.</p>"
            },
            "name": {
                "fi": "Micke Björklöf & Blue Strip: Colors of Jealousy – 30-vuotisjuhlakiertue",
                "sv": "Micke Björklöf & Blue Strip: Colors of Jealousy – 30-årsjubileumsturné",
                "en": "Micke Björklöf & Blue Strip: Colors of Jealousy – 30th anniversary tour"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61796/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61795",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmijazz/",
                        "sv": "https://www.lippu.fi/artist/malmijazz/",
                        "en": "https://www.lippu.fi/artist/malmijazz/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6877,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-28T11:12:51.421941Z",
                    "last_modified_time": "2024-02-06T13:23:18.886870Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733088.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6877/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-28T11:12:51.399832Z",
            "last_modified_time": "2024-04-05T17:13:51.002971Z",
            "date_published": null,
            "start_time": "2024-03-07T17: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,
            "short_description": {
                "fi": "Vuonna 2016 perustettu Tuomas Paukku Scription edustaa persoonallista ja vahvaa näkemystä suomalaisessa nykyjazzissa.",
                "sv": "Tuomas Paukku Scription grundades 2016 och står för en personlig och stark inriktning inom den moderna finländska jazzen.",
                "en": "Founded in 2016, Tuomas Paukku Scription represents a personal and strong vision of contemporary Finnish jazz."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/700A8F7B9B3E3DBC1ED923FF99D5AAAC/Tuomas_Paukku_Scription",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/700A8F7B9B3E3DBC1ED923FF99D5AAAC/Tuomas_Paukku_Scription",
                "en": "http://www.malmitalo.fi/en/events/event/700A8F7B9B3E3DBC1ED923FF99D5AAAC/Tuomas_Paukku_Scription"
            },
            "description": {
                "fi": "<p>Vuonna 2016 perustettu Tuomas Paukku Scription edustaa persoonallista ja vahvaa näkemystä suomalaisessa nykyjazzissa.</p><p>Toisen levynsä vuonna 2023 julkaissut kokoonpano tulkitsee kitaristi Tuomas Paukun säveltämää omaleimaista ja tiivistunnelmaista musiikkia vaikuttavalla antaumuksella. Scriptionin tyyli perustuu moderniin jazzimpressionismiin ja post-bopiin, mutta löytää musiikkiinsa jatkuvasti uusia vivahteita ja näköaloja myös jazzilmaisun ulkoreunoilta.</p><p>Paukun avarakatseinen mielenkiinto useita musiikin lajeja kohtaan erottuu sävykkäästi ja räiskyvästi. Scriptionin musiikin jylhät skandinaaviset atmosfäärit ja jännittävästi etenevät tunnelmat ovat sykähdyttäneet kuulijoita yli genrerajojen.<br> <br>Tuomas Paukku – kitara<br>Juho Valjakka – piano<br>Juho Kivivuori – basso<br>Tomi Saikkonen – rummut</p><p>Kesto: 120min, sis. väliaika 20min</p>",
                "sv": "<p>Tuomas Paukku Scription grundades 2016 och står för en personlig och stark inriktning inom den moderna finländska jazzen.</p><p>Ensemblen släppte sin andra platta år 2023 och tolkar gitarristen Tuomas Paukkus unika och stämningsfulla musik med effektfull hängivenhet. Scriptions stil grundar sig i modern jazzimpressionism och post-bop, men musiken fördjupas kontinuerligt genom nya klanger och perspektiv från jazzuttryckets gränsland.</p>",
                "en": "<p>Founded in 2016, Tuomas Paukku Scription represents a personal and strong vision of contemporary Finnish jazz.</p><p>The band, who released their second album in 2023, interpret the original and atmospheric music composed by guitarist Tuomas Paukku with impressive enthusiasm. Scription’s style is based on modern jazz impressionism and post-bop but constantly finds new nuances and perspectives for its music from the fringes of jazz expression.</p>"
            },
            "name": {
                "fi": "Tuomas Paukku Scription – MalmiJazz",
                "sv": "Tuomas Paukku Scription – MalmiJazz",
                "en": "Tuomas Paukku Scription – MalmiJazz"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61795/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61801",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/roots-musiikin-evoluutio/",
                        "sv": "https://www.lippu.fi/artist/roots-musiikin-evoluutio/",
                        "en": "https://www.lippu.fi/artist/roots-musiikin-evoluutio/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6881,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-28T12:14:03.148434Z",
                    "last_modified_time": "2024-02-06T13:23:14.916105Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742036.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6881/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-28T12:14:03.124544Z",
            "last_modified_time": "2024-04-05T17:13:48.610798Z",
            "date_published": null,
            "start_time": "2024-02-28T17: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,
            "short_description": {
                "fi": "Malmitalon Roots-musiikin evoluutio -keikkasarja käsittelee juurevan musiikin kehitystä konsertti kerrallaan keväällä 2024. Lavalla Suomen terävin juurimusiikin kärki!",
                "sv": "Spelningsserien Rootsmusikens evolution på Malms kulturhus handlar om rootsmusikens utveckling, en konsert i taget. Finlands toppförmågor inom rootsmusik står på scenen!",
                "en": "Malmitalo’s ‘Evolution of Roots Music’ concert series explores the evolution of this genre one concert at a time. Finland’s finest roots music talent takes the stage!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1C82263F8F580F921A3C9F7FDA9FE751/Jussi_Syren_The_Groundbreakers",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1C82263F8F580F921A3C9F7FDA9FE751/Jussi_Syren_The_Groundbreakers",
                "en": "http://www.malmitalo.fi/en/events/event/1C82263F8F580F921A3C9F7FDA9FE751/Roots-musiikin_evoluutio_Jussi_Syren_The_Groundbreakers"
            },
            "description": {
                "fi": "<p>Malmitalon Roots-musiikin evoluutio -keikkasarja käsittelee juurevan musiikin kehitystä konsertti kerrallaan keväällä 2024. Lavalla Suomen terävin juurimusiikin kärki!</p><p><b>Jussi Syren And The Groundbreakers</b> on tehnyt liki kolmenkymmenen vuoden uran bluegrassin parissa kiertäen yhdeksässä USA:n osavaltiossa ja kahdeksassa Euroopan maassa. Kesällä 2023 ilmestyi bändin kolmastoista albumi Bluegrass Voice, jolla viulistivieraana kuullaan Grammy-voittaja Michael Clevelandia. Sinkkulohkaisu ”Across the Rolling Tide” on saanut radiosoittoa jo kymmenillä radioasemilla Yhdysvalloissa. Luvassa totaalinen akustinen elämysmatka Amerikan sydänmaille.</p><p>Kesto: 110 min sis. väliajan 20 min.</p>",
                "sv": "<p>Spelningsserien Rootsmusikens evolution på Malms kulturhus handlar om rootsmusikens utveckling, en konsert i taget. Finlands toppförmågor inom rootsmusik står på scenen!</p><p>Under Jussi Syren and the Groundbreakers nästan trettioåriga bluegrasskarriär har bandet turnerat i nio amerikanska delstater och åtta europeiska länder. Sommaren 2023 släpptes bandets trettonde album Bluegrass Voice med Grammy-vinnaren Michael Cleveland som gästviolinist. Singeln ”Across the Rolling Tide” har redan spelats på tiotals radiostationer i USA. Vi utlovar en komplett akustisk upplevelseresa till hjärtat av Amerika.</p><p>Längd: 110 min. inklusive paus 20 min.</p>",
                "en": "<p>Malmitalo’s ‘Evolution of Roots Music’ concert series explores the evolution of this genre one concert at a time. Finland’s finest roots music talent takes the stage!</p><p>Jussi Syren and the Groundbreakers have forged a nearly thirty-year career in bluegrass, touring nine US states and eight European countries. In the summer of 2023, the band released their thirteenth album, ‘Bluegrass Voice’, featuring Grammy winner Michael Cleveland on violin. Their single, ‘Across the Rolling Tide’, has already received radio play on dozens of radio stations in the US. This concert promises to be a complete acoustic journey to the heartland of America.</p><p>Duration: 110 min., including 20 min. intermission</p>"
            },
            "name": {
                "fi": "Jussi Syren & The Groundbreakers – Roots-musiikin evoluutio vol. 2",
                "sv": "Jussi Syren & The Groundbreakers – Rootsmusikens evolution vol. 2",
                "en": "Roots-musiikin evoluutio: Jussi Syren & The Groundbreakers – Evolution of roots music vol. 2"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61801/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61607",
            "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:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6482,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:09.263599Z",
                    "last_modified_time": "2024-02-06T13:23:12.249365Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739615.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6482/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-07T14:14:09.248265Z",
            "last_modified_time": "2024-04-05T17:13:47.248097Z",
            "date_published": null,
            "start_time": "2024-02-22T16: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,
            "short_description": {
                "fi": "Ren MacCormack muuttaa Chicagosta pikkukaupunkiin, jossa tanssiminen on lailla kielletty.",
                "sv": "Ren MacCormack flyttar från Chicago till en liten stad där det är förbjudet att dansa.",
                "en": "Ren MacCormack moves from Chicago to a small town where dancing is prohibited by law"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/68736ADD75EC9A7766104815E82BF797/Kuukauden_klassikkoelokuva_Footloose_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/68736ADD75EC9A7766104815E82BF797/Manadens_klassiska_film_Footloose_12_",
                "en": "http://www.malmitalo.fi/en/events/event/68736ADD75EC9A7766104815E82BF797/Classic_movie_of_the_month_Footloose_12_"
            },
            "description": {
                "fi": "<p>Ren MacCormack muuttaa Chicagosta pikkukaupunkiin, jossa tanssiminen on lailla kielletty.</p><p>Kaupunkia pitää Herran nuhteessa pastori, jonka mielestä tanssiminen ja muu paheksuttava käytös johti hänen poikansa kuolemaan. Pastorin tytär kapinoi isänsä kieltoja vastaan ja ihastuu Reniin, joka päättää saada lain kumottua.</p><p>Kesto: 107<br>Ikäraja: 12</p>",
                "sv": "<p>Ren MacCormack flyttar från Chicago till en liten stad där det är förbjudet att dansa.</p><p>Staden hålls i Herrans tukt av en pastor som anser att dans och annat förkastligt uppförande ledde till hans sons död.</p>",
                "en": "<p>Ren MacCormack moves from Chicago to a small town where dancing is prohibited by law</p><p>A pastor, who believes that dancing and other reprehensible behaviour led to the death of his son, makes sure the city follows God’s law.</p>"
            },
            "name": {
                "fi": "Kuukauden klassikkoelokuva: Footloose (12)",
                "sv": "Månadens klassiska film: Footloose (12)",
                "en": "Classic movie of the month: Footloose (12)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61607/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61606",
            "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: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:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6481,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:09.154985Z",
                    "last_modified_time": "2024-02-06T13:23:12.067691Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739503.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6481/?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": "2023-12-07T14:14:09.124243Z",
            "last_modified_time": "2024-04-05T17:13:47.154787Z",
            "date_published": null,
            "start_time": "2024-02-22T11: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,
            "short_description": {
                "fi": "Haluatko tietää, mitä todella tapahtui, kun prinsessa suuteli sammakkoa sadussa?",
                "sv": "Vill du veta vad som verkligen hände när prinsessan kysste en groda i en saga?",
                "en": "Do you want to know what really happened when the princess kissed the frog in the fairy tale?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9DB53824D937034B173CE555E024C09C/Talvilomaleffa_Prinsessa_ja_sammakko_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9DB53824D937034B173CE555E024C09C/Vinterlovsfilm_Prinsessan_och_grodan_7_",
                "en": "http://www.malmitalo.fi/en/events/event/9DB53824D937034B173CE555E024C09C/Winter_holiday_movie_The_Princess_and_the_Frog_7_"
            },
            "description": {
                "fi": "<p>Haluatko tietää, mitä todella tapahtui, kun prinsessa suuteli sammakkoa sadussa?</p><p>Vain 197-vuotias voodoo-noita Mama Odie voi perua loitsun...</p><p>Kesto 93 min<br>Ikäraja 7</p>",
                "sv": "<p>Vill du veta vad som verkligen hände när prinsessan kysste en groda i en saga?</p><p>Bara den 197-åriga voodoohäxan Mama Odie kan återkalla trollformeln...</p>",
                "en": "<p>Do you want to know what really happened when the princess kissed the frog in the fairy tale?</p><p>Only 197-year-old voodoo witch Mama Odie can undo the spell...</p>"
            },
            "name": {
                "fi": "Talvilomaleffa: Prinsessa ja sammakko (7)",
                "sv": "Vinterlovsfilm: Prinsessan och grodan (7)",
                "en": "Winter holiday movie: The Princess and the Frog (7)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61606/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61766",
            "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:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6835,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-27T10:12:34.090584Z",
                    "last_modified_time": "2024-02-06T13:23:11.871239Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743609.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6835/?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": "2023-12-27T10:12:34.077197Z",
            "last_modified_time": "2024-04-05T17:13:47.055935Z",
            "date_published": null,
            "start_time": "2024-02-22T09:00:00Z",
            "end_time": "2024-02-22T11: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,
            "short_description": {
                "fi": "Talviloman Siivoushulinat Malmitalolla 21. ja 22.2. klo 11-13. Hyppää jättipesulaan! Askarrellaan pehmoisia pölyhuiskia sekä hulvattomia imureita!",
                "sv": "Sportlovets Städningskalas i Malms Kulturhus! Stig in i en gigantisk tvättstuga! Vi pysslar mjuka dammvippor och roliga dammsugare!",
                "en": "A winter break cleaning spree at Malmitalo! Jump into a giant launderette! We will make soft dusters and hilarious vacuum cleaners!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4C0B059B8B19F4BF91E18E0CAF53A64C/Hupsansaa_ry_Siivoushulinat",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4C0B059B8B19F4BF91E18E0CAF53A64C/Hupsansaa_ry_Stadningskalas",
                "en": "http://www.malmitalo.fi/en/events/event/4C0B059B8B19F4BF91E18E0CAF53A64C/Hupsansaa_ry_Cleaning_spree"
            },
            "description": {
                "fi": "<p>Talviloman Siivoushulinat Malmitalolla 21. ja 22.2. klo 11-13. Hyppää jättipesulaan! Askarrellaan pehmoisia pölyhuiskia sekä hulvattomia imureita!</p><p>Talviloman Siivoushulinat Malmitalolla!</p><p>Hyppää jättipesulaan! Askarrellaan pehmoisia pölyhuiskia sekä hulvattomia imureita!<br>Siivoushulinoissa nauru roiskuu, sotkeudutaan väreihin ja sukelletaan jättipesulaan! Siivoushulinoissa voi löytää pöliseviä pölypalloja ja pulputtavia pesusieniä.</p><p>Jättipesulassa pyörähdetään pikapesuun, pompataan pehmoiseen pulveriin ja lennähdetään linkoukseen! Siivoushulinat ovat täynnä sinkoilevia saippuakuplia, rouskuvaa vaahtoa ja pikkuruisia vesipisaroita! Pölyt pölisee ja imurit hurisee!</p><p>Tervetuloa, sopii kaikenikäisille! Pienet lapset yhdessä aikuisen kanssa. Päivittäin vaihtuvat askartelutyöpajat:</p><p>Ke 21.2. Pehmoiset pölypallot-askartelutyöpaja<br>To 22.2. Hurisevat imurit-askartelutyöpaja</p><p>Siivoushulinoiden työpajat avoinna nonstop! Voit siis piipahtaa pajassa klo 11-13 välillä oman aikataulusi mukaan. Osallistujamäärää rajataan tarvittaessa. Suosittelemme noin 30 min leikkiaika / osallistuja, jotta mahdollisimman moni mahtuu työpajaan! Lämpimästi tervetuloa!</p><p>Tila: Kokoushuone 2</p><p>Vapaa pääsy</p>",
                "sv": "<p>Sportlovets Städningskalas i Malms Kulturhus! Stig in i en gigantisk tvättstuga! Vi pysslar mjuka dammvippor och roliga dammsugare!</p><p>På städningskalaset ekar skratt, vi sveper in oss i färger och dyker in i en gigantisk tvättstuga! På städningskalaset kan du hitta yrande dammbollar och bubblande tvättsvampar.</p><p>I den gigantiska tvättstugan tar vi ett snabbtvätt, hoppar in i mjukt pulver och flyger in i centrifugering! Städningskalaset är fullt av studsande såpbubblor, knastrande skum och pyttesmå vattendroppar! Dammet yr och dammsugarna brummar!</p><p>Välkommen, lämpar sig för alla åldrar! Små barn i sällskap av vuxna. Pysselverkstäder som varierar dagligen.</p><p>Mötesrum 2</p><p>Fritt inträde</p>",
                "en": "<p>A winter break cleaning spree at Malmitalo! Jump into a giant launderette! We will make soft dusters and hilarious vacuum cleaners!</p><p>The cleaning spree means laughter, getting messy with colours and diving into a giant launderette! You will find dust bunnies and bubbling sponges.</p><p>In the launderette, you can take a speed wash, jump into soft powder laundry detergent and spin-dry! The cleaning spree is full of bubbles, frothy foam and tiny water droplets! There will be dust and whirring vacuum cleaners!</p><p>Welcome, suitable for all ages! Young children should be accompanied by an adult. Daily changing arts and crafts workshops.</p><p>Meeting room 2</p><p>Free admission</p>"
            },
            "name": {
                "fi": "Hupsansaa ry: Siivoushulinat",
                "sv": "Hupsansaa ry: Städningskalas",
                "en": "Hupsansaa ry: Cleaning spree"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61766/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63011",
            "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:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7472,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-01T09:13:32.283431Z",
                    "last_modified_time": "2024-02-06T13:23:11.682764Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744425.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7472/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-01T09:13:32.230863Z",
            "last_modified_time": "2024-04-05T17:13:46.952039Z",
            "date_published": null,
            "start_time": "2024-02-22T07:00:00Z",
            "end_time": "2024-03-16T18: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,
            "short_description": {
                "fi": "Teoskokonaisuuden keskiössä on auto - sen omistamiseen ja käyttöön sekä matkustajana olemiseen liittyvät tunteet ja fantasiat vapaudesta, riippumattomuudesta ja voimasta.",
                "sv": "Mittpunkten i verket är en bil - känslorna och fantasierna om frihet, oberoende och makt förknippade med att äga och använda den och att vara passagerare.",
                "en": "In essence, a combination of artworks presented at the exhibition is dealing with the concept of the car - the feelings and fantasies of freedom, independence and power associated with owning and using it and being a passenger."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7C45B9DBB170CC9AA44346D73293F99D/Autoiluun_liittyvat_tunteet",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7C45B9DBB170CC9AA44346D73293F99D/Kanslor_relaterade_till_bilkorning",
                "en": "http://www.malmitalo.fi/en/events/event/7C45B9DBB170CC9AA44346D73293F99D/Emotions_related_to_motoring"
            },
            "description": {
                "fi": "<p>Teoskokonaisuuden keskiössä on auto - sen omistamiseen ja käyttöön sekä matkustajana olemiseen liittyvät tunteet ja fantasiat vapaudesta, riippumattomuudesta ja voimasta.</p><p>Ja toisaalta tietoisuus elämäntapamme itsetuhoisuudesta, kestämättömyydestä ja väliaikaisuudesta. Teosprosessi on saanut innoituksensa retrofuturismifantasioista, kyborgeista ja transformereista ja siitä miten ne ilmenevät autoilussa nykyään.</p><p>Miksi autosta on tullut niin merkittävä osa identiteettiämme ja miksi siihen liittyviä muutoksia on niin vaikea hyväksyä?</p><p><b>TYÖMAA -ryhmä</b><br>Andrei Bakharev (kuvanveistäjä), Hannu Seppälä (äänitaiteilija), Lydia Toivanen (valokuvataiteilija), Mari Kämäräinen (taiteellinen johtaja, performanssitaiteilija)</p><p>Ryhmä on toiminut vuodesta 2021 saakka ja sen debyyttinäyttely TYÖMAA oli esillä Titanik-galleriassa Turussa 9/2022. Autoiluun liittyvät tunteet on ryhmän toinen yhteisteos.</p><p><b>Andrei Bakharev</b> (s. 1981 Pietarissa) työskentelee pääosin kuvanveiston ja erityisesti puuveiston parissa. Hän aloitti taideopinnot Pietarin Taideakatemiassa ja valmistui kuvataiteen maisteriksi Helsingin Kuvataideakatemiasta 2008. Taiteilija on ollut mukana monissa ympäristötaideprojekteissa ja työskennellyt 2022 alkaen mm. Koneen säätiön rahoittamassa Elonkirjopuisto -hankkeessa Turun Koroisilla. Hänen teoksiaan on ollut esillä lukuisissa näyttelyissä sekä Suomessa että ulkomailla.</p><p><b>Mari Kämäräinen</b> (s. 1987 Vaalassa) toimii performanssin ja piirtämisen keinoin ja tekee ympäristötaide- ja tilateoksia sekä itse että osana monitaiteellisia työryhmiä. Hän valmistui kuvataiteilijaksi Turun Taideakatemiasta 2015. Kämäräinen tekee yhteistyötä mm. Pohjoisen oopperakomppanian kanssa kotiseudullaan Pohjois-Pohjanmaalla. Äänitaiteilija Hannu Seppälän kanssa hän on toteuttanut useita yhteisteoksia ja näyttelyitä. He ovat olleet mukana mm. Huoneiden kirja -produktiossa, jolle myönnettiin Esittävien taiteiden valtionpalkinto 2021.</p><p><b>Hannu Seppälä</b> (s. 1980 Oulussa) on äänitaiteilija, joka työskentelee musiikillisten ja performatiivisten sooloprojektien sekä kuvataiteen ja teatterin kentillä tapahtuvien yhteistyöprojektien parissa. Yhteistyö Mari Kämäräisen kanssa on jatkunut vuodesta 2018 lähtien. Seppälä on tehnyt pitkäaikaista yhteistyötä myös kuvataitelija Eero Yrjölän kanssa. Viimeisimpiä teatteriäänisuunnittelutöitä ovat olleet Tehdas Teatterin tuotannot Yksin ihminen vuonna 2022 ja Gilgamesh - Mortal vuonna 2023.</p><p><b>Lydia Toivanen</b> (s. 1987 Keravalla) on kuvataiteilija, jonka pääasialliset mediat ovat valokuva ja video. Hänen keskeinen työvälineensä on älypuhelin, jonka käyttö nostaa esiin kysymyksiä valokuvauksen estetiikasta, etiikasta ja käyttötarkoituksista. Teoksissaan hän käsittelee taustaansa uskonnollisessa yhteisössä ja suurperheessä. Toivanen viimeistelee opintojaan Aalto-yliopistossa valokuvataiteen maisteriohjelmassa.</p><p>Avajaiset keskiviikkona 21.2. klo 17:00–19:00.<br>Malmitalon Galleria</p><p>Vapaa pääsy, tervetuloa!</p>",
                "sv": "<p>Mittpunkten i verket är en bil - känslorna och fantasierna om frihet, oberoende och makt förknippade med att äga och använda den och att vara passagerare.</p><p>Och å andra sidan, medvetenhet om vår livsstils självförstörelse, ohållbarhet och tillfälliga natur. Den kreativa processen inspirerades av retrofuturistiska fantasier, cyborgs och transformatorer och hur de manifesteras inom bilismen idag.</p><p>Varför har bilen blivit en så betydande del av vår identitet och varför är förändringarna relaterade till den så svåra att acceptera?</p><p><b>TYÖMAA-gruppen</b><br>Andrei Bakharev (skulptör), Hannu Seppälä (ljudkonstnär),<br>Lydia Toivanen (fotokonstnär), Mari Kämäräinen (konstnärlig ledare, performancekonstnär)</p><p>Gruppen har varit verksam sedan 2021 och dess debututställning TYÖMAA visades i Titanik-galleriet i Åbo 9/2022. Känslor relaterade till bilkörning är gruppens andra gemensamma arbete.</p><p><b>Andrei Bakharev</b> (f. 1981 i St. Petersburg) arbetar främst med skulptur och speciellt träsnideri. Han började sina konststudier vid St. Petersburgs konsthögskola och tog examen med en magisterexamen i konst från Konsthögskolan i Helsingfors 2008. Konstnären har varit involverad i många miljökonstprojekt och har från och med 2022 arbetat i t.ex. I Elonkirjopuisto-projektet finansierat av Kone-stiftelsen i Koroin, Åbo. Hans verk har visats på ett flertal utställningar både i Finland och utomlands.</p><p><b>Mari Kämäräinen</b> (f. 1987 i Vaala) arbetar med performance och teckning och gör miljökonst och rumsliga verk både på egen hand och som en del av multikonst-arbetsgrupper. Hon tog examen som bildkonstnär från Konsthögskolan i Åbo 2015. Kämäräinen samarbetar med bl.a. med Norra Operabolaget i hemtrakten i Norra Österbotten. Med ljudkonstnären Hannu Seppälä har hon realiserat flera gemensamma verk och utställningar. De har varit involverade i bl.a. I produktionen \"Book of Rooms\", som belönades med 2021 års statliga scenkonstpris.</p><p><b>Hannu Seppälä</b> (f. 1980 i Uleåborg) är en ljudkonstnär som arbetar med musikaliska och performativa soloprojekt samt samarbetsprojekt inom bildkonst och teater. Samarbetet med Mari Kämäräinen har fortsatt sedan 2018. Seppälä har även haft ett långvarigt samarbete med bildkonstnären Eero Yrjölä. De senaste teaterljuddesignverken har varit Tehdas Teatters produktioner Yksin inmins 2022 och Gilgamesh - Mortal 2023.</p><p><b>Lydia Toivanen</b> (f. 1987 i Kervo) är en bildkonstnär vars huvudsakliga media är fotografi och video. Hennes centrala arbetsredskap är en smartphone, vars användning väcker frågor om fotografiets estetik, etik och syften. I sina verk behandlar hon sin bakgrund i ett religiöst samfund och utökad familj. Toivanen avslutar sina studier vid Aalto-universitetet på masterprogrammet i fotografi.</p><p>Invigning på onsdag den 21.2. kl. 17:00–19:00.<br>Malms kulturhus galleriet</p><p>Fri entré, välkommen!</p>",
                "en": "<p>In essence, a combination of artworks presented at the exhibition is dealing with the concept of the car - the feelings and fantasies of freedom, independence and power associated with owning and using it and being a passenger.</p><p>On another level artworks bring awareness of the self-destructiveness, unsustainability and temporary nature of our lifestyles. The creative process was inspired by retro futuristic fantasies, cyborgs and transformers and how they are manifested in motoring today.</p><p>Why has the car become such a significant part of our identity and why the changes related to it are so difficult to accept?</p><p><b>TYÖMAA (construction site) group</b><br>Andrei Bakharev (sculptor), Mari Kämäräinen (artistic director, performance artist), Hannu Seppälä (sound artist), Lydia Toivanen (photo artist)</p><p>The group has been operating since 2021 and its debut exhibition TYÖMAA was on display in the Titanik-gallery in Turku in 9/2022. Emotions related to motoring is the group's second joint work.</p><p><b>Andrei Bakharev</b> (b. 1981 in St. Petersburg) mainly works with sculpture and especially wood carving. He began his art studies at the St. Petersburg Academy of Arts and graduated with a master's degree in fine arts from the Helsinki Academy of Fine Arts in 2008. The artist has been involved in many environmental art projects and, starting in 2022, has worked in e.g. Elonkirjo -puisto project funded by the Kone Foundation in Koroinen, Turku. His works have been exhibited in numerous exhibitions both in Finland and abroad.</p><p><b>Mari Kämäräinen</b> (b. 1987 in Vaala) works with the means of performance and drawing and makes environmental art and spatial works both by herself and as part of multi disciplinary art work groups. She graduated as a visual artist from the Turku Academy of Arts in 2015. Kämäräinen collaborates with e.g. the Northern Opera Company in her home region in Northern Ostrobothnia. With the sound artist Hannu Seppälä, she has realized several joint works and exhibitions. They have been involved in e.g. the \"Book of Rooms\" production, which was awarded the 2021 State Prize for the Performing Arts.</p><p><b>Hannu Seppälä</b> (b. 1980 in Oulu) is a sound artist who works on musical and performative solo projects as well as collaborative projects in visual arts and theater. The cooperation with Mari Kämäräinen has continued since 2018. Seppälä has also had a long-term collaboration with visual artist Eero Yrjölä. The most recent theater sound design works have been Tehdas Theater's productions Yksin ihminen in 2022 and Gilgamesh - Mortal in 2023.</p><p><b>Lydia Toivanen</b> (b. 1987 in Kerava) is a visual artist whose primary media are photography and video. Her main tool is the smartphone, the use of which raises questions relating to the aesthetics, ethics and purpose of photography. Her works explore her background in a religious community and an extended family. Toivanen is completing her studies at Aalto University in the master's program in photography.</p><p>Exhibition opening: Wednesday, February 21st at 17:00–19:00.<br>The Malmitalo Gallery</p><p>Free entry, welcome!</p>"
            },
            "name": {
                "fi": "Autoiluun liittyvät tunteet – TYÖMAA-ryhmä",
                "sv": "Känslor relaterade till bilkörning – TYÖMAA-gruppen",
                "en": "Emotions related to motoring – TYÖMAA (construction site) group"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63011/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61603",
            "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:33/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/osiris-teatteri-minun-elaemaeni-ukraina-malmitalo-17949512/",
                        "sv": "https://www.lippu.fi/event/osiris-teatteri-minun-elaemaeni-ukraina-malmitalo-17949512/",
                        "en": "https://www.lippu.fi/event/osiris-teatteri-minun-elaemaeni-ukraina-malmitalo-17949512/"
                    },
                    "description": null,
                    "price": {
                        "fi": "28 € / 24 €",
                        "sv": "28 € / 24 €",
                        "en": "28 € / 24 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6480,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:09.034412Z",
                    "last_modified_time": "2024-02-06T13:23:11.591234Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734832.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6480/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-07T14:14:09.016333Z",
            "last_modified_time": "2024-04-05T17:13:46.905805Z",
            "date_published": null,
            "start_time": "2024-02-21T17: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,
            "short_description": {
                "fi": "Tarinoita sitkeydestä, pelosta, rohkeudesta, syyllisyydestä ja hyvän elämän etsinnästä.",
                "sv": "Berättelser om uthållighet, fruktan, mod, skuld och söket efter ett gott liv. I OSIRIS teatteris scenverk hörs ukrainarnas personliga historier från mitten av det ryska anfallskriget.",
                "en": "Stories of perseverance, fear, courage, guilt and the search for a better life. OSIRIS theatre’s stage performance features personal stories of Ukrainians in the midst of the war in Ukraine."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/67D7CE4AC379A4898A2F62BCBF784FC6/OSIRIS-teatteri_Minun_elamani_Ukraina_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/67D7CE4AC379A4898A2F62BCBF784FC6/OSIRIS-teatteri_Minun_elamani_Ukraina_",
                "en": "http://www.malmitalo.fi/en/events/event/67D7CE4AC379A4898A2F62BCBF784FC6/OSIRIS-teatteri_Minun_elamani_Ukraina_"
            },
            "description": {
                "fi": "<p>Tarinoita sitkeydestä, pelosta, rohkeudesta, syyllisyydestä ja hyvän elämän etsinnästä.</p><p>OSIRIS teatterin näyttämöteoksessa kuullaan ukrainalaisten henkilökohtaisia tarinoita sodan keskeltä.</p><p>Näyttämöllä ukrainalaisia ja suomalaisia teatteritaiteen ja musiikin ammattilaisia.</p><p>Näyttelijät Anastasiia Redchuck, Ljubov Yankchukevitch sekä Cécile Orblin ja Anna Murtola.<br>Koreografia Vitalii Bodhurskyi.<br>Kuvat ja videot Ahmed Alalousi<br>Äänisuunnittelu Lasse Turunen.<br>Ohjaus Liisa Isotalo.</p><p>Hankkeeseen liittyvä näyttely nähdään Kanneltalon Galleriassa 19.2.–9.3.2024</p>",
                "sv": "<p>Berättelser om uthållighet, fruktan, mod, skuld och söket efter ett gott liv. I OSIRIS teatteris scenverk hörs ukrainarnas personliga historier från mitten av det ryska anfallskriget.</p>",
                "en": "<p>Stories of perseverance, fear, courage, guilt and the search for a better life. OSIRIS theatre’s stage performance features personal stories of Ukrainians in the midst of the war in Ukraine.</p>"
            },
            "name": {
                "fi": "OSIRIS-teatteri: Minun elämäni, Ukraina! – Sotaa paenneiden naisten tarinoita",
                "sv": "OSIRIS-teatteri: Minun elämäni, Ukraina!",
                "en": "OSIRIS-teatteri: Minun elämäni, Ukraina!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61603/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61605",
            "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: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:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6479,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:08.885827Z",
                    "last_modified_time": "2024-02-06T13:23:11.103052Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739502.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6479/?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": "2023-12-07T14:14:08.869917Z",
            "last_modified_time": "2024-04-05T17:13:46.652746Z",
            "date_published": null,
            "start_time": "2024-02-21T11: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,
            "short_description": {
                "fi": "Merida on kuningas Fergusin ja kuningatar Elinorin tytär, taitava jousiampuja, jolla on kipakka luonne.",
                "sv": "Merida är dotter till kung Fergus och drottning Elinor, en skicklig bågskytt med en temperamentsfull karaktär. Merida bestämmer sig för att hitta sin egen väg och bryter mot den urgamla vanan, vilket störtar riket i kaos.",
                "en": "Merida is the daughter of King Fergus and Queen Elinor. She is a skilled archer with a fierce character. Merida decides to find her own way and breaks an ancient custom, plunging the kingdom into chaos."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EFEA3D96D379C3A9745239AA33A1511D/Talvilomaleffa_Urhea_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EFEA3D96D379C3A9745239AA33A1511D/Vinterlovsfilm_Modig_7_",
                "en": "http://www.malmitalo.fi/en/events/event/EFEA3D96D379C3A9745239AA33A1511D/Winter_holiday_movie_Brave_7_"
            },
            "description": {
                "fi": "<p>Merida on kuningas Fergusin ja kuningatar Elinorin tytär, taitava jousiampuja, jolla on kipakka luonne.</p><p>Merida päättää itse löytää oman tiensä ja rikkoo ikivanhaa tapaa, mikä syöksee valtakunnan kaaokseen. Kun Merida pyytää apua vanhalta, viisaalta naiselta, toteutuu hänen valitettava toiveensa. Vaaralliset seuraamukset opettavat Meridalle, mitä on todellinen rohkeus, ja hänen on murrettava kauhea kirous ennen kuin on myöhäistä.</p><p>Kesto 93 min<br>Ikäraja: 7</p>",
                "sv": "<p>Merida är dotter till kung Fergus och drottning Elinor, en skicklig bågskytt med en temperamentsfull karaktär. Merida bestämmer sig för att hitta sin egen väg och bryter mot den urgamla vanan, vilket störtar riket i kaos.</p>",
                "en": "<p>Merida is the daughter of King Fergus and Queen Elinor. She is a skilled archer with a fierce character. Merida decides to find her own way and breaks an ancient custom, plunging the kingdom into chaos.</p>"
            },
            "name": {
                "fi": "Talvilomaleffa: Urhea (7)",
                "sv": "Vinterlovsfilm: Modig (7)",
                "en": "Winter holiday movie: Brave (7)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61605/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61765",
            "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:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6834,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-27T10:12:33.837315Z",
                    "last_modified_time": "2024-02-06T13:23:10.824421Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743607.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6834/?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": "2023-12-27T10:12:33.820559Z",
            "last_modified_time": "2024-04-05T17:13:46.506680Z",
            "date_published": null,
            "start_time": "2024-02-21T09:00:00Z",
            "end_time": "2024-02-21T11: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,
            "short_description": {
                "fi": "Talviloman Siivoushulinat Malmitalolla 21. ja 22.2. klo 11-13. Hyppää jättipesulaan! Askarrellaan pehmoisia pölyhuiskia sekä hulvattomia imureita!",
                "sv": "Sportlovets Städningskalas i Malms Kulturhus! Stig in i en gigantisk tvättstuga! Vi pysslar mjuka dammvippor och roliga dammsugare!",
                "en": "A winter break cleaning spree at Malmitalo! Jump into a giant launderette! We will make soft dusters and hilarious vacuum cleaners!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/37F3287678E5A386D22334F4A9AF2530/Hupsansaa_ry_Siivoushulinat",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/37F3287678E5A386D22334F4A9AF2530/Hupsansaa_ry_Stadningskalas",
                "en": "http://www.malmitalo.fi/en/events/event/37F3287678E5A386D22334F4A9AF2530/Hupsansaa_ry_Cleaning_spree"
            },
            "description": {
                "fi": "<p>Talviloman Siivoushulinat Malmitalolla 21. ja 22.2. klo 11-13. Hyppää jättipesulaan! Askarrellaan pehmoisia pölyhuiskia sekä hulvattomia imureita!</p><p>Talviloman Siivoushulinat Malmitalolla!</p><p>Hyppää jättipesulaan! Askarrellaan pehmoisia pölyhuiskia sekä hulvattomia imureita!<br>Siivoushulinoissa nauru roiskuu, sotkeudutaan väreihin ja sukelletaan jättipesulaan! Siivoushulinoissa voi löytää pöliseviä pölypalloja ja pulputtavia pesusieniä.</p><p>Jättipesulassa pyörähdetään pikapesuun, pompataan pehmoiseen pulveriin ja lennähdetään linkoukseen! Siivoushulinat ovat täynnä sinkoilevia saippuakuplia, rouskuvaa vaahtoa ja pikkuruisia vesipisaroita! Pölyt pölisee ja imurit hurisee!</p><p>Tervetuloa, sopii kaikenikäisille! Pienet lapset yhdessä aikuisen kanssa. Päivittäin vaihtuvat askartelutyöpajat:</p><p>Ke 21.2. Pehmoiset pölypallot-askartelutyöpaja<br>To 22.2. Hurisevat imurit-askartelutyöpaja</p><p>Siivoushulinoiden työpajat avoinna nonstop! Voit siis piipahtaa pajassa klo 11-13 välillä oman aikataulusi mukaan. Osallistujamäärää rajataan tarvittaessa. Suosittelemme noin 30 min leikkiaika / osallistuja, jotta mahdollisimman moni mahtuu työpajaan! Lämpimästi tervetuloa!</p><p>Tila: Kokoushuone 2</p><p>Vapaa pääsy</p>",
                "sv": "<p>Sportlovets Städningskalas i Malms Kulturhus! Stig in i en gigantisk tvättstuga! Vi pysslar mjuka dammvippor och roliga dammsugare!</p><p>På städningskalaset ekar skratt, vi sveper in oss i färger och dyker in i en gigantisk tvättstuga! På städningskalaset kan du hitta yrande dammbollar och bubblande tvättsvampar.</p><p>I den gigantiska tvättstugan tar vi ett snabbtvätt, hoppar in i mjukt pulver och flyger in i centrifugering! Städningskalaset är fullt av studsande såpbubblor, knastrande skum och pyttesmå vattendroppar! Dammet yr och dammsugarna brummar!</p><p>Välkommen, lämpar sig för alla åldrar! Små barn i sällskap av vuxna. Pysselverkstäder som varierar dagligen.</p><p>Mötesrum 2</p><p>Fritt inträde</p>",
                "en": "<p>A winter break cleaning spree at Malmitalo! Jump into a giant launderette! We will make soft dusters and hilarious vacuum cleaners!</p><p>The cleaning spree means laughter, getting messy with colours and diving into a giant launderette! You will find dust bunnies and bubbling sponges.</p><p>In the launderette, you can take a speed wash, jump into soft powder laundry detergent and spin-dry! The cleaning spree is full of bubbles, frothy foam and tiny water droplets! There will be dust and whirring vacuum cleaners!</p><p>Welcome, suitable for all ages! Young children should be accompanied by an adult. Daily changing arts and crafts workshops.</p><p>Meeting room 2</p><p>Free admission</p>"
            },
            "name": {
                "fi": "Hupsansaa ry: Siivoushulinat",
                "sv": "Hupsansaa ry: Städningskalas",
                "en": "Hupsansaa ry: Cleaning spree"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61765/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61604",
            "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: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:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6477,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-07T14:14:08.663514Z",
                    "last_modified_time": "2024-02-06T13:23:10.166115Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739501.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6477/?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": "2023-12-07T14:14:08.647978Z",
            "last_modified_time": "2024-04-05T17:13:46.200797Z",
            "date_published": null,
            "start_time": "2024-02-20T11: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,
            "short_description": {
                "fi": "Susien kasvattama ihmispoika Mowgli ja musta pantteri Bagheera seikkailevat läpi viidakon.",
                "sv": "Människosonen Mowgli som är uppfostrad av vargar och den svarte pantern Bagheera färdas genom djungeln och möter många roliga vänner.",
                "en": "Mowgli, a human boy raised by wolves, and Bagheera, a black panther, venture through the jungle and encounter many hilarious friends."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/71A9984ED1FE44F0FF46836625A000B2/Talvilomaleffa_Viidakkokirja_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/71A9984ED1FE44F0FF46836625A000B2/Vinterlovsfilm_Djungelboken_7_",
                "en": "http://www.malmitalo.fi/en/events/event/71A9984ED1FE44F0FF46836625A000B2/Winter_holiday_movie_The_Jungle_Book_7_"
            },
            "description": {
                "fi": "<p>Susien kasvattama ihmispoika Mowgli ja musta pantteri Bagheera seikkailevat läpi viidakon.</p><p>Matkallaan kaksikko kohtaa leppoisan karhun Baloon, rytmikkään apinakuninkaan Louien, ihmissyöjätiikerin Shere Khanin ja monet muut hulvattomat ystävät.</p><p>Puhuttu suomeksi.<br>Kesto: 75 min<br>Ikäraja: 7</p>",
                "sv": "<p>Människosonen Mowgli som är uppfostrad av vargar och den svarte pantern Bagheera färdas genom djungeln och möter många roliga vänner.</p>",
                "en": "<p>Mowgli, a human boy raised by wolves, and Bagheera, a black panther, venture through the jungle and encounter many hilarious friends.</p>"
            },
            "name": {
                "fi": "Talvilomaleffa: Viidakkokirja (7)",
                "sv": "Vinterlovsfilm: Djungelboken (7)",
                "en": "Winter holiday movie: The Jungle Book (7)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61604/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}