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

{
    "meta": {
        "count": 1655,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=28",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=26"
    },
    "data": [
        {
            "id": "kulke:65769",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3857793/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3857793/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3857793/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 368287,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T09:14:52.269719Z",
                    "last_modified_time": "2025-03-19T09:14:52.269738Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759058.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/368287/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T09:14:52.247237Z",
            "last_modified_time": "2025-03-28T11:13:48.833758Z",
            "date_published": null,
            "start_time": "2025-04-11T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DCC527AE5C0F81456EA910AEE26393D0/Sata_litraa_sahtia_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/DCC527AE5C0F81456EA910AEE26393D0/Sata_litraa_sahtia_12_",
                "en": "http://www.malmitalo.fi/en/events/event/DCC527AE5C0F81456EA910AEE26393D0/Sata_litraa_sahtia_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jonka pääosissa loistavat Elina Knihtilä, Pirjo Lonka ja Ria Kataja!</p><p>Siskokset Pirkko (Elina Knihtilä) ja Taina (Pirjo Lonka) ovat jatkaneet sukunsa pitkää perinnettä sahdin valmistajina. Kylällä jokainen haluaa osansa maineikkaasta juomasta, vaikka maksukykyä ei aina löytyisikään. Yllättäen kotikonnuille tekee paluun sisarustrion kolmas - Päivi (Ria Kataja), ja tilaa siskoiltaan häihinsä ei enempää eikä vähempää kuin sata litraa sahtia. Pirkko ja Taina panevat tuumasta toimeen täydellisen satsin valmistamiseksi. Pelissä on sekä perhesuhteet että maine.</p><p>Prosessiin kuuluva maistelu kuitenkin venähtää, ja Sysmän kulta hulahtaa kokonaisuudessaan itse panijoiden sekä kyläläisten kitusiin. Pian häihin on enää alle kaksi vuorokautta aikaa, ja siskosten on keksittävä keino miten toimittaa juhliin luvatut sahdit. Alkaa taistelu aikaa vastaan, ja tilanteen korjaamiseksi käytetään kaikki mahdolliset keinot.</p><p>Ikäraja: 12<br>Kesto: 88 min.<br>Ensi-ilta: 28.03.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jonka pääosissa loistavat Elina Knihtilä, Pirjo Lonka ja Ria Kataja!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sata litraa sahtia (12) – Kino Helios",
                "sv": "Sata litraa sahtia (12) – Kino Helios",
                "en": "Sata litraa sahtia (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65769/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65768",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3857793/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3857793/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3857793/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 368286,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T09:14:51.656106Z",
                    "last_modified_time": "2025-03-19T09:14:51.656126Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759056.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/368286/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T09:14:51.633621Z",
            "last_modified_time": "2025-03-28T11:13:48.426204Z",
            "date_published": null,
            "start_time": "2025-04-09T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/254F20E34479C50E18F6E6C2044DEDAF/Sata_litraa_sahtia_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/254F20E34479C50E18F6E6C2044DEDAF/Sata_litraa_sahtia_12_",
                "en": "http://www.malmitalo.fi/en/events/event/254F20E34479C50E18F6E6C2044DEDAF/Sata_litraa_sahtia_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jonka pääosissa loistavat Elina Knihtilä, Pirjo Lonka ja Ria Kataja!</p><p>Siskokset Pirkko (Elina Knihtilä) ja Taina (Pirjo Lonka) ovat jatkaneet sukunsa pitkää perinnettä sahdin valmistajina. Kylällä jokainen haluaa osansa maineikkaasta juomasta, vaikka maksukykyä ei aina löytyisikään. Yllättäen kotikonnuille tekee paluun sisarustrion kolmas - Päivi (Ria Kataja), ja tilaa siskoiltaan häihinsä ei enempää eikä vähempää kuin sata litraa sahtia. Pirkko ja Taina panevat tuumasta toimeen täydellisen satsin valmistamiseksi. Pelissä on sekä perhesuhteet että maine.</p><p>Prosessiin kuuluva maistelu kuitenkin venähtää, ja Sysmän kulta hulahtaa kokonaisuudessaan itse panijoiden sekä kyläläisten kitusiin. Pian häihin on enää alle kaksi vuorokautta aikaa, ja siskosten on keksittävä keino miten toimittaa juhliin luvatut sahdit. Alkaa taistelu aikaa vastaan, ja tilanteen korjaamiseksi käytetään kaikki mahdolliset keinot.</p><p>Ikäraja: 12<br>Kesto: 88 min.<br>Ensi-ilta: 28.03.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jonka pääosissa loistavat Elina Knihtilä, Pirjo Lonka ja Ria Kataja!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sata litraa sahtia (12) – Kino Helios",
                "sv": "Sata litraa sahtia (12) – Kino Helios",
                "en": "Sata litraa sahtia (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65768/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65765",
            "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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-kovia-totuuksia-3857786/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kovia-totuuksia-3857786/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kovia-totuuksia-3857786/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 368285,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T09:14:51.424466Z",
                    "last_modified_time": "2025-03-19T09:14:51.424480Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759055.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/368285/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T09:14:51.402289Z",
            "last_modified_time": "2025-03-28T11:13:48.275297Z",
            "date_published": null,
            "start_time": "2025-04-09T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/29DB53F721D489EE9CD244697BD1868E/Kovia_totuuksia_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/29DB53F721D489EE9CD244697BD1868E/Kovia_totuuksia_7_",
                "en": "http://www.malmitalo.fi/en/events/event/29DB53F721D489EE9CD244697BD1868E/Kovia_totuuksia_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian.</p><p>Lontoon laidalle sijoittuva elokuva kertoo kahdesta kovin erilaisesta siskoksesta.</p><p>Pääosassa nähdään Marianne Jean-Baptiste (tuttu Salaisuuksia ja valheita –elokuvasta). Särmikäs Pansy kokee koko maailman olevan häntä vastaan. Päätä särkee, kaikenlaiset paikat tuntuvat uhkaavilta ja mikä tahansa aiheuttaa ainakin allergisia reaktioita.</p><p>Pansyn rakastava puoliso Curtley ja heidän poikansa Moses elävät Pansyn alituisten moitteiden ristitulessa. Pansyn nauravainen vastakohta, pikkusisko Chantelle (Michelle Austin) pitää suosittua kampaamoa ja iloitsee perhe-elämästä aikuisten tyttäriensä kanssa. Äitienpäivä lähenee, perhe haluaa järjestää yhteiset juhlat – mutta siskosten erilaisuus aiheuttaa melkoista hankausta.</p><p>Ikäraja: 7<br>Kesto: 96 min.<br>Ensi-ilta: 21.03.2025<br>Tekstitys: suomi ja ruotsi</p>"
            },
            "short_description": {
                "fi": "Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kovia totuuksia (7) – Kino Helios",
                "sv": "Kovia totuuksia (7) – Kino Helios",
                "en": "Kovia totuuksia (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65765/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65764",
            "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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-kovia-totuuksia-3857786/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kovia-totuuksia-3857786/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kovia-totuuksia-3857786/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 368284,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T09:14:50.204523Z",
                    "last_modified_time": "2025-03-19T09:14:50.204538Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759053.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/368284/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T09:14:50.181279Z",
            "last_modified_time": "2025-03-28T11:13:47.523103Z",
            "date_published": null,
            "start_time": "2025-04-05T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BDB00F4883FB70EC2BFBFA4820870BF6/Kovia_totuuksia_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BDB00F4883FB70EC2BFBFA4820870BF6/Kovia_totuuksia_7_",
                "en": "http://www.malmitalo.fi/en/events/event/BDB00F4883FB70EC2BFBFA4820870BF6/Kovia_totuuksia_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian.</p><p>Lontoon laidalle sijoittuva elokuva kertoo kahdesta kovin erilaisesta siskoksesta.</p><p>Pääosassa nähdään Marianne Jean-Baptiste (tuttu Salaisuuksia ja valheita –elokuvasta). Särmikäs Pansy kokee koko maailman olevan häntä vastaan. Päätä särkee, kaikenlaiset paikat tuntuvat uhkaavilta ja mikä tahansa aiheuttaa ainakin allergisia reaktioita.</p><p>Pansyn rakastava puoliso Curtley ja heidän poikansa Moses elävät Pansyn alituisten moitteiden ristitulessa. Pansyn nauravainen vastakohta, pikkusisko Chantelle (Michelle Austin) pitää suosittua kampaamoa ja iloitsee perhe-elämästä aikuisten tyttäriensä kanssa. Äitienpäivä lähenee, perhe haluaa järjestää yhteiset juhlat – mutta siskosten erilaisuus aiheuttaa melkoista hankausta.</p><p>Ikäraja: 7<br>Kesto: 96 min.<br>Ensi-ilta: 21.03.2025<br>Tekstitys: suomi ja ruotsi</p>"
            },
            "short_description": {
                "fi": "Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kovia totuuksia (7) – Kino Helios",
                "sv": "Kovia totuuksia (7) – Kino Helios",
                "en": "Kovia totuuksia (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65764/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65767",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3857793/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3857793/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3857793/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 368283,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T09:14:49.465937Z",
                    "last_modified_time": "2025-03-19T09:14:49.465950Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759050.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/368283/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T09:14:49.429193Z",
            "last_modified_time": "2025-03-28T11:13:46.979432Z",
            "date_published": null,
            "start_time": "2025-04-04T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/07DDF7BB466CDBC0083F3603A6B63127/Sata_litraa_sahtia_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/07DDF7BB466CDBC0083F3603A6B63127/Sata_litraa_sahtia_12_",
                "en": "http://www.malmitalo.fi/en/events/event/07DDF7BB466CDBC0083F3603A6B63127/Sata_litraa_sahtia_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jonka pääosissa loistavat Elina Knihtilä, Pirjo Lonka ja Ria Kataja!</p><p>Siskokset Pirkko (Elina Knihtilä) ja Taina (Pirjo Lonka) ovat jatkaneet sukunsa pitkää perinnettä sahdin valmistajina. Kylällä jokainen haluaa osansa maineikkaasta juomasta, vaikka maksukykyä ei aina löytyisikään. Yllättäen kotikonnuille tekee paluun sisarustrion kolmas - Päivi (Ria Kataja), ja tilaa siskoiltaan häihinsä ei enempää eikä vähempää kuin sata litraa sahtia. Pirkko ja Taina panevat tuumasta toimeen täydellisen satsin valmistamiseksi. Pelissä on sekä perhesuhteet että maine.</p><p>Prosessiin kuuluva maistelu kuitenkin venähtää, ja Sysmän kulta hulahtaa kokonaisuudessaan itse panijoiden sekä kyläläisten kitusiin. Pian häihin on enää alle kaksi vuorokautta aikaa, ja siskosten on keksittävä keino miten toimittaa juhliin luvatut sahdit. Alkaa taistelu aikaa vastaan, ja tilanteen korjaamiseksi käytetään kaikki mahdolliset keinot.</p><p>Ikäraja: 12<br>Kesto: 88 min.<br>Ensi-ilta: 28.03.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jonka pääosissa loistavat Elina Knihtilä, Pirjo Lonka ja Ria Kataja!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sata litraa sahtia (12) – Kino Helios",
                "sv": "Sata litraa sahtia (12) – Kino Helios",
                "en": "Sata litraa sahtia (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65767/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65766",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3857793/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3857793/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sata-litraa-sahtia-3857793/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 368281,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T09:14:48.569646Z",
                    "last_modified_time": "2025-03-19T09:14:48.569664Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759047.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/368281/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T09:14:48.544481Z",
            "last_modified_time": "2025-03-28T11:13:46.504392Z",
            "date_published": null,
            "start_time": "2025-04-02T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C321BA308BC0217A1CE11DB9733AA9E1/Sata_litraa_sahtia_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C321BA308BC0217A1CE11DB9733AA9E1/Sata_litraa_sahtia_12_",
                "en": "http://www.malmitalo.fi/en/events/event/C321BA308BC0217A1CE11DB9733AA9E1/Sata_litraa_sahtia_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jonka pääosissa loistavat Elina Knihtilä, Pirjo Lonka ja Ria Kataja!</p><p>Siskokset Pirkko (Elina Knihtilä) ja Taina (Pirjo Lonka) ovat jatkaneet sukunsa pitkää perinnettä sahdin valmistajina. Kylällä jokainen haluaa osansa maineikkaasta juomasta, vaikka maksukykyä ei aina löytyisikään. Yllättäen kotikonnuille tekee paluun sisarustrion kolmas - Päivi (Ria Kataja), ja tilaa siskoiltaan häihinsä ei enempää eikä vähempää kuin sata litraa sahtia. Pirkko ja Taina panevat tuumasta toimeen täydellisen satsin valmistamiseksi. Pelissä on sekä perhesuhteet että maine.</p><p>Prosessiin kuuluva maistelu kuitenkin venähtää, ja Sysmän kulta hulahtaa kokonaisuudessaan itse panijoiden sekä kyläläisten kitusiin. Pian häihin on enää alle kaksi vuorokautta aikaa, ja siskosten on keksittävä keino miten toimittaa juhliin luvatut sahdit. Alkaa taistelu aikaa vastaan, ja tilanteen korjaamiseksi käytetään kaikki mahdolliset keinot.</p><p>Ikäraja: 12<br>Kesto: 88 min.<br>Ensi-ilta: 28.03.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jonka pääosissa loistavat Elina Knihtilä, Pirjo Lonka ja Ria Kataja!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sata litraa sahtia (12) – Kino Helios",
                "sv": "Sata litraa sahtia (12) – Kino Helios",
                "en": "Sata litraa sahtia (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65766/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65761",
            "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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-valitut-3857699/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-valitut-3857699/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-valitut-3857699/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 368280,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T09:14:48.387104Z",
                    "last_modified_time": "2025-03-19T09:14:48.387124Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759046.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/368280/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T09:14:48.361137Z",
            "last_modified_time": "2025-03-28T11:13:46.403168Z",
            "date_published": null,
            "start_time": "2025-04-02T12:00:00Z",
            "end_time": "2025-04-02T13:50:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E21C221C31B2CC8A9D92A3CEF933685B/Valitut_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E21C221C31B2CC8A9D92A3CEF933685B/Valitut_16_",
                "en": "http://www.malmitalo.fi/en/events/event/E21C221C31B2CC8A9D92A3CEF933685B/Valitut_16_"
            },
            "provider": null,
            "description": {
                "fi": "<p>1930-luvulle sijoittuva elokuva kertoo aiemmin vaietun tarinan yhdestä uskonlahkosta ja ihmisistä, jotka se ajoi joukkohurmoksen kautta tuhon partaalle.</p><p>Elokuvassa kiehtovan Korpela-liikkeen huumaama Teodor (Jakob Öhrman) alkaa saada näkyjä jumalalta, ja vaikka Teodorin puoliso Rakel (Jessica Grabowsky) on vankka kristitty itsekin, ei hänen uskonsa taivu yhtä pitkälle.</p><p>Kun kyläyhteisö Rakelin ympärillä vakuuttuu Teodorin näyistä ja tämä ottaa liikkeen johtajan aseman, on Rakelin valittava puolensa. Mitä uhrauksia Rakel on valmis tekemään perheensä hyväksi, ja miten välttää kohtalokkaat seuraukset vallan sumentaessa lopullisesti Teodorin mielen?</p><p>Rotterdamin elokuvajuhlien Big Screen -kilpasarjan voittajaelokuva.</p><p>Ikäraja: 16<br>Kesto: 110 min.<br>Ensi-ilta: 21.03.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "1930-luvulle sijoittuva elokuva kertoo aiemmin vaietun tarinan yhdestä uskonlahkosta ja ihmisistä, jotka se ajoi joukkohurmoksen kautta tuhon partaalle."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Valitut (16) – Kino Helios",
                "sv": "Valitut (16) – Kino Helios",
                "en": "Valitut (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65761/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65763",
            "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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-kovia-totuuksia-3857786/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kovia-totuuksia-3857786/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kovia-totuuksia-3857786/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 368278,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T09:14:46.812176Z",
                    "last_modified_time": "2025-03-19T09:14:46.812192Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759041.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/368278/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T09:14:46.785030Z",
            "last_modified_time": "2025-03-28T11:13:45.283310Z",
            "date_published": null,
            "start_time": "2025-03-28T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1EC6B841DEE59B35A85A51BC92B30BE4/Kovia_totuuksia_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1EC6B841DEE59B35A85A51BC92B30BE4/Kovia_totuuksia_7_",
                "en": "http://www.malmitalo.fi/en/events/event/1EC6B841DEE59B35A85A51BC92B30BE4/Kovia_totuuksia_7_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian.</p><p>Lontoon laidalle sijoittuva elokuva kertoo kahdesta kovin erilaisesta siskoksesta.</p><p>Pääosassa nähdään Marianne Jean-Baptiste (tuttu Salaisuuksia ja valheita –elokuvasta). Särmikäs Pansy kokee koko maailman olevan häntä vastaan. Päätä särkee, kaikenlaiset paikat tuntuvat uhkaavilta ja mikä tahansa aiheuttaa ainakin allergisia reaktioita.</p><p>Pansyn rakastava puoliso Curtley ja heidän poikansa Moses elävät Pansyn alituisten moitteiden ristitulessa. Pansyn nauravainen vastakohta, pikkusisko Chantelle (Michelle Austin) pitää suosittua kampaamoa ja iloitsee perhe-elämästä aikuisten tyttäriensä kanssa. Äitienpäivä lähenee, perhe haluaa järjestää yhteiset juhlat – mutta siskosten erilaisuus aiheuttaa melkoista hankausta.</p><p>Ikäraja: 7<br>Kesto: 96 min.<br>Ensi-ilta: 21.03.2025<br>Tekstitys: suomi ja ruotsi</p>"
            },
            "short_description": {
                "fi": "Ainutlaatuinen brittiohjaaja Mike Leigh luo jälleen elämänmakuisen tragikomedian."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kovia totuuksia (7) – Kino Helios",
                "sv": "Kovia totuuksia (7) – Kino Helios",
                "en": "Kovia totuuksia (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65763/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65760",
            "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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-valitut-3857699/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-valitut-3857699/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-valitut-3857699/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 368277,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T09:14:46.626463Z",
                    "last_modified_time": "2025-03-19T09:14:46.626481Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759040.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/368277/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T09:14:46.596947Z",
            "last_modified_time": "2025-03-28T11:13:45.150069Z",
            "date_published": null,
            "start_time": "2025-03-28T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DD43DD52337E9879A2AD6B583C9FC1E2/Valitut_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/DD43DD52337E9879A2AD6B583C9FC1E2/Valitut_16_",
                "en": "http://www.malmitalo.fi/en/events/event/DD43DD52337E9879A2AD6B583C9FC1E2/Valitut_16_"
            },
            "provider": null,
            "description": {
                "fi": "<p>1930-luvulle sijoittuva elokuva kertoo aiemmin vaietun tarinan yhdestä uskonlahkosta ja ihmisistä, jotka se ajoi joukkohurmoksen kautta tuhon partaalle.</p><p>Elokuvassa kiehtovan Korpela-liikkeen huumaama Teodor (Jakob Öhrman) alkaa saada näkyjä jumalalta, ja vaikka Teodorin puoliso Rakel (Jessica Grabowsky) on vankka kristitty itsekin, ei hänen uskonsa taivu yhtä pitkälle.</p><p>Kun kyläyhteisö Rakelin ympärillä vakuuttuu Teodorin näyistä ja tämä ottaa liikkeen johtajan aseman, on Rakelin valittava puolensa. Mitä uhrauksia Rakel on valmis tekemään perheensä hyväksi, ja miten välttää kohtalokkaat seuraukset vallan sumentaessa lopullisesti Teodorin mielen?</p><p>Rotterdamin elokuvajuhlien Big Screen -kilpasarjan voittajaelokuva.</p><p>Ikäraja: 16<br>Kesto: 110 min.<br>Ensi-ilta: 21.03.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "1930-luvulle sijoittuva elokuva kertoo aiemmin vaietun tarinan yhdestä uskonlahkosta ja ihmisistä, jotka se ajoi joukkohurmoksen kautta tuhon partaalle."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Valitut (16) – Kino Helios",
                "sv": "Valitut (16) – Kino Helios",
                "en": "Valitut (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65760/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64829",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-19422535/",
                        "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-19422535/",
                        "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-malmitalo-19422535/"
                    },
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153549,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-27T15:13:57.292089Z",
                    "last_modified_time": "2024-12-27T15:13:57.292104Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760391.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153549/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-27T15:13:57.264821Z",
            "last_modified_time": "2025-03-21T11:14:01.627320Z",
            "date_published": null,
            "start_time": "2025-03-26T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/57CCB6603CA8D0B90C0D6290DB2643D6/LOPPUUNMYYTY_Mr_Breathless_Esa_Pulliainen",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/57CCB6603CA8D0B90C0D6290DB2643D6/SLUTSALD_Mr_Breathless_Esa_Pulliainen",
                "en": "http://www.malmitalo.fi/en/events/event/57CCB6603CA8D0B90C0D6290DB2643D6/SOLD_OUT_Mr_Breathless_Esa_Pulliainen"
            },
            "provider": null,
            "description": {
                "fi": "<p>Mr. Breathless, tuo rock'n'roll-pianon villimies, palaa Malmitalolle tuoden mukanaan energisen Jerry Lee Lewisin hengessä tehdyn show'nsa. Vierailevana tähtenä Esa Pulliainen!</p><p>Malmitalolla juhlittiin vuonna 2024 Mr. Breathlessin 35-vuotista taiteilijauraa. Yli 3000 keikkaa tehnyt ja 12 albumia julkaissut artisti ei ole hidastanut tahtia — päinvastoin! Esa Pulliainen ja Mr. Breathless jatkoivat yli 20 vuotta kestänyttä yhteistyötään julkaisemalla \"Happy Rokkenroll vol. 2\" -albumin vuonna 2023.</p><p>Vuonna 2024 Mr. Breathless julkaisi uuden EP:n \"Rock and Roll Piano Man\" ja singlen \"Palauta Mun Peruukki\", jotka enteilevät uutta albumia vuodelle 2025.</p><p>Illan aikana kuullaan taattua EP&Mrb-laatua!</p><p>Rock'n'roll, country, blues ja piano saavat Mr. Breathlessin tyylikkään käsittelyn Malmitalolla hänen oman bändinsä säestämänä. Keikka-arvioiden perusteella mies on bändeineen kovemmassa vedossa kuin koskaan!</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>",
                "sv": "<p>Mr. Breathless, rock’n’roll-pianots vilde man, återvänder till Malms kulturhus med sin show som gjorts i den energiska Jerry Lee Lewis anda.</p><p>År 2024 firades Mr. Breathless 35-åriga konstnärskarriär på Malms kulturhus.  Artisten som har gjort över 3 000 spelningar och släppt 12 album har inte saktat ner takten – tvärtom! Esa Pulliainen och Mr. Breathless fortsätter sitt över 20-åriga samarbete genom att släppa albumet “Happy Rokkenroll vol. 2” år 2023.</p><p>År 2024 släppte Mr. Breathless den nya EP:n “Rock and Roll Piano Man” och singeln “Palauta Mun Peruukki”, vilka förebådade ett nytt album år 2025.</p><p>Rock'n'roll, country, blues och piano får Mr. Breathless stiliga hantering på Malms kulturhus till ackompanjemang av hans eget band.  Att döma av recensionerna är mannen och bandet i bättre form än någonsin!</p><p>Längd: 1 h 45 min., inklusive en paus på 20 minuter</p>",
                "en": "<p>Mr. Breathless, the wild man of rock and roll piano, returns to Malmitalo with an energetic show in the spirit of Jerry Lee Lewis.</p><p>In 2024, Mr.  Breathless celebrated 35 years as an artist at Malmitalo. Having played over 3000 shows and released 12 albums, the artist hasn’t slowed down a bit – quite the opposite! Esa Pulliainen and Mr.  Breathless continued their collaboration of over 20 years with the release of the Happy Rokkenroll vol.  2 album in 2023.</p><p>In 2024, Mr.  Breathless released a new EP, Rock and Roll Piano Man, and the single “Palauta Mun Peruukki”, signalling a new album for 2025.</p><p>Rock and roll, country, blues and piano get a stylish treatment from Mr.  Breathless at Malmitalo, where he will be accompanied by his band. Judging by the reviews of the shows, he and his band are going as strong as ever!</p><p>Duration: 1 h 45 min, incl. 20 min intermission</p>"
            },
            "short_description": {
                "fi": "Mr. Breathless, tuo rock'n'roll-pianon villimies, palaa Malmitalolle tuoden mukanaan energisen Jerry Lee Lewisin hengessä tehdyn show'nsa. Vierailevana tähtenä Esa Pulliainen!",
                "sv": "Mr. Breathless, rock’n’roll-pianots vilde man, återvänder till Malms kulturhus med sin show som gjorts i den energiska Jerry Lee Lewis anda.",
                "en": "Mr. Breathless, the wild man of rock and roll piano, returns to Malmitalo with an energetic show in the spirit of Jerry Lee Lewis."
            },
            "location_extra_info": null,
            "name": {
                "fi": "LOPPUUNMYYTY Mr. Breathless & Esa Pulliainen – Roots-musiikin evoluutio vol. 9",
                "sv": "SLUTSÅLD Mr. Breathless & Esa Pulliainen – Rootsmusikens evolution vol. 9",
                "en": "SOLD OUT Mr. Breathless & Esa Pulliainen – Evolution of Roots Music, Vol. 9"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64829/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64866",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/koiton-laulu/",
                        "sv": "https://www.lippu.fi/artist/koiton-laulu/",
                        "en": "https://www.lippu.fi/artist/koiton-laulu/"
                    },
                    "price": {
                        "fi": "24,80 € / 19,80 € / 17,80 €",
                        "sv": "24,80 € / 19,80 € / 17,80 €",
                        "en": "24,80 € / 19,80 € / 17,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 243205,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-19T12:14:29.016888Z",
                    "last_modified_time": "2025-02-19T12:14:29.016903Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760587.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/243205/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-19T12:14:28.987572Z",
            "last_modified_time": "2025-03-21T10:15:50.846249Z",
            "date_published": null,
            "start_time": "2025-05-27T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3CD859F4F3FFB1A23B27373A5EE53085/Mina_Laulan_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3CD859F4F3FFB1A23B27373A5EE53085/Mina_Laulan_",
                "en": "http://www.malmitalo.fi/en/events/event/3CD859F4F3FFB1A23B27373A5EE53085/Mina_Laulan_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Koiton Laulun yli 40 laulajaa tuo Malmitalon lavalle konsertin, jossa kantaaottava kuoromusiikki kohtaa nykykansanmusiikin, johtajana Petri Tiainen.</p><p>Uuden musiikin luomisen edistäminen ja sen esittäminen on Koiton Laululle kunnia-asia. Suuri osa esitettävistä teoksista on sävelletty kuorolle. Sävellyksissä on kriittisiä ja koskettavia sanoituksia. Tomi Kontio tuodaan Aulikki Oksasen rinnalle. Kaj Chydeniuksen klassikot saavat uusia kuorosovituksia.</p><p>Valmiiden vastausten sijaan esitetään kysymyksiä ja uskalletaan olla ymmällä, vaikkapa ilmastonmuutoksen edessä. Kuoroa johtaa Petri Tiainen, monipuolinen muusikko ja teatterimusiikin ammattilainen.</p><p>Kesto: 1 tunti 15 min.</p>",
                "sv": "<p>Koiton Laulus över 40 sångare bjuder på en konsert på Malms kulturhus scen, där körmusik som tar ställning möter modern folkmusik. Konserten leds av Petri Tiainen.</p><p>Att främja skapandet av ny musik och framföra musiken är en hederssak för Koiton Laulu. Största delen av de verk som framförs är skrivna för kör. Sångerna har kritiska och berörande texter. Tomi Kontio lyfts fram vid sidan av Aulikki Oksanen. Kaj Chydenius klassiker får nya körarrangemang. I stället för färdiga svar ställs frågor, och man vågar vara villrådig, exempelvis inför klimatförändringen. Kören leds av Petri Tiainen, en mångsidig musiker och yrkesperson inom teatermusik.</p><p>Längd: 1h 15min</p>",
                "en": "<p>The more than 40 Koiton Laulu singers conducted by Petri Tiainen will perform a concert where critical choir music meets contemporary folk music on the Malmitalo stage.</p><p>Promoting the creation of new music and performing new music is close to the heart of Koiton Laulu. Many of the pieces they perform have been composed for the choir. The compositions have critical and touching lyrics. Tomi Kontio is highlighted alongside Aulikki Oksanen and new choir arrangements of Kaj Chydenius’s classics are brought to the stage. Instead of providing answers, the performances ask questions and do not shy away from bewilderment when it comes to climate change, for example. The choir is conducted by Petri Tiainen, a versatile musician and theatre music professional.</p><p>Duration: 1h 15 min</p>"
            },
            "short_description": {
                "fi": "Koiton Laulun yli 40 laulajaa tuo Malmitalon lavalle konsertin, jossa kantaaottava kuoromusiikki kohtaa nykykansanmusiikin, johtajana Petri Tiainen.",
                "sv": "Koiton Laulus över 40 sångare bjuder på en konsert på Malms kulturhus scen, där körmusik som tar ställning möter modern folkmusik. Konserten leds av Petri Tiainen.",
                "en": "The more than 40 Koiton Laulu singers conducted by Petri Tiainen will perform a concert where critical choir music meets contemporary folk music on the Malmitalo stage."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Minä Laulan! – Koiton Laulun konsertti",
                "sv": "Minä Laulan! – Koiton Laulus konsert",
                "en": "Minä Laulan! – Koiton Laulu concert"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64866/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65594",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 210450,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-10T07:14:48.510740Z",
                    "last_modified_time": "2025-02-10T07:14:48.510757Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765462.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/210450/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-10T07:14:48.460999Z",
            "last_modified_time": "2025-03-21T10:15:43.482709Z",
            "date_published": null,
            "start_time": "2025-04-24T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2175D3CDCD480CD9BC6A0AC5AD00AFA8/Kuka_mua_vois_rakastaa_Nella_sings_Ella",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2175D3CDCD480CD9BC6A0AC5AD00AFA8/Kuka_mua_vois_rakastaa_Nella_sings_Ella",
                "en": "http://www.malmitalo.fi/en/events/event/2175D3CDCD480CD9BC6A0AC5AD00AFA8/Kuka_mua_vois_rakastaa_Nella_sings_Ella"
            },
            "provider": null,
            "description": {
                "fi": "<p>Pop & Jazz Konservatorion ammattiopiskelijat esittävät Malmitalossa pienoismusikaalin sekä jazz-konsertin, jossa kuullaan Ella Fitzgeraldin musiikkia.</p><p><b>Kuka mua vois rakastaa?\" (Musikaaliprojekti)</b><br>Lukioaikoina toisiinsa ihastuneet Emma (Venla Malinen) ja Sophie (Meri Hellsten) kohtaavat yllättäen jazzbaarissa, jossa vuosien takaiset tunteet pulpahtavat tanssin pyörteissä jälleen pintaan. Menneisyyden pettymykset ja kimurantit suhdekuviot repivät Emmaa ja Sophieta eri suuntiin, saaden kaksikon miettimään mitä he oikeasti haluavat. Voittaako rohkeus epävarmuuden, ja löytävätkö Emma ja Sophie taas toisensa?</p><p>”Kuka mua vois rakastaa” on pienoismusikaali, joka käsittelee kahden päähenkilön kautta riittämättömyyden ja ulkopuolisuuden tunteita. Mukana lavalla on yli 20-henkinen orkesteri säestämässä tunnettuja musikaalikappaleita, jotka sitovat tarinan yhteen. Helsingin Pop&Jazz konservatorion opiskelijoiden suunnittelema, käsikirjoittama ja ohjaama teos nostaa esiin mm. seksuaalivähemmistöjen syrjinnän, epävarmuuden sekä yksinäisyyden teemoja, ja muistuttaa, että jokainen meistä pohjimmiltaan toivoo olevansa rakastettu juuri sellaisena kuin on.</p><p>Meri Hellsten - laulu<br>Venla Malinen - laulu<br>Onni Koivisto - rummut<br>Sofía Kaipainen - basso ja laulu<br>Aukusti Koskinen - kitara<br>Kim Jalonen - kitara<br>Helmi Ketola - koskettimet<br>Pessi Heiskanen - koskettimet ja ensemble<br>Joel Mäntyvaara - perkussiot<br>Olavi Miettinen - ensemble<br>Hanna Riikonen - ensemble<br>Aino Kallio - ensemble<br>Hanna Mikkanen - ensemble<br>Tuuli Piltonen - ensemble<br>Siiri Toiviainen - saksofoni<br>Jenna Mikkanen - trumpetti<br>Veera Aliska - pasuuna<br>Anniina Tuomaala - huilu<br>Elisa Wang - viulu<br>Felix Sorainen - viulu<br>Elena Rusakova - alttoviulu<br>Nicola Wilkman - sello</p><p><b>Nella sings Ella (jazz)</b><br>\"Nella sings Ella' on tribuuttikonsertti legendaariselle jazzlaulajalle Ella Fitzgeraldille.</p><p>Ellan uskomaton tulkinta, monipuolisuus, improvisaatio, ja lempeys tekemisessään kosketti, ja koskettaa sydämiä vielä tänäkin päivänä.</p><p>'Puhun usein siitä, kuinka onnekas olen, että Ella on yksi suurimmista esikuvistani. Hän on laulaja, jota saan ihailla kaikin puolin onnella ja ylpeydellä, enkä parempaa esikuvaa osaisi toivoakaan.' - Nella</p><p>Tämä konsertti on kunnianosoitus niin Ella Fitzgeraldin unohtumattomalle musiikilliselle perinnölleen, kuin myös hänen sydämelliselle ja ainutlaatuiselle itselleen.\"</p><p>Nella Voutilainen - Laulu<br>Elvis Rahka - Piano<br>Olavi Miettinen - Basso<br>Jerry Uusi-Mikkola - Kitara<br>Timo Tihtonen - Rummut<br>Joel Mäntyvaara - Perkussiot<br>Lume Himanen - Huilu / Tenorisaksofoni<br>Bongsu Jeong  - Alttosaksofoni<br>Joonia Marttio - Tenorisaksofoni<br>Waltteri Hirvonen - Baritonisaksofoni<br>Rebecca Ekman - Trumpetti<br>Veera Aliska - Pasuuna<br>Pessi Heiskanen - Laulu</p><p><b>Aikataulu:</b><br>19.00 \"Kuka mua vois rakastaa?\" (Musikaaliprojekti)<br>20.00 \"Nella sings Ella\" (jazz)</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p><p>Vapaa pääsy</p>",
                "sv": "<p>Pop & Jazz Konservatorios yrkesstuderande framför en minimusikal på Malms kulturhus, och därefter får vi höra en jazzhyllning till Ella Fitzgerald.</p><p><b>Kuka mua vois rakastaa? (Musikalprojekt)</b><br>Emma (Venla Malinen) och Sophie (Meri Hellsten), som varit förälskade i varandra under gymnasietiden, träffas oväntat på en jazzbar och de gamla känslorna kommer åter upp till ytan i dansens virvlar. Tidigare besvikelser och knepiga relationer drar Emma och Sophie åt olika håll och får dem att fundera på vad de egentligen vill. Vinner modet över osäkerheten, och hittar Emma och Sophie tillbaka till varandra?</p><p>”Kuka mua vois rakastaa” är en minimusikal som genom de två huvudpersonerna tar upp känslor av otillräcklighet och utanförskap. Med på scenen finns en över 20-hövdad orkester som ackompanjerar med kända låtar, som knyter ihop berättelsen. Verket, som planerats, skrivits och regisserats av studerande vid Helsingin Pop&Jazz konservatorio, lyfter fram teman som diskriminering av sexuella minoriteter, osäkerhet och ensamhet, och påminner om att vi alla i grunden vill bli älskade som vi är.</p><p>Meri Hellsten - sång<br>Venla Malinen - sång<br>Onni Koivisto - trummor<br>Sofía Kaipainen - bas och sång<br>Aukusti Koskinen - gitarr<br>Kim Jalonen - gitarr<br>Helmi Ketola - klaviatur<br>Pessi Heiskanen - klaviatur och ensemble<br>Joel Mäntyvaara - percussion<br>Olavi Miettinen - ensemble<br>Hanna Riikonen - ensemble<br>Aino Kallio - ensemble<br>Hanna Mikkanen - ensemble<br>Tuuli Piltonen - ensemble<br>Siiri Toiviainen - saxofon<br>Jenna Mikkanen - trumpet<br>Veera Aliska - basun<br>Anniina Tuomaala - flöjt<br>Elisa Wang - violin<br>Felix Sorainen - violin<br>Elena Rusakova - altviolin<br>Nicola Wilkman - cello</p><p><b>Nella sings Ella (jazz)</b><br>”Nella sings Ella” är en hyllningskonsert till den legendariska jazzsångerskan Ella Fitzgerald.</p><p>Ellas otroliga tolkningar, mångsidighet, improvisation och mildhet i det hon gjorde berörde och berör hjärtan än i dag.</p><p>’Jag talar ofta om vilken tur jag har då Ella är en av mina största förebilder. Hon är en sångerska som jag helt och hållet får beundra med glädje och stolthet, och jag skulle inte kunna önska mig en bättre förebild.’ – Nella</p><p>Den här konserten är en hyllning till Ella Fitzgeralds oförglömliga musikaliska arv, men även till hennes hjärtliga och unika personlighet.”</p><p>Nella Voutilainen - Sång<br>Elvis Rahka - Piano<br>Olavi Miettinen - Bas<br>Jerry Uusi-Mikkola - Gitarr<br>Timo Tihtonen - Trummor<br>Joel Mäntyvaara - Percussion<br>Lume Himanen - Flöjt / Tenorsaxofon<br>Bongsu Jeong - Altsaxofon<br>Joonia Marttio - Tenorsaxofon<br>Waltteri Hirvonen - Barytonsaxofon<br>Rebecca Ekman - Trumpet<br>Veera Aliska - Basun<br>Pessi Heiskanen - Sång</p><p>Tidtabell:<br>19.00 \"Kuka mua vois rakastaa?\" (Musikalprojektti)<br>20.00 \"Nella sings Ella\" (jazz)</p><p>Längd: 2 timmar inkl. paus 20 minuter</p><p>Fritt inträde!</p>",
                "en": "<p>Vocational students from the Pop & Jazz Conservatory perform a minimusical in Malmitalo, after which they will perform a jazz tribute to Ella Fitzgerald.</p><p><b>Kuka mua vois rakastaa?\" (musical project)</b><br>Emma (Venla Malinen) and Sophie (Meri Hellsten) fell in love in general upper secondary school and now have a chance meeting at a jazz bar, where their long-forgotten feelings come up for air as they dance. The disappointments and complex interpersonal relationships of the past pull Emma and Sophie in different directions, making them think about what they really want. Will courage overcome insecurity, and will Emma and Sophie find each other again?</p><p>‘Kuka mua vois rakastaa’ (‘who could love me?’) is a minimusical addressing feelings of inadequacy and otherness through its two protagonists. They are joined on stage by a 20-piece orchestra accompanying beloved musical pieces that bring the story together. The work, designed, written and directed by students of the Pop & Jazz Conservatory, highlights themes of discrimination experienced by sexual minorities, uncertainty and loneliness, and reminds us that, at heart, each of us wants to be loved for who we are.</p><p>Meri Hellsten – vocals<br>Venla Malinen – vocals<br>Onni Koivisto – drums<br>Sofía Kaipainen – bass and vocals<br>Aukusti Koskinen – guitar<br>Kim Jalonen – guitar<br>Helmi Ketola – keyboard<br>Pessi Heiskanen – keyboard and ensemble<br>Joel Mäntyvaara – percussion<br>Olavi Miettinen – ensemble<br>Hanna Riikonen – ensemble<br>Aino Kallio – ensemble<br>Hanna Mikkanen – ensemble<br>Tuuli Piltonen – ensemble<br>Siiri Toiviainen – saxophone<br>Jenna Mikkanen – trumpet<br>Veera Aliska – trombone<br>Anniina Tuomaala – flute<br>Elisa Wang – violin<br>Felix Sorainen – violin<br>Elena Rusakova – viola<br>Nicola Wilkman – cello</p><p><b>Nella sings Ella (jazz)</b><br>‘Nella sings Ella' is a tribute concert to the legendary jazz singer Ella Fitzgerald.</p><p>Ella’s incredible interpretation, versatility, improvisation skills and gentleness in her art touched and touches hearts to this day.</p><p>“I often talk about how lucky I am to have Ella as one of my biggest inspirations. She is a singer that I am happy and proud to admire in every aspect, and I could not hope for a better role model.” – Nella</p><p>This concert is a homage to both Ella Fitzgerald’s unforgettable musical legacy and the warm and unique person she was.</p><p>Nella Voutilainen – vocals<br>Elvis Rahka – piano<br>Olavi Miettinen – bass<br>Jerry Uusi-Mikkola – guitar<br>Timo Tihtonen – drums<br>Joel Mäntyvaara – percussion<br>Lume Himanen – flute / tenor saxophone<br>Bongsu Jeong – alto saxophone<br>Joonia Marttio – tenor saxophone<br>Waltteri Hirvonen – baritone saxophone<br>Rebecca Ekman – trumpet<br>Veera Aliska – trombone<br>Pessi Heiskanen – vocals</p><p><b>Schedule:</b><br>19.00 ‘Kuka mua vois rakastaa?’ (musical project)<br>20.00 ‘Nella sings Ella’ (jazz)</p><p>Duration: 2 hours, incl. 20 min intermission</p><p>Free entry!</p>"
            },
            "short_description": {
                "fi": "Pop & Jazz Konservatorion ammattiopiskelijat esittävät Malmitalossa pienoismusikaalin sekä jazz-konsertin, jossa kuullaan Ella Fitzgeraldin musiikkia.",
                "sv": "Pop & Jazz Konservatorios yrkesstuderande framför en minimusikal på Malms kulturhus, och därefter får vi höra en jazzhyllning till Ella Fitzgerald.",
                "en": "Vocational students from the Pop & Jazz Conservatory perform a minimusical in Malmitalo, after which they will perform a jazz tribute to Ella Fitzgerald."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kuka mua vois rakastaa? + Nella sings Ella – Pop & Jazz Konservatorion ammattiopiskelijoiden konsertit",
                "sv": "Kuka mua vois rakastaa? + Nella sings Ella – Pop & Jazz Konservatorios yrkesstuderandes konserter",
                "en": "Kuka mua vois rakastaa? + Nella sings Ella – Pop & Jazz Conservatory vocational students’ concert"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65594/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65800",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 369734,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T15:15:03.117620Z",
                    "last_modified_time": "2025-03-19T15:15:03.117635Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766459.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/369734/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T15:15:03.067943Z",
            "last_modified_time": "2025-03-19T15:15:03.200781Z",
            "date_published": null,
            "start_time": "2025-06-05",
            "end_time": "2025-08-21",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E8E9DD71A7FDDB92FED7FE3AD3D08880/Puistojumppaa_ja_kehonhuoltoa_Ala-Malmin_puistossa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E8E9DD71A7FDDB92FED7FE3AD3D08880/Parkgymnastik_och_kroppsvard_i_Nedre_Malms_park",
                "en": "http://www.malmitalo.fi/en/events/event/E8E9DD71A7FDDB92FED7FE3AD3D08880/Park_exercise_and_body_care_at_Ala-Malmi_Park"
            },
            "provider": null,
            "description": {
                "fi": "<p>Puistojumppaa ja kehonhuoltoa Ala-Malmin puistossa kesällä 2025! Tiistaisin kehonhuolto klo 15–15.50, torstaisin puistojumppa klo 17–17.50. Vapaa pääsy.</p><p><b>Puistojumpan kuvaus:</b><br>Puistojumpat pitävät sisällään alkulämmittelyn, askellusta, lihaskuntoa sekä loppuvenyttelyt. Jokainen voi osallistua jumppaan oman kuntonsa mukaan. Puistojumpassa saatetaan liikkua eri tasoissa, kuten esimerkiksi seisten, polvien päällä ja maassa. Ota oma jumppa-alusta mukaan. Puistojumppia ei järjestetä sateella.</p><p><b>Kehonhuoltotunnin kuvaus:</b><br>Kevyen alkulämmittelyn jälkeen huolletaan kehoa pehmeän liikkeen avulla. Tunnilla vähennetään lihaskireyksiä, avataan liikeratoja, parannetaan nivelliikkuvuutta ja rentoutetaan kehoa. <br>Tunnille kannattaa ottaa oma jumppa-alusta mukaan. Kehonhuoltoa ei järjestetä sateella.</p><p><b>Aikataulut</b><br>ti 3.6. klo 15–15.50 kehonhuolto<br>to 5.6. klo 17–17.50 puistojumppa<br>ti 10.6. klo 15–15.50 kehonhuolto<br>ti 17.6. klo 15–15.50 kehonhuolto<br>to 19.6. klo 17–17.50 puistojumppa<br>ti 24.6. klo 15–15.50 kehonhuolto<br>to 26.6. klo 17–17.50 puistojumppa</p><p>ti 19.8. klo 15–15.50 kehonhuolto<br>to 21.8. klo 17–17.50 puistojumppa</p><p>Huom! Puistojumppaa ja kehonhuoltoa ei järjestetä heinäkuussa 2025.</p>",
                "sv": "<p>Parkgympa och kroppsvård i Nedre Malms park i sommaren 2025! Tisdagar kroppsvård kl. 15–15.50, torsdagar parkgympa kl. 17–17.50. Fritt inträde.</p><p>Parkgymnastiken innefattar uppvärmning, step up, muskelträning och stretching. Alla kan delta i gymppan enligt sin kondition. I parkgymppan kan vi röra oss i olika nivåer, exempelvis stå upp, stå på knäna och ligga på marken. Det är bra att ta med en egen gympamatta till parkgymppan. Parkgympan ordnas inte vid regn.</p><p>På den avslappnande kroppsvårdstimmen vårdar vi kroppen med hjälp av mjuka rörelser. På timmen lättar vi muskelspänningar, öppnar rörelsebanor, förbättrar ledernas rörlighet och slappnar av kroppen. Det är bra att ta med en egen gympamatta till timmen. Kroppsvård ordnas inte vid regn.</p><p><b>Schema</b><br>ti 3.6 kl. 15–15.50 kroppsvård<br>to 5.6 kl. 17–17.50 parkgympa<br>ti 10.6 kl. 15–15.50 kroppsvård<br>ti 17.6 kl. 15–15.50 kroppsvård<br>to 19.6 kl. 17–17.50 parkgympa<br>ti 24.6 kl. 15–15.50 kroppsvård<br>to 26.6 kl. 17–17.50 parkgympa</p><p>ti 19.8 kl. 15–15.50 kroppsvård<br>to 21.8 kl. 17–17.50 parkgympa</p><p>Obs! I juli ordnas ingen gympa eller inga kroppsvårdstimmar.</p>",
                "en": "<p>Park exercise and body care in Ala-Malmi Park in summer 2025! Tuesdays body care 3:00–3:50 PM, Thursdays park exercise 5:00–5:50 PM. Free entry!</p><p>Park exercise sessions include a warm-up, steps, muscular fitness and a final stretching. Everyone can join these sessions to the degree of their own fitness. Park exercise may include movements on different levels, such as standing, on your knees or on the ground. It is a good idea to bring your own exercise mat to the park exercise sessions. Park exercise sessions will not be held if it rains.</p><p>Relaxing body care sessions are about soft movements that take care of your body. These sessions are for smoothing out the kinks of your body, opening up your range of movement, limbering up your joints and relaxing your body. We recommend bringing your own exercise mat. Body care sessions will not be held if it rains.</p><p><b>Schedule</b><br>Tue 3.6 3:00–3:50 PM body care<br>Thu 5.6 5:00–5:50 PM park exercise<br>Tue 10.6 3:00–3:50 PM body care<br>Tue 17.6 3:00–3:50 PM body care<br>Thu 19.6 5:00–5:50 PM park exercise<br>Tue 24.6 3:00–3:50 PM body care<br>Thu 26.6 5:00–5:50 PM park exercise</p><p>Tue 19.8 3:00–3:50 PM body care<br>Thu 21.8 5:00–5:50 PM park exercise</p><p>Please note: Neither the park exercise nor the body care sessions will be held in July.</p>"
            },
            "short_description": {
                "fi": "Puistojumppaa ja kehonhuoltoa Ala-Malmin puistossa kesällä 2025! Tiistaisin kehonhuolto klo 15–15.50, torstaisin puistojumppa klo 17–17.50. Vapaa pääsy.",
                "sv": "Parkgympa och kroppsvård i Nedre Malms park i sommaren 2025! Tisdagar kroppsvård kl. 15–15.50, torsdagar parkgympa kl. 17–17.50. Fritt inträde.",
                "en": "Park exercise and body care in Ala-Malmi Park in summer 2025! Tuesdays body care 3:00–3:50 PM, Thursdays park exercise 5:00–5:50 PM. Free entry!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Puistojumppaa ja kehonhuoltoa Ala-Malmin puistossa – Malmin tapahtumakesä",
                "sv": "Parkgymnastik och kroppsvård i Nedre Malms park – Malms evenemangssommar",
                "en": "Park exercise and body care at Ala-Malmi Park – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65800/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65790",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 369003,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T12:14:55.045767Z",
                    "last_modified_time": "2025-03-19T12:14:55.045784Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767451.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/369003/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T12:14:55.010256Z",
            "last_modified_time": "2025-03-19T13:14:44.304799Z",
            "date_published": null,
            "start_time": "2025-04-10T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D56B7F333BC243618D68778A06615285/Koilliskuoro_ja_Pikomalan_Laulajat",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D56B7F333BC243618D68778A06615285/Koilliskuoro_ja_Pikomalan_Laulajat",
                "en": "http://www.malmitalo.fi/en/events/event/D56B7F333BC243618D68778A06615285/Koilliskuoro_ja_Pikomalan_Laulajat"
            },
            "provider": null,
            "description": {
                "fi": "<p>Esiintymässä ovat talon oma Koilliskuoro ja kuorojohtaja Emma Kuntsin Pikomalan Laulajat Kanneltalolta.</p><p>Neljättä kertaa järjestettävä Kuorofestarit kokoaa yhteen työväenopiston kuorot ja lauluyhtyeet. Viikon aikana kuullaan monipuolinen kattaus kuoromusiikkia useammassa eri sijainnissa, myös Malmitalossa.</p><p>Lisätietoa kuorofestareiden konserteista löydät<br><u><a href=\"https://ilmonet.fi/course/H251334\">Kuorofestareiden sivuilta</a></u></p><p>Vapaa pääsy!</p>"
            },
            "short_description": {
                "fi": "Esiintymässä ovat talon oma Koilliskuoro ja kuorojohtaja Emma Kuntsin Pikomalan Laulajat Kanneltalolta."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Koilliskuoro ja Pikomalan Laulajat – Kuorofestarit",
                "sv": "Koilliskuoro ja Pikomalan Laulajat",
                "en": "Koilliskuoro ja Pikomalan Laulajat"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65790/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65796",
            "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:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 369253,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T13:14:38.398480Z",
                    "last_modified_time": "2025-03-19T13:14:38.398496Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767514.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/369253/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T13:14:38.348313Z",
            "last_modified_time": "2025-03-19T13:14:38.477648Z",
            "date_published": null,
            "start_time": "2025-03-25T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F028500D56C6E004F2BFC9325D973A90/Asukastalojen_puolesta_-verkoston_perinteinen_vaalipaneeli",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F028500D56C6E004F2BFC9325D973A90/Asukastalojen_puolesta_-verkoston_perinteinen_vaalipaneeli",
                "en": "http://www.malmitalo.fi/en/events/event/F028500D56C6E004F2BFC9325D973A90/Asukastalojen_puolesta_-verkoston_perinteinen_vaalipaneeli"
            },
            "provider": null,
            "description": {
                "fi": "<p>On aika tehdä valintoja, jotka koskevat meitä kaikkia. Mielipiteesi merkitsee.</p><p>Kahvitarjoilu alkaen klo 16 aulassa.</p><p><b>Panelistit</b><br>Sebastian Frankenhaeuser, KOK<br>Nita Austero, SDP<br>Tuomas Rantanen, Vihreät<br>Antti Kaajakari, Vasemmistoliitto<br>Terhi Peltokorpi, Keskusta<br>Jouni Jäntti, Liike Nyt<br>Heikki Ketoharju, Asukkaiden Ääni<br>Esa Korkia-aho, Perussuomalaiset<br>Kristian Wahlbeck, RKP<br> <br>Tilaisuuden juontaa Sannaleena Loukkalahti o.s. Lapinoja. <br> <br>Vapaa pääsy</p>"
            },
            "short_description": {
                "fi": "On aika tehdä valintoja, jotka koskevat meitä kaikkia. Mielipiteesi merkitsee."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Asukastalojen puolesta -verkoston perinteinen vaalipaneeli – Kuntavaalit 2025",
                "sv": "Asukastalojen puolesta -verkoston perinteinen vaalipaneeli",
                "en": "Asukastalojen puolesta -verkoston perinteinen vaalipaneeli"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65796/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65758",
            "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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-olen-yhae-taeaellae-3857671/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-olen-yhae-taeaellae-3857671/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-olen-yhae-taeaellae-3857671/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 368282,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T09:14:49.320326Z",
                    "last_modified_time": "2025-03-19T09:14:49.320339Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759049.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/368282/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T09:14:49.298840Z",
            "last_modified_time": "2025-03-19T09:14:49.384428Z",
            "date_published": null,
            "start_time": "2025-04-04T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DE78194FE128E5A941D8C5BDB75DDA18/Olen_yha_taalla_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/DE78194FE128E5A941D8C5BDB75DDA18/Olen_yha_taalla_12_",
                "en": "http://www.malmitalo.fi/en/events/event/DE78194FE128E5A941D8C5BDB75DDA18/Olen_yha_taalla_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Parhaan kansainvälisen elokuvan Oscar-voittaja!</p><p>Rio de Janeiro, 1970-luvun alkupuoli. Sotilasdiktatuuri kiristää otettaan Brasiliasta, ja poliittisia vastustajia tarkkaillaan ja vainotaan.</p><p>Entinen kongressiedustaja Rubens Paiva asuu vaimonsa Eunicen ja viiden lapsensa kanssa kauniin hiekkarannan lähellä. Eräänä päivänä sisään marssii aseistettuja miehiä, jotka vievät kuulusteltavaksi ensin perheen isän ja sitten Eunicen sekä heidän tyttärensä Elianan. Sorron julmimpia keinoja vastarinnan nujertamiseksi ovat perheitä ja mieliä rikkovat ihmisten katoamiset.</p><p>Palkitun ohjaajan Walter Sallesin (Moottoripyöräpäiväkirja, Central Station) koskettava, mutta myös elämäniloinen Olen yhä täällä (Ainda Estou Aqui) on voittanut mm. parhaan käsikirjoituksen palkinnon Venetsian elokuvajuhlilla, ja perheen äitiä Eunicea esittävä Fernanda Torres on palkittu roolistaan Golden Globella.</p><p>Ikäraja: 12<br>Kesto: 136 min.<br>Ensi-ilta: 14.03.2025<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Parhaan kansainvälisen elokuvan Oscar-voittaja!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Olen yhä täällä (12) – Kino Helios",
                "sv": "Olen yhä täällä (12) – Kino Helios",
                "en": "Olen yhä täällä (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65758/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65757",
            "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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-olen-yhae-taeaellae-3857671/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-olen-yhae-taeaellae-3857671/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-olen-yhae-taeaellae-3857671/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 368279,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T09:14:47.607652Z",
                    "last_modified_time": "2025-03-19T09:14:47.607666Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759044.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/368279/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T09:14:47.579987Z",
            "last_modified_time": "2025-03-19T09:14:47.662561Z",
            "date_published": null,
            "start_time": "2025-03-29T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/40B4D758E55013D4C71AEA964C3E07B9/Olen_yha_taalla_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/40B4D758E55013D4C71AEA964C3E07B9/Olen_yha_taalla_12_",
                "en": "http://www.malmitalo.fi/en/events/event/40B4D758E55013D4C71AEA964C3E07B9/Olen_yha_taalla_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Parhaan kansainvälisen elokuvan Oscar-voittaja!</p><p>Rio de Janeiro, 1970-luvun alkupuoli. Sotilasdiktatuuri kiristää otettaan Brasiliasta, ja poliittisia vastustajia tarkkaillaan ja vainotaan.</p><p>Entinen kongressiedustaja Rubens Paiva asuu vaimonsa Eunicen ja viiden lapsensa kanssa kauniin hiekkarannan lähellä. Eräänä päivänä sisään marssii aseistettuja miehiä, jotka vievät kuulusteltavaksi ensin perheen isän ja sitten Eunicen sekä heidän tyttärensä Elianan. Sorron julmimpia keinoja vastarinnan nujertamiseksi ovat perheitä ja mieliä rikkovat ihmisten katoamiset.</p><p>Palkitun ohjaajan Walter Sallesin (Moottoripyöräpäiväkirja, Central Station) koskettava, mutta myös elämäniloinen Olen yhä täällä (Ainda Estou Aqui) on voittanut mm. parhaan käsikirjoituksen palkinnon Venetsian elokuvajuhlilla, ja perheen äitiä Eunicea esittävä Fernanda Torres on palkittu roolistaan Golden Globella.</p><p>Ikäraja: 12<br>Kesto: 136 min.<br>Ensi-ilta: 14.03.2025<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Parhaan kansainvälisen elokuvan Oscar-voittaja!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Olen yhä täällä (12) – Kino Helios",
                "sv": "Olen yhä täällä (12) – Kino Helios",
                "en": "Olen yhä täällä (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65757/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65756",
            "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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-olen-yhae-taeaellae-3857671/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-olen-yhae-taeaellae-3857671/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-olen-yhae-taeaellae-3857671/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 368276,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-19T09:14:45.676402Z",
                    "last_modified_time": "2025-03-19T09:14:45.676423Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759037.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/368276/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-19T09:14:45.622115Z",
            "last_modified_time": "2025-03-19T09:14:45.755138Z",
            "date_published": null,
            "start_time": "2025-03-26T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6E5FDB3307160336D66FD8E8ECE8DDF9/Olen_yha_taalla_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6E5FDB3307160336D66FD8E8ECE8DDF9/Olen_yha_taalla_12_",
                "en": "http://www.malmitalo.fi/en/events/event/6E5FDB3307160336D66FD8E8ECE8DDF9/Olen_yha_taalla_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Parhaan kansainvälisen elokuvan Oscar-voittaja!</p><p>Rio de Janeiro, 1970-luvun alkupuoli. Sotilasdiktatuuri kiristää otettaan Brasiliasta, ja poliittisia vastustajia tarkkaillaan ja vainotaan.</p><p>Entinen kongressiedustaja Rubens Paiva asuu vaimonsa Eunicen ja viiden lapsensa kanssa kauniin hiekkarannan lähellä. Eräänä päivänä sisään marssii aseistettuja miehiä, jotka vievät kuulusteltavaksi ensin perheen isän ja sitten Eunicen sekä heidän tyttärensä Elianan. Sorron julmimpia keinoja vastarinnan nujertamiseksi ovat perheitä ja mieliä rikkovat ihmisten katoamiset.</p><p>Palkitun ohjaajan Walter Sallesin (Moottoripyöräpäiväkirja, Central Station) koskettava, mutta myös elämäniloinen Olen yhä täällä (Ainda Estou Aqui) on voittanut mm. parhaan käsikirjoituksen palkinnon Venetsian elokuvajuhlilla, ja perheen äitiä Eunicea esittävä Fernanda Torres on palkittu roolistaan Golden Globella.</p><p>Ikäraja: 12<br>Kesto: 136 min.<br>Ensi-ilta: 14.03.2025<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Parhaan kansainvälisen elokuvan Oscar-voittaja!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Olen yhä täällä (12) – Kino Helios",
                "sv": "Olen yhä täällä (12) – Kino Helios",
                "en": "Olen yhä täällä (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65756/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65687",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 363078,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-18T11:14:49.155657Z",
                    "last_modified_time": "2025-03-18T11:14:49.155671Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766218.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/363078/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-18T11:14:49.093214Z",
            "last_modified_time": "2025-03-18T11:14:49.234058Z",
            "date_published": null,
            "start_time": "2025-03-29",
            "end_time": "2025-04-14",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1EF7EAFC2241B2EB3526BA1A382A595A/Maaret_Ahlsved_Malmin_lentokentan_taikaa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1EF7EAFC2241B2EB3526BA1A382A595A/Maaret_Ahlsved_Malms_flygplatsens_magi",
                "en": "http://www.malmitalo.fi/en/events/event/1EF7EAFC2241B2EB3526BA1A382A595A/Maaret_Ahlsved_The_Magic_of_Malmi_Airport_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Maaret Ahlsvedin upeat valokuvat kertovat koillisen Helsingin suuren luontoaarteen tarinaa.</p><p>Malmin lentokentän ja sen ympäristön kukoistava luonto näyttäytyy niissä kauneimmillaan ja lumoaa katsojan elinvoimallaan ja lajirunsaudellaan. Pääkaupungin suurin yhtenäinen niittyluonnon arvokohde ja tärkeä lintualue ovat kuin tuulahdus menneiltä ajoilta, jolloin luonnon monimuotoisuus vielä tuntui itsestään selvältä. On meidän vallassamme, voivatko tulevaisuuden helsinkiläiset ihailla Malmin lentokentän luonnon loistoa muutenkin kuin valokuvista.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Malms flygplatsens magi — Via Maaret Ahlsveds underbara fotografier får vi ta del av berättelsen om den stora naturskatten i nordöstra Helsingfors.</p><p>Den blomstrande naturen på Malms flygplats och dess omgivningar visas när den är som vackrast och hänför betraktaren med sin vitalitet och mångfald av arter. Huvudstadens största samlade ängsnaturplats och ett viktigt fågelområde är som en fläkt från det förflutna, när betydelsen av naturens mångfald fortfarande verkade självklar. Det är upp till oss om framtidens helsingforsare kan beundra Malms flygplats naturprakt på andra sätt än via fotografier.</p>",
                "en": "<p>The Magic of Malmi Airport — Maaret Ahlsved’s stunning photographs tell the tale of northeastern Helsinki’s grand nature oasis.</p><p>The nature of Malmi Airport and its blooming surroundings is displayed and enchants its viewer by its livelihood and richness in plant/animal species. The capital’s largest area of valuable meadow and an important bird sanctuary is like a peek into the past, when natural diversity felt as if it was obvious. It is our choice if future helsinkians will be able to admire the glow of Malmi Airport’s nature by means other than just photographs.</p>"
            },
            "short_description": {
                "fi": "Maaret Ahlsvedin upeat valokuvat kertovat koillisen Helsingin suuren luontoaarteen tarinaa.",
                "sv": "Malms flygplatsens magi — Via Maaret Ahlsveds underbara fotografier får vi ta del av berättelsen om den stora naturskatten i nordöstra Helsingfors.",
                "en": "The Magic of Malmi Airport — Maaret Ahlsved’s stunning photographs tell the tale of northeastern Helsinki’s grand nature oasis."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Maaret Ahlsved: Malmin lentokentän taikaa",
                "sv": "Maaret Ahlsved: Malms flygplatsens magi",
                "en": "Maaret Ahlsved: The Magic of Malmi Airport"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65687/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65755",
            "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: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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-risto-raeppaeaejae-ja-kaksoisolento-3841197/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 340913,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-14T11:14:32.369437Z",
                    "last_modified_time": "2025-03-14T11:14:32.369452Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767191.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/340913/?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": "2025-03-14T11:14:32.329413Z",
            "last_modified_time": "2025-03-14T12:14:39.522136Z",
            "date_published": null,
            "start_time": "2025-04-05T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6EB1FD9D5FFEE3B6706EDBDFFEE3F7E3/Risto_Rappaaja_ja_kaksoisolento_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6EB1FD9D5FFEE3B6706EDBDFFEE3F7E3/Risto_Rappaaja_ja_kaksoisolento_S_",
                "en": "http://www.malmitalo.fi/en/events/event/6EB1FD9D5FFEE3B6706EDBDFFEE3F7E3/Risto_Rappaaja_ja_kaksoisolento_S_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Onko kaupungissa Riston kaksoisolento?</p><p>Risto näkee kaupungilla ihan samannäköisen pojan kuin hän itse – sillä on samanlainen tukka, samanlainen huppari ja samanlaiset housut. Risto ja Nelli päättävät selvittää onko poika kaksoisolento, varjominä, vai jopa huijari? Miksi Rauha-täti on ollut salaperäinen ja piilotellut valokuva-albumia? Entä miten Pakastaja-Elvi, hämähäkit sekä suvun kadonnut sormus liittyvät tähän kaikkeen?</p><p>Risto ja Nelli löytävät johtolangan ja päättävät selvittää salaisuuden, joka vie heidät suureen yölliseen seikkailuun Kurjenkalliolle.</p><p>Elokuva perustuu Sinikka ja Tiina Nopolan rakastetun kirjasarjan saman nimiseen kirjaan Risto Räppääjä ja kaksoisolento.</p><p>Elokuvan päärooleissa nähdään Risto Räppääjänä Aleksi Johansson ja Nelli Nuudelipäänä Alma Järvensivu. Muissa päärooleissa Lennart Lindberginä ja Pakastaja-Elvinä nähdään Ylermi Rajamaa ja Jenni Kokander sekä Rauha-tätinä Iina Kuustonen.</p><p>Elokuvan on ohjannut Samuel Harjanne, käsikirjoittaneet Tiina ja Emma Nopola. Musiikin on säveltänyt Kerkko Koskinen ja laulujen sanat ovat Matias Nopolan kynästä.</p><p>Ikäraja: S<br>Kesto: 81 min.<br>Ensi-ilta: 14.2.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Onko kaupungissa Riston kaksoisolento?"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios",
                "sv": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios",
                "en": "Risto Räppääjä ja kaksoisolento (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65755/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}