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

{
    "meta": {
        "count": 1627,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=51",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=49"
    },
    "data": [
        {
            "id": "kulke:61954",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-satakieli-3561891/",
                        "sv": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-satakieli-3561891/",
                        "en": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-satakieli-3561891/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24 € / 15 € / 10 €",
                        "sv": "24 € / 15 € / 10 €",
                        "en": "24 € / 15 € / 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7477,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-01T11:13:02.343143Z",
                    "last_modified_time": "2024-02-06T13:23:36.220692Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744162.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-01T11:13:02.322619Z",
            "last_modified_time": "2024-04-05T17:14:06.116806Z",
            "date_published": null,
            "start_time": "2024-04-20T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli vie katsojan matkalle, joka yhdistää eri sukupolvet kietomalla heidän koskettavat tarinansa yhteen.",
                "sv": "Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.",
                "en": "Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0B6E9FA95B38B17FF5BC842BB65237B6/Susanna_Leinonen_Company_Satakieli",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0B6E9FA95B38B17FF5BC842BB65237B6/Susanna_Leinonen_Company_Naktergal",
                "en": "http://www.malmitalo.fi/en/events/event/0B6E9FA95B38B17FF5BC842BB65237B6/Susanna_Leinonen_Company_Satakieli_Nightingale_"
            },
            "description": {
                "fi": "<p>Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli vie katsojan matkalle, joka yhdistää eri sukupolvet kietomalla heidän koskettavat tarinansa yhteen.</p><p>Iän tuomasta viisaudesta ja elämänkokemuksesta kumpuava voima yhdistyy koreografi Susanna Leinosen vahvaan ja ilmaisuvoimaiseen liikkeeseen.</p><p>Teos avaa ikkunan sielun maisemiin, jossa liike ja ääni käyvät vuoropuhelua elämän ja kuoleman välillä. Satakieli muistuttaa meitä siitä, että elämän arvokkaimmat hetket voivat tapahtua luopumisen keskellä. Satakieli on kunnianosoitus elämälle ja muistutus siitä, että jokainen hetki on merkityksellinen.</p><p>Esityksen jälkeen järjestetään yleisökeskustelu, jonka moderaattorina toimii Susanna Leinonen. Kesto 30 min.</p><p>Kesto 50 min + yleisökeskustelu 30min.</p><p>Koreografia Susanna Leinonen | Ääniohjaus Eija Ahvo | Musiikki Kasperi Laine Susanna Leinonen Companyn aiemmat Tanssitaidetta ikäihmisille -hankkeen teokset Juuret (2022) Ja Arvo (2023) ovat osa Helsingin kaupungin iäkkäiden ihmisten kulttuuritoiminnan edistämishanketta.</p><p>Esiintyjät <br>Koreografia Susanna Leinonen Koreografin assistentti Tatiana Urteva Ääniohjaus Eija Ahvo Musiikki Kasperi Laine Puvut Sari Nuttunen Valot Jouka Valkama</p><p>Ikäihmiset: Soili Lehtimäki, Kikka Rytkönen, Mooni Helin, Eija Antinoja, Mirja Muona, Kaarina Onkinen, Henri Soravuo, Esa Ilmolahti, Tuula Sarivaara, Riitta Selkälä, Annika Huvinen, Kersti Kirjalainen, Brita Thynell, Soile Kilpi, Siv Palacios, Nina Hertell, Anja Salminen, Maarit Luukkonen, Jouni Saari, Pirkko Heikinheimo, Jude Pirskanen, Pirjo Kiviniemi, Mari Löppönen, Heli Lehtinen, Birgitta Hokkanen, Hannele Hieta-Aho, Heini Tola</p><p>Ammattitanssijat: Kasperi Kolehmainen, Viktoria Radin, Anette Toiviainen, Tatiana Urteva.</p>",
                "sv": "<p>Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.</p><p>Kraften från den vishet och livserfarenhet som ålderdomen för med sig förenas med koreografen Susanna Leinonens starka och uttrycksfulla rörelse.</p>",
                "en": "<p>Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories.</p><p>The power that comes from the wisdom and life experiences brought on by age is combined with the strong and expressive movement of Choreographer Susanna Leinonen.</p>"
            },
            "name": {
                "fi": "Susanna Leinonen Company: Satakieli",
                "sv": "Susanna Leinonen Company: Näktergal",
                "en": "Susanna Leinonen Company: Satakieli (Nightingale)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61954/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63224",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-putoamisen-anatomia-3611261/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-putoamisen-anatomia-3611261/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-putoamisen-anatomia-3611261/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12825,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-15T12:14:13.053942Z",
                    "last_modified_time": "2024-03-15T12:14:13.053959Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745583.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12825/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T12:14:13.030033Z",
            "last_modified_time": "2024-04-05T17:14:06.053442Z",
            "date_published": null,
            "start_time": "2024-04-20T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Cannesin kilpasarjan vuonna 2023 voittaneessa elokuvassa Sandra, Samuel ja heidän 11-vuotias poikansa ovat viettäneet vuoden syrjäisessä huvilassa Ranskan Alpeilla. Kun Samuel löydetään kuolleena lumesta talon pihalta, poliisi alkaa tutkia, putosiko hän vai työnnettiinkö hänet alas."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A532426F06E4B2E59BD80C0E10029C24/Putoamisen_anatomia_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A532426F06E4B2E59BD80C0E10029C24/Putoamisen_anatomia_12_",
                "en": "http://www.malmitalo.fi/en/events/event/A532426F06E4B2E59BD80C0E10029C24/Putoamisen_anatomia_12_"
            },
            "description": {
                "fi": "<p>Cannesin kilpasarjan vuonna 2023 voittaneessa elokuvassa Sandra, Samuel ja heidän 11-vuotias poikansa ovat viettäneet vuoden syrjäisessä huvilassa Ranskan Alpeilla. Kun Samuel löydetään kuolleena lumesta talon pihalta, poliisi alkaa tutkia, putosiko hän vai työnnettiinkö hänet alas.</p><p>Oikeusjutun aikana ei selvitetä vain Samuelin kuoleman olosuhteita, vaan siitä muodostuu myös ja etenkin Sandran ja Samuelin ristiriitaisen suhteen psykologinen syväluotaus.</p><p>Justine Trietin ohjaamassa trillerissä sanoja käytetään kuin aseita, ja järisyttävät totuudet näkevät päivänvalon. Pääosassa on roolistaan ylistystä saanut Sandra Hüller, joka nähtiin Suomessakin esitetyssä elokuvassa Isäni Toni Erdmann.</p><p>Putoamisen anatomia voitti Cannesissa Palm d'Orin lisäksi Palm Dog -palkinnon, kun Messi palkittiin parhaasta koiraesiintyjän roolista.</p><p>Kesto 151 min<br>Ikäraja 12<br>Ensi-ilta 9.2.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>"
            },
            "name": {
                "fi": "Putoamisen anatomia (12) – Kino Helios",
                "sv": "Putoamisen anatomia (12) – Kino Helios",
                "en": "Putoamisen anatomia (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63224/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61949",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-satakieli-3561891/",
                        "sv": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-satakieli-3561891/",
                        "en": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-satakieli-3561891/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24 € / 15 € / 10 €",
                        "sv": "24 € / 15 € / 10 €",
                        "en": "24 € / 15 € / 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7475,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-01T10:12:33.551770Z",
                    "last_modified_time": "2024-02-06T13:23:36.126324Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744157.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7475/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-01T10:12:33.516613Z",
            "last_modified_time": "2024-04-05T17:14:05.947067Z",
            "date_published": null,
            "start_time": "2024-04-20T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli vie katsojan matkalle, joka yhdistää eri sukupolvet kietomalla heidän koskettavat tarinansa yhteen.",
                "sv": "Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.",
                "en": "Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2ABA2EA696FAB49D11B05D74724A0A2B/Susanna_Leinonen_Company_Satakieli",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2ABA2EA696FAB49D11B05D74724A0A2B/Susanna_Leinonen_Company_Naktergal",
                "en": "http://www.malmitalo.fi/en/events/event/2ABA2EA696FAB49D11B05D74724A0A2B/Susanna_Leinonen_Company_Satakieli_Nightingale_"
            },
            "description": {
                "fi": "<p>Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli vie katsojan matkalle, joka yhdistää eri sukupolvet kietomalla heidän koskettavat tarinansa yhteen.</p><p>Iän tuomasta viisaudesta ja elämänkokemuksesta kumpuava voima yhdistyy koreografi Susanna Leinosen vahvaan ja ilmaisuvoimaiseen liikkeeseen. Teos avaa ikkunan sielun maisemiin, jossa liike ja ääni käyvät vuoropuhelua elämän ja kuoleman välillä. Satakieli muistuttaa meitä siitä, että elämän arvokkaimmat hetket voivat tapahtua luopumisen keskellä. Satakieli on kunnianosoitus elämälle ja muistutus siitä, että jokainen hetki on merkityksellinen.</p><p>Esityksen jälkeen järjestetään yleisökeskustelu, jonka moderaattorina toimii Susanna Leinonen. Kesto 30 min.</p><p>Kesto 50 min + yleisökeskustelu 30min.</p><p>Koreografia Susanna Leinonen | Ääniohjaus Eija Ahvo | Musiikki Kasperi Laine Susanna Leinonen Companyn aiemmat Tanssitaidetta ikäihmisille -hankkeen teokset Juuret (2022) Ja Arvo (2023) ovat osa Helsingin kaupungin iäkkäiden ihmisten kulttuuritoiminnan edistämishanketta.</p><p>Esiintyjät <br>Koreografia Susanna Leinonen Koreografin assistentti Tatiana Urteva Ääniohjaus Eija Ahvo Musiikki Kasperi Laine Puvut Sari Nuttunen Valot Jouka Valkama</p><p>Ikäihmiset: Soili Lehtimäki, Kikka Rytkönen, Mooni Helin, Eija Antinoja, Mirja Muona, Kaarina Onkinen, Henri Soravuo, Esa Ilmolahti, Tuula Sarivaara, Riitta Selkälä, Annika Huvinen, Kersti Kirjalainen, Brita Thynell, Soile Kilpi, Siv Palacios, Nina Hertell, Anja Salminen, Maarit Luukkonen, Jouni Saari, Pirkko Heikinheimo, Jude Pirskanen, Pirjo Kiviniemi, Mari Löppönen, Heli Lehtinen, Birgitta Hokkanen, Hannele Hieta-Aho, Heini Tola</p><p>Ammattitanssijat: Kasperi Kolehmainen, Viktoria Radin, Anette Toiviainen, Tatiana Urteva.</p>",
                "sv": "<p>Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.</p><p>Kraften från den vishet och livserfarenhet som ålderdomen för med sig förenas med koreografen Susanna Leinonens starka och uttrycksfulla rörelse.</p>",
                "en": "<p>Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories.</p><p>The power that comes from the wisdom and life experiences brought on by age is combined with the strong and expressive movement of Choreographer Susanna Leinonen.</p>"
            },
            "name": {
                "fi": "Susanna Leinonen Company: Satakieli",
                "sv": "Susanna Leinonen Company: Näktergal",
                "en": "Susanna Leinonen Company: Satakieli (Nightingale)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61949/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63218",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-all-of-us-strangers-3611262/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-all-of-us-strangers-3611262/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-all-of-us-strangers-3611262/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12780,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-15T10:14:12.454160Z",
                    "last_modified_time": "2024-03-15T10:14:12.454179Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745575.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12780/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T10:14:12.432252Z",
            "last_modified_time": "2024-04-05T17:14:05.666993Z",
            "date_published": null,
            "start_time": "2024-04-19T12:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Eräänä tavallisena iltana Lontoossa lähes tyhjillään olevassa kotitalossaan Adam (Andrew Scott) sattuu tapaamaan salaperäisen naapurinsa Harryn (Paul Mescal), joka sekoittaa täysin hänen päivittäiset rutiininsa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BDC7D1857D09B0C8B4FFB2CE2EC7CC89/All_of_Us_Strangers_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BDC7D1857D09B0C8B4FFB2CE2EC7CC89/All_of_Us_Strangers_12_",
                "en": "http://www.malmitalo.fi/en/events/event/BDC7D1857D09B0C8B4FFB2CE2EC7CC89/All_of_Us_Strangers_12_"
            },
            "description": {
                "fi": "<p>Eräänä tavallisena iltana Lontoossa lähes tyhjillään olevassa kotitalossaan Adam (Andrew Scott) sattuu tapaamaan salaperäisen naapurinsa Harryn (Paul Mescal), joka sekoittaa täysin hänen päivittäiset rutiininsa.</p><p>Heidän suhteensa kehittyessä Adam palaa muistoihinsa ja alkaa tuntea vetoa palata pikkukaupunkiin, jossa hän aikanaan kasvoi, ja lapsuudenkotiinsa, jossa näyttää kuin hänen vanhempansa (Claire Foy ja Jamie Bell) asuisivat edelleen aivan samanlaisina kuin kuolinpäivänään 30 vuotta aiemmin.</p><p>Ikäraja 12<br>Kesto 106 min<br>Ensi-ilta 8.3.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>"
            },
            "name": {
                "fi": "All of Us Strangers (12) – Kino Helios",
                "sv": "All of Us Strangers (12) – Kino Helios",
                "en": "All of Us Strangers (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63218/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63285",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 30717,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-26T09:12:43.888975Z",
                    "last_modified_time": "2024-03-26T09:12:43.888993Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746378.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/30717/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-26T09:12:43.860636Z",
            "last_modified_time": "2024-04-05T17:14:05.572248Z",
            "date_published": null,
            "start_time": "2024-04-18T16:00:00Z",
            "end_time": "2024-04-18T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Malmitalon ja Pop & Jazz Konservatorion yhteinen kevät avataan jazzilla, kun lavalle astelevat Luova Prosessi ja Whatnot Quartet. Tervetuloa jammailemaan!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9EBE7B789D1E63430C3F0646A37D8FA1/Whatnot_Quartet_Luova_Prosessi"
            },
            "description": {
                "fi": "<p>Malmitalon ja Pop & Jazz Konservatorion yhteinen kevät avataan jazzilla, kun lavalle astelevat Luova Prosessi ja Whatnot Quartet. Tervetuloa jammailemaan!</p><p><b>Aikataulu</b><br>klo 19 Luova Prosessi<br>klo 20 Whatnot Quartet</p><p><b>Luova prosessi</b> on seitsenhenkinen jazz-musiikkia soittava yhtye. Soitossa yhtye painottaa eläväistä improvisaatiota sekä musiikillista kommunikointia. Jäsenten monipuoliset musiikilliset taustat muodostavat yhteissoitossa rikkaan äänimaiseman, ottaen vaikutteita esimerkiksi klassisesta ja kansanmusiikista. Sukella mukaan luovaan prosessiin.</p><p>Jäsenet:<br>Lenni Seebeck – kitara<br>Margit Urantowka - Piano<br>Kamilla Kujala - Laulu<br>Siiri Toiviainen - Saksofoni<br>Emil Fagerudd-Montaguti - Rummut<br>Joel Wikström - Basso</p><p><b>Whatnot Quartet</b> on helsinkiläinen jazzkvartetti, joka soittaa pianisti Jp Jyväsjärven säveltämää<br>jazzohjelmistoa. Whatnot Quartetin musiikissa perinteinen instrumentaatio ja moderni sävelkieli kohtaavat. Kvartettisoitossa lahjakkaiden soittajien solistiset taidot pääsevät loistamaan. Yhtye valmistelee myös ensimmäistä omakustanne-EP:tään.</p><p>Jäsenet:<br>Jp Jyväsjärvi – piano, sävellykset<br>Bongsuu Jeong – saksofoni<br>Juuso Palsio – basso<br>Joona Raitakari – rummut</p><p>Vapaa pääsy!</p>"
            },
            "name": {
                "fi": "Whatnot Quartet & Luova Prosessi – Pop & Jazz Konservatorio"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63285/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63002",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/the-great-helsinki-swing-big-band-malmitalo-18029032/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22 € / 14,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7476,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-01T11:13:02.071289Z",
                    "last_modified_time": "2024-02-06T13:23:35.565983Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744409.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7476/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-01T11:13:02.041810Z",
            "last_modified_time": "2024-04-05T17:14:05.291289Z",
            "date_published": null,
            "start_time": "2024-04-17T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Hae lippurahojen palautusta 17.5.2024 mennessä osoitteesta https://web.lippu.fi/palautus/"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1667C342210E080872D3E64DF112B694/PERUTTU_The_Great_Helsinki_Swing_Big_Band_Swingin_Free"
            },
            "description": {
                "fi": "<p>Hae lippurahojen palautusta 17.5.2024 mennessä osoitteesta https://web.lippu.fi/palautus/</p><p>Laulaja-lauluntekijä Mirkka Paajanen on tuttu lukuisten Suomen eturivin artistien kokoonpanoista niin laulajana, soittajana kuin biisintekijänäkin. Hän on julkaissut myös omaa soolomateriaalia vuodesta -16 lähtien, joista viimeisimpänä Jukka Perkon kanssa tehty Muistot-joululevy.</p>"
            },
            "name": {
                "fi": "PERUTTU The Great Helsinki Swing Big Band: Swingin' Free"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63002/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63179",
            "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/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-ohjus-3585920/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12451,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T15:14:13.421663Z",
                    "last_modified_time": "2024-03-14T15:14:13.421685Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745571.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12451/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T15:14:13.397445Z",
            "last_modified_time": "2024-04-05T17:14:05.183490Z",
            "date_published": null,
            "start_time": "2024-04-17T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Ohjus on elokuva rajoista ja rajattomuudesta, missä poliittinen satiiri kohtaa lämpimän huumorin."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/84F9082F35280B7A19D8CD90CD7415E0/Ohjus_12_"
            },
            "description": {
                "fi": "<p>Ohjus on elokuva rajoista ja rajattomuudesta, missä poliittinen satiiri kohtaa lämpimän huumorin.</p><p>Joulukuussa 1984 Inarijärveen syöksyi neuvostoliittolainen ohjus, ja kansainvälinen selkkaus oli valmis. Draamakomedia kertoo yksinhuoltaja Niinasta, joka saa uuden alun elämälleen paikallisen sanomalehden toimittajana - ja eteensä mahdollisen jymyjutun kylässä, jossa ei koskaan tapahdu mitään. Niina uppoaa syvälle kansainväliseen ohjuskriisiin. Lappi ja pieni kirkonkylä menevät sekaisin, ja ulkomaisia toimittajia lappaa paikalliseen hotelliin. Tutkimusten keskellä Niina tapaa hävittäjälentäjä Kain, ja samaan aikaan ex-mies Tapio on vapautumassa vankilasta. Niinan on löydettävä rajansa, jotta myös totuus ohjuksesta näkisi päivänvalon.</p><p>Kesto 115 min</p><p>Ikäraja 12</p><p>Ensi-ilta 2.2.2024</p><p>Elokuva on tekstitetty Suomeksi.</p>"
            },
            "name": {
                "fi": "Ohjus (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63179/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63223",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-putoamisen-anatomia-3611261/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-putoamisen-anatomia-3611261/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-putoamisen-anatomia-3611261/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12824,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-15T12:14:12.206043Z",
                    "last_modified_time": "2024-03-15T12:14:12.206061Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745581.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12824/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T12:14:12.178115Z",
            "last_modified_time": "2024-04-05T17:14:05.041095Z",
            "date_published": null,
            "start_time": "2024-04-17T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Cannesin kilpasarjan vuonna 2023 voittaneessa elokuvassa Sandra, Samuel ja heidän 11-vuotias poikansa ovat viettäneet vuoden syrjäisessä huvilassa Ranskan Alpeilla. Kun Samuel löydetään kuolleena lumesta talon pihalta, poliisi alkaa tutkia, putosiko hän vai työnnettiinkö hänet alas."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C7BA8FEE1C6E37D0EEF84B379D5749AD/Putoamisen_anatomia_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C7BA8FEE1C6E37D0EEF84B379D5749AD/Putoamisen_anatomia_12_",
                "en": "http://www.malmitalo.fi/en/events/event/C7BA8FEE1C6E37D0EEF84B379D5749AD/Putoamisen_anatomia_12_"
            },
            "description": {
                "fi": "<p>Cannesin kilpasarjan vuonna 2023 voittaneessa elokuvassa Sandra, Samuel ja heidän 11-vuotias poikansa ovat viettäneet vuoden syrjäisessä huvilassa Ranskan Alpeilla. Kun Samuel löydetään kuolleena lumesta talon pihalta, poliisi alkaa tutkia, putosiko hän vai työnnettiinkö hänet alas.</p><p>Oikeusjutun aikana ei selvitetä vain Samuelin kuoleman olosuhteita, vaan siitä muodostuu myös ja etenkin Sandran ja Samuelin ristiriitaisen suhteen psykologinen syväluotaus.</p><p>Justine Trietin ohjaamassa trillerissä sanoja käytetään kuin aseita, ja järisyttävät totuudet näkevät päivänvalon. Pääosassa on roolistaan ylistystä saanut Sandra Hüller, joka nähtiin Suomessakin esitetyssä elokuvassa Isäni Toni Erdmann.</p><p>Putoamisen anatomia voitti Cannesissa Palm d'Orin lisäksi Palm Dog -palkinnon, kun Messi palkittiin parhaasta koiraesiintyjän roolista.</p><p>Kesto 151 min<br>Ikäraja 12<br>Ensi-ilta 9.2.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>"
            },
            "name": {
                "fi": "Putoamisen anatomia (12) – Kino Helios",
                "sv": "Putoamisen anatomia (12) – Kino Helios",
                "en": "Putoamisen anatomia (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63223/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63208",
            "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:669/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12376,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T11:14:03.252587Z",
                    "last_modified_time": "2024-03-14T11:14:03.252604Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745327.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12376/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T11:14:03.225206Z",
            "last_modified_time": "2024-04-05T17:14:04.035542Z",
            "date_published": null,
            "start_time": "2024-04-14T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Konsertissa seikkaillaan kuumailmapallon kyydissä ympäri maailman tutustumassa erilaisiin eläimiin ja niiden taitoihin."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CD1CA38DE733E7E7F8F4B85E253C5216/Lastenmusiikkiyhtye_Leimu_Pida_lujasti_kiinni_"
            },
            "description": {
                "fi": "<p>Konsertissa seikkaillaan kuumailmapallon kyydissä ympäri maailman tutustumassa erilaisiin eläimiin ja niiden taitoihin.</p><p>Ihmettelemme savannin taitureita, hiivimme viidakossa, kohtaamme Pohjoisnavalla jääkarhun, sukellamme veden alle… Pidä lujasti kiinni, seikkailu odottaa!</p><p>Leimu on raikas ja railakas lastenmusiikkiyhtye, joka koostuu kuudesta varhaisiän musiikkikasvattajasta. Konsertissa kuullaan uusia lauluja, joiden sävellykset, sovitukset ja sanoitukset ovat kaikki Leimun käsialaa.</p><p>Luvassa on kaksi konserttia, klo 11 ja klo 13.</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Lastenmusiikkiyhtye Leimu: Pidä lujasti kiinni! – Vaippakansan karnevaali"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63208/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63207",
            "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:669/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12374,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T11:14:02.982091Z",
                    "last_modified_time": "2024-03-14T11:14:02.982112Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745326.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12374/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T11:14:02.956101Z",
            "last_modified_time": "2024-04-05T17:14:03.937227Z",
            "date_published": null,
            "start_time": "2024-04-14T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Konsertissa seikkaillaan kuumailmapallon kyydissä ympäri maailman tutustumassa erilaisiin eläimiin ja niiden taitoihin."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8CBE549148162C0A5BFB67B6668F16F2/Lastenmusiikkiyhtye_Leimu_Pida_lujasti_kiinni_"
            },
            "description": {
                "fi": "<p>Konsertissa seikkaillaan kuumailmapallon kyydissä ympäri maailman tutustumassa erilaisiin eläimiin ja niiden taitoihin.</p><p>Ihmettelemme savannin taitureita, hiivimme viidakossa, kohtaamme Pohjoisnavalla jääkarhun, sukellamme veden alle… Pidä lujasti kiinni, seikkailu odottaa!</p><p>Leimu on raikas ja railakas lastenmusiikkiyhtye, joka koostuu kuudesta varhaisiän musiikkikasvattajasta. Konsertissa kuullaan uusia lauluja, joiden sävellykset, sovitukset ja sanoitukset ovat kaikki Leimun käsialaa.</p><p>Luvassa on kaksi konserttia, klo 11 ja klo 13.</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Lastenmusiikkiyhtye Leimu: Pidä lujasti kiinni! – Vaippakansan karnevaali"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63207/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63205",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?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:669/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12372,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T11:14:02.721916Z",
                    "last_modified_time": "2024-03-14T11:14:02.721934Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745356.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12372/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T11:14:02.691102Z",
            "last_modified_time": "2024-04-05T17:14:03.888691Z",
            "date_published": null,
            "start_time": "2024-04-14T07:15:00Z",
            "end_time": "2024-04-14T08:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Runoesityksissä vauvat ja taaperot pääsevät vedenalaiseen tunnelmaan lorujen ja riimien kautta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/39731C54E4C7980DECA1D26DD6634362/Veden_aarella_-runoesitykset_vauvoille_ja_taaperoille"
            },
            "description": {
                "fi": "<p>Runoesityksissä vauvat ja taaperot pääsevät vedenalaiseen tunnelmaan lorujen ja riimien kautta.</p><p>Runoropinoita tuo Vaippikseen kaksi ihanaa runoesitystä, toisen vauvaikäisille ja toisen taaperoille.</p><p>Esitykset järjestetään Malmin kirjaston monitoimitilassa seuraavasti:</p><p><b>Veden äärellä - Lammikon tohinaa taaperoille klo 10:15</b></p><p>Taaperoikäiset touhottajat pääsevät loruleikkien lomassa metsäiseen lammikkotunnelmaan. Loikitaan ja keinahdellaan, hiippaillaan hiljaa metsäpolkuja. Sammakko kurnuttaa kuplapilviä ja sadepisarat poukkoilevat ihan korvanlehdille ja varpaille asti!</p><p>Esityksen kesto noin 30 minuuttia.</p><p><b>Veden äärellä - Runopulahdus vauvoille klo 11</b></p><p>Runopulahdus on runojen riimittämä vanhemman ja vauvan yhteishetki. Sisilisko vipeltää varpaista kainaloon, lumpeenkukkasyli keinuttaa laineiden tahdissa ja vesipisarapallot pomppivat luo pienten piiperoisten.</p><p>Esityksen kesto noin 30 minuuttia.</p><p>Esitykset ja runot: Runoropinoita/Ulla-Maija Vanhala</p>"
            },
            "name": {
                "fi": "Veden äärellä -runoesitykset vauvoille ja taaperoille – Vaippakansan karnevaali"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63205/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63206",
            "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:669/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12373,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T11:14:02.851455Z",
                    "last_modified_time": "2024-03-14T11:14:02.851471Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745377.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12373/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T11:14:02.826649Z",
            "last_modified_time": "2024-04-05T17:14:03.841895Z",
            "date_published": null,
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tee yhdessä taaperosi kanssa hauska tiskirätti, jossa seikkailevat veden otukset."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/93B406869B0699FDBB57B76421A0B183/Vedenalainen_maailma_tehdaan_vesiotuksia_tiskirattiin"
            },
            "description": {
                "fi": "<p>Tee yhdessä taaperosi kanssa hauska tiskirätti, jossa seikkailevat veden otukset.</p><p>Taito Etelä-Suomen kädentaitopajassa pääset painamaan kankaanpainoväreillä veden ääreltä löytyviä eläimiä, hyönteisiä ja otuksia.</p><p>Non-stop työpajaan mahtuu kerrallaan noin 8 taapero-aikuinen-paria ja vuoron saa jonottamalla paikan päällä. Eläimet, hyönteiset ja otukset syntyvät lapsen käden tai jalan jäljistä leimasimiin yhdistettynä.</p><p>Nonstop-työpaja klo 10–14<br>Malmitalon parvella</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Vedenalainen maailma – tehdään vesiotuksia tiskirättiin"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63206/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63198",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 31878,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-26T14:14:41.574285Z",
                    "last_modified_time": "2024-03-26T14:14:41.574302Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745332.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/31878/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-03-26T14:14:41.531030Z",
            "last_modified_time": "2024-04-05T17:14:03.544384Z",
            "date_published": null,
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa lastentarvikekirpputorille Malmitaloon!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E3BD80D1BEC61DDDB740661C9F7303B6/Lastenvaate-_ja_tarvikekirpputori",
                "en": "http://www.malmitalo.fi/en/events/event/E3BD80D1BEC61DDDB740661C9F7303B6/The_flea_market_of_the_Vaippakansan_Karnevaalit"
            },
            "description": {
                "fi": "<p>Tervetuloa lastentarvikekirpputorille Malmitaloon!</p><p>Vaippakansan karnevaalien kirpputoria koordinoi Mannerheimin Lastensuojeluliiton Malmin yhdistys.</p><p>Vanhempaintoimikunnat ovat tervetulleita myymään.</p><p>Vanhempaintoimikunnat voivat ottaa yhteyttä Elina Lappalaiseen WhatsAppin tai puhelimen välityksellä 0503552778.</p>",
                "en": "<p>The flea market of the Vaippakansan Karnevaalit (Diaper People's Carnival) is coordinated by the Malmi branch of the Mannerheim League for Child Welfare (https://malmi.mll.fi/) Parent committees are welcome to sell. Parent committees can contact Elina Lappalainen via WhatsApp or phone at 0503552778.</p>"
            },
            "name": {
                "fi": "Lastenvaate- ja tarvikekirpputori – Vaippakansan karnevaali",
                "en": "The flea market of the Vaippakansan Karnevaalit"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63198/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63217",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-all-of-us-strangers-3611262/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-all-of-us-strangers-3611262/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-all-of-us-strangers-3611262/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12779,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-15T10:14:10.551841Z",
                    "last_modified_time": "2024-03-15T10:14:10.551860Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745573.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12779/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T10:14:10.496296Z",
            "last_modified_time": "2024-04-05T17:14:03.377506Z",
            "date_published": null,
            "start_time": "2024-04-13T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Eräänä tavallisena iltana Lontoossa lähes tyhjillään olevassa kotitalossaan Adam (Andrew Scott) sattuu tapaamaan salaperäisen naapurinsa Harryn (Paul Mescal), joka sekoittaa täysin hänen päivittäiset rutiininsa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C4BBBFEB463416DCF1A96BEE835F2B09/All_of_Us_Strangers_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C4BBBFEB463416DCF1A96BEE835F2B09/All_of_Us_Strangers_12_",
                "en": "http://www.malmitalo.fi/en/events/event/C4BBBFEB463416DCF1A96BEE835F2B09/All_of_Us_Strangers_12_"
            },
            "description": {
                "fi": "<p>Eräänä tavallisena iltana Lontoossa lähes tyhjillään olevassa kotitalossaan Adam (Andrew Scott) sattuu tapaamaan salaperäisen naapurinsa Harryn (Paul Mescal), joka sekoittaa täysin hänen päivittäiset rutiininsa.</p><p>Heidän suhteensa kehittyessä Adam palaa muistoihinsa ja alkaa tuntea vetoa palata pikkukaupunkiin, jossa hän aikanaan kasvoi, ja lapsuudenkotiinsa, jossa näyttää kuin hänen vanhempansa (Claire Foy ja Jamie Bell) asuisivat edelleen aivan samanlaisina kuin kuolinpäivänään 30 vuotta aiemmin.</p><p>Ikäraja 12<br>Kesto 106 min<br>Ensi-ilta 8.3.2024<br>Elokuva on tekstitetty Suomeksi ja Ruotsiksi</p>"
            },
            "name": {
                "fi": "All of Us Strangers (12) – Kino Helios",
                "sv": "All of Us Strangers (12) – Kino Helios",
                "en": "All of Us Strangers (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63217/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63185",
            "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/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-heinaehattu-vilttitossu-ja-kana-3593152/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12450,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T15:14:11.717246Z",
                    "last_modified_time": "2024-03-14T15:14:11.717271Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745595.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12450/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T15:14:11.693919Z",
            "last_modified_time": "2024-04-05T17:14:03.210084Z",
            "date_published": null,
            "start_time": "2024-04-13T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Heinähattu, Vilttitossu ja kana on riemukas koko perheen elokuva ystävyydestä ja kanoista."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/85004E0A36B85CB8FB4F96FBA8CCF1C4/Heinahattu_Vilttitossu_ja_Kana_S_"
            },
            "description": {
                "fi": "<p>Heinähattu, Vilttitossu ja kana on riemukas koko perheen elokuva ystävyydestä ja kanoista.</p><p>Heinähattu aloittaa kesäloman sulkapalloleirillä, jossa seikkailee myös karkuteillä oleva Cynthia-kana. Vilttitossu taas saa uuden ystävän, Anitan, joka kaikkien yllätykseksi onkin kana. Konstaapeli Isonavan ja Rillirouskun johdolla alkaa suuri kanajahti, johon osallistuvat niin Kattilakosket kuin Alibullenin neiditkin, eikä kommelluksilta ja väärinkäsityksiltä vältytä tälläkään kertaa.<br> <br>Heinähattu, Vilttitossu ja kana on komediallinen seikkailu, joka käsittelee ystävyyttä, rohkeutta ja anteeksiantoa hulvattomien ja rakastettujen hahmojensa avustuksella. Elokuvassa opitaan myös hieman kanojen sielunelämästä.<br> <br>Elokuva perustuu Sinikka ja Tiina Nopolan 2019 julkaistuun viimeisimpään Heinähattu ja Vilttitossu romaaniin. Elokuvan on ohjannut Reetta Aalto.<br> <br>Kesto 77 min</p><p>Elokuva on tekstitetty Suomeksi</p><p>Ikäraja sallittu kaikenikäisille</p><p>Ensi-ilta 16.2.2024</p><p><b>Malmin oma elokuvateatteri Kino Helios uudistui!</b></p><p>Malmitalossa sijaitseva Kino Helios tarjoaa ensi-iltaleffoja edullisesti aikuisille ja lapsiperheille. 92-paikkainen elokuvateatteri tuo Malmille uusimpien elokuvien lisäksi leffafestareiden suosikkeja sekä eriteemaisia elokuvasarjoja.</p><p>Elokuvasaliin on hankittu nyt mukavat tuolit, jotka kannattaa tulla testaamaan! Näe ensi-iltaelokuvat edullisesti ja mukavasti Kino Helioksessa!</p>"
            },
            "name": {
                "fi": "Heinähattu, Vilttitossu ja Kana (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63185/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63076",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/teatteri-totti/#calendar-start=2024-04",
                        "sv": "https://www.lippu.fi/artist/teatteri-totti/#calendar-start=2024-04",
                        "en": "https://www.lippu.fi/artist/teatteri-totti/#calendar-start=2024-04"
                    },
                    "description": null,
                    "price": {
                        "fi": "24 € / 20 € / 18 € / lapset 8,50 €",
                        "sv": "24 € / 20 € / 18 € / lapset 8,50 €",
                        "en": "24 € / 20 € / 18 € / lapset 8,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 10863,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-14T17:12:56.302513Z",
                    "last_modified_time": "2024-02-14T17:12:56.302529Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743809.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10863/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-14T17:12:56.285280Z",
            "last_modified_time": "2024-04-05T17:14:02.713562Z",
            "date_published": null,
            "start_time": "2024-04-12T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kuurosokea Frans Leijonin (1879–1947) elämästä kertova näytelmä on tarina poikkeuksellisesta resilienssistä ja voitosta vaikeuksien keskellä.",
                "sv": "Föreställningen berättar om den dövblinda Frans Leijons (1879–1947) liv, och är en berättelse om exceptionell resiliens och framgång trots svårigheter.",
                "en": "This play about the life of deafblind Frans Leijon (1879–1947) is a story of exceptional resilience and victory against all the odds."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3FE6172CAE798658A57AD9AC353B0A5F/Frans_tarina_kuurosokeasta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3FE6172CAE798658A57AD9AC353B0A5F/Frans_en_dovblinds_historia_",
                "en": "http://www.malmitalo.fi/en/events/event/3FE6172CAE798658A57AD9AC353B0A5F/Frans_story_of_a_blind_and_deaf_man_"
            },
            "description": {
                "fi": "<p>Kuurosokea Frans Leijonin (1879–1947) elämästä kertova näytelmä on tarina poikkeuksellisesta resilienssistä ja voitosta vaikeuksien keskellä.</p><p>Syntynyt vuonna 1979 Yläneellä, hän menetti pienenä sekä näkö- että kuulonsa isorokon iskettyä. Yhtäkkiä kaikki oli hiljaista ja pimeää, mikä teki jokapäiväisistä askareista kuten kävelemistä, haasteellista. Hän ryömii nelikontin ja tapellen, puri ja varasteli, kunnes kohtasi koulussa opettaja Anna Heikelin, joka avasi hänelle uuden tavan kokea maailma hajujen ja kosketuksen kautta.</p><p>Vaikka Fransin elämä muuttui sokeaksi ja kuuroksi, opettajan sitkeys ja kärsivällisyys auttoivat häntä oppimaan viittomakieltä ja kommunikoimaan kosketuksen avulla. Hän kykeni luomaan ainutlaatuisia taitoja käsillään ja muodostamaan omanlaisensa näkökulman maailmaan.</p><p>Näytelmä kuvaa elämän kovuutta ja sen kauneutta Fransin silmin – hän näki maailman käsillään ja sormillaan. Se tuo esiin sinnikkään Fransin ylpeyden ja rikkoo ennakkoluuloja kuurosokeita kohtaan.Se viestii, että kuurosokeus ei ole este kauneuden näkemiselle. Näytelmä painottaa myös, että kognitiiviset taidot eivät ole riippuvaisia kielestä tai kommunikointimenetelmistä.</p><p>Ohjaaja haluaa avartaa taiteellisia käsityksiä ja korostaa eri kieli- ja kulttuuriryhmiin kuuluvien elämäarvoja, tuoden esiin Frans Leijonin ainutlaatuisin tarinan voiman ja rohkeuden.</p><p>Kesto: 1 t, ei väliaikaa</p><p>Esityksen kieli: suomenruotsalainen viittomakieli, puhe tulkataan suomeksi</p><p>Ikäsuositus: yli 7-vuotiaille</p><p>Liput 24 € / 20 € / 18 € / lapset 8,50 €</p><p>Esiintyjät: Aki Pirkola ja Mette Marqvardsen<br>Ohjaus ja sovitus: Marita S. Barber<br>Käsikirjoitus: Sarah Remgren<br>Lavastus: Debbie Z.Rennie<br>Puvustus: Christina Yalcin<br>Maskeeraus: Anna Olofson<br>Valaistus: Jörgen Haimanas<br>Dramaturgi: Alexander Charlamov<br>Käsikirjoituksen suomennos: Tittamari Marttinen<br>Viittomakielille käännöskonsultit: Janne Kankkonen ja Tomas Uusimäki<br>Kuurosokeusasiantuntija: Tuija Mustonen<br>Kuva: Mikael Sundberg</p><p>Kiitokset<br>Anita Hellöre<br>Jakobstad dövas förenings r.f.<br>Suomen Kuurosokeat ry<br>Risto Hoikkanen<br>Heli Rupponen<br>Finlandssvenska teckenspråkiga r.f.</p><p>Yhteistuotanto<br>Teatteri Totin ja Riksteatern Crea 2023</p>",
                "sv": "<p>Föreställningen berättar om den dövblinda Frans Leijons (1879–1947) liv, och är en berättelse om exceptionell resiliens och framgång trots svårigheter.</p><p>Han föddes i Yläne år 1979 och förlorade som liten både synen och hörseln till följd av smittkoppor. Plötsligt var allt tyst och mörkt, vilket försvårade de dagliga sysslorna såsom att gå. Han kröp på alla fyra och slogs, bet och stal tills han i skolan mötte lärarinnan Anna Heikel, som för honom öppnade ett nytt sätt att uppleva världen via lukter och beröring.</p><p>Trots att Frans liv blev blint och dövt, hjälpte lärarinnans uthållighet och tålamod honom att lära sig teckenspråk och kommunicera med hjälp av beröring. Han utvecklade unika färdigheter med händerna och bildade sig en egen synvinkel mot världen.</p><p>Föreställningen beskriver världens hårdhet och skönhet ur Frans synvinkel – han såg den med sina händer och fingrar. Föreställningen hämtar fram Frans okuvliga stolthet, bryter ner fördomar om dövblinda och förmedlar budskapet att dövblindhet inte är ett hinder för att se skönhet. Föreställningen betonar också att kognitiva färdigheter inte är beroende av språk eller kommunikationsmetoder.</p><p>Regissören vill berika de konstnärliga uppfattningarna och betonar livsvärdet för personer som tillhör olika språk- och kulturgrupper genom att hämta fram styrkan och modet i Frans Leijons unika historia.</p><p>Längd: 1 h, ingen paus<br>Föreställningens språk: finlandssvenskt teckenspråk, talet tolkas till finska<br>Åldersrekommendation: över 7-åringar</p><p>I rollerna: Aki Pirkola och Mette Marqvardsen<br>Regi och filmatisering: Marita S. Barber<br>Manus: Sarah Remgren<br>Scenografi: Debbie Z. Rennie<br>Kostymdesign: Christina Yalcin<br>Smink: Anna Olofson<br>Belysning: Jörgen Haimanas<br>Dramaturg: Alexander Charlamov<br>Översättning av manus till finska: Tittamari Marttinen<br>Översättningskonsulter för teckenspråk: Janne Kankkonen och Tomas Uusimäki<br>Expert på dövblindhet: Tuija Mustonen<br>Bild: Mikael Sundberg</p><p>Tack till<br>Anita Hellöre<br>Jakobstad dövas förening rf.<br>Suomen Kuurosokeat ry<br>Risto Hoikkanen<br>Heli Rupponen<br>Finlandssvenska teckenspråkiga rf.</p><p>Samproduktion<br>Teatteri Totti och Riksteatern Crea 2023</p><p>Biljetter: 24 €, 20 €, 18 € och barn 8,50 €</p>",
                "en": "<p>This play about the life of deafblind Frans Leijon (1879–1947) is a story of exceptional resilience and victory against all the odds.</p><p>Born in Yläne in 1979, Frans lost his vision and hearing after suffering through smallpox. Suddenly, everything was dark and quiet for him, which made a challenge of everyday activities, like walking. He crawled, fought, bit and stole until he met schoolteacher Anna Heikel, who opened his eyes to a new way of experiencing the world through smell and touch.</p><p>Despite being blind and deaf, the tenacity and patience of his teacher helped him to learn sign language and to communicate through touch. Frans was capable of unique things with his hands and was able to form his own view of the world.</p><p>The play describes the hardships and beauty of life through Frans’ eyes – his hands and fingers. It showcases Frans’s pride and dispels prejudices towards the deafblind. Its message is that not being able to see or hear isn’t a barrier to knowing beauty. The play also focuses on how cognitive skills are not dependent on language or communication methods.</p><p>The director wants to expand the concept of art and highlight the values of different language and cultural groups, highlighting the unique strength and bravery in Frans Leijon’s story.</p><p>Duration: 1 hr., no intermission<br>Language: Fenno-Swedish sign language, interpretation in Finnish<br>Age recommendation: 7 and up</p><p>Performers: Aki Pirkola and Mette Marqvardsen<br>Direction and adaptation: Marita S. Barber<br>Script: Sarah Remgren<br>Stage design: Debbie Z. Rennie<br>Costume design: Christina Yalcin<br>Make-up: Anna Olofson<br>Lights: Jörgen Haimanas<br>Dramaturgy: Alexander Charlamov<br>Finnish translation: Tittamari Marttinen<br>Sign language translation consultants: Janne Kankkonen and Tomas Uusimäki<br>Deafblindness expert: Tuija Mustonen<br>Photo: Mikael Sundberg</p><p>Special thanks<br>Anita Hellöre<br>Jakobstad dövas förenings r.f.<br>Suomen Kuurosokeat ry<br>Risto Hoikkanen<br>Heli Rupponen<br>Finlandssvenska teckenspråkiga r.f.</p><p>Co-production<br>Theatre Totin and Riksteatern Crea 2023</p><p>Tickets: €24, €20, €18, and children at €8.50</p>"
            },
            "name": {
                "fi": "Frans – tarina kuurosokeasta – Viittomakielinen teatteri",
                "sv": "Frans – en dövblinds historia – Teater på teckenspråk",
                "en": "Frans – story of a blind and deaf man – Sign language theatre"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63076/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63176",
            "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/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-zone-of-interest-3585925/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12449,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T15:14:11.121178Z",
                    "last_modified_time": "2024-03-14T15:14:11.121205Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745565.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12449/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T15:14:11.097065Z",
            "last_modified_time": "2024-04-05T17:14:02.604153Z",
            "date_published": null,
            "start_time": "2024-04-12T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Cannesin elokuvajuhlilla palkittu draamaelokuva The Zone of Interest seuraa Auschwitzin komentajaa Rudolf Hössiä ja hänen vaimoaan Hedwigiä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5AA4F07093DD162CE58732687DBA00E7/The_Zone_of_Interest_12_"
            },
            "description": {
                "fi": "<p>Cannesin elokuvajuhlilla palkittu draamaelokuva The Zone of Interest seuraa Auschwitzin komentajaa Rudolf Hössiä ja hänen vaimoaan Hedwigiä.</p><p>Pariskunta rakentaa unelmiensa elämää perheelleen keskitysleirin vieressä sijaitsevassa talossa ja puutarhassa.</p><p>Ikäraja 12</p><p>Kesto 105 min</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi.</p><p>Ensi-ilta 26.1.2024</p>"
            },
            "name": {
                "fi": "The Zone of Interest (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63176/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63187",
            "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/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-priscilla-3593151/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 12448,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-14T15:14:10.988609Z",
                    "last_modified_time": "2024-03-14T15:14:10.988626Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745606.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12448/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-14T15:14:10.963557Z",
            "last_modified_time": "2024-04-05T17:14:02.553542Z",
            "date_published": null,
            "start_time": "2024-04-12T12:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kun teini-ikäinen Priscilla tapaa juhlissa räjähdysmäisen suosion saavuttaneen Elvis Presleyn, paljastaa rocktähti hänelle kahden kesken henkilökohtaisemman puolensa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0166F18E839817D1090B92E4D33F423C/Priscilla_12_"
            },
            "description": {
                "fi": "<p>Kun teini-ikäinen Priscilla tapaa juhlissa räjähdysmäisen suosion saavuttaneen Elvis Presleyn, paljastaa rocktähti hänelle kahden kesken henkilökohtaisemman puolensa.</p><p>Elviksestä tulee pian Priscillalle kiehtova ihastus, yksinäisyyden liittolainen ja haavoittuvainen ystävä. Priscillan kautta näemme suuresta amerikkalaisesta myytistä puolen, jota emme ole aikaisemmin nähneet – Elviksen ja Priscillan pitkän seurustelusuhteen, myrskyisän avioliiton, sekä matkan saksalaisesta armeijatukikohdasta Elviksen unelmataloon Gracelandiin.</p><p>Elokuva kertoo koskettavasti rakkaudesta, haaveista ja kuuluisuudesta. Priscilla-elokuvan on ohjannut Sofia Coppola (Lost in translation, Marie Antoinette).<br> <br>Elokuva pohjautuu Priscilla Presleyn omaelämänkerralliseen kirjaan Elvis ja minä.<br> <br>Kesto 113 min</p><p>Ikäraja 12</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Ensi-ilta 14.2.2024</p><p><b>Malmin oma elokuvateatteri Kino Helios uudistui!</b></p><p>Malmitalossa sijaitseva Kino Helios tarjoaa ensi-iltaleffoja edullisesti aikuisille ja lapsiperheille. 92-paikkainen elokuvateatteri tuo Malmille uusimpien elokuvien lisäksi leffafestareiden suosikkeja sekä eriteemaisia elokuvasarjoja.</p><p>Elokuvasaliin on hankittu nyt mukavat tuolit, jotka kannattaa tulla testaamaan! Näe ensi-iltaelokuvat edullisesti ja mukavasti Kino Helioksessa!</p>"
            },
            "name": {
                "fi": "Priscilla (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63187/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63075",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/teatteri-totti/#calendar-start=2024-04",
                        "sv": "https://www.lippu.fi/artist/teatteri-totti/#calendar-start=2024-04",
                        "en": "https://www.lippu.fi/artist/teatteri-totti/#calendar-start=2024-04"
                    },
                    "description": null,
                    "price": {
                        "fi": "24 € / 20 € / 18 € / lapset 8,50 €",
                        "sv": "24 € / 20 € / 18 € / lapset 8,50 €",
                        "en": "24 € / 20 € / 18 € / lapset 8,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 10862,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-14T17:12:56.166676Z",
                    "last_modified_time": "2024-02-14T17:12:56.166697Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743808.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10862/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-14T17:12:56.134570Z",
            "last_modified_time": "2024-04-05T17:14:02.499533Z",
            "date_published": null,
            "start_time": "2024-04-12T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kuurosokea Frans Leijonin (1879–1947) elämästä kertova näytelmä on tarina poikkeuksellisesta resilienssistä ja voitosta vaikeuksien keskellä.",
                "sv": "Föreställningen berättar om den dövblinda Frans Leijons (1879–1947) liv, och är en berättelse om exceptionell resiliens och framgång trots svårigheter.",
                "en": "This play about the life of deafblind Frans Leijon (1879–1947) is a story of exceptional resilience and victory against all the odds."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BF8EF1AD941FC36119DCE7EA651AEB96/Frans_tarina_kuurosokeasta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BF8EF1AD941FC36119DCE7EA651AEB96/Frans_en_dovblinds_historia_",
                "en": "http://www.malmitalo.fi/en/events/event/BF8EF1AD941FC36119DCE7EA651AEB96/Frans_story_of_a_blind_and_deaf_man_"
            },
            "description": {
                "fi": "<p>Kuurosokea Frans Leijonin (1879–1947) elämästä kertova näytelmä on tarina poikkeuksellisesta resilienssistä ja voitosta vaikeuksien keskellä.</p><p>Syntynyt vuonna 1979 Yläneellä, hän menetti pienenä sekä näkö- että kuulonsa isorokon iskettyä. Yhtäkkiä kaikki oli hiljaista ja pimeää, mikä teki jokapäiväisistä askareista kuten kävelemistä, haasteellista. Hän ryömii nelikontin ja tapellen, puri ja varasteli, kunnes kohtasi koulussa opettaja Anna Heikelin, joka avasi hänelle uuden tavan kokea maailma hajujen ja kosketuksen kautta.</p><p>Vaikka Fransin elämä muuttui sokeaksi ja kuuroksi, opettajan sitkeys ja kärsivällisyys auttoivat häntä oppimaan viittomakieltä ja kommunikoimaan kosketuksen avulla. Hän kykeni luomaan ainutlaatuisia taitoja käsillään ja muodostamaan omanlaisensa näkökulman maailmaan.</p><p>Näytelmä kuvaa elämän kovuutta ja sen kauneutta Fransin silmin – hän näki maailman käsillään ja sormillaan. Se tuo esiin sinnikkään Fransin ylpeyden ja rikkoo ennakkoluuloja kuurosokeita kohtaan.Se viestii, että kuurosokeus ei ole este kauneuden näkemiselle. Näytelmä painottaa myös, että kognitiiviset taidot eivät ole riippuvaisia kielestä tai kommunikointimenetelmistä.</p><p>Ohjaaja haluaa avartaa taiteellisia käsityksiä ja korostaa eri kieli- ja kulttuuriryhmiin kuuluvien elämäarvoja, tuoden esiin Frans Leijonin ainutlaatuisin tarinan voiman ja rohkeuden.</p><p>Kesto: 1 t, ei väliaikaa</p><p>Esityksen kieli: suomenruotsalainen viittomakieli, puhe tulkataan suomeksi</p><p>Ikäsuositus: yli 7-vuotiaille</p><p>Liput 24 € / 20 € / 18 € / lapset 8,50 €</p><p>Esiintyjät: Aki Pirkola ja Mette Marqvardsen<br>Ohjaus ja sovitus: Marita S. Barber<br>Käsikirjoitus: Sarah Remgren<br>Lavastus: Debbie Z.Rennie<br>Puvustus: Christina Yalcin<br>Maskeeraus: Anna Olofson<br>Valaistus: Jörgen Haimanas<br>Dramaturgi: Alexander Charlamov<br>Käsikirjoituksen suomennos: Tittamari Marttinen<br>Viittomakielille käännöskonsultit: Janne Kankkonen ja Tomas Uusimäki<br>Kuurosokeusasiantuntija: Tuija Mustonen<br>Kuva: Mikael Sundberg</p><p>Kiitokset<br>Anita Hellöre<br>Jakobstad dövas förenings r.f.<br>Suomen Kuurosokeat ry<br>Risto Hoikkanen<br>Heli Rupponen<br>Finlandssvenska teckenspråkiga r.f.</p><p>Yhteistuotanto<br>Teatteri Totin ja Riksteatern Crea 2023</p>",
                "sv": "<p>Föreställningen berättar om den dövblinda Frans Leijons (1879–1947) liv, och är en berättelse om exceptionell resiliens och framgång trots svårigheter.</p><p>Han föddes i Yläne år 1979 och förlorade som liten både synen och hörseln till följd av smittkoppor. Plötsligt var allt tyst och mörkt, vilket försvårade de dagliga sysslorna såsom att gå. Han kröp på alla fyra och slogs, bet och stal tills han i skolan mötte lärarinnan Anna Heikel, som för honom öppnade ett nytt sätt att uppleva världen via lukter och beröring.</p><p>Trots att Frans liv blev blint och dövt, hjälpte lärarinnans uthållighet och tålamod honom att lära sig teckenspråk och kommunicera med hjälp av beröring. Han utvecklade unika färdigheter med händerna och bildade sig en egen synvinkel mot världen.</p><p>Föreställningen beskriver världens hårdhet och skönhet ur Frans synvinkel – han såg den med sina händer och fingrar. Föreställningen hämtar fram Frans okuvliga stolthet, bryter ner fördomar om dövblinda och förmedlar budskapet att dövblindhet inte är ett hinder för att se skönhet. Föreställningen betonar också att kognitiva färdigheter inte är beroende av språk eller kommunikationsmetoder.</p><p>Regissören vill berika de konstnärliga uppfattningarna och betonar livsvärdet för personer som tillhör olika språk- och kulturgrupper genom att hämta fram styrkan och modet i Frans Leijons unika historia.</p><p>Längd: 1 h, ingen paus<br>Föreställningens språk: finlandssvenskt teckenspråk, talet tolkas till finska<br>Åldersrekommendation: över 7-åringar</p><p>I rollerna: Aki Pirkola och Mette Marqvardsen<br>Regi och filmatisering: Marita S. Barber<br>Manus: Sarah Remgren<br>Scenografi: Debbie Z. Rennie<br>Kostymdesign: Christina Yalcin<br>Smink: Anna Olofson<br>Belysning: Jörgen Haimanas<br>Dramaturg: Alexander Charlamov<br>Översättning av manus till finska: Tittamari Marttinen<br>Översättningskonsulter för teckenspråk: Janne Kankkonen och Tomas Uusimäki<br>Expert på dövblindhet: Tuija Mustonen<br>Bild: Mikael Sundberg</p><p>Tack till<br>Anita Hellöre<br>Jakobstad dövas förening rf.<br>Suomen Kuurosokeat ry<br>Risto Hoikkanen<br>Heli Rupponen<br>Finlandssvenska teckenspråkiga rf.</p><p>Samproduktion<br>Teatteri Totti och Riksteatern Crea 2023</p><p>Biljetter: 24 €, 20 €, 18 € och barn 8,50 €</p>",
                "en": "<p>This play about the life of deafblind Frans Leijon (1879–1947) is a story of exceptional resilience and victory against all the odds.</p><p>Born in Yläne in 1979, Frans lost his vision and hearing after suffering through smallpox. Suddenly, everything was dark and quiet for him, which made a challenge of everyday activities, like walking. He crawled, fought, bit and stole until he met schoolteacher Anna Heikel, who opened his eyes to a new way of experiencing the world through smell and touch.</p><p>Despite being blind and deaf, the tenacity and patience of his teacher helped him to learn sign language and to communicate through touch. Frans was capable of unique things with his hands and was able to form his own view of the world.</p><p>The play describes the hardships and beauty of life through Frans’ eyes – his hands and fingers. It showcases Frans’s pride and dispels prejudices towards the deafblind. Its message is that not being able to see or hear isn’t a barrier to knowing beauty. The play also focuses on how cognitive skills are not dependent on language or communication methods.</p><p>The director wants to expand the concept of art and highlight the values of different language and cultural groups, highlighting the unique strength and bravery in Frans Leijon’s story.</p><p>Duration: 1 hr., no intermission<br>Language: Fenno-Swedish sign language, interpretation in Finnish<br>Age recommendation: 7 and up</p><p>Performers: Aki Pirkola and Mette Marqvardsen<br>Direction and adaptation: Marita S. Barber<br>Script: Sarah Remgren<br>Stage design: Debbie Z. Rennie<br>Costume design: Christina Yalcin<br>Make-up: Anna Olofson<br>Lights: Jörgen Haimanas<br>Dramaturgy: Alexander Charlamov<br>Finnish translation: Tittamari Marttinen<br>Sign language translation consultants: Janne Kankkonen and Tomas Uusimäki<br>Deafblindness expert: Tuija Mustonen<br>Photo: Mikael Sundberg</p><p>Special thanks<br>Anita Hellöre<br>Jakobstad dövas förenings r.f.<br>Suomen Kuurosokeat ry<br>Risto Hoikkanen<br>Heli Rupponen<br>Finlandssvenska teckenspråkiga r.f.</p><p>Co-production<br>Theatre Totin and Riksteatern Crea 2023</p><p>Tickets: €24, €20, €18, and children at €8.50</p>"
            },
            "name": {
                "fi": "Frans – tarina kuurosokeasta – Viittomakielinen teatteri",
                "sv": "Frans – en dövblinds historia – Teater på teckenspråk",
                "en": "Frans – story of a blind and deaf man – Sign language theatre"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63075/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63057",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/ogeli-big-band/",
                        "sv": "https://www.lippu.fi/artist/ogeli-big-band/",
                        "en": "https://www.lippu.fi/artist/ogeli-big-band/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20,50 € /14,50 €",
                        "sv": "20,50 € /14,50 €",
                        "en": "20,50 € /14,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 10746,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-09T12:13:47.026316Z",
                    "last_modified_time": "2024-02-09T12:13:47.026335Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744604.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10746/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-09T12:13:46.988523Z",
            "last_modified_time": "2024-04-05T17:14:02.345958Z",
            "date_published": null,
            "start_time": "2024-04-11T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Ogeli Big Bandin perinteisessä kevätkonsertissa pääsee nauttimaan mukaansa tempaavasta big band -musiikista, laulusolistina loistava Harriet Honkaniemi.",
                "sv": "På Ogeli Big Bands traditionella vårkonsert kan du njuta av medryckande big band-musik, med den lysande Harriet Honkaniemi som vokalist.",
                "en": "Ogeli Big Band's traditional spring concert is a splash of engaging big band music, with fantastic Harriet Honkaniemi on vocals."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CE61D7756B30896A19FF6F62EF231A0B/Ogeli_Big_Bandin_kevatkonsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CE61D7756B30896A19FF6F62EF231A0B/Ogeli_Big_bands_varkonsert",
                "en": "http://www.malmitalo.fi/en/events/event/CE61D7756B30896A19FF6F62EF231A0B/Ogeli_Big_Band_spring_concert"
            },
            "description": {
                "fi": "<p>Ogeli Big Bandin perinteisessä kevätkonsertissa pääsee nauttimaan mukaansa tempaavasta big band -musiikista, laulusolistina loistava Harriet Honkaniemi.</p><p>Ogeli Big Band - mukavaa musiikkia vuodesta 1966.</p><p>Kesto 1h 15 min, ei väliaikaa</p>",
                "sv": "<p>På Ogeli Big Bands traditionella vårkonsert kan du njuta av medryckande big band-musik, med den lysande Harriet Honkaniemi som vokalist.</p><p>Ogeli Big Band – skön musik sedan 1966.</p><p>Längd 1h 15 min., ingen paus</p>",
                "en": "<p>Ogeli Big Band's traditional spring concert is a splash of engaging big band music, with fantastic Harriet Honkaniemi on vocals.</p><p>Ogeli Big Band – fun music since 1966.</p><p>Duration: 1 hr. 15 mins., no intermission</p>"
            },
            "name": {
                "fi": "Ogeli Big Bandin kevätkonsertti",
                "sv": "Ogeli Big bands vårkonsert",
                "en": "Ogeli Big Band spring concert"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63057/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}