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=75
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=76",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=74"
    },
    "data": [
        {
            "id": "kulke:61050",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5160,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:09.987816Z",
                    "last_modified_time": "2023-10-09T13:30:09.987835Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737383.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5160/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:09.102758Z",
            "last_modified_time": "2023-11-14T06:13:21.175202Z",
            "date_published": null,
            "start_time": "2023-10-11T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1D4C3290707F8A606CBA1C069FA55EDD/Spede_7_"
            },
            "short_description": {
                "fi": "Pertti ’Spede’ Pasasen elämästä ja urasta kertova elokuva käy läpi ikonisen viihteentekijän innovatiivisinta elokuvatuotantovaihetta."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Pertti ’Spede’ Pasasen elämästä ja urasta kertova elokuva käy läpi ikonisen viihteentekijän innovatiivisinta elokuvatuotantovaihetta.</p><p>Elokuva valottaa kulissien takaisia tapahtumia 1960-luvun lopulta Uuno Turhapuron syntytarinaan ja kansansuosioon, sekä Speden väsymätöntä taistelua viihteen puolesta ajan elokuvataidepiirejä vastaan. Millainen Spede Pasanen oli persoonana, työkaverina, viihdetaiteilijana - ja puolisona?</p><p>Ikäraja 7<br>Ensi-ilta 29.9.2023<br>Kesto 95 min<br>Tekstitys suomeksi</p>"
            },
            "name": {
                "fi": "Spede (7) – Kino Helios"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61050/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61084",
            "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": [],
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5159,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:07.073241Z",
                    "last_modified_time": "2023-10-09T13:30:07.073263Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737452.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5159/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:06.925368Z",
            "last_modified_time": "2023-11-14T06:13:20.877740Z",
            "date_published": null,
            "start_time": "2023-10-11T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E8F9411D87E3BF97BE695685D7522029/Viimeinen_vuoro_12_"
            },
            "short_description": {
                "fi": "Tom Harper lähtee pitkälle bussimatkalle Skotlannin pohjoisimmasta kolkasta synnyinseuduilleen Englannin etelärannikon John O’Groatsiin."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tom Harper lähtee pitkälle bussimatkalle Skotlannin pohjoisimmasta kolkasta synnyinseuduilleen Englannin etelärannikon John O’Groatsiin.</p><p>Paikallisbussien aikatauluja, omaa ikäänsä ja kohtaloa uhmaten Tom Harper (Timothy Spall) tekee kaikkensa pitääkseen vaimolleen antamansa lupauksen. Matkasta tulee muistorikas seikkailuretki täynnä käänteitä ja yllätyksiä. VIIMEINEN VUORO on elokuva rakkaudesta, menetyksestä ja ihmisen luonteikkaasta periksiantamattomuudesta.</p><p>Ikäraja 12<br>Ensi-ilta 29.9.2023<br>Kesto 86 min</p>"
            },
            "name": {
                "fi": "Viimeinen vuoro (12) – Kino Helios"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61084/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60814",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "39,50 €",
                        "sv": "39,50 €",
                        "en": "39,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/girlschool-uk-support-wishing-well-malmitalo-17516396/",
                        "sv": "https://www.lippu.fi/event/girlschool-uk-support-wishing-well-malmitalo-17516396/",
                        "en": "https://www.lippu.fi/event/girlschool-uk-support-wishing-well-malmitalo-17516396/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4382,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:04.334849Z",
                    "last_modified_time": "2023-09-07T14:24:04.334869Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736368.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4382/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:04.048250Z",
            "last_modified_time": "2023-11-14T06:13:19.986965Z",
            "date_published": null,
            "start_time": "2023-10-10T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BE89DE36E9B89D8A6E2DEE31FE3099E4/Girlschool_UK_Wishing_Well_FIN_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BE89DE36E9B89D8A6E2DEE31FE3099E4/Girlschool_UK_Wishing_Well_FIN_",
                "en": "http://www.malmitalo.fi/en/events/event/BE89DE36E9B89D8A6E2DEE31FE3099E4/Girlschool_UK_Wishing_Well_FIN_"
            },
            "short_description": {
                "fi": "Girlschool on tunnetuimpia ja pitkäikäisimpiä naismuusikoista koostuvia yhtyeitä. Itse asiassa kyseessä lienee maailman ainoa yli 40-vuotias pelkästään naisista koostuva yhtye.",
                "sv": "Girlschool (UK) är ett av de mest kända och långlivade banden som består av kvinnliga musiker.",
                "en": "Girlschool (UK) is one of the best-known and long-lived all-female bands."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Girlschool on tunnetuimpia ja pitkäikäisimpiä naismuusikoista koostuvia yhtyeitä. Itse asiassa kyseessä lienee maailman ainoa yli 40-vuotias pelkästään naisista koostuva yhtye.</p><p>Yhtyettä on toisinaan tituleerattu ”naispuoliseksi Motörheadiksi” ja se saikin uralleen vauhtia <b>Lemmy Kilmisterin</b> siipien suojissa. Girlschool soitti <b>Motörheadin</b> kevään 1979 kiertueen lämmittelybändinä.</p><p>Punkahtavaa hard rockia ja heavya soittava yhtye on perustettu Englannissa vuonna 1978, aluksi nimellä <b>Painted Lady</b>.</p><p>Girlschoolin toinen albumi <i>Hit and Run</i> oli parhaimmillaan Britannian albumilistan viidentenä.</p><p>Pisimpään yhtyeessä ovat soittaneet alusta asti mukana olleet kitaristi <b>Kim McAuliffe</b> ja rumpali <b>Denise Dufort</b>. Kokoonpanossa mukana ovat myös 25 vuotta bändissä kitaraa soittanut <b>Jackie Chambers</b> (59).</p><p>Neljä vuotta sitten bändistä lähtenyt perustajajäsen, basisti <b>Enid Williams</b> on 63-vuotias. Hänen tilalleen yhtyeeseen tuli nyt 60-vuotias <b>Tracey Lamb</b>, joka on soittanut Girlschoolin riveissä Williamsin tilalla useita vuosia 1980-luvun lopulla ja 1990-luvulla.</p><p>Illan lämppärinä toimii helsinkiläinen <b>Wishing Well</b>.</p><p><b>Illan aikataulu:</b></p><p>19.00 WISHING WELL <br>19.45 Väliaika<br>20.00 GIRLSCHOOL</p>",
                "sv": "<p>Girlschool (UK) är ett av de mest kända och långlivade banden som består av kvinnliga musiker.</p><p>I själva verket är det sannolikt fråga om världens enda band som är över 40 år gammalt och består endast av kvinnor. Bandet har ibland titulerats \"kvinnligt Motörhead\", och bandet fick fart på sin karriär i skydd av Lemmy Kilmisters vingar. Girlschool var förband för Motörheads turné på våren 1979.</p><p>Kvällens förband är Wishing Well från Helsingfors.</p><p>kl. 19 Wishing Well<br>kl. 19.45 paus<br>klo 20 Girlschool</p>",
                "en": "<p>Girlschool (UK) is one of the best-known and long-lived all-female bands.</p><p>Indeed, it’s probably the only band in the world that’s over 40 years old and consists only of women. The band has sometimes been dubbed “the female Motörhead” as it stepped into the limelight under the wings of Lemmy Kilmister. Girlschool was the warm-up act for Motörhead during its 1979 spring tour.</p><p>At Malmitalo, the evening will be opened by Helsinki-based Wishing Well playing as the warm up.</p><p>7 pm Wishing Well<br>7.45 pm intermission <br>8 pm Girlschool</p>"
            },
            "name": {
                "fi": "Girlschool (UK) | Wishing Well (FIN)",
                "sv": "Girlschool (UK) | Wishing Well (FIN)",
                "en": "Girlschool (UK) | Wishing Well (FIN)"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60814/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61082",
            "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": [],
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5153,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:29:52.882767Z",
                    "last_modified_time": "2023-10-09T13:29:52.882785Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737450.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5153/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:29:52.746935Z",
            "last_modified_time": "2023-11-14T06:13:18.575322Z",
            "date_published": null,
            "start_time": "2023-10-07T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/92D74551B04B1A41FA91735C76D12F05/Viimeinen_vuoro_12_"
            },
            "short_description": {
                "fi": "Tom Harper lähtee pitkälle bussimatkalle Skotlannin pohjoisimmasta kolkasta synnyinseuduilleen Englannin etelärannikon John O’Groatsiin."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tom Harper lähtee pitkälle bussimatkalle Skotlannin pohjoisimmasta kolkasta synnyinseuduilleen Englannin etelärannikon John O’Groatsiin.</p><p>Paikallisbussien aikatauluja, omaa ikäänsä ja kohtaloa uhmaten Tom Harper (Timothy Spall) tekee kaikkensa pitääkseen vaimolleen antamansa lupauksen. Matkasta tulee muistorikas seikkailuretki täynnä käänteitä ja yllätyksiä. VIIMEINEN VUORO on elokuva rakkaudesta, menetyksestä ja ihmisen luonteikkaasta periksiantamattomuudesta.</p><p>Ikäraja 12<br>Ensi-ilta 29.9.2023<br>Kesto 86 min</p>"
            },
            "name": {
                "fi": "Viimeinen vuoro (12) – Kino Helios"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61082/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61080",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5152,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:29:52.315440Z",
                    "last_modified_time": "2023-10-09T13:29:52.315460Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737446.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5152/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-10-09T13:29:52.173943Z",
            "last_modified_time": "2023-11-14T06:13:18.429631Z",
            "date_published": null,
            "start_time": "2023-10-07T12:00:00Z",
            "end_time": "2023-10-07T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B558137B5D5B16D9C202CE790E51E7EF/Muumipeikko_ja_pyrstotahti_S_"
            },
            "short_description": {
                "fi": "Kaikkien rakastama klassikko Muumipeikko ja pyrstötähti saapuu uudistettuna elokuvateattereihin!"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kaikkien rakastama klassikko Muumipeikko ja pyrstötähti saapuu uudistettuna elokuvateattereihin!</p><p>Eräänä sateisena iltana Muumilaakson rauhaisaan idylliin saapuu filosofiksi esittäytyvä Piisamirotta ennustamaan koko maapalloa kohtaavaa katastrofia. Yhtäkkiä kesä ei olekaan enää niin kuin ennen. Muumipeikon, Nipsun ja Pikku Myyn on lähdettävä vaikeakulkuiseen seikkailuun tähtitornivuoren huipulle selvittämään, onko maailmanloppu todella tulossa.</p><p>Elämän palaaminen uomiinsa edellyttää Muumilaakson väeltä ennennäkemätöntä sankaruutta. Matkalla kohdataan jännittäviä vaaroja, mutta myös luonnon ihmeitä ja uskomattomia aarteita – ja solmitaan korvaamattomia uusia ystävyyksiä. Tarinassa tavataan myös seikkailija Nuuskamuikkunen sekä viisas keksijä Niisku ja hänen siskonsa Niiskuneiti.</p><p>Vahvistunein joukoin kotiin Muumilaaksoon palattuaan on ystävyksillä entistäkin paremmat eväät niin pyörremyrskyiltä kuin pyrstötähdiltä suojautumiseen ja koko Muumi-perheen pelastamiseen. Tarvitaan vain kekseliäisyyttä, yhteishenkeä ja valmiutta auttaa apua tarvitsevia, jotta kaikki pysyvät turvassa merkillisiltä luonnonilmiöiltä.</p>"
            },
            "name": {
                "fi": "Muumipeikko ja pyrstötähti (S) – Kino Helios"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61080/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61062",
            "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": [],
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5151,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:29:51.685408Z",
                    "last_modified_time": "2023-10-09T13:29:51.685428Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737772.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5151/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:29:51.001761Z",
            "last_modified_time": "2023-11-14T06:13:18.281264Z",
            "date_published": null,
            "start_time": "2023-10-07T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/490EBC9EB766DF53B143B32DA994C7AB/Kuolleet_lehdet_7_"
            },
            "short_description": {
                "fi": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus.</p><p>Heidän tietään kohti tätä kunnioitettavaa päämäärää varjostavat miehen alkoholismi, kadonneet puhelinnumerot, tietämättömyys toistensa nimistä tai osoitteista ja elämän yleinen taipumus asettaa esteitä onneaan etsivien tielle.</p><p>Tämä lempeä tragikomedia on jo kadonneeksi luultu neljäs osa Aki Kaurismäen työläistrilogiaan (Varjoja paratiisissa, Ariel ja Tulitikkutehtaan tyttö).</p><p>Ikäraja 7<br>Kesto 81 min<br>Ensi-ilta 15.9. <br>Tekstitys suomeksi.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "name": {
                "fi": "Kuolleet lehdet (7) – Kino Helios"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61062/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60520",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/pekka-laine-the-enchanted-tinyhawk-bizzarro-malmitalo-17544823/",
                        "sv": "https://www.lippu.fi/event/pekka-laine-the-enchanted-tinyhawk-bizzarro-malmitalo-17544823/",
                        "en": "https://www.lippu.fi/event/pekka-laine-the-enchanted-tinyhawk-bizzarro-malmitalo-17544823/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4358,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:44.263173Z",
                    "last_modified_time": "2023-09-07T14:23:44.263195Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730914.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4358/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:44.085271Z",
            "last_modified_time": "2023-11-14T06:13:17.754466Z",
            "date_published": null,
            "start_time": "2023-10-06T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BE8686E96A792221A88656064040F107/Pekka_Laine_The_Enchanted_Tinyhawk_Bizzarro",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BE8686E96A792221A88656064040F107/Pekka_Laine_The_Enchanted_Tinyhawk_Bizzarro",
                "en": "http://www.malmitalo.fi/en/events/event/BE8686E96A792221A88656064040F107/Pekka_Laine_The_Enchanted_Tinyhawk_Bizzarro"
            },
            "short_description": {
                "fi": "Illan aikana luvassa on psykedeelisiä rantalomakokemuksia ja kokeellista rock-musiikkia.",
                "sv": "Under kvällen blir det psykedeliska badsemesterupplevelser och experimentell rockmusik.",
                "en": "During the evening, there will be psychedelic beach holiday experiences and experimental rock music."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Illan aikana luvassa on psykedeelisiä rantalomakokemuksia ja kokeellista rock-musiikkia.</p><p></b>Pekka Laine</b> elää kaksoiselämää.</p><p>Päivisin hän on arvostettu Yleisradion musiikkitoimittaja, joka suosituissa radio-ohjelmissaan ja televisiodokumenteissa myllää populaarikulttuurin syövereissä. Sitten on se hämärämpi puoli eli kitaristi ja musiikintekijä Pekka Laine.</p><p>Kulttimainetta nauttivan <i>The Hypnomen</i> -yhtyeen primus motorina Laine on 1990-luvulta asti tehnyt villisti kuplivaa instrumentaalimusiikkia. Kitaralegenda <b>Esa Pulliaisen</b> rohkaisemana ja yllyttämänä syntyi soolodebyytti <i>The Enchanted Guitar of Pekka Laine</i> vuonna 2021. Levy on rakkaudentunnustus lumotulle soittimelle, sähkökitaralle ja sen kosmisille kaiuille.</p><p>Seuraava askel oli vääjäämätön. Maaginen mielikuvitusmatka on vietävä live-yleisön eteen ja syntyi <i>Pekka Laine & The Enchanted</i>.  Kuusimiehisessä unelmayhtyeessä kokemus ja näkemys kohtaavat nuoruuden vimman, kun indie-konkarit ja uuden polven tyyliniekat hyppäävät saman raketin kyytiin.</p><p>Livesovituksina Laineen instrumentaalisävellykset tarjoavat mielikuvitusmatkailua koko rahalla. Luvassa on psykedeelisiä rantalomakokemuksia, jännittäviä hetkiä länkkärimaisemissa, pikapyrähdyksiä avaruuteen ja surrealistisia seikkailuita.</p><p><b>Pekka Laine & The Enchanted</b><br>Pekka Laine – kitara <br>Tommi Pietiläinen – kitara<br>Topias Tiheäsalo – kitara<br>Toni Liimatta – koskettimet<br>Väinö Karjalainen – basso <br>Mooses Kuloniemi – rummut</p><p>Illan avaa kokeellista rock-musiikkia esittävä <b>Tinyhawk & Bizzarro</b>, joka julkaisi debyyttialbuminsa elokuussa 2023. Yhtyeen ensimmäinen single <i>Yorokobi</i> ilmestyi 16.12.2022, toinen single <i>Nekorok</i> 3.3.2023 ja tulevan albumin kolmas ja viimeinen single <i>Uji</i> 26.5.2023.</p><p>Kokoonpanon biisintekijä ja kitaristi <b>Jenni Kinnunen</b> tunnetaan esimerkiksi Rosita Luu -yhtyeestä.<br> <br><b>Tinyhawk & Bizzarro</b><br>Jenni Kinnunen – kitara<br>Markus Väisänen –kitara<br>Teemu Aho – basso<br>Jaakko Pöyhönen – rummut</p>",
                "sv": "<p>Under kvällen blir det psykedeliska badsemesterupplevelser och experimentell rockmusik.</p><p>Pekka Laine lever ett dubbelliv. På dagtid är han en uppskattad musikreporter vid Rundradion som gräver djupt i populärmusikens värld i sina populära radioprogram och tv-dokumentärer.</p><p>Sedan finns det en mörkare sida, gitarristen och musikskrivaren <b>Pekka Laine</b>. Laine har, i egenskap av primus motor för det kultförklarade bandet <b>The Hypnomen</b>, sedan 1990-talet skapat vilt bubblande instrumentalmusik.</p><p><b>Pekka Laine & The Enchanted</b><br>Pekka Laine <br>Tommi Pietiläinen <br>Topias Tiheäsalo <br>Toni Liimatta <br>Väinö Karjalainen <br>Mooses Kuloniemi</p><p>Kvällen öppnas av <b>Tinyhawk & Bizzarro</b> som spelar experimentell rockmusik och som släppte sitt debutalbum i augusti 2023. Bandets låtskrivare och gitarrist <b>Jenni Kinnunen</b> är känd till exempel från bandet Rosita Luu.</p><p><b>Tinyhawk & Bizzarro</b><br>Jenni Kinnunen <br>Markus Väisänen<br>Teemu Aho <br>Jaakko Pöyhönen</p>",
                "en": "<p>During the evening, there will be psychedelic beach holiday experiences and experimental rock music.</p><p><b>Pekka Laine</b> leads a double life. By day, Laine is a respected music journalist at Yle, who roams the depths of popular culture in popular radio programmes and TV documentaries.</p><p>And then there’s the darker side – guitarist and musician Pekka Laine. Laine has been making wildly effervescent instrumental music since the 1990s as the primus motor of the cult band <b>The Hypnomen</b>.</p><p><b>Pekka Laine & The Enchanted</b><br>Pekka Laine <br>Tommi Pietiläinen <br>Topias Tiheäsalo <br>Toni Liimatta <br>Väinö Karjalainen <br>Mooses Kuloniemi</p><p>The evening will be kicked off by experimental rock band <b>Tinyhawk & Bizzarro</b>, who are releasing their debut album in August 2023. The band’s songwriter and guitarist <b>Jenni Kinnunen</b> is known for bands such as Rosita Luu.</p><p><b>Tinyhawk & Bizzarro</b><br>Jenni Kinnunen <br>Markus Väisänen<br>Teemu Aho <br>Jaakko Pöyhönen</p>"
            },
            "name": {
                "fi": "Pekka Laine & The Enchanted | Tinyhawk & Bizzarro",
                "sv": "Pekka Laine & The Enchanted | Tinyhawk & Bizzarro",
                "en": "Pekka Laine & The Enchanted | Tinyhawk & Bizzarro"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60520/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61049",
            "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": [],
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5148,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:29:46.282165Z",
                    "last_modified_time": "2023-10-09T13:29:46.282184Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737381.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5148/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:29:46.062987Z",
            "last_modified_time": "2023-11-14T06:13:17.677908Z",
            "date_published": null,
            "start_time": "2023-10-06T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5A0B3173E0CBC350A266E1DEA1114F49/Spede_7_"
            },
            "short_description": {
                "fi": "Pertti ’Spede’ Pasasen elämästä ja urasta kertova elokuva käy läpi ikonisen viihteentekijän innovatiivisinta elokuvatuotantovaihetta."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Pertti ’Spede’ Pasasen elämästä ja urasta kertova elokuva käy läpi ikonisen viihteentekijän innovatiivisinta elokuvatuotantovaihetta.</p><p>Elokuva valottaa kulissien takaisia tapahtumia 1960-luvun lopulta Uuno Turhapuron syntytarinaan ja kansansuosioon, sekä Speden väsymätöntä taistelua viihteen puolesta ajan elokuvataidepiirejä vastaan. Millainen Spede Pasanen oli persoonana, työkaverina, viihdetaiteilijana - ja puolisona?</p><p>Ikäraja 7<br>Ensi-ilta 29.9.2023<br>Kesto 95 min<br>Tekstitetty suomeksi</p>"
            },
            "name": {
                "fi": "Spede (7) – Kino Helios"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61049/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60987",
            "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": [],
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5147,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:29:45.870162Z",
                    "last_modified_time": "2023-10-09T13:29:45.870181Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737357.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5147/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:29:45.737886Z",
            "last_modified_time": "2023-11-14T06:13:17.600846Z",
            "date_published": null,
            "start_time": "2023-10-06T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2757A2CE1B0421E81CE577D24850A751/Kuolleet_lehdet_7_"
            },
            "short_description": {
                "fi": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus.</p><p>Heidän tietään kohti tätä kunnioitettavaa päämäärää varjostavat miehen alkoholismi, kadonneet puhelinnumerot, tietämättömyys toistensa nimistä tai osoitteista ja elämän yleinen taipumus asettaa esteitä onneaan etsivien tielle.</p><p>Tämä lempeä tragikomedia on jo kadonneeksi luultu neljäs osa Aki Kaurismäen työläistrilogiaan (Varjoja paratiisissa, Ariel ja Tulitikkutehtaan tyttö).</p><p>Ikäraja 7<br>Kesto 81 min<br>Ensi-ilta 15.9. <br>Tekstitys suomeksi.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "name": {
                "fi": "Kuolleet lehdet (7) – Kino Helios"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60987/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60519",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "15 € / 10 €",
                        "sv": "15 € / 10 €",
                        "en": "15 € / 10 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/helsinki-international-big-band-composing-contest-3296830/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/helsinki-international-big-band-composing-contest-3296830/?affiliate=ADV",
                        "en": "https://www.lippu.fi/artist/umo-helsinki-jazz-orchestra/helsinki-international-big-band-composing-contest-3296830/?affiliate=ADV"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4354,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:40.639097Z",
                    "last_modified_time": "2023-09-07T14:23:40.639153Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_726140.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:40.463579Z",
            "last_modified_time": "2023-11-14T06:13:17.041699Z",
            "date_published": null,
            "start_time": "2023-10-05T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1EC88AAC79C491C14A8D175CD3BCDBB9/Helsinki_International_Big_Band_Composing_Contest",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1EC88AAC79C491C14A8D175CD3BCDBB9/Helsinki_International_Big_Band_Composing_Contest",
                "en": "http://www.malmitalo.fi/en/events/event/1EC88AAC79C491C14A8D175CD3BCDBB9/Helsinki_International_Big_Band_Composing_Contest"
            },
            "short_description": {
                "fi": "Euroopan laajuisen Big Band -sävellyskilpailun finaalikonsertti kuullaan Malmitalossa!",
                "sv": "Finalkonserten för Big Band-kompositionstävlingen går av stapeln i Malms kulturhus!",
                "en": "The final concert of the pan-European Big Band Composing Contest will take place at Malmitalo!"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Euroopan laajuisen Big Band -sävellyskilpailun finaalikonsertti kuullaan Malmitalossa!</p><p>Joka toinen vuosi pidettävä <b>Helsinki International Big Band Composing Contest</b> järjestetään jälleen <b>UMO Helsinki Jazz Orchestran</b> ja <b>Suomen Big Band -yhdistys ry:n</b> toteuttamana.</p><p>Kilpailu on suunnattu kaikille eurooppalaisille tai Euroopassa asuville musiikintekijöille ilman ikärajaa ja kilpaa käydään yhdellä ennalta tallentamattomalla ja julkaisemattomalla, 4–7-minuuttisella, big bandin vakiokokoonpanolle sävelletyllä teoksella per säveltäjä.</p><p>Finaaliin valitaan kahden anonyymin esikarsintakierroksen jälkeen enintään 10 teosta, jotka UMO Helsinki Jazz Orchestra soittaa kapellimestari <b>Antti Rissasen</b> johtamana.</p><p>Tuomaristoa johtaa UMOn taiteellinen johtaja ja pääkapellimestari <b>Ed Partyka</b>. Kilpailun voittajalle on luvassa 3000 euron palkinto, toiseksi tulleelle 2000 euroa ja kolmannelle 1000 euroa.</p><p>Kilpailun lisätiedot ja säännöt www.umohelsinki.fi</p><p>Konsertin kesto: n. 2,5–3 tuntia.</p>",
                "sv": "<p>Finalkonserten för Big Band-kompositionstävlingen går av stapeln i Malms kulturhus!</p><p>Till finalen utses efter två anonyma omgångar högst tio verk som UMO Helsinki Jazz Orchestra spelar under ledning av dirigent Antti Rissanen.</p><p>Längd cirka 2,5–3 t.</p>",
                "en": "<p>The final concert of the pan-European Big Band Composing Contest will take place at Malmitalo!</p><p>After two anonymous opening rounds, a maximum of 10 works will be selected for the final, to be performed by the UMO Helsinki Jazz Orchestra under the direction of conductor Antti Rissanen.</p><p>Duration: approx. 2,5–3 hours</p>"
            },
            "name": {
                "fi": "Helsinki International Big Band Composing Contest",
                "sv": "Helsinki International Big Band Composing Contest",
                "en": "Helsinki International Big Band Composing Contest"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60519/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60518",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "29,50 € / 22,50 €",
                        "sv": "29,50 € / 22,50 €",
                        "en": "29,50 € / 22,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/georg-joijje-wadenius-jazz-trio-malmitalo-17268542/",
                        "sv": "https://www.lippu.fi/event/georg-joijje-wadenius-jazz-trio-malmitalo-17268542/",
                        "en": "https://www.lippu.fi/event/georg-joijje-wadenius-jazz-trio-malmitalo-17268542/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4349,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:36.873850Z",
                    "last_modified_time": "2023-09-07T14:23:36.873877Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728592.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4349/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:36.722617Z",
            "last_modified_time": "2023-11-14T06:13:16.754145Z",
            "date_published": null,
            "start_time": "2023-10-04T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CFCC513A2AB349CF2F1658A6C792408B/Georg_Joijje_Wadenius",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CFCC513A2AB349CF2F1658A6C792408B/Georg_Joijje_Wadenius",
                "en": "http://www.malmitalo.fi/en/events/event/CFCC513A2AB349CF2F1658A6C792408B/Georg_Joijje_Wadenius"
            },
            "short_description": {
                "fi": "Georg Wadenius aloitti uransa jazz-kitaristina, joka oli saanut vahvoja vaikutteita Wes Montgomeryltä ja Jim Hallilta.",
                "sv": "Jazzgitarristen Georg Wadenius har spelat med Roberta Flack, Luther Vandross, Simon & Garfunkel och Steely Dan – och många fler.",
                "en": "Georg Wadenius started as a jazz guitar player, heavily influenced by Wes Montgomery and Jim Hall."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Georg Wadenius aloitti uransa jazz-kitaristina, joka oli saanut vahvoja vaikutteita Wes Montgomeryltä ja Jim Hallilta.</p><p>Soitettuaan kolme vuotta tunnetussa <i>Made in Sweden</i> -fuusiokooonpanossa hän sai kutsun liittyä <i>Blood, Sweat and Tears</i> -yhtyeeseen. Hän esiintyi ja levytti kokoonpanon kanssa neljän vuoden ajan.</p><p>Samaan aikaan hän levytti ja esiintyi livenä myös <b>Joe Hendersonin</b> ja <b>Ronnie Cuberin</b> kanssa. Myöhemmin hänestä tuli <i>Saturday Night Live Bandin</i> vakiojäsen kuuden vuoden ajaksi ja hän sekä levytti että teki kiertueita <b>Roberta Flackin</b>, <b>Luther Vandrossin</b>, <b>Simon & Garfunkelin</b>, <b>Steely Danin</b> sekä lukuisten muiden kanssa.</p><p>Nyt hän palaa juurilleen trio <i>Gejoman</i> kanssa, yhdessä kahden Ruotsin suurimman jazz-muusikon, <b>Jonas Holgerssonin</b> (rummut) sekä <b>Mattias Svenssonin</b> (basso) kanssa.</p>",
                "sv": "<p>Jazzgitarristen Georg Wadenius har spelat med Roberta Flack, Luther Vandross, Simon & Garfunkel och Steely Dan – och många fler.</p><p>Nu återvänder han till sina rötter med trio Gejoma – tillsammans med två av Sveriges största jazzmusiker, Jonas Holgersson (trummor) och Mattias Svensson (bas).</p>",
                "en": "<p>Georg Wadenius started as a jazz guitar player, heavily influenced by Wes Montgomery and Jim Hall.</p><p>After 3 years with the renowned fusion group Made in Sweden he was asked to join Blood, Sweat & Tears. He played and recorded with them for 4 years.</p><p>During this time he also recorded and played live with Joe Henderson and Ronnie CuberLater on he was a permanent member of the Saturday Night Live Band for 6 years and recorded and toured with Roberta Flack, Luther Vandross, Simon & Garfunkel and Steely Dan – among countless others.</p><p>He now returns to his roots with the trio Gejoma – joined by two of Swedens greatest jazz players, Jonas Holgersson, drums and Mattias Svensson, bass.</p>"
            },
            "name": {
                "fi": "Georg \"Joijje\" Wadenius",
                "sv": "Georg \"Joijje\" Wadenius",
                "en": "Georg \"Joijje\" Wadenius"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60518/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61047",
            "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": [],
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5145,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:29:41.086199Z",
                    "last_modified_time": "2023-10-09T13:29:41.086218Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737377.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5145/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:29:40.401936Z",
            "last_modified_time": "2023-11-14T06:13:16.577770Z",
            "date_published": null,
            "start_time": "2023-10-04T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_",
                "en": "http://www.malmitalo.fi/en/events/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_"
            },
            "short_description": {
                "fi": "1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa.</p><p>Borghettin perhe on juuri muuttanut uuteen upeilla näkymillä varustettuun kerrostaloasuntoon, joita kiireessä rakennetaan kaupungin vaurastuvalle keskiluokalle. Vaikka perheessä näyttää ulospäin olevan kaikki kunnossa, niin asiat eivät ole niin kuin ennen.<br> <br>Clara (<b>Penélope Cruz</b>) ja Felice (<b>Vincenzo Amato</b>) ovat menettäneet rakkautensa. Kotiäiti Clara on<br>autoritääriselle miehelleen ensimmäiseksi vaimo ja vasta toiseksi lapsilleen äiti. Claralla ei juurikaan ole sosiaalista elämää ydinperheen ulkopuolella ja siksi hän alkaa elää elämäänsä lastensa kautta.</p><p>Kotona oleva stressaantunut tunnelma sekä kotiväkivallan peittely suvun silmissä vie hänet entistä kauemmaksi aviomiehestään. Perheen tytär Adri (<b>Luana Giuliani</b>) kamppailee oman identiteettinsä kanssa ja isänsä harmiksi ystävystyy alempaan yhteiskuntaluokkaan kuuluvan tytön kanssa. Sisäiset ristiriidat repivät perhettä erilleen kohti murtumispistettä, jota suvun taustalla aiheuttama paine ei yhtään helpota.</p><p><i>Terraferma</i> ja <i>Kultainen portti</i> -elokuvien ohjauksistaan tunnettu <b>Emanuele Crialese</b> on Rakas äitini<br>elokuvassa tarttunut osittain omaelämänkerralliseen aiheeseen. Sen autenttinen 1970-lukulainen värimaailma on värikylläinen ja näyttävä. Elokuva toimii monessa tasossa ja sen perheidylliä rikkovat ongelmat ovat hyvin samaistuttavia myös nykyaikana.<br> <br>Ensi-ilta 22.9.2023<br>Kesto 99 min<br>Ikäraja 12</p>"
            },
            "name": {
                "fi": "Rakas äitini (12) – Kino Helios",
                "sv": "Rakas äitini (12) – Kino Helios",
                "en": "Rakas äitini (12) – Kino Helios"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61047/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61045",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios",
                        "sv": "https://www.lippu.fi/artist/kino-helios",
                        "en": "https://www.lippu.fi/artist/kino-helios"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5143,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:29:38.313568Z",
                    "last_modified_time": "2023-10-09T13:29:38.313594Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737373.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5143/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:29:38.175668Z",
            "last_modified_time": "2023-11-14T06:13:16.330254Z",
            "date_published": null,
            "start_time": "2023-10-04T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D0CA566A3BAD089DA8A709153DDE1F5C/Peluri_kuolema_on_elavien_ongelma_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D0CA566A3BAD089DA8A709153DDE1F5C/Peluri_kuolema_on_elavien_ongelma_16_",
                "en": "http://www.malmitalo.fi/en/events/event/D0CA566A3BAD089DA8A709153DDE1F5C/Peluri_kuolema_on_elavien_ongelma_16_"
            },
            "short_description": {
                "fi": "Ruumisautobisneksen halvimmat kuskit, Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat joutuneet tilanteeseen, jossa kaikki on mennyt pieleen ja uusi alku olisi tarpeen.",
                "sv": "Allt har gått åt skogen för likbilsbranschens lågprischaufförer Risto Kivi (Pekka Strang) och Arto Niska (Jari Virman) och de måste börja om från början.",
                "en": "The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Ruumisautobisneksen halvimmat kuskit, Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat joutuneet tilanteeseen, jossa kaikki on mennyt pieleen ja uusi alku olisi tarpeen.</p><p>Risto on pelannut kotinsa ja perheensä ja Arto on saanut niskakipuja hoidattaessaan kuulla, ettei hänellä ole käytännössä juurikaan aivoja.</p><p>Voi siis kaikella syyllä todeta, että paremminkin on mennyt. Ystävyksillä ei käytännössä ole jäljellä muuta kuin työnsä. Sen parissa he hoitavat kaikkein likaisimmatkin keikat. Hakevat junan alle murskautuneet ja koteihinsa mädäntyneet niiden viimeiseen lepopaikkaan. Kuten Risto osuvasti toteaa – kuolema on elävien ongelma. Sitä miesten elämässä riittää, mutta tästä huolimatta he pyrkivät uskomaan elämään.</p><p>Vaikka toisella ei ole aivoja, eikä toisella sydäntä, yhdessä tilanne ei ole toivoton. Asiat ottavat kuitenkin yllättävän suunnan ja Risto ja Arto joutuvat pelaamaan uhkapeliä omalla hengellään. Sen jälkeen mikään ei ole ennallaan.</p><p><i>Peluri – Kuolema on elävien ongelma</i> on kuolemanvakava komedia ystävyydestä, heikkouksista ja anteeksiannosta. Se koskettaa, naurattaa ja satuttaa - sekä auttaa ymmärtämään elämää sen eri sävyissä.</p><p>Ikäraja: 16<br>Kesto 98 min<br>Ensi-ilta 22.9.2023<br>Tekstitys suomeksi</p>",
                "sv": "<p>Allt har gått åt skogen för likbilsbranschens lågprischaufförer Risto Kivi (Pekka Strang) och Arto Niska (Jari Virman) och de måste börja om från början.</p><p>Risto har spelat bort hem och familj och Arto har i samband med en behandling av sin nacksmärta fått veta att han praktiskt taget knappt har någon hjärna.</p><p>Läget har alltså varit bättre. I praktiken har de två polarna inget annat än sitt arbete, där de tar emot också de värsta uppdragen och transporterar personer som krossats under tåg och personer som förmultnat i hemmet till den sista viloplatsen. Som Risto mycket träffande konstaterar – döden är de levandes problem. Och problem finns det gott om i männens liv, men trots det här gör de sitt bästa för att tro på livet.</p><p>Den ena må sakna hjärna och den andra må sakna hjärta, men när de är tillsammans är situationen i alla fall inte helt hopplös. Saker och ting tar ändå en oväntad vändning och Risto och Arto tvingas spela ett högt spel med sina liv som insats. Efter det är ingenting mera som förut.<br>Spelaren – Döden är de levandes problem är en gravallvarlig komedi om vänskap, svagheter och förlåtelse. Den berör, den roar och den gör ont – samt hjälper oss att förstå livet i alla dess olika nyanser.</p><p>Åldersgräns: 16<br>Längd 98 min<br>Premier 22.9.2023</p>",
                "en": "<p>The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start.</p><p>The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start.</p><p>Age limit: 16<br>Duration 98 min<br>Premier 22.9.2023</p>"
            },
            "name": {
                "fi": "Peluri – kuolema on elävien ongelma (16) – Kino Helios",
                "sv": "Peluri – kuolema on elävien ongelma (16) – Kino Helios",
                "en": "Peluri – kuolema on elävien ongelma (16) – Kino Helios"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61045/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60659",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4325,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:17.540156Z",
                    "last_modified_time": "2023-09-07T14:23:17.540176Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728016.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4325/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:23:16.980024Z",
            "last_modified_time": "2023-11-14T06:13:14.835366Z",
            "date_published": null,
            "start_time": "2023-09-30T08:00:00Z",
            "end_time": "2023-09-30T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DF2C0221EBD4D6C6A9D8BE2AB2338944/Kolibr_-festivaali",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/DF2C0221EBD4D6C6A9D8BE2AB2338944/Festivalen_Kolibr_",
                "en": "http://www.malmitalo.fi/en/events/event/DF2C0221EBD4D6C6A9D8BE2AB2338944/Kolibr_Festival"
            },
            "short_description": {
                "fi": "Koko perheen festivaali Kolibrí järjestetään tänä vuonna kolmattatoista kertaa, tällä kertaa Malmitalossa.",
                "sv": "Festivalen Kolibrí är avsedd för hela familjen och ordnas i år för trettonde gången, denna gång i Malms kulturhus.",
                "en": "The Kolibrí Festival for the whole family takes place for the thirteenth time this year, this time in Malmitalo."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Koko perheen festivaali Kolibrí järjestetään tänä vuonna kolmattatoista kertaa, tällä kertaa Malmitalossa.</p><p>Kolibrí-festivaalilla taiteilijat ympäri maailmaa tarjoavat työpajoja, tarinankerrontaa, esityksiä ja paljon hauskaa tekemistä niin lapsille kuin aikuisillekin. Festivaalin teemat koetaan taiteen, tanssin, teatterin, musiikin, elokuvan keinoin.</p><p>Koko ohjelma:</p><p>(Un)familiar sounds and colours<br>Lauantai 30.9 – Kokoushuone 2 – 11:00-11:30</p><p>Kolibríin kolmatta kertaa osallistuva taiteilija Vivita Kaupere saa tuekseen kollegansa Zane Uiton, tämän vuorovaikutteisen esityksen musiikin tarjoajan. Se kutsuu pohtimaan maahanmuuttoa, inkluusiota ja sitä, miten jokainen henkilö tuo valoaan ja värejään mukanaan minne tahansa.<br>Maailmanlaajuisen lastenmusiikin ja perinteisempien äänien kautta taiteilijat ja osanottajat osallistuvat dynaamiseen kokemukseen, jossa kehon ilmaisu kumpuaa kokemuksesta elää tutuissa ympäristöissä, mutta joiden äänimaailma saattaa olla vähemmän tuttu korvalle. Tämä työpaja kuvastaa kokemusta uusille seuduille saapumisesta ja tarjoaa mahdollisuuden oppia uutta musiikkia ja löytää tunteita, jotka voivat herätä kulkiessa tuntemattomilla alueilla.</p><p>Jokaisella työpajassa otetulla askeleella, musiikin tahdissa, kaikki osallistujat jättävät taakseen oman jalanjälkensä taiteellisen leimansa, täynnä värejä, symboloiden jokaisen henkilön jälkiä tässä maailmassa.</p><p>Taiteilijat: Vivita Kaupere and Zane Uitto<br>Puhumme:  englanti, suomi, latvian<br>Ikäsuositus: 0-4 vuoteen<br>Kesto: 30 minuuttia<br>Kapasiteetti: 20 paria</p><p>Cerca<br>Lauantai 30.9 – Malmisali – 11:00-12:00</p><p>”Kaksi täysin tuntematonta kohtaa samassa paikassa samaan aikaan. Nämä kaksi ovat hyvin erilaisia keskenään, mutta heillä on yhteisiäkin asioita. Yksi ja toinen. TOINEN on aina mahdollisuus, se voi olla joku, jonka kanssa jakaa niin jännittävän kokemuksen kuin arjenkin. Ystävä.”<br>Vuonna 2016 julkaistu esitys, joka pohtii toiminnan ja kuvien dramaturgian kautta tilaa keinona harjoitella monimutkaisten sosio-affektiivisten suhteiden luomista. Esitys on luotu taiteilijan asunnossa Teatro Testoni Ragazzi La Baraccassa, Bolognassa, Italiassa Iberescena-ohjelman tuella.</p><p>Taiteilijat: Teatro al Vacío<br>Puhumme: Ei dialogia<br>Ikäsuositus: 3-6 vuoteen<br>Duration: 45 minuuttia<br>Kapasiteetti: 200 henkilöä</p><p>Serenity Corner<br>Lauantai 30.9 - Malmin Kirjasto (Glass Room) – 11:00-16:00</p><p>Kolibrí 2021 tarjoaa kaikille osallistujille, yleisöstä taiteilijoihin ja vapaaehtoisiin, “Serenity Cornerin”, jonka voisi kääntää vaikkapa rauhan nurkkaukseksi. Se on turvallinen ja rauhallinen tila niille, jotka tarvitsevat mukavan levähdyspaikan aisteilleen. Paitsi että siellä on mukava sisustus ja aistineutraali ilmapiiri, tila tarjoaa leluja ja toimintaa, joka auttaa rauhoittamaan kuormittunutta aistijärjestelmää. Rauhan nurkkaus on varmasti arvokas autisteille tai niille, joilla on ADHD-taipumusta, mutta myös kaikille, jotka tarvitsevat hiljaista paikkaa, kuten vaikkapa imettävät äidit.</p><p>Ikäsuositus: koko perhe<br>Puhumme: englanti, espanja, portugali<br>Kesto: 5 tuntia<br>Kapasiteetti: ei rajaa</p><p>Kolibrí Pinssi - Nonstop työpaja<br>Lauantai 30.9 30.9 – Aula – 11:00-16:00<br>Tee oma 2023-pinssi. Kiinnitä Kolibrísi lähelle sydäntäsi!</p><p>Ikäsuositus: koko perhe<br>Kesto: 5 tuntia<br>Kapasiteetti: ei rajaa</p><p>Lasten Kirjamessut 2023<br>Lauantai, 30.9 – Narikka – 11:00-16:00</p><p>Lasten Kirjamessut on yksi perinteisimmistä tapahtumistamme ja se tarjoaa ainutlaatuisen tilaisuuden viedä mukaasi käytettyjä lastenkirjoja espanjaksi ja portugaliksi. Ja kuten joka vuosi, omistaudumme lastenkirjallisuudelle tarjoten laajan valikoiman teoksia kustantajilta Ibero-Amerikasta.</p><p>Tänä vuonna Lasten kirjamessut keskittyy Kolibrí Festivaalin 2023 kunniavieraan, Alfredo Soderguitin työhön. Hän on uruguaylainen kirjailija, kuvittaja ja elokuvantekijä, joka on kirjoittanut teoksen \"Los Carpinchos\" (Ediciones Ekaré, 2020) ja signeeraa kirjojaan messuillamme.</p><p>Lisäksi löydät kauniita kuvituksia taiteilijoilta, jotka ovat osallistuneet aiempiin festivaaleihin: Isidro Ferrer, Yara Kono, Paloma Valdivia ja Juan Palo</p>",
                "sv": "<p>Festivalen Kolibrí är avsedd för hela familjen och ordnas i år för trettonde gången, denna gång i Malms kulturhus.</p><p>På festivalen Kolibrí erbjuder konstnärer från olika håll i världen verkstäder, historieberättande, föreställningar och mycket roligt att göra för både barn och vuxna. Festivalens tema upplevs genom konst, dans, teater, musik och film.</p><p>(Un)familiar sounds and colours <br>Lördag 30.9 – Kokohuone 2 – 11:00-11:30</p><p>I sitt tredje år som deltagare i Kolibrí, får konstnären Vivita Kaupere stöd av sin kollega Zane Uitto, som kommer att stå för musiken i denna interaktiva föreställning som inbjuder till eftertanke kring migration, inkludering och hur varje person för med sig sitt ljus och sina färger vart de än går.<br>Genom global barnmusik och mer traditionella ljud kommer konstnärer och deltagare att engagera sig i en dynamisk upplevelse där kroppsuttryck uppstår från erfarenheten av att leva i bekanta miljöer men med ljud som kan vara mindre bekanta för örat. Denna workshop representerar upplevelsen av att anlända till nya platser och erbjuder möjligheten att lära sig ny musik och upptäcka de känslor som kan uppstå medan man vandrar genom okända områden.<br>Med varje steg som tas i workshopen, i takt med musiken, kommer alla deltagare att lämna efter sig den konstnärliga representationen av sina egna fotspår, fyllda med färger, vilket symboliserar spåren av varje person i denna värld.</p><p>Artister: Vivita Kaupere och Zane Uitto<br>Vi talar: Engelska, Finska, Lettiska<br>Rekommenderad ålder: 0 – 4 år<br>Längd: 30 minuter<br>Kapacitet: 20 par</p><p>Serenitetshörnet <br>Lördag 30.9 - Malmin Kirjasto (Glass Room) – 11:00-16:00<br>Kolibrí kommer att erbjuda alla deltagare, från publik till artister och volontärer, “Serenitetshörnet”. Detta kommer att vara en trygg och lugn plats för dem som behöver en bekväm plats för en sinnespaus. Förutom bekväma sittmöbler och en sensoriskt neutral omgivning, kommer platsen att ha leksaker och aktiviteter som hjälper att lugna personer som upplever sinnesöverbelastningar. “Serenitetshörnet” kan upplevas som värdefullt för personer med autism eller med ADHD, men även för personer som behöver en lugn och tyst plats, som till exempel för ammande mammor.</p><p>Vi talar: Engelska, Spanska, Portugisiska<br>Rekommenderad ålder: alla åldrar<br>Längd: 5 timmar<br>Kapacitet: Ingen gräns</p><p>Kolibrí brosch<br>Lördag 30.9 – Aula – 11:00-16:00<br>Kom och gör din brosch 2023. Bär din Kolibrí nära ditt hjärta!<br>Vi talar: Engelska, Spanska, Portugisiska<br>Rekommenderad ålder: hela familjen<br>Längd: 5 timmar<br>Kapacitet: Ingen gräns</p><p>Barnboksmässa 2023<br>Lördag 30.9 – Narikka – 11:00-16:00<br>Kolibrí Festivaali 2023 kommer att arrangera sin traditionella Barnboksmässa, och den kommer att vara full av överraskningar!<br>Vår Barnboksmässa är en av våra mest traditionella evenemang och den ger en unik möjlighet att ta med sig begagnade barnböcker på spanska och portugisiska hem. Som varje år omfamnar vi barnlitteratur med ett brett urval av titlar från förlag över hela Iberoamerika.<br>I år kommer Bokmässan att fokusera på arbetet av Alfredo Soderguit, hedersgäst vid Kolibrí Festivaali 2023. Den uruguayanska författaren, illustratören och filmskaparen, författare till ”Los Carpinchos” (Ediciones Ekaré, 2020), kommer att signera böcker på vår mässa, så missa inte det!<br>Du kommer också att hitta vackra illustrationer av konstnärer som har deltagit i tidigare upplagor av festivalen: Isidro Ferrer, Yara Kono, Paloma Valdivia och Juan Palomino.</p><p>Vi talar: Engelska, Spanska, Finska, Portugisiska<br>Rekommenderad ålder: hela familjen<br>Längd: 5 timmar<br>Kapacitet: Ingen gräns</p><p>Cerca<br>Lördag, 30.9 – Malmisali – 11:00-12:00<br>”Två helt främlingar träffas på samma plats samtidigt. De två är väldigt olika varandra, men har saker gemensamt. Den ena och den andra. DEN ANDRA är alltid en möjlighet, det kan vara någon att dela en vardagsupplevelse med. En vän.”<br>Släppt 2016 är det en föreställning som genom handlingars och bilders dramaturgi reflekterar över rummet som ett sätt att öva på att etablera komplexa socioaffektiva relationer. En föreställning skapad under ko</p>",
                "en": "<p>The Kolibrí Festival for the whole family takes place for the thirteenth time this year, this time in Malmitalo.</p><p>At the Kolibrí Festival, artists from around the world offer workshops, storytelling, performances and lots of fun activities for children and adults alike. The themes of the festival are experienced through art, dance, theatre, music, film.</p><p>(Un)familiar sounds and colours<br>Saturday, 30.9 – Kokohuone 2 – 11:00-11:30<br>In her third year participating in Kolibrí, artist Vivita Kaupere is joined by her colleague Zane Uitto, who will provide the music for this interactive show that invites reflection on migration, inclusion, and how every person brings their light and colors wherever they go.<br>Through global children's music and more traditional sounds, artists and participants will engage in a dynamic experience where body expression arises from the experience of living in familiar settings but with sounds that may be less familiar to the ear. This workshop represents the experience of arriving in new places and offers the opportunity to learn new music and discover the emotions that can arise while walking through unfamiliar territories.<br>With each step taken in the workshop, to the rhythm of the music, all participants will leave behind the artistic representation of their own footprints, filled with colors, symbolizing the traces of every person in this world.</p><p>Artists: Vivita Kaupere and Zane Uitto<br>We speak: English, Finnish, Latvian<br>Target ages: 0 to 4 years old<br>Duration: 30 minutes<br>Capacity: 20 pairs</p><p>Cerca<br>Saturday, 30.9 – Malmisali – 11:00-12:00<br>“Two complete strangers coincide in the same place at the same time. The two are very different from each other, but with things in common. One and other. The OTHER is always a possibility, it can be someone to share. A friend. An exciting experience, like every day.”<br>Released in 2016, it’s a show that, through a dramaturgy of actions and images, reflects on space as a means of rehearsing how to establish complex socio-affective relationships.<br>A show created in the artist's residence at the Teatro Testoni Ragazzi La Baracca, Bologna, Italy, with the support of the Iberescena Program.</p><p>Artists: Teatro al Vacío<br>We speak: No dialogue<br>Target ages: 3-6 years old<br>Duration: 45 minutes<br>Capacity: 200 people</p><p>Mi casa, tu casa<br>Saturday, 30.9 – Kokoushuone 3 (2nd floor) – 11:00-13:00 / 14:00-15:00<br>The invited artist of Kolibrí 2023, Alfredo Soderguit, will lead this workshop, combining literature, animation, and, of course, lots of creativity. “Mi casa, es tu casa” is a typical phrase in the Spanish language, used in many Ibero-American countries to invite friends and family to feel like a part of the household.<br>We will have the opportunity to enjoy the reading of Soy un animal and Los Carpinchos, in the voice of the author himself. Additionally, we will have a great time watching the episode Aves Migratorias from the animated series Dos Pajaritos, also created by Soderguit.<br>We will also have the assistance of Mexican designer and illustrator Mariana Núñez, who has extensive experience in creating and facilitating workshops for children.</p><p>Artists: Alfredo Soderguit<br>We speak: English, Spanish, Finnish, Portuguese, Swedish<br>Target ages: +5 years old<br>Duration: 3 hours<br>Capacity: 15 pairs</p><p>Serenity Corner - Nonstop <br>Saturday, 30.9 - Malmin Kirjasto (Glass Room) – 11:00-16:00<br>Kolibrí 2022 will offer to all participants, from audience members to artists and volunteers, the \"Serenity Corner”. This will be a safe and calm space for those needing a comfortable spot for a sensory break. Besides comfortable furniture and a sensory-neutral atmosphere, the space will contain toys and activities to help regulate those with overwhelmed sensory systems. The \"Serenity Corner” may prove very valuable to autistic people or those with ADHD, but can also be used by anyone who needs a quiet space, like breastfeeding mothers for instance.  <br>We speak: English, Spanish and Portuguese<br>Target ages: All ages<br>Duration: 5 hours<br>Capacity: No limit</p><p>Kolibrí Pins - Nonstop workshop</p>"
            },
            "name": {
                "fi": "Kolibrí-festivaali – Iloa ja riemua koko perheelle!",
                "sv": "Festivalen Kolibrí – Glädje och fröjd för hela familjen!",
                "en": "Kolibrí Festival – Joy and happiness for the whole family!"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60659/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60742",
            "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": [],
                    "description": null,
                    "price": {
                        "fi": "22,50 € / 24,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmitalo-sanjay-khan-intia-charlotta-kerbs-fin-malmitalo-17486891/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4318,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:11.125258Z",
                    "last_modified_time": "2023-09-07T14:23:11.125294Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735384.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4318/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:10.963513Z",
            "last_modified_time": "2023-11-14T06:13:14.363310Z",
            "date_published": null,
            "start_time": "2023-09-28T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1720AFBE01311C3D311368064AD21FB5/Sanjay_Khan_IND_Charlotta_Kerbs_FIN_"
            },
            "short_description": {
                "fi": "Duona Sanjay Khan ja Charlotta Kerbs tuovat yhteen pohjoismainen kansanmusikin, jazzin, soulin ja Sanjayn intialaisen musiikinperinteen ainutlaatuisessa kohtaamisessa."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Duona Sanjay Khan ja Charlotta Kerbs tuovat yhteen pohjoismainen kansanmusikin, jazzin, soulin ja Sanjayn intialaisen musiikinperinteen ainutlaatuisessa kohtaamisessa.</p><p>Sanjay Khan on seitsemännen sukupolven muusikko, joka soittaa perinteistä, klassista ja sufi-musiikkia Intiasta. Hän on laulaja ja soittaa kartalia, tablaa ja harmoniumia. Sanjay on esiintynyt yli 80 maassa ja esiintynyt kuningatar Elizabethille ja Mick Jaggerille - tuoden intialaista perinnettä sydämiin ympäri maailmaa.</p><p>Charlotta on monipuolinen ja tunnettu laulaja, muusikko ja lauluntekijä, joka työskentelee monissa eri musiikkilajeissa. Hän työskentelee sessiolaulajana kaikkialla Euroopassa ja Yhdysvalloissa ja säveltää myös teatterimusiikkia.</p>"
            },
            "name": {
                "fi": "Sanjay Khan (IND) & Charlotta Kerbs (FIN)"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60742/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60446",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4316,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:10.281631Z",
                    "last_modified_time": "2023-09-07T14:23:10.281665Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731291.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4316/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:09.553866Z",
            "last_modified_time": "2023-11-14T06:13:14.143226Z",
            "date_published": null,
            "start_time": "2023-09-28T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/92F3EF9698D9698C57CBFF162152EE1C/Kuukauden_klassikkoelokuva_Leijat_Helsingin_ylla_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/92F3EF9698D9698C57CBFF162152EE1C/Manadens_klassiska_film_Drakarna_over_Helsingfors_12_",
                "en": "http://www.malmitalo.fi/en/events/event/92F3EF9698D9698C57CBFF162152EE1C/Classic_film_of_the_month_Kites_over_Helsinki_12_"
            },
            "short_description": {
                "fi": "Tarina suomenruotsalaisen Bexarin kolmilapsisen perheen elämästä 1960-luvulta 1990-luvulle.",
                "sv": "En berättelse om den finlandssvenska trebarnsfamiljen Bexars liv från 1960-talet till 1990-talet.",
                "en": "The story of the life of the Finnish-Swedish Bexar family with three children from the 1960s to the 1990s."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tarina suomenruotsalaisen Bexarin kolmilapsisen perheen elämästä 1960-luvulta 1990-luvulle.</p><p>Perheenjäsenten kohtalot ja keskinäiset erimielisyydet kietoutuvat samalla yhteen ajan yhteiskunnan kehityksen ja murrosten kanssa.</p><p>Kesto: 90 min<br>Ikäraja: 12</p><p>Vapaa pääsy!</p>",
                "sv": "<p>En berättelse om den finlandssvenska trebarnsfamiljen Bexars liv från 1960-talet till 1990-talet.</p><p>Familjemedlemmarnas öden och ömsesidiga meningsskiljaktigheter sammanflätas med tidens utveckling och brytpunkterna i samhället.</p><p>Längd: 90 min<br>Åldersgräns: 12</p>",
                "en": "<p>The story of the life of the Finnish-Swedish Bexar family with three children from the 1960s to the 1990s.</p><p>The fates of the family members and their mutual disagreements are intertwined with the social developments and upheavals of the time.</p><p>Duration 90 min<br>Age rating: 12</p>"
            },
            "name": {
                "fi": "Kuukauden klassikkoelokuva: Leijat Helsingin yllä (12) – Kino Helios",
                "sv": "Månadens klassiska film: Drakarna över Helsingfors (12)",
                "en": "Classic film of the month: Kites over Helsinki (12)"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60446/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60400",
            "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:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4315,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:08.831061Z",
                    "last_modified_time": "2023-09-07T14:23:08.831093Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734842.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4315/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:23:08.173761Z",
            "last_modified_time": "2023-11-14T06:13:14.057163Z",
            "date_published": null,
            "start_time": "2023-09-28T14: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B9B0CE720371B374BC45E7F1FA21FA0E/Lintuja_ja_liskoja_keramiikan_perhekurssi"
            },
            "short_description": {
                "fi": "Tule tekemään savesta lintuja, liskoja ja muita mielenkiintoisia eläimiä."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tule tekemään savesta lintuja, liskoja ja muita mielenkiintoisia eläimiä.</p><p>Kurssin ensimmäisellä kerralla syvennymme eläimen rakenteeseen ja valmistamme eläinveistokset kivitavarasavesta. Toisella kerralla jatkamme raakapoltettujen esineiden pintakäsittelyllä käyttäen erilaisia keramiikan värejä ja lasitteita. Työt jäävät vielä toiseen polttoon, jonka jälkeen ne voi noutaa Malmitalosta.</p><p>Kurssipäivät ja -ajat ovat seuraavat (ilmoittautuneet sitoutuvat osallistumaan molemmille kerroille):<br>14.9. 17.30–19.45<br>28.9. 17.30–19.45</p><p>Ilmoittautumiset sähköpostitse: anni.hiekkala@hel.fi<br>Huom! Paikkoja on rajattu määrä. Kurssi on tarkoitettu vanhempi-lapsi-pareille.</p><p>Ohjauskieli on suomi.<br>Kurssi on maksuton ja se soveltuu yli 3-vuotiaille lapsille aikuisen kanssa.</p>"
            },
            "name": {
                "fi": "Lintuja ja liskoja – keramiikan perhekurssi"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60400/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60739",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4312,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:06.965810Z",
                    "last_modified_time": "2023-09-07T14:23:06.965845Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_724386.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4312/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:06.789256Z",
            "last_modified_time": "2023-11-14T06:13:13.832674Z",
            "date_published": null,
            "start_time": "2023-09-28",
            "end_time": "2023-10-21",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4FC4460F98867B968B9364DA4A109D27/Kahden_taivaan_alla"
            },
            "short_description": {
                "fi": "Näyttely esittelee viiden Suomessa asuvan chileläistaiteilijan teoksia."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Näyttely esittelee viiden Suomessa asuvan chileläistaiteilijan teoksia.</p><p><b>Claudia Lincopán</b> maalaa maisemia ja ihmisten jokapäiväistä elämää. Inspiraationsa hän saa Chilen maisemista ja kulttuurista. Herkkä ja harmoninen värimaailma korostuvat hänen teoksissaan. Etelä-Chilessä syntynyt Lincopán saapui Suomeen 18 vuotta sitten ja työskentelee nykyisin päiväkodissa Helsingissä.</p><p><b>Carolina Mac-Iverin</b> tulkitsee teoksissaan hienovaraisesti Chilen mytologisia aiheita. Maalaukset ovat koristeellisia ja herkkiä katseenvangitsijoita. Vuonna 1982 syntynyt Mac-Iver saapui Suomeen 10 vuotta sitten ja on opiskellut sisustusarkkitehtuuria ja huonekalusuunnittelua Lahden ammattikorkeakoulussa (nyk. LAB-ammattikorkeakoulu).</p><p><b>Miguel Vera</b> on valokuvannut sekä maisemia että ihmisiä päivittäisissä askareissaan.  Näyttelyssä on esillä myös kollaasi Chilessä vuonna 2019 kuvatuista mielenosoituksista. Vuonna 1954 syntynyt Vera saapui Suomeen perheensä kanssa Chilen vallankaappauksen jälkeen vuonna 1973. Hän on työskennellyt Suomessa mm. lehti- ja dokumenttivalokuvauksen parissa.</p><p><b>Ivan Wistuba</b> esittelee herkkiä luontokuvia. Hänen suosikkiaiheitaan ovat lintu- ja hyönteiskuvat sekä luonnon mysteerit. Wistuba on asunut Suomessa vuodesta 1977 lähtien. Hän on opiskellut graafista suunnittelua Taideteollisessa korkeakoulussa (nyk. Aalto-yliopisto) ja tehnyt uraa erilaisissa <br>suunnittelutoimistoissa.</p><p><b>Maria Fernanda Rodríguez</b> saa inspiraationsa luonnosta. Hän hyödyntää teoksissaan luonnosta keräämiään materiaaleja, mm. luonnonvaraisia kukkia, pudonneita lehtiä ja ruohoja. Maria Fernanda Rodríguez on asunut Suomessa vuodesta 1977 lähtien.</p>"
            },
            "name": {
                "fi": "Kahden taivaan alla"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60739/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60838",
            "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: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": [],
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "en": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4308,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:03.535883Z",
                    "last_modified_time": "2023-09-07T14:23:03.535916Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735146.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4308/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:03.381457Z",
            "last_modified_time": "2023-11-14T06:13:13.589774Z",
            "date_published": null,
            "start_time": "2023-09-27T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/720B1C73D78358532546281071D2255F/Venetsian_aaveet_12_",
                "en": "http://www.malmitalo.fi/en/events/event/720B1C73D78358532546281071D2255F/A_Haunting_in_Venice_12_"
            },
            "short_description": {
                "fi": "Venetsian aaveet sijoittuu toisen maailmansodan jälkeiseen Venetsiaan pahaenteisesti pyhäinpäivän aattona, jolloin tapahtuvan karmivan mysteerin myötä valkokankaalle palaa maineikas etsivä Hercule Poirot.",
                "en": "“A Haunting in Venice” is set in eerie, post-World War II Venice on All Hallows’ Eve and is a terrifying mystery featuring the return of the celebrated sleuth, Hercule Poirot."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Venetsian aaveet sijoittuu toisen maailmansodan jälkeiseen Venetsiaan pahaenteisesti pyhäinpäivän aattona, jolloin tapahtuvan karmivan mysteerin myötä valkokankaalle palaa maineikas etsivä Hercule Poirot.</p><p>Eläkkeelle jäätyään Poirot vetäytynyt viettämään hiljaiseloa maailman kiehtovimmassa kaupungissa, missä hän hyvin vastahakoisesti suostuu osallistumaan spiritistiseen istuntoon rapistuvassa palazzossa, jossa kummittelee. Kun yksi vieraista joutuu murhan uhriksi, etsivämme tempautuu pahuuden pyörteisiin tuossa varjojen ja salaisuuksien maailmassa.</p><p>Ikäraja: 12<br>Kesto: 96 min<br>Ensi-ilta 15.9.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>",
                "en": "<p>“A Haunting in Venice” is set in eerie, post-World War II Venice on All Hallows’ Eve and is a terrifying mystery featuring the return of the celebrated sleuth, Hercule Poirot.</p><p>Now retired and living in self-imposed exile in the world’s most glamorous city, Poirot reluctantly attends a séance at a decaying, haunted palazzo. When one of the guests is murdered, the detective is thrust into a sinister world of shadows and secrets.</p><p>Age rating: 12<br>Duration: 96 minutes</p>"
            },
            "name": {
                "fi": "Venetsian aaveet (12) – Kino Helios",
                "en": "A Haunting in Venice (12) – Kino Helios"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60838/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60832",
            "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": [],
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4306,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:01.636158Z",
                    "last_modified_time": "2023-09-07T14:23:01.636179Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735154.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4306/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:01.066504Z",
            "last_modified_time": "2023-11-14T06:13:13.291432Z",
            "date_published": null,
            "start_time": "2023-09-27T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8AE19E1D7ABE2D07B6E2A2C178CE602B/Rikos_on_minun_12_"
            },
            "short_description": {
                "fi": "Ranskassa reilusti yli miljoona katsojaa teattereihin koonnut kesähitti on samaan aikaan ovela bulevardikomedia ja feministinen parodia sekä originellin epäkorrekti farssi."
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Ranskassa reilusti yli miljoona katsojaa teattereihin koonnut kesähitti on samaan aikaan ovela bulevardikomedia ja feministinen parodia sekä originellin epäkorrekti farssi.</p><p>Pariisi, 1935. Naisilla ei ole vielä edes äänioikeutta. Mahakkaat tuottajat ja lipevät lakimiehet pyörittävät seurapiirejä ja liiketoimia. Aloitteleva näyttelijätär Madeleine (Nadia Terezkiewicz) ja työtön asianajaja Pauline (Rebecca Marder) jakavat halvan ullakkohuoneen – vaikka rahat eivät oikein riitä edes moisen murjun vuokraan.</p><p>Madeleine joutuu syytteeseen tahmatassuisen tuottajan murhasta. Pauline ryhtyy hänen asianajajakseen. Se oli itsepuolustusta! Madeleine vapautetaan. Seuraa valtava seurapiirisirkus. Maine ja menestys näyttävät olevan käden ulottuvilla. Mutta kuka oikeasti murhasi tuottajan?</p><p>Isabelle Huppert kruunaa Francois Ozonin ohjaaman elokuvan valtavan tähtikaartin.</p><p>Kesto 102 min<br>Ikäraja: 12<br>Ensi-ilta 25.8.2023</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>"
            },
            "name": {
                "fi": "Rikos on minun (12) – Kino Helios"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60832/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}