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

{
    "meta": {
        "count": 1640,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=45",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=43"
    },
    "data": [
        {
            "id": "kulke:63763",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/fat-chance-10-vuotta-juhlakonsertti-malmitalo-18621893/",
                        "sv": "https://www.lippu.fi/event/fat-chance-10-vuotta-juhlakonsertti-malmitalo-18621893/",
                        "en": "https://www.lippu.fi/event/fat-chance-10-vuotta-juhlakonsertti-malmitalo-18621893/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22,50 € / 17,50 €",
                        "sv": "22,50 € / 17,50 €",
                        "en": "22,50 € / 17,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151864,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T14:14:05.524646Z",
                    "last_modified_time": "2024-07-25T14:14:05.524668Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752500.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151864/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T14:14:05.495722Z",
            "last_modified_time": "2024-08-29T05:13:30.568693Z",
            "date_published": null,
            "start_time": "2024-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,
            "short_description": {
                "fi": "Kymmenvuotisjuhliaan viettävän Fat Chance -yhtyeen albumi Second Chance valittiin suomalaisen Blues News -lehden kriitikoiden vuoden 2023 parhaaksi kotimaiseksi roots-julkaisuksi (jaettu ykköstila).",
                "sv": "Det tioåriga Fat Chance-bandets album Second Chance valdes till det bästa finländska roots-albumet 2023 (delad förstaplats) av kritikerna i tidningen Finnish Blues News.",
                "en": "Fat Chance's album Second Chance, which celebrates the band’s tenth anniversary, was selected as the best Finnish roots release of the year 2023 by the critics of Finnish Blues News magazine (shared first space)."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9A2455F62037E8F9936BCB6FCBDD0F73/Fat_Chance_10_vuotta_-juhlakonsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9A2455F62037E8F9936BCB6FCBDD0F73/Fat_Chance_10-arsjubileumskonsert",
                "en": "http://www.malmitalo.fi/en/events/event/9A2455F62037E8F9936BCB6FCBDD0F73/Fat_Chance_10th_Anniversary_Concert"
            },
            "description": {
                "fi": "<p>Kymmenvuotisjuhliaan viettävän Fat Chance -yhtyeen albumi Second Chance valittiin suomalaisen Blues News -lehden kriitikoiden vuoden 2023 parhaaksi kotimaiseksi roots-julkaisuksi (jaettu ykköstila).</p>",
                "sv": "<p>Det tioåriga Fat Chance-bandets album Second Chance valdes till det bästa finländska roots-albumet 2023 (delad förstaplats) av kritikerna i tidningen Finnish Blues News.</p>",
                "en": "<p>Fat Chance's album Second Chance, which celebrates the band’s tenth anniversary, was selected as the best Finnish roots release of the year 2023 by the critics of Finnish Blues News magazine (shared first space).</p>"
            },
            "name": {
                "fi": "Fat Chance 10 vuotta -juhlakonsertti",
                "sv": "Fat Chance 10-årsjubileumskonsert",
                "en": "Fat Chance 10th Anniversary Concert"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63763/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63755",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/a-la-malmi-lyyti-malmitalo-18621644/",
                        "sv": "https://www.lippu.fi/event/a-la-malmi-lyyti-malmitalo-18621644/",
                        "en": "https://www.lippu.fi/event/a-la-malmi-lyyti-malmitalo-18621644/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151451,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-13T11:13:46.181187Z",
                    "last_modified_time": "2024-06-13T11:13:46.181213Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752464.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151451/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-13T11:13:46.152697Z",
            "last_modified_time": "2024-08-29T05:13:28.893336Z",
            "date_published": null,
            "start_time": "2024-09-27T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Lyytin keikoilla niin riemukkaat kuin kipeätkin tunteet eletään yhdessä läpi itkun, naurun, tanssin ja yhteislaulun kautta.",
                "sv": "På Lyytis spelningar genomlever vi både sprudlande och smärtsamma känslor tillsammans genom gråt, skratt, dans och allsång.",
                "en": "At Lyyti's gigs, both joyful and painful emotions are experienced together through crying, laughter, dancing and singing together."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0C9ED76D7AC6E8BC2BDF2173A63CCA98/Lyyti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0C9ED76D7AC6E8BC2BDF2173A63CCA98/Lyyti",
                "en": "http://www.malmitalo.fi/en/events/event/0C9ED76D7AC6E8BC2BDF2173A63CCA98/Lyyti"
            },
            "description": {
                "fi": "<p>Lyytin keikoilla niin riemukkaat kuin kipeätkin tunteet eletään yhdessä läpi itkun, naurun, tanssin ja yhteislaulun kautta.</p><p>Kolme albumia julkaissut Lyyti on viime vuosina hurmannut yleisöjä ympäri Suomen häikäisevän yhtyeensä kanssa. Lyyti tunnetaan monen ikäisiä koskettavista kappaleistaan sekä eläväisestä esiintymisestään, joka herättää laulujen tarinat henkiin.</p><p>Lyytin musiikissa puhuttelevat tekstit yhdistyvät loisteliaaseen soittoon ja tuotantoon. Palkitut kappaleet kuten ”Mihin voi soittaa?” ja ”Ennätyshelteet” ovat nousseet kuvaamaan nuoren sukupolven kokemusta epävarmaan maailmantilanteeseen kasvamisesta. Silti toivon löytäminen, vaikka pohjamutaan uponneista siemenistä, on Lyytin musiikin pohjimmainen sanoma.</p><p>Lyytin kiitetty kolmas albumi Nousussa taas on lumoava matka pohjalta kohti valoa. Albumi keräsi kolme Emma-ehdokkuutta, ja Ennätyshelteet-kappaleelle myönnettiin Juha Vainio -seuran ”Vuoden sanoitus” -palkinto.</p><p>”Harvoinpa sitä pääsee todistamaan konserttia, jota seuraa täysin haltioituneena, ihmeissään ja täynnä onnea.” Helsingin Sanomat 17.10.2021</p><p>A la Malmi on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoille parhaat itsenäisen musiikin tekijät. Laadukas konserttisaliympäristö nousevine katsomoineen tarjoaa jokaiselle asiakkaalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Akustiset, äänentoistolliset ja valaistukselliset puitteet ovat Malmisalissa huippuluokkaa.</p><p>Kesto 1 t 15 min</p>",
                "sv": "<p>På Lyytis spelningar genomlever vi både sprudlande och smärtsamma känslor tillsammans genom gråt, skratt, dans och allsång.</p><p>Lyyti har gett ut tre album under de senaste åren, och har med sitt bländande band charmat publiker över hela Finland. Lyyti är känd för sina sånger som berör människor i olika åldrar och sitt livfulla framträdande som väcker sångernas berättelser till liv.</p><p>Lyytis musik kombinerar stämningsfulla texter med briljant spel och produktion. Prisbelönta låtar såsom ”Mihin voi soittaa?” och ”Ennätyshelteet” har vuxit fram för att beskriva den unga generationens upplevelse av att växa upp i en osäker världssituation. Att finna hopp är dock det centrala budskapet i Lyytis musik, även om man måste dyka ner till bottnen för att finna dess frön.</p><p>Lyytis hyllade tredje album Nousu är däremot en förtrollande resa från bottnen mot ljuset. Albumet fick tre Emmanomineringar och låten Ennätyshelteet belönades med Juha Vainio-sällskapets pris för årets text.</p><p>“Det är sällsynt att bevittna en konsert och bli helt överväldigad, förbluffad och full av lycka.” Helsingin Sanomat 17.10.2021</p>",
                "en": "<p>At Lyyti's gigs, both joyful and painful emotions are experienced together through crying, laughter, dancing and singing together.</p><p>Lyyti, who has released three albums, has in recent years charmed audiences all over Finland with their dazzling band. Lyyti is known for songs that resonate with people of all ages, as well as lively performances that brings the stories of the songs to life.</p><p>The touching lyrics Lyyti's music are combined with impeccable musicianship and production. Award-winning songs, such as “Mihin voi soittaa?” and “Ennätyshelteet” have emerged to describe a young generation's experience of growing up in an uncertain world. Still, finding hope, even from seeds sowed in mud, is the fundamental message of Lyyti's music.</p><p>On the other hand, Lyyti's acclaimed third album, Nousussa, is an enchanting journey from the bottom towards the light. The album received three Emma nominations, and the \"Ennätyshelteet\" single was awarded the Juha Vainio Society's \"Lyrics of the Year\" award.</p><p>“Rarely do you get to witness a concert that you can be completely enchanted and amazed by, that fills you with happiness.” Helsingin Sanomat 17 October 2021</p>"
            },
            "name": {
                "fi": "Lyyti – A la Malmi",
                "sv": "Lyyti – A la Malmi",
                "en": "Lyyti – A la Malmi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63755/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63751",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/saimaa-malmitalo-18646778/",
                        "sv": "https://www.lippu.fi/event/saimaa-malmitalo-18646778/",
                        "en": "https://www.lippu.fi/event/saimaa-malmitalo-18646778/"
                    },
                    "description": null,
                    "price": {
                        "fi": "30 € / 24 €",
                        "sv": "30 € / 24 €",
                        "en": "30 € / 24 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151450,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-13T11:13:45.936988Z",
                    "last_modified_time": "2024-06-13T11:13:45.937017Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751746.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151450/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-13T11:13:45.886869Z",
            "last_modified_time": "2024-08-29T05:13:26.623466Z",
            "date_published": null,
            "start_time": "2024-09-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Huippumuusikoiden kollektiivi seikkailee vapautuneesti ja rajattomasti musiikin parissa, nyt myös Malmitalossa!",
                "sv": "Ett kollektiv av toppmusiker kastar sig frigjort och gränslöst ut på äventyr i musiken!",
                "en": "A collective of highly skilled musicians sets forth on a liberating and limitless adventure with music!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/71E8D00B1C7B95EFADFA36E7C263C423/Saimaa_LOPPUUNMYYTY",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/71E8D00B1C7B95EFADFA36E7C263C423/Saimaa_SLUTSALD",
                "en": "http://www.malmitalo.fi/en/events/event/71E8D00B1C7B95EFADFA36E7C263C423/Saimaa_SOLD_OUT"
            },
            "description": {
                "fi": "<p>Huippumuusikoiden kollektiivi seikkailee vapautuneesti ja rajattomasti musiikin parissa, nyt myös Malmitalossa!</p><p>Matti Mikkolan luotsaama Saimaa on erityislaatuinen yhtye, joka jatkuvan sutkutuksen ja hutkutuksen ajamana kurkottaa kohti loputonta soittoeuforiaa.</p><p>Kollektiivin seikkailu musiikin parissa on vapautunutta, grandiöösiä ja ihanan rajoittamatonta. Platinalevyjen, joilla solisteina olivat Pepe Willberg ja Pyhimys, Ylen Urheilu-Suomi-scoren ja arvostelumenestykseksi nousseen cover-levyn kautta yhtye on synnyttänyt hallitun progen, classic rockin, funkyn viihdemusan sekä klasarin superpyörteen, jonka sävyissä soi Suomi-iskelmän kaiho.</p><p>1960- ja 70-lukujen soundeista ja estetiikasta häpeilemättömästi ammentava Saimaa onkin ylväimmillään nimenomaan livenä, kun huippumuusikot uppoutuvat hekumalliseen yhteissoittoon ja vuorojamitukseen, jota hallitsevat yltäkylläiset telepaattiset voimat. Huikea ammattitaito, kokemus ja tekemisen riemu luovat villin, värikkään ja yllätyksellisen kokemuksen, joka ei hevillä unohdu.</p><p>Yhtyeen pääasialliset säveltäjät Matti Mikkola ja Eppu Kosonen ovat suomalaisen musiikkikentän mestarikokkeja, jotka ovat tehtailleet hittejä niin JVG:lle, Vesa-Matti Loirille, Paula Vesalalle, Kaija Koolle, Juha Tapiolle kuin Lauri Tähkällekin.</p><p>Kesto: 2 t 30min, sis. 20 min väliajan</p>",
                "sv": "<p>Ett kollektiv av toppmusiker kastar sig frigjort och gränslöst ut på äventyr i musiken!</p><p>Under ledning av Matti Mikkola är Saimaa ett säreget band. Drivet av ett ständigt tuffande och puffande sträcker sig bandet mot en oändlig musikalisk eufori.</p><p>Kollektivets musikaliska äventyr är befriande, storslaget och underbart ohämmat. Via platinaalbum med Pepe Willberg och Pyhimys som solister, Yles Urheilu-Suomi-score och ett kritikerrosat coveralbum har bandet skapat en superb virvel av välavvägd proge, klassisk rock, funkig underhållningsmusik och klassisk musik, med ekon av den finländska schlagerns vemod.</p><p>Saimaa inhämtar skamlöst intryck från 1960- och 70-talens sound och estetik och är mäktigast live, när toppmusikerna fördjupar sig i ett njutningsfullt samspel och turvist jammande som domineras av översvallande telepatiska krafter. Den enastående yrkeskunskapen, erfarenheten och skaparglädjen skapar en vild, färgstark och överraskande upplevelse som sent kommer att glömmas.</p><p>Bandets huvudkompositörer Matti Mikkola och Eppu Kosonen är mästerkockar på den finländska musikscenen, och har producerat hittar för JVG, Vesa-Matti Loiri, Paula Vesala, Kaija Koo, Juha Tapio och Lauri Tähkä.</p>",
                "en": "<p>A collective of highly skilled musicians sets forth on a liberating and limitless adventure with music!</p><p>Saimaa, led by Matti Mikkola, is a special kind of band that, driven by constant buzz and hubbub, strives for an endless euphoria of musicianship.</p><p>The collective's adventure in music is liberating, grandiose and wonderfully unlimited. Through the platinum albums with Pepe Willberg and Pyhimys as soloists, Ylen Sports’ score and their critically acclaimed cover album, the band has created a controlled supervortex of prog, classic rock, funky show music and classical, which rings with the longing of old Finnish hits.</p><p>Saimaa, drawing shameless inspiration from the sounds and aesthetics of the 1960s and 1970s, is at its most grandiose live, when its top musicians immerse themselves in an enchanting ensemble and jam, dominated by an abundant telepathic force. Their incredible musicianship, experience and joy create a wild, colourful and surprising experience that will not be easily forgotten.</p><p>The primary composers of the band, Matti Mikkola and Eppu Kosonen, are masters of the Finnish music scene, who have made hits for JVG, Vesa-Matti Loiri, Paula Vesala, Kaija Koo, Juha Tapio and Lauri Tähkä.</p>"
            },
            "name": {
                "fi": "Saimaa LOPPUUNMYYTY – Malmitalo 30 vuotta",
                "sv": "Saimaa SLUTSÅLD – Malms kulturhus 30 år",
                "en": "Saimaa SOLD OUT – Malmitalo 30th Anniversary"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63751/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63749",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/ben-granfelt-live-malmitalo-18646180/",
                        "sv": "https://www.lippu.fi/event/ben-granfelt-live-malmitalo-18646180/",
                        "en": "https://www.lippu.fi/event/ben-granfelt-live-malmitalo-18646180/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,50 €",
                        "sv": "24,50 €",
                        "en": "24,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151711,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-12T14:13:31.572124Z",
                    "last_modified_time": "2024-07-12T14:13:31.572136Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752461.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151711/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-12T14:13:31.554165Z",
            "last_modified_time": "2024-08-29T05:13:24.898473Z",
            "date_published": null,
            "start_time": "2024-09-13T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "50 vuotta kitaranvarressa viihtynyt Ben Granfelt soittaa uutta ja vanhaa tuotantoa – edelleen yhtä innoissaan.",
                "sv": "Efter 50 år vid gitarren spelar Ben Granfelt nytt och gammalt material – med lika stor entusiasm som förr.",
                "en": "After 50 years on the guitar, Ben Granfelt plays new and old material – as excited as ever."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A6619F7E340CB8982842FE7F098BDE2D/Ben_Granfelt_LIVE",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A6619F7E340CB8982842FE7F098BDE2D/Ben_Granfelt_LIVE",
                "en": "http://www.malmitalo.fi/en/events/event/A6619F7E340CB8982842FE7F098BDE2D/Ben_Granfelt_LIVE"
            },
            "description": {
                "fi": "<p>50 vuotta kitaranvarressa viihtynyt Ben Granfelt soittaa uutta ja vanhaa tuotantoa – edelleen yhtä innoissaan.</p><p>Ben Granfelt täytti viime vuonna 60 vuotta ja julkaisi kahdenkymmenen sololevynsä ”Gratitude”, joka oli kunnianosoitus legendaarisille kitaristeille Gary Moorelle, Jeff Beckille ja Robin Trowerille.</p><p>”Oli huikea keikkavuosi, yhteensä 99 keikkaa tuli tehtyä Suomessa ja Euroopassa”, Granfelt kertoo.</p><p>Tänä vuonna hän on soittanut kitaraa 50 vuotta! ”Eli olen joko helvetin vanha tai suhtkoht hyvä kitaristi, päätelkää itse.”</p><p>Granfelt kertoo tehneensä uusia biisejä, joita kuullaan myös keikkasetissä. ”Settilistaa on muutettu ja muokattu, ettei toisteta viime vuosien tuttua ja turvallista meininkiä”, Granfelt kertoo.</p><p>”Uusi studiolevy on tulossa 2025. Olen yhtä innoissani kuin ennenkin. Soittaminen on parasta elämässäni, ja bändi hyvässä vedossa, joka paranee joka keikalla. Triossa on niin paljon vapautta jammailla ja sitä tehdäänkin.”</p><p>Ben Granfelt – kitara, laulu <br>Masa Maijanen – basso, laulu <br>Jari Salminen – rummut, laulu<br>Jarmo Nikku – kitara</p><p>Kesto: 2 t, sis. 20 min väliajan<br>Liput: 24,50 €</p>",
                "sv": "<p>Efter 50 år vid gitarren spelar Ben Granfelt nytt och gammalt material – med lika stor entusiasm som förr.</p><p>I fjol fyllde Ben Granfelt 60 år och släppte då sitt tjugonde soloalbum \"Gratitude\", en hyllning till de legendariska gitarristerna Gary Moore, Jeff Beck och Robin Trower.</p><p>“Det var ett bra spelningsår, med totalt 99 spelningar i Finland och Europa”, berättar Granfelt.</p><p>I år har han spelat gitarr i 50 år! “Därmed är jag är antingen gammal som fan eller en relativt bra gitarrist, ni får avgöra själva.”</p><p>Granfelt berättar att han har skrivit nya låtar, som vi också får höra i livesetet. “Setlistan har ändrats och justerats för att undvika att upprepa det välkända och säkra från de senaste åren”, berättar Granfelt.</p><p>“Ett nytt studioalbum utkommer 2025. Jag är lika entusiastisk som förr. Att spela är det bästa i mitt liv och bandet är i bra form, det blir bättre för varje spelning. I en trio finns det så mycket frihet att jamma, och det är precis vad vi gör.\"</p><p>Ben Granfelt – gitarr, sång <br>Masa Maijanen – bas, sång <br>Jari Salminen – trummor, sång<br>Jarmo Nikku – gitarr</p>",
                "en": "<p>After 50 years on the guitar, Ben Granfelt plays new and old material – as excited as ever.</p><p>Ben Granfelt turned 60 last year and released his twenty solo album “Gratitude”, a tribute to legendary guitarists Gary Moore, Jeff Beck and Robin Trower.</p><p>\"It was a huge touring year, a total of 99 gigs in Finland and Europe,\" Granfelt says.</p><p>This year, he will have been playing guitar for 50 years! \"So either I'm fucking old or I'm a good pretty guitarist. You decide.”</p><p>Granfelt says that he has written new songs that are included in the set list. \"The set list has been changed and modified so that I don’t repeat the familiar and safe atmosphere of the last few years,\" Granfelt says.</p><p>“A new studio album is coming out in 2025. I'm as excited as ever. Playing is the best thing in my life, and the band is in good shape. Getting better with every gig, too. There is so much freedom in this trio to jam, and that's what they do.”</p><p>Ben Granfelt – guitar, vocals <br>Masa Maijanen – bass, vocals <br>Jari Salminen – drums, vocals<br>Jarmo Nikku – guitar</p>"
            },
            "name": {
                "fi": "Ben Granfelt LIVE – With Special Guest Jarmo Nikku",
                "sv": "Ben Granfelt LIVE – With Special Guest Jarmo Nikku",
                "en": "Ben Granfelt LIVE – With Special Guest Jarmo Nikku"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63749/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63748",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmijazz-elifantree-malmitalo-18621794/",
                        "sv": "https://www.lippu.fi/event/malmijazz-elifantree-malmitalo-18621794/",
                        "en": "https://www.lippu.fi/event/malmijazz-elifantree-malmitalo-18621794/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151453,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-13T12:13:11.046952Z",
                    "last_modified_time": "2024-06-13T12:13:11.046969Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752460.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151453/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-13T12:13:11.017015Z",
            "last_modified_time": "2024-08-29T05:13:24.560372Z",
            "date_published": null,
            "start_time": "2024-09-12T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elifantree tekee paluun keikkalavoille ja jatkaa musiikillisten rajojen murtamista!",
                "sv": "Elifantree återvänder till scenen och fortsätter att spränga musikaliska gränser!",
                "en": "Elifantree returns to the stages and continues to break musical boundaries!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/58401FD21A0B68C2790A3B12AF59075E/Elifantree",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/58401FD21A0B68C2790A3B12AF59075E/Elifantree",
                "en": "http://www.malmitalo.fi/en/events/event/58401FD21A0B68C2790A3B12AF59075E/Elifantree"
            },
            "description": {
                "fi": "<p>Elifantree tekee paluun keikkalavoille ja jatkaa musiikillisten rajojen murtamista!</p><p>Elektro-akustinen ja eklektinen Elifantree on laulun ja koskettimien (Anni Elif), saksofonin (Pauli Lyytinen) ja rumpujen (Olavi Louhivuori) päälle rakentuva trio, joka laajentaa äänimaailmaansa värikkäällä kirjolla soittimia. Elifantreen musiikkia on verrattu Pablo Picasson, Charlie Chaplinin ja David Lyncin töihin, runsaudensarveen, mystiseen satumetsään ja ties mihin, mutta ennen kaikkea kyse on kolmen taiteilijan näkemyksestä siitä, mitä (jazz)musiikki voi tänä päivänä olla kategoriat unohtaen. Yhtyeen tavaramerkkejä ovat elastiset groovet, mielikuvitukselliset äänimaailmat sekä virtuoottiset improvisaatiot.</p><p>Elifantree on keikkailut ahkerasti ympäri maailmaa vuodesta 2007 lähtien ja julkaissut kuusi albumia. ”Blood Moon” (2019) oli yhteislevy nykyklassisen Tölöläb-kvartetin kanssa. Viimeisin levytys ”Hachi” (2021) äänitettiin juuri ennen pandemiaa kahdeksassa eri maassa kahdeksan eri rumpalin ja lyömäsoittajan kanssa.</p><p>Elifantree on aktivoitunut vuosien 2023–24 aikana säveltämään uutta materiaalia perustriolle, jota kuullaan jo syksyn 2024 konserteissa tulevaa levytystä ennakoiden. Malmitalon konsertti on Elifantreen ensimmäinen esiintyminen Suomessa sitten vuoden 2022.</p><p>MalmiJazz tarjoilee monipuolisesti jazz-musiikin eri tyylilajeja ensiluokkaisessa konserttisaliympäristössä. Nouseva, numeroitu katsomo tarjoaa jokaiselle konserttivieraalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Malmisalin erinomaiset akustiset, äänentoistolliset ja valaistukselliset puitteet takaavat laadukkaan keikkaelämyksen.</p><p>Kesto: 1 t 15 min</p>",
                "sv": "<p>Elifantree återvänder till scenen och fortsätter att spränga musikaliska gränser!</p><p>Elektroakustiska och eklektiska Elifantree är en trio som bygger på sång och keyboard (Anni Elif), saxofon (Pauli Lyytinen) och trummor (Olavi Louhivuori), och som vidgar sitt sound med en färgstark uppsättning instrument. Elifantrees musik har jämförts med Pablo Picassos, Charlie Chaplins och David Lynchs verk, ymnighetshornet, en mystisk sagoskog och mycket mer, men framför allt handlar det om tre artisters vision av vad (jazz)musik kan vara i dag, bortom kategorier. Bandets kännetecken är en elastisk groove, fantasifulla ljudlandskap och virtuosa improvisationer.</p><p>Sedan 2007 har Elifantree turnerat flitigt runt om i världen och släppt sex album. \"Blood Moon\" (2019) var ett samarbete med den samtida klassiska kvartetten Tölöläb. Deras senaste album \"Hachi\" (2021) spelades in strax före pandemin i åtta olika länder med åtta olika trummisar och slagverkare.</p><p>Under 2023–24 har Elifantree aktiverats att komponera nytt material för grundtrion, som i väntan på den kommande inspelningen kommer att framföras på konserterna under hösten 2024. Konserten i Malms kulturhus blir Elifantrees första framträdande i Finland sedan 2022.</p><p>MalmiJazz bjuder på ett brett utbud av jazzmusikens stilarter i en förstklassig konserthusmiljö. Den upphöjningsbara, numrerade läktaren erbjuder varje konsertbesökare en bekväm sittplats och en bra utsikt över scenen. De utmärkta akustik-, ljudåtergivnings- och ljusförhållandena i Malmsalen garanterar en konsertupplevelse av hög kvalitet.</p>",
                "en": "<p>Elifantree returns to the stages and continues to break musical boundaries!</p><p>The electro-acoustic and eclectic Elifantree is a trio built around vocals and keyboards (Anni Elif), saxophone (Pauli Lyytinen) and drums (Olavi Louhivuori), which expands its sound with a colourful variety of musical instruments. Elifantree's music has been compared to the works of Pablo Picasso, Charlie Chaplin and David Lynch, a cornucopia, a mystical fairytale forest and who knows what, but above all, it is about what today’s (jazz)music can be, without labels. The band's trademarks include elastic grooves, imaginative soundscapes and virtuoso improvisation.</p><p>Elifantree has been touring heavily around the world since 2007, releasing six albums. \"Blood Moon\" (2019) was a joint album with the contemporary classical Tölöläb Quartet. Their latest album, \"Hachi\" (2021), was recorded just before the pandemic in eight different countries with eight different drummers and percussionists.</p><p>Elifantree has begun to compose new material during 2023–24 for their base trio, which will be played at the autumn 2024 concerts in anticipation of the upcoming album. The Malmitalo concert is Elifantree's first performance in Finland since 2022.</p><p>MalmiJazz provides a wide range of jazz music genres in a first-class concert hall environment. The ascending, numbered auditorium provides each concert guest with their own comfortable seat and a good view of the stage. The excellent acoustic, sound and lighting equipment of Malmisali guarantee a high-quality concert experience.</p>"
            },
            "name": {
                "fi": "Elifantree – MalmiJazz",
                "sv": "Elifantree – MalmiJazz",
                "en": "Elifantree – MalmiJazz"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63748/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64202",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151710,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-12T14:13:31.292513Z",
                    "last_modified_time": "2024-07-12T14:13:31.292526Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745832.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151710/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-12T14:13:31.271726Z",
            "last_modified_time": "2024-08-29T05:13:24.453586Z",
            "date_published": null,
            "start_time": "2024-09-12T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Yleisön suosikit on Kino Helioksen uusi elokuvasarja, jossa nähdään Kino Helioksen aiempien kausien yleisömenestyselokuvia ilmaisnäytöksinä.",
                "sv": "Barbie och Ken har sitt livs tid i den färgstarka och till synes perfekta världen Barbie Land.",
                "en": "Barbie and Ken are having the time of their lives in the colorful and seemingly perfect world of Barbie Land."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/574AA136AF7DD7A653C04CE4D6373927/Yleison_suosikit_Barbie_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/574AA136AF7DD7A653C04CE4D6373927/Barbie_7_",
                "en": "http://www.malmitalo.fi/en/events/event/574AA136AF7DD7A653C04CE4D6373927/Barbie_7_"
            },
            "description": {
                "fi": "<p>Yleisön suosikit on Kino Helioksen uusi elokuvasarja, jossa nähdään Kino Helioksen aiempien kausien yleisömenestyselokuvia ilmaisnäytöksinä.</p><p>Elämä Barbiemaassa on täydellistä. Paitsi jos sinulla on eksistentiaalinen kriisi. Tai jos olet Ken.</p><p>Barbie ja Ken viettävät elämänsä aikaa Barbielandin värikkäässä ja näennäisen täydellisessä maailmassa. Kun he saavat mahdollisuuden mennä todelliseen maailmaan, he löytävät nopeasti ihmisten parissa elämisen ilot ja vaarat.</p><p>Oscar-ehdokas Margot Robbie on Barbie ja Ryan Gosling on Ken ohjaaja-käsikirjoittaja Greta Gerwigin huippusuositussa, nokkelassa elokuvassa, josta muodostui maailmanlaajuinen ilmiö.</p><p>Muissa rooleissa nähdään America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Rhea Perlman ja Will Ferrell. Elokuvaa tähdittävät lisäksi Cruz Kayne, Emma Mackey, Hari Nef, Alexandra Shipp, Kingsley Ben-Adir, Simu Liu, Ncuti Gatwa, Scott Evans, Jamie Demetriou, Connor Swindells, Sharon Rooney, Nicola Coughlan, Ritu Arya, Grammyn voittanut laulaja-lauluntekijä Dua Lipa sekä Oscar-voittaja Helen Mirren.</p><p>Käsikirjoitus on Greta Gerwigin ja Noah Baumbachin käsialaa.</p><p>Kesto 114 min<br>Ikäraja 7<br>Ensi-ilta 21.7.2023</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Barbie och Ken har sitt livs tid i den färgstarka och till synes perfekta världen Barbie Land.</p><p>Men när de får en chans att gå till den verkliga världen upptäcker de snart glädjen och farorna med att leva bland människor.</p>",
                "en": "<p>Barbie and Ken are having the time of their lives in the colorful and seemingly perfect world of Barbie Land.</p><p>However, when they get a chance to go to the real world, they soon discover the joys and perils of living among humans.</p>"
            },
            "name": {
                "fi": "Yleisön suosikit: Barbie (7) – Kino Helios",
                "sv": "Barbie (7) – Kino Helios",
                "en": "Barbie (7+) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64202/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63746",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/unreality-ten-years-of-the-dragon-3645968/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/unreality-ten-years-of-the-dragon-3645968/",
                        "en": "https://www.lippu.fi/artist/malmitalo/unreality-ten-years-of-the-dragon-3645968/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24 € / 14 €",
                        "sv": "24 € / 14 €",
                        "en": "24 € / 14 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151709,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-12T14:13:31.064193Z",
                    "last_modified_time": "2024-07-12T14:13:31.064207Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752459.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151709/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-12T14:13:31.034020Z",
            "last_modified_time": "2024-08-29T05:13:24.128369Z",
            "date_published": null,
            "start_time": "2024-09-11T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Sekakuoro Unreality täyttää kymmenen vuotta! Juhlakonsertissa luvassa ohjelmiston parhaita paloja.",
                "sv": "Den blandade kören Unreality fyller tio år! På jubileumskonserten utlovas repertoarens höjdpunkter.",
                "en": "Mixed choir Unreality turns ten years old! The anniversary concert will feature the best of their repertoire."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0A42D45FD68191F75B0EA565B4C51AEE/Ten_Years_of_The_Dragon_Lohikaarmeen_vuosikymmen",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0A42D45FD68191F75B0EA565B4C51AEE/Ten_Years_of_The_Dragon_Drakens_decennium",
                "en": "http://www.malmitalo.fi/en/events/event/0A42D45FD68191F75B0EA565B4C51AEE/Ten_Years_of_the_Dragon"
            },
            "description": {
                "fi": "<p>Sekakuoro Unreality täyttää kymmenen vuotta! Juhlakonsertissa luvassa ohjelmiston parhaita paloja.</p><p>Malmisalissa kuullaan hienoimpia kappaleita kuoron vanhasta ohjelmistosta sekä täysin uusia sovituksia elokuvien, videopelien ja sarjojen musiikeista. Kuoron oranssi lohikäärmelogo leiskuu vahvasti mukana konsertin teemassa, joka nivoutuu vuonna 2024 vietettävän lohikäärmeen vuoden ympärille.</p><p>Unreality on vuonna 2014 perustettu Suomen ensimmäinen kuoro, jonka ohjelmisto koostuu kokonaan soundtrack-musiikista. Kuoron taiteellisena johtajana on toiminut vuodesta 2017 alkaen Jari Koivistoinen.</p>",
                "sv": "<p>Den blandade kören Unreality fyller tio år! På jubileumskonserten utlovas repertoarens höjdpunkter.</p><p>I Malmsalen får vi höra de finaste styckena ur körens gamla repertoar samt helt nya arrangemang av musik från filmer, videospel och TV-serier. Körens orangefärgade draklogo är ett starkt inslag i konsertens tema, som kretsar kring Drakens år 2024.</p><p>Unreality grundades 2014 och är Finlands första kör vars repertoar i sin helhet består av soundtrackmusik. Sedan 2017 har Jari Koivistoinen varit körens konstnärliga ledare.</p>",
                "en": "<p>Mixed choir Unreality turns ten years old! The anniversary concert will feature the best of their repertoire.</p><p>At Malmisali, you will get to hear the finest pieces from the choir's old repertoire, as well as completely new arrangements of music from films, video games and TV shows. The choir’s orange dragon logo is prominent with the theme of the concert, intertwining with the year of the dragon.</p><p>Unreality, founded in 2014, is the first choir in Finland, whose repertoire consists entirely of soundtrack music. The choir's artistic director since 2017 has been Jari Koivistoinen</p>"
            },
            "name": {
                "fi": "Ten Years of The Dragon – Lohikäärmeen vuosikymmen – Unreality-kuoro",
                "sv": "Ten Years of The Dragon – Drakens decennium – Unreality-kören",
                "en": "Ten Years of the Dragon – Unreality Choir"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63746/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63745",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151445,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-13T10:13:03.847768Z",
                    "last_modified_time": "2024-06-13T10:13:03.847783Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752458.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151445/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-13T10:13:03.831574Z",
            "last_modified_time": "2024-08-29T05:13:23.557726Z",
            "date_published": null,
            "start_time": "2024-09-10T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!",
                "sv": "De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!",
                "en": "The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/824E4DDF77A6D0687E584F7CA4D70BE2/Yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/824E4DDF77A6D0687E584F7CA4D70BE2/Yhteislaulut",
                "en": "http://www.malmitalo.fi/en/events/event/824E4DDF77A6D0687E584F7CA4D70BE2/Yhteislaulut"
            },
            "description": {
                "fi": "<p>Suuren suosion saavuttaneet Malmitalon yhteislaulut jatkuvat syksyllä 2024!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.</p><p>Yhteislauluja järjestetään Malmitalon pienessä salissa kerran kuussa tiistaisin seuraavasti:</p><p>Ti 10.9. klo 17–18<br>Ti 8.10. klo 17–18<br>Ti 12.11. klo 17–18<br>Ti 10.12. klo 17–18</p><p>Tervetuloa mukaan!<br>Vapaa pääsy</p>",
                "sv": "<p>De högst populära allsångsevenemangen i Malms kulturhus fortsätter hösten 2024!</p><p>Här får alla sjunga härliga favoritlåtar av hjärtats lust under ledning av Jukka Okkonen och Pauli Kainulainen.</p><p>Allsången ordnas i den lilla salen i Malms kulturhus en gång i månaden på tisdagar.</p><p>Välkommen med!<br>Fritt inträde</p>",
                "en": "<p>The hugely popular Malmitalo sing-along sessions will continue in the spring of 2024!</p><p>Led by Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to wonderful classics.</p><p>Sing-along sessions are held in the small hall of Malmitalo once a month on Tuesdays.</p><p>Welcome!<br>Free admission</p>"
            },
            "name": {
                "fi": "Yhteislaulut",
                "sv": "Yhteislaulut",
                "en": "Yhteislaulut"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63745/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64027",
            "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:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/jam-shenanigans-shenanigans-3642305/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/jam-shenanigans-shenanigans-3642305/",
                        "en": "https://www.lippu.fi/artist/malmitalo/jam-shenanigans-shenanigans-3642305/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151441,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-13T07:14:33.413356Z",
                    "last_modified_time": "2024-06-13T07:14:33.413375Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751032.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151441/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-06-13T07:14:33.380909Z",
            "last_modified_time": "2024-08-29T05:13:23.113844Z",
            "date_published": null,
            "start_time": "2024-09-07T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Shenanigans on lapsiperheille suunnattu nykysirkusesitys luovuuden, leikkimielisyyden ja mielikuvituksen merkityksestä ihmisen koko elämänkaaren aikana.",
                "sv": "Shenanigans är en modern cirkusföreställning för barnfamiljer om vikten av kreativitet, lekfullhet och fantasi under människans hela livscykel.",
                "en": "Shenanigans is a contemporary circus show for families with children about the life-long importance of creativity, playfulness and imagination."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/259CFCE51AB438A82DD1375029D64D39/Shenanigans",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/259CFCE51AB438A82DD1375029D64D39/Shenanigans",
                "en": "http://www.malmitalo.fi/en/events/event/259CFCE51AB438A82DD1375029D64D39/Shenanigans"
            },
            "description": {
                "fi": "<p>Shenanigans on lapsiperheille suunnattu nykysirkusesitys luovuuden, leikkimielisyyden ja mielikuvituksen merkityksestä ihmisen koko elämänkaaren aikana.</p><p>Esityksessä seuraamme kahden hahmon matkaa, jonka aikana he rituaalinomaisesti tutkivat omaa suhdettaan sisäiseen lapseensa. Erilaisten jongleeraus-kohtausten avulla hahmot leikkimielisesti haastavat omaa käsitystään, mitä on olla samaan aikaan sekä aikuinen että lapsi. Tavalliset lelut, kuten styroksista valmistetut lentokoneet, autoradat, sekä puhallettava uima-allas luovat esityksen perustan.</p><p>Artistit kutsuvat yleisön mukaan matkalle, jossa nostalgia ja muistot omasta lapsuudesta nousevat pinnalle. Shenanigans on interaktiivinen teos, jossa artistit jakavat omia lapsuuden unelmiaan ja inspiroivat yleisöä tekemään samoin. Shenanigans on oodi sisäiselle lapselle!</p><p>Henri Kangas (FI) ja Batist Van Baekel (BE) ovat kaverukset ja jonglöörejä, joita yhdistää intohimo ja rakkaus sirkusta kohtaan. Kangas ja Van Baekel tapasivat toisensa Alankomaissa, jossa he opiskelivat sirkustaiteen kandidaateiksi. Valmistuttuaan he yhdistivät voimansa ja loivat yhdistyksen Jam.Shenanigans tavoitteenaan luoda leikkimielisiä nykysirkusesityksiä kaikenikäisillä ja taustaisille katsojille.</p><p>Esityksen mahdollistivat PERPLX (BE), Cirklabo (BE), Mad-Festival (BE), Circusstad-Festival (NL), TENT (NL), Itujen-katselmus (FI), Taiteen edistämiskeskus (FI)</p><p>Artistit: Henri Kangas (FI) & Batist Van Baekel (BE)<br>Artistinen avustus: Sander De Buyer (BE) & Aurelia Brailowsky (MEX)<br>Tekninen tuki: Michael Zandl (AT)<br>Musiikki: Jago Moons (BE)</p><p>Kesto: 50 min<br>Ikäraja: 6 +<br>Kieli: sanaton</p>",
                "sv": "<p>Shenanigans är en modern cirkusföreställning för barnfamiljer om vikten av kreativitet, lekfullhet och fantasi under människans hela livscykel.</p><p>I föreställningen följer vi två karaktärers resa medan de på ett rituellt sätt utforskar relationen till sitt inre barn. Genom olika jongleringsscener utmanar karaktärerna på ett lekfullt sätt sin uppfattning om vad det innebär att vara både vuxen och barn samtidigt. Vanliga leksaker såsom flygplan av styrox, bilbanor och en uppblåsbar simbassäng skapar grunden till föreställningen.</p><p>Artisterna inbjuder publiken att följa med på en resa där nostalgi och minnen från barndomen kommer till ytan. Shenanigans är ett interaktivt verk där artisterna delar med sig av sina barndomsdrömmar och inspirerar publiken att göra detsamma. Shenanigans är en ode till det inre barnet!</p><p>Henri Kangas (FI) och Batist Van Baekel (BE) är vänner och jonglörer som förenas av sin passion och kärlek till cirkusen. Kangas och Van Baekel träffades i Nederländerna, där de studerade till kandidater i cirkuskonst. Efter att de utexaminerats förenade de sina krafter och skapade föreningen Jam Shenanigans med målet att skapa lekfulla moderna cirkusföreställningar för åskådare i alla åldrar och med alla slags bakgrunder.</p><p>Föreställningen har möjliggjorts av PERPLX (BE), Cirklabo (BE), Mad-Festival (BE), Circusstad-Festival (NL), TENT (NL), Itujen-katselmus (FI) och Centret för konstfrämjande (FI).</p><p>Artister: Henri Kangas (FI) & Batist Van Baekel (BE)<br>Artistisk assistans: Sander De Buyer (BE) & Aurelia Brailowsky (MEX)<br>Teknisk support: Michael Zandl (AT)<br>Musik: Jago Moons (BE)</p><p>Längd: 50 min.<br>Åldersgräns: 6 +<br>Inget språk</p>",
                "en": "<p>Shenanigans is a contemporary circus show for families with children about the life-long importance of creativity, playfulness and imagination.</p><p>In the performance, we follow the journey of two characters exploring their relationship with their inner child in a ritual-like manner. Through various juggling scenes, the characters playfully challenge their own perception of what it means to be both an adult and a child at the same time. Ordinary toys such as styrofoam airplanes, car tracks, and an inflatable swimming pool lay the foundation for the show.</p><p>The artists invite the audience on a journey where nostalgia and memories of their own childhood rise to the surface. Shenanigans is an interactive piece where artists share their childhood dreams and inspire their audiences to do the same. Shenanigans is an ode to the inner child!</p><p>Henri Kangas (FI) and Batist Van Baekel (BE) are juggler friends who share a passion and love for the circus. Kangas and Van Baekel met in the Netherlands, while studying for bachelor’s degrees in circus art. After graduating, they joined forces and created their own association, Jam.Shenanigans, which aims to create playful contemporary circus performances for viewers of all ages and backgrounds.</p><p>The performance was made possible by PERPLX (BE), Cirklabo (BE), Mad-Festival (BE), Circusstad-Festival (NL), TENT (NL), Sprouts Review (FI) and Arts Promotion Centre Finland (FI)</p><p>Artists: Henri Kangas (FI) & Batist Van Baekel (BE)<br>Artistic assistance: Sander De Buyer (BE) & Aurelia Brailowsky (MEX)<br>Technical support: Michael Zandl (AT)<br>Music: Jago Moons (BE)</p><p>Duration: 50 mins.<br>Age limit: 6+<br>Language: non-verbal</p>"
            },
            "name": {
                "fi": "Shenanigans – Jam.Shenanigans",
                "sv": "Shenanigans – Jam.Shenanigans",
                "en": "Shenanigans – Jam.Shenanigans"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64027/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63742",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/a-la-malmi-viitasen-piia-malmitalo-18621645/",
                        "sv": "https://www.lippu.fi/event/a-la-malmi-viitasen-piia-malmitalo-18621645/",
                        "en": "https://www.lippu.fi/event/a-la-malmi-viitasen-piia-malmitalo-18621645/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151440,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-13T07:14:33.250504Z",
                    "last_modified_time": "2024-06-13T07:14:33.250523Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752457.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151440/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-13T07:14:33.218082Z",
            "last_modified_time": "2024-08-29T05:13:22.823955Z",
            "date_published": null,
            "start_time": "2024-09-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,
            "short_description": {
                "fi": "Kriitikoiden ylistämä, palkittu indieartisti avaa syksyn A la Malmi -klubisarjan.",
                "sv": "Det kritikerrosade och prisbelönta indieartisten inleder höstens klubbserie A la Malmi.",
                "en": "A critically acclaimed, award-winning indie artist opens the autumn’s club series, A la Malmi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0973E1E85A5A00E053BF49683A75C1A2/Viitasen_Piia_soolo_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0973E1E85A5A00E053BF49683A75C1A2/Viitasen_Piia_solo_",
                "en": "http://www.malmitalo.fi/en/events/event/0973E1E85A5A00E053BF49683A75C1A2/Viitasen_Piia_solo_"
            },
            "description": {
                "fi": "<p>Kriitikoiden ylistämä, palkittu indieartisti avaa syksyn A la Malmi -klubisarjan.</p><p>Viitasen Piia julkaisi odotetun viidennen studioalbuminsa ”Ihmisen aika” maaliskuussa 2024. Artisti kertoo albumin käsittelevän kotia ja kodittomuutta, juuria ja juurettomuutta, äidiksi tulemista sekä ihmisen vaikutusta luontoon.</p><p>”Huomasin uuden albumin kirjoitusprosessin edetessä kirjoittaneeni useita kappaleita eri tavoin kyydistä pudonneiden näkökulmasta: tarinoita ihmisistä, jotka ovat syystä tai toisesta pudonneet tyhjän päälle tai joutuneet rakentamaan elämänsä perustuksia ja turvan tunnetta uudelleen”, Piia kertoo.</p><p>Neljä kriitikoiden ylistämää albumia urallaan julkaissut Viitasen Piia on huomioitu uransa aikana Emma-ehdokkuuksin sekä Kriitikoiden valinta (2014) että Vuoden etno (2019) -kategorioissa. Musiikin tuottajien ja teknologien yhteisö Aux ry palkitsi kuulijoita ravisuttaneen ”Meidän jälkeemme hiljaisuus” -levyn Vuoden albumi ja Vuoden single -palkinnoilla vuonna 2020.</p><p>Viitasen Piia esiintyy Malmitalossa soolona.</p><p>A la Malmi on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoille parhaat itsenäisen musiikin tekijät. Lisäksi laadukas konserttisaliympäristö nousevine katsomoineen tarjoaa jokaiselle asiakkaalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Akustiset, äänentoistolliset ja valaistukselliset puitteet ovat Malmisalissa huippuluokkaa.</p><p>Kesto 1 t 15 min</p>",
                "sv": "<p>Det kritikerrosade och prisbelönta indieartisten inleder höstens klubbserie A la Malmi.</p><p>Viitasen Piia släppte sitt efterlängtade femte studioalbum ”Ihmisen aika” i mars 2024. Enligt artisten handlar albumet om hem och hemlöshet, rötter och rotlöshet, att bli mor och människans påverkan på naturen.</p><p>“När skrivprocessen för det nya albumet fortskred märkte jag att jag hade skrivit flera låtar ur perspektivet för människor som fallit av vagnen: berättelser om människor som av någon orsak har mist allt eller varit tvungna att återuppbygga grunden för sina liv och sin känsla av trygghet\", berättar Piia.</p><p>Under sin karriär har Viitasen Piia släppt fyra kritikerrosade album och fått Emma-nomineringar i både kategorierna Kritikernas val (2014) och Årets etno (2019). Musikproducenternas och teknologernas samfund Aux ry belönade albumet ”Meidän jälkeemme hiljaisuus”, som skakade om publiken, med utmärkelserna Årets album och Årets singel 2020.</p><p>Viitasen Piia uppträder solo på Malmitalo.</p><p>A la Malmi är en klubbserie i Malms kulturhus som presenterar den intressantaste och färskaste finländska musiken med mest lyft. A la Malmi bryr sig inte om genregränser, utan erbjuder åhörarna det bästa inom indiemusik. Dessutom erbjuder den högkvalitativa konserthusmiljön med sina upphöjningsbara läktare varje åhörare en bekväm sittplats och en bra utsikt över scenen. De akustiska, ljud- och ljusmässiga förhållandena i Malmsalen är av högsta klass.</p><p>Längd 1 h 15 min.</p>",
                "en": "<p>A critically acclaimed, award-winning indie artist opens the autumn’s club series, A la Malmi.</p><p>Viitasen Piia released their awaited fifth studio album “Ihmisen aika” in March 2024. The artist says that the album deals with home and homelessness, roots and rootlessness, becoming a mother, and human impact on nature.</p><p>\"As the writing process of the new album went on, I noticed that I had written several songs in from the point of view of people that had fallen by the wayside in different ways: stories of people who, for one reason or another, had fallen between the cracks or had to rebuild the foundations of their lives and recreate their sense of security,\" says Piia.</p><p>Viitasen Piia, who has released four critically acclaimed albums in their career, has been nominated for Emma prizes in both the Critics' Choice (2014) and Ethnic of the Year (2019) categories during their career. Association of Finnish Music Producers Aux rewarded their album, \"Meidän jälkeemme hiljaisuus\", with their Album of the Year and Single of the Year awards in 2020.</p><p>Viitasen Piia performs solo at Malmitalo.</p><p>A la Malmi is a club series at Malmitalo that showcases the most interesting, fresh and upcoming Finnish music. A la Malmi does not care about genres, only providing the best in indie music to listeners. In addition, a high-quality concert hall environment with its ascending stands provides each customer with a comfortable seat and a good view of the stage. The acoustic, audio and lighting in Malmisali are state-of-the-art.</p><p>Duration 1 h 15 min</p>"
            },
            "name": {
                "fi": "Viitasen Piia (soolo) – A la Malmi",
                "sv": "Viitasen Piia (solo) – A la Malmi",
                "en": "Viitasen Piia (solo) – A la Malmi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63742/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63743",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/perinnearkkuklubi-timo-rautiainen-ville-ojanen-malmitalo-18621826/",
                        "sv": "https://www.lippu.fi/event/perinnearkkuklubi-timo-rautiainen-ville-ojanen-malmitalo-18621826/",
                        "en": "https://www.lippu.fi/event/perinnearkkuklubi-timo-rautiainen-ville-ojanen-malmitalo-18621826/"
                    },
                    "description": null,
                    "price": {
                        "fi": "16 € / 10 €",
                        "sv": "16 € / 10 €",
                        "en": "16 € / 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151439,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-13T07:14:33.028206Z",
                    "last_modified_time": "2024-06-13T07:14:33.028223Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752456.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151439/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-13T07:14:32.996902Z",
            "last_modified_time": "2024-08-29T05:13:22.354222Z",
            "date_published": null,
            "start_time": "2024-09-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,
            "short_description": {
                "fi": "Tuore folk-kokoonpano kiertää syyskuussa ympäri Suomea ja nähdään myös Malmitalossa!",
                "sv": "I september turnerar den färska folk-ensemblen i Finland och besöker även Malms kulturhus!",
                "en": "A new folk lineup is touring Finland in September and will also make an appearance at Malmitalo!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6C796ACB7E3EF4696ECE16D481723987/Perinnearkkuklubi_Timo_Rautiainen_ja_Ville_Ojanen",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6C796ACB7E3EF4696ECE16D481723987/Perinnearkkuklubi_Timo_Rautiainen_och_Ville_Ojanen",
                "en": "http://www.malmitalo.fi/en/events/event/6C796ACB7E3EF4696ECE16D481723987/Perinnearkkuklubi_Timo_Rautiainen_and_Ville_Ojanen"
            },
            "description": {
                "fi": "<p>Tuore folk-kokoonpano kiertää syyskuussa ympäri Suomea ja nähdään myös Malmitalossa!</p><p>Pitkän uran kotimaisen musiikin parissa tehneet Timo Rautiainen ja Ville Ojanen julkaisivat yhteisalbumin tammikuussa. Muusikoita yhdistää rakkaus perinteiseen kansanmusiikkiin, jota kumpikin on opiskellut sekä myös esittänyt tahoillaan. Ojasen ollessa genreen jo syvemmin omalla urallaan uppoutunut, Rautiaisen taival kyseisen musiikin parissa on lyhyempi, vaikka hänen ensihipaisunsa kansanmusiikkiin tapahtuikin lähes puoli vuosisataa sitten.</p><p>Tuore folk-kokoonpano kiertää syyskuussa ympäri Suomea Kansanmusiikkiliiton kiertueella. Helsingin konsertin järjestää Perinnearkku.</p><p>Timo Rautiainen – laulu, busuki ja kitara<br>Ville Ojanen – viulu, laulu ja mandoliini<br>Nils Ursin – basso, laulu ja stomp box<br>Lauri Kotamäki – haitari ja laulu</p><p>Illan ensimmäinen esiintyjä Rautakoura soittaa ja laulaa suomenkielistä folkia ja bluegrassia.<br>Juho Häme – basso<br>Lauri Häme – banjo<br>Pekka Pyysalo – kitara</p><p>Aikataulu<br>Klo 18.00 Ovet avataan<br>Klo 18.30 Rautakoura<br>Klo 19.30 Timo Rautiainen & Ville Ojanen</p><p>Kesto: 2 t 30 min, sisältää 10 min väliajan</p>",
                "sv": "<p>I september turnerar den färska folk-ensemblen i Finland och besöker även Malms kulturhus!</p><p>Timo Rautiainen och Ville Ojanen har en lång karriär inom den inhemska musiken bakom sig. I januari släppte de ett gemensamt album. Musikerna förenas av sin kärlek till den traditionella folkmusiken, som de både har studerat och framfört. Under sin karriär har Ojanen redan fördjupat sig mer i genren, medan Rautiainens karriär inom folkmusiken är kortare. Även Rautiainens första beröring med folkmusiken ägde dock rum för nästan ett halvt sekel sedan.</p><p>I september turnerar den färska folkmusikensemblen i Finland med Folkmusikförbundets turné. Konserten i Helsingfors arrangeras av Perinnearkku.</p><p>Timo Rautiainen – sång, bouzouki och gitarr<br>Ville Ojanen – violin, sång och mandolin<br>Nils Ursin – bas, sång och stomp box<br>Lauri Kotamäki – dragspel och sång</p><p>Tidtabell<br>Kl. 18.00 Dörrarna öppnas<br>Kl. 18.30 Rautakoura<br>Kl. 19.30 Timo Rautiainen & Ville Ojanen</p><p>Längd: 2 h 30 min., inklusive en paus på 10 minuter</p>",
                "en": "<p>A new folk lineup is touring Finland in September and will also make an appearance at Malmitalo!</p><p>Timo Rautiainen and Ville Ojanen, both with long careers in Finnish music, released a joint album in January. The pair are united by a love for traditional folk music, which they have both studied and performed on their own. As Ojanen is more deeply immersed in the genre in his career, Rautiainen's journey with music is shorter, even though his first touch with folk music took place almost half a century ago.</p><p>This new folk lineup is touring Finland in September on a tour sponsored by the Folk Music Federation. The Helsinki Concert is organised by Perinnearkku.</p><p>Timo Rautiainen – vocals, bouzouki and guitar<br>Ville Ojanen – violin, vocals and mandolin<br>Nils Ursin – bass, vocals and stomp box<br>Lauri Kotamäki – accordion and vocals</p><p>Schedule<br>6:00 pm Doors open<br>6:30 pm Rautakoura<br>7:30 pm Timo Rautiainen & Ville Ojanen</p><p>Duration: 2 h 30 min, includes 10 min intermission</p>"
            },
            "name": {
                "fi": "Perinnearkkuklubi: Timo Rautiainen ja Ville Ojanen",
                "sv": "Perinnearkkuklubi: Timo Rautiainen och Ville Ojanen",
                "en": "Perinnearkkuklubi: Timo Rautiainen and Ville Ojanen"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63743/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63480",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/roots-musiikin-evoluutio-sarja-malmitalo-18621825/",
                        "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-sarja-malmitalo-18621825/",
                        "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-sarja-malmitalo-18621825/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,50 € / 17,50 €",
                        "sv": "24,50 € / 17,50 €",
                        "en": "24,50 € / 17,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151438,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-13T07:14:32.846402Z",
                    "last_modified_time": "2024-06-13T07:14:32.846422Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751044.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151438/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-13T07:14:32.805375Z",
            "last_modified_time": "2024-08-29T05:13:22.141398Z",
            "date_published": null,
            "start_time": "2024-09-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,
            "short_description": {
                "fi": "Malmitalon Roots-musiikin evoluutio -sarja jatkuu! Kitarayhtye The Sounds vie suoraan 1960-luvun rocktunnelmiin.",
                "sv": "Serien Rootsmusikens evolution fortsätter! Gitarrbandet The Sounds tar oss tillbaka till 1960-talets rockstämningar.",
                "en": "The Evolution of Roots Music series continues! Guitar band The Sounds transports you straight into the rock n’ roll atmosphere of the 1960s."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FA5049CADFEA2227709606857814BA0F/The_Sounds_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/FA5049CADFEA2227709606857814BA0F/The_Sounds",
                "en": "http://www.malmitalo.fi/en/events/event/FA5049CADFEA2227709606857814BA0F/The_Sounds"
            },
            "description": {
                "fi": "<p>Malmitalon Roots-musiikin evoluutio -sarja jatkuu! Kitarayhtye The Sounds vie suoraan 1960-luvun rocktunnelmiin.</p><p>Vuonna 1961 syksyllä perustettu kitarayhtye The Sounds sai läpimurtonsa vuonna 1963 julkaistulla levyllä ”Emma”, joka meni suoraan kärkeen 8 kärjessä -radio-ohjelmassa sekä kotimaisella että ulkomaalaisella listalla. ”Emma” heilui eri listojen kärjessä lähes puoli vuotta ja näytti suuntaa useille nuorille tuleville kitaristeille. Levyn B-puolen kappale ”Mandschurian Beat” oli suomalaisen kevyen musiikin ensimmäinen vientimenestys ja myi yli miljoona kappaletta Japanissa ja kaukoidässä.</p><p>Vuonna 1965 yhtye jäi tauolle ja sen jäsenet keskittyivät opiskeluun ja työelämään. Tauko kesti liki 46 vuotta, kunnes vuonna 2011 yhtye aloitti toimintansa uudelleen lähes alkuperäisessä kokoonpanossaan. Saman vuoden kesäkuussa yhtye esiintyi ensimmäisen kerran pitkän tauon jälkeen Nastolan Rautalankafestareilla. Vuonna 2013 ilmestyi uusi levy ”Live At Arcada Studios”, viisikymmentä vuotta bändin ensimmäisestä levytyksestä. Tänä päivänä yhtye keikkailee ja levyttää edelleen säännöllisesti.</p><p><b>Kokoonpanossa mukana:</b><br>Peter Ekman, basso: perustajajäsen 1961<br>Esa Helasvuo, kiipparit: mukana vuodesta 1964<br>Jomme Kettunen, rummut: mukana vuodesta 2016<br>Ave Lönnfors, kitara ja laulu: mukana vuodesta 2019<br>Pete Kinnunen, soolokitara: mukana vuodesta 2023</p><p>Malmitalon Roots-musiikin evoluutio -sarja jatkuu syksyllä 2024! Kerran kuukaudessa lavalla nähdään ja kuullaan alansa terävin kärki Suomessa. Jokaisessa konsertissa käsitellään kyseisen aikakauden tyylilajia roots-musiikin kehityksessä. Keväällä esitettiin 1920–1950-lukujen rootsia ja syksyllä edetään 1960-luvulla syntyneeseen rautalankamusiikkiin, rock’n’rolliin ja beatmusiikkiin.</p><p>Kesto: 1 t 40 min, sis. 20 min väliajan</p>",
                "sv": "<p>Serien Rootsmusikens evolution fortsätter! Gitarrbandet The Sounds tar oss tillbaka till 1960-talets rockstämningar.</p><p>Gitarrgruppen The Sounds grundades hösten 1961. Bandet fick sitt genombrott med albumet “Emma” som släpptes år 1963, och steg direkt till toppen av både den inhemska och den utländska listan i radioprogrammet 8 kärjessä. “Emma” låg på toppen av olika listor i nästan sex månader och banade väg för många unga lovande gitarrister. Låten på plattans B-sida ”Mandschurian Beat” blev den första exportframgången för finländsk underhållningsmusik och såldes i över en miljon exemplar i Japan och Fjärran Östern.</p><p>1965 tog bandet paus och medlemmarna fokuserade på studier och arbetsliv. Uppehållet varade i nästan 46 år, fram till 2011, då bandet återupptog sin verksamhet med nästan den ursprungliga sammansättningen. I juni samma år uppträdde bandet för första gången efter ett långt uppehåll på Rautalanka-festivalen i Nastola. År 2013 släpptes ett nytt album \"Live At Arcada Studios\", femtio år efter bandets första inspelning. I dag fortsätter bandet att turnera och spela in skivor regelbundet.</p><p><b>Ensemble:</b><br>Peter Ekman, bas: grundande medlem 1961<br>Esa Helasvuo, keyboard: medlem sedan 1964<br>Jomme Kettunen, trummor: medlem sedan 2016<br>Ave Lönnfors, gitarr och sång: medlem sedan 2019<br>Pete Kinnunen, sologitarr: medlem sedan 2023</p><p>Serien Rootsmusikens evolution på Malms kulturhus fortsätter hösten 2024! En gång i månaden får vi på scenen se och höra de bästa inom sitt område i Finland. Varje konsert fokuserar på stilriktningen för en viss period i rootsmusikens evolution. Under våren framfördes rootsmusik från 1920–1950-talen och under hösten går vi vidare till 1960-talets ståltrådsmusik, rock'n'roll och beatmusik.</p><p>Längd: 1 h 40 min., inklusive en paus på 20 minuter</p>",
                "en": "<p>The Evolution of Roots Music series continues! Guitar band The Sounds transports you straight into the rock n’ roll atmosphere of the 1960s.</p><p>Founded in the autumn of 1961, guitar band The Sounds broke through with their album \"Emma\", in 1963, which went straight to the top of the top 8 radio show on both the domestic and foreign charts. \"Emma\" spent almost six months at the top of various charts and showed the way for several young future guitarists. The B-side single, \"Mandschurian Beat\", was the first export success of Finnish light music, selling more than a million copies in Japan and the Far East.</p><p>In 1965, the band went on hiatus, with its members focusing on their studies and building careers. That hiatus would last almost 46 years, until 2011, when the band resumed operations, in its nearly original line-up. In June of that year, the band performed for the first time after a long break at the Rautalanka Festival in Nastola. In 2013, a new album \"Live At Arcada Studios\" was released, fifty years after the band's first album. Today, the band continues to perform and record regularly.</p><p><b>Band members:</b><br>Peter Ekman, bass: founding member 1961<br>Esa Helasvuo, keyboards: involved since 1964<br>Jomme Kettunen, drums: involved since 2016<br>Ave Lönnfors, guitar and vocals: involved since 2019<br>Pete Kinnunen, lead guitar: involved since 2023</p><p>Malmitalo's Evolution of Roots Music series will continue in the autumn of 2024! Once a month, we get to see the best and brightest of the Finnish scene. Each concert deals with the genre of that era in the development of roots music. In the spring, the series tackled the roots music of the 1920s and 1950s, and in the autumn, we will proceed to the rautalanka, rock n' roll and beat music that emerged in the 1960s.</p><p>Duration: 1 h 40 min, incl. 20 min intermission</p>"
            },
            "name": {
                "fi": "The Sounds – Roots-musiikin evoluutio vol. 5",
                "sv": "The Sounds – Rootsmusikens evolution vol. 5",
                "en": "The Sounds – Evolution of Roots Music, Vol. 5"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63480/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64405",
            "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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmitalo-mama-events-house-of-a-witch-boksiko-ghar-malmitalo-19035746/",
                        "en": "https://www.lippu.fi/event/malmitalo-mama-events-house-of-a-witch-boksiko-ghar-malmitalo-19035746/"
                    },
                    "description": null,
                    "price": {
                        "fi": "19,70 / 17,70 €",
                        "en": "19,70 / 17,70 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152163,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-21T08:13:11.975579Z",
                    "last_modified_time": "2024-08-21T08:13:11.975592Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756321.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152163/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-21T08:13:11.947055Z",
            "last_modified_time": "2024-08-29T05:13:21.691481Z",
            "date_published": null,
            "start_time": "2024-09-03T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elokuvassa seurataan toimittajaa, joka tutkii noituudesta syytettyä kylän naista ja yrittää paljastaa totuuden väärien syytösten takana.",
                "en": "The plot follows a journalist investigating a village woman accused of witchcraft, attempting to uncover the truth behind the false accusations."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CE3FB639E8ABFFE7BEC98AD44C72439C/House_of_a_witch_-_Boksiko_Ghar_16_",
                "en": "http://www.malmitalo.fi/en/events/event/CE3FB639E8ABFFE7BEC98AD44C72439C/House_of_a_witch_-_Boksiko_Ghar_16_"
            },
            "description": {
                "fi": "<p>Elokuvassa seurataan toimittajaa, joka tutkii noituudesta syytettyä kylän naista ja yrittää paljastaa totuuden väärien syytösten takana.</p><p>Elokuva perustuu uskomukseen Nepalin syrjäisissä osissa 90-luvulla ja 2000-luvun alussa  ja joka edelleen vallitsee joissakin yhteiskunnissa.</p><p>Liput: 19,70 / 17,70 €<br>Elokuvan kesto: 1h 49 min<br>Ikäraja: 16</p><p>Elokuvassa on englanninkielinen tekstitys.</p>",
                "en": "<p>The plot follows a journalist investigating a village woman accused of witchcraft, attempting to uncover the truth behind the false accusations.</p><p>The movie is based on the belief in practice in Nepalese society in 90s and early 2000s in remote parts of Nepal and are still prevalent some societies.</p><p>Duration: 1h 49 min<br>Age limit: 16<br>Subtitles: English</p>"
            },
            "name": {
                "fi": "House of a witch - Boksiko Ghar (16) – Mama Events -elokuvanäytös",
                "en": "House of a witch - Boksiko Ghar (16) – Mama Events presents"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64405/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64031",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151798,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T11:14:36.422680Z",
                    "last_modified_time": "2024-07-24T11:14:36.422698Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753710.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151798/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-24T11:14:36.357433Z",
            "last_modified_time": "2024-08-29T05:13:20.245653Z",
            "date_published": null,
            "start_time": "2024-08-30T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Loppukesän päivänä joukko huolestuneita malmilaisia kokoontuu Malmbergien perheen puutarhaan. Perheen 17-vuotias lapsi, Miska Malmberg, on kadonnut. Yhteisöteatteriesitys vie keskelle kaupunginosaa kuohuttavaa katoamistapausta.",
                "sv": "En sensommardag samlas en grupp bekymrade malmbor i familjen Malmbergs trädgård. Familjens 17-åriga barn, Miska Malmberg, har försvunnit. Gemenskapsteaterföreställningen tar oss med i fallet med en försvunnen person, som skakade hela stadsdelen.",
                "en": "In late summer, a group of worried people from Malmi gather in the Malmberg family garden. The family's 17-year-old child, Miska Malmberg, has gone missing. A community theatre performance that puts you in the middle of a disturbing disappearance."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A9B37FB219F21AF01076956A5C9E955D/M_-_Merkintoja_yhden_malmilaisen_tapauksesta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A9B37FB219F21AF01076956A5C9E955D/M_-_Merkintoja_yhden_malmilaisen_tapauksesta",
                "en": "http://www.malmitalo.fi/en/events/event/A9B37FB219F21AF01076956A5C9E955D/M_-_Merkintoja_yhden_malmilaisen_tapauksesta"
            },
            "description": {
                "fi": "<p>Loppukesän päivänä joukko huolestuneita malmilaisia kokoontuu Malmbergien perheen puutarhaan. Perheen 17-vuotias lapsi, Miska Malmberg, on kadonnut. Yhteisöteatteriesitys vie keskelle kaupunginosaa kuohuttavaa katoamistapausta.</p><p>Äiti tahtoo toimia, isoäiti toppuuttelee ja koulukuraattori on omituisen vaitelias. Osapuolia yhdistää halu ymmärtää, mitä itse asiassa on tapahtunut – ja ennen kaikkea, kenen on syy?</p><p>M – merkintöjä yhden malmilaisen tapauksesta pureutuu kaupunginosayhteisöä kohdanneen katoamistapauksen kautta sukupolvien välisen ymmärtämättömyyden, vallankäytön ja yhteiskunnallisen vastakkainasettelun teemoihin. Eri puolilla Malmin kaupunkitilaa tapahtuva esitys kysyy, kenellä on valta päättää, mihin kenenkin tulisi oma elämänsä käyttää – kuka päättää, miten täällä ollaan?</p><p>Esitys on osa Helsingin Kaupunginteatterin ja Q-teatterin Malmilla toteuttamaa, asukkaita osallistavaa yhteisöteatteritoimintaa. Teemoja, aihealueita ja tekstimateriaalia käsikirjoitukseen on poimittu muun muassa erilaisista Malmilla järjestetyistä teatterityöpajoista ja muista taidetoiminnoista. Teoksessa esiintyy kahdeksan näyttelijää Q-teatterin yhteisöteatterista sekä suuri joukko eri-ikäisiä osallistujia Malmilta ja lähialueelta.</p><p>Esitys tapahtuu eri puolilla Malmia, ja yleisö kiertää esiintyjien mukana. Esitys ei ole esteetön, esityksen aikana liikutaan kävellen ja kuljetaan portaissa.</p><p>Esiintyjät: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Käsikirjoitus ja ohjaus: Janne Puustinen ja Tuomo Rämö<br>Yhteisöteatteriohjaaja: Meiju Pax<br>Äänisuunnittelu ja sävellys: Aleksi Kinnunen<br>Pukusuunnittelu: Fiona Timantti<br>Graafinen suunnittelu: Malmi Vice<br>Tuotanto: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>Malmin Novan liiketilan lavastussuunnittelu: Anna Pietilä ja Lasten ja nuorten arkkitehtuurikoulu Arkki</p><p>Yhteistyössä: Kaupunkiolohuone Kohtaus, partiolippukunta Sinivuoren Soihdut, Kauppakeskus Malmin Nova, Kulttuurikeskus Malmitalo, Ravintola Teeritupa, Fallkullan kotieläintila sekä PopUp Kesäkahvila Raparperitaivas.</p><p>Kiitämme työpajatoimintaan osallistuneita tahoja: Kaupunkiolohuone Kohtaus, Stadin ammatti- ja aikuisopisto Vilppulantie, A-kilta, Malmin poluilla -kävelyoppaat, Päiväkoti Suvi-Vilppula, Hietakummun ala-asteen koulu, Senioritytöt, Leikkiväki Malmi</p><p>Kesto: 2,5 t<br>Suosittelemme esitystä yli 13-vuotiaille<br>Kieli: suomi</p><p><b>Vapaa pääsy, ennakkoilmoittautuminen!</b><br>Ilmoittaudu mukaan tämän linkin kautta: https://www.lyyti.fi/reg/M-esitys</p><p>Esitys tapahtuu eri puolilla Malmia ja yleisö kiertää esiintyjien mukana. Esitys ei ole esteetön, esityksen aikana liikutaan kävellen ja kuljetaan portaissa.</p><p>Esitys on Helsingin Kaupunginteatterin alueellisen Pääroolissa Malmi -taidehankkeen sekä Q-teatterin yhteisöteatterin yhteistuotanto. Toiminta on osa Helsingin kaupungin osallistavan kulttuurityön mallia, Helsingin mallia.</p><p><b>Lisätiedot:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>",
                "sv": "<p>En sensommardag samlas en grupp bekymrade malmbor i familjen Malmbergs trädgård. Familjens 17-åriga barn, Miska Malmberg, har försvunnit. Gemenskapsteaterföreställningen tar oss med i fallet med en försvunnen person, som skakade hela stadsdelen.</p><p>Mamman vill agera, mormodern vill hålla tillbaka och skolkuratorn är märkligt tystlåten. Parterna förenas av en önskan att förstå vad som egentligen har hänt – och framför allt: vems fel det är!</p><p>M – merkintöjä yhden malmilaisen tapauksesta utforskar teman såsom missförstånd mellan generationer, maktutövning och samhälleliga motsättningar via ett fall av en försvunnen person i stadsdelen. Föreställningen äger rum i olika delar av Malms stadsrum, och ställer frågan om vem som har makten att bestämma vad man ska använda sitt liv till – vem bestämmer hur man ska vara här?</p><p>Föreställningen är en del av Helsingin Kaupunginteatteris och Q-teatteris gemenskapsteaterverksamhet i Malm, som delaktiggör invånarna. Temana, ämnesområdena och textmaterialet för manuset har inhämtats bland annat från olika teaterworkshoppar och andra konstaktiviteter som anordnats i Malm. I föreställningen medverkar åtta skådespelare från Q-teatteris gemenskapsteater och ett stort antal deltagare i olika åldrar från Malm och närområdet.</p><p>Föreställningen äger rum i olika delar av Malm, och publiken går omkring med skådespelarna. Föreställningen är inte tillgänglighetsanpassad, under föreställningen promenerar vi och använder trappor.</p><p>Artister: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Manus och regi: Janne Puustinen och Tuomo Rämö<br>Gemenskapsteaterregissör: Meiju Pax<br>Ljuddesign och komposition: Aleksi Kinnunen<br>Kostymdesign: Fiona Timantti<br>Grafisk design: Malmi Vice<br>Produktion: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>Scenografi för Malmin Novas affärsutrymme: Anna Pietilä och arkitekturskolan Arkki för barn och unga</p><p>I samarbete: Stadsvardagsrummet Kohtaus, scoutkåren Sinivuoren Soihdut, köpcentret Malmin Nova, Malms kulturhus, restaurang Teeritupa, hemdjursgården Fallkulla och PopUp-sommarcaféet Raparperitaivas.</p><p>Vi vill tacka alla som deltog i workshopparna: Stadsvardagsrummet Kohtaus, yrkesinstitutet Stadin ammatti- ja aikuisopisto Filpusvägen, A-Guild, Malmin poluilla-vandringsguiderna, daghemmet Suvi-Vilppula, Hietakummun ala-aste, Senioritytöt, Leikkiväki Malmi</p><p>Längd: 2,5 h<br>Vi rekommenderar föreställningen för över 13-åringar<br>Språk: finska</p><p><b>Fritt inträde, föranmälan via länken:</b> https://www.lyyti.fi/reg/M-esitys</p><p>Föreställningen är en samproduktion mellan Helsingin Kaupunginteatteris regionala konstprojekt Pääroolissa Malmi och Q-teatteris gemenskapsteater. Verksamheten är en del av Helsingfors stads modell för delaktiggörande kulturarbete, Helsingforsmodellen.</p><p><b>Mer information:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>",
                "en": "<p>In late summer, a group of worried people from Malmi gather in the Malmberg family garden. The family's 17-year-old child, Miska Malmberg, has gone missing. A community theatre performance that puts you in the middle of a disturbing disappearance.</p><p>The mother wants to act, the grandmother is wants to hit the brakes, and the school curator is, strangely, saying nothing. Everyone is united by a desire to understand what has actually happened – and above all, whose fault is it?</p><p>M – notes on the case of a person from Malmi delves into the themes of a generational gap, in understanding, power and social confrontation, through a missing-person case that has shakes the community of the city district. The show, which takes place in different parts of Malmi, asks: who has the power to decide what to spend their own life on – who decides the way you should carry yourself?</p><p>The performance is part of the Helsinki City Theatre and Q-teatteri’s community theatre activities in Malmi, which involves residents. Themes, topics and text material for the script have been picked, for example, from various theatre workshops and other art activities held at Malmi. The work features eight actors from the community theatre of Q-teatteri, as well as a large number of participants of different ages from Malmi and the surrounding area.</p><p>The performance takes place in different parts of Malmi, and the audience travels with the performers. The performance is not accessible, during the performance you walk and climb stairs.</p><p>Performers: Essi Evberg, Kati Haanpää, Päivi Hietanen, Mari Ikonen, Felix Jokela, Reetta Kankare, Aleksi Kinnunen, Jenni Kitti, Peppi Kuisma, Sofia Kärkkäinen, Roope Lappalainen, Mari Lehtonen, Jaanika Lindberg, Iida-Maaria Lindstedt, Miika Luukko, Mari Mäki, Timo Mäkynen, Leena Männistö, Irina Pulkka, Anne Puustinen, Ossi Rajala, Piia Rokosa, Helena Ryti, Siiri Rämö, Elina Salo, Elisa Salo, Sirpa Savoranta, Frode Stenar, Liisa Syrjä, Marina Toivonen, Päivi Toivonen, Eili Trotsak, Jonna Virtanen, Maritta Widberg</p><p>Script and direction: Janne Puustinen and Tuomo Rämö<br>Community theatre director: Meiju Pax<br>Sound design and composition: Aleksi Kinnunen<br>Costume design: Fiona Timantti<br>Graphic design: Malmi Vice<br>Production: Jenny Jumppanen, Paula Kovanen, Jaana Taskinen<br>The stage design for Malmin Nova's commercial area: Anna Pietilä and Arkki School of Architecture for Children and Youth</p><p>In cooperation with: Urban Living Room Kohtaus, Scout Troop Sinivuoren Soihdut, Shopping Centre Malmin Nova, Cultural Centre Malmitalo, Restaurant Teeritupa, Fallkulla Domestic Animal Farm and PopUp Summer Café Raparperitaivas.</p><p>We thank everyone who participated in the workshop activities: Urban Living Room Kohtaus, Helsinki Vocational College at Vilppulantie, A-kilta, Malmi Trails Walking Guides, Suvi-Vilppula Daycare, Hietakumpu Elementary School, Senioritytöt, Leikkiväki Malmi</p><p>Duration: 2.5 h<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Free admission, pre-registration via link:</b>  https://www.lyyti.fi/reg/M-esitys</p><p>The performance is a co-production of the Helsinki City Theatre's regional Malmi art project and Q-teatteri's community theatre. The activities are a part of the City of Helsinki's model for participatory cultural work, i.e. the Helsinki model.</p><p><b>More info:</b> <u><a href=\"https://hkt.fi/tapahtuma/m-merkintoja-yhden-malmilaisen-tapauksesta/\">M - merkintöjä yhden malmilaisen tapauksesta - Helsingin Kaupunginteatteri (hkt.fi)</a></u></p>"
            },
            "name": {
                "fi": "M - Merkintöjä yhden malmilaisen tapauksesta",
                "sv": "M - Merkintöjä yhden malmilaisen tapauksesta",
                "en": "M - Merkintöjä yhden malmilaisen tapauksesta"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64031/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63886",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-74/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151287,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-23T12:13:00.894369Z",
                    "last_modified_time": "2024-05-23T12:13:00.894388Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744939.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151287/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T12:13:00.870539Z",
            "last_modified_time": "2024-08-29T05:13:18.669045Z",
            "date_published": null,
            "start_time": "2024-08-24T09:00:00Z",
            "end_time": "2024-08-24T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Juhlaviikonlopun lauantai on täynnä rytmiä riemukkaan Faso Kanin sekä psykedeelisen Honey B. & T-Bonesin myötä.",
                "sv": "Honey B & T-Bones som räknas bland den finländska rytmmusikens kultensembler bjuder på garanterad kvalitet på Malms 30-årsfest!",
                "en": "Saturday on the anniversary weekend is filled with rhythm with jubilant Faso Kan and psychedelic Honey B & T-bones."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F3D55D7062E61237C85726AEC8B7BE6D/Malmitalo_30_vuotta_Faso_Kan_Honey_B_T-bones_ja_kaiken_maailman_kulttuuria",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F3D55D7062E61237C85726AEC8B7BE6D/Malms_kulturhus_30_ar_Faso_Kan_Honey_B_T-bones_och_all_varldens_kultur",
                "en": "http://www.malmitalo.fi/en/events/event/F3D55D7062E61237C85726AEC8B7BE6D/Malmitalo_30th_Anniversary_Faso_Kan_Honey_B_T-bones_and_all_sorts_of_world_culture"
            },
            "description": {
                "fi": "<p>Juhlaviikonlopun lauantai on täynnä rytmiä riemukkaan Faso Kanin sekä psykedeelisen Honey B. & T-Bonesin myötä.</p><p>Tule mukaan tanssahtelemaan saippuakuplien siivittämänä, tutustumaan työpajoihin ja todellakin tutustumaan kaiken maailman kulttuuriin!</p><p>Päivän aikana myös kuvataide-, djembe- ja tanssityöpajoja sekä tanssikoulu Hilpeiden Helmojen tanssiesitys. Jos rakkaan kaupunginosamme historia kiinnostaa, tervetuloa mukaan kuulemaan siitä lisää yhteisellä kävelykierroksella.</p><p><b>Ohjelma:</p><p>klo 12–14.15<br>Kuviskoulun Kuviot ja kuosit! -työpaja</b><br>Yhteisöllistä kuvataidetta kesään: matkaa muotojen ja kuosien maailmaan! Työpajassa suunnittelemme värikkäitä kuoseja ja maalaamme niitä pitkälle rullapaperille yhteisöllisissä tunnelmissa. Sateen sattuessa toteutamme työpajan sisätiloissa.</p><p>Työpajan ohjaavat Pohjois-Helsingin kuvataidekoulun opettajat Elina Gyldén ja Aleksi Marjamaa.</p><p>Paikka: Työpaja-alue<br>Kieli: suomi</p><p><b>klo 13–16<br>Kupla Kopla</b><br>Tehdään yhdessä pieniä ja suuria saippuakuplia! Kuplakopla luo maagista ja leikkisää tunnelmaa sekä lapsille että aikuisille.</p><p>Kupla Kopla on performanssiryhmä, joka koostuu ammattiesiintyjistä ja tanssijoista eri puolilta Suomea. <br>Kupla Koplan ensisijainen tarkoitus on tuoda ihmisille iloa sekä jättimäisten ja runsautta henkivien saippuakuplien että värikkäiden asujen ja lähestyttävien hahmojen kautta.</p><p>Kuplakopla luo osallistavaa ja yhteisöllistä tunnelmaa missä tahansa liikkuukin ja antaa mahdollisuuden kokeilla saippuakuplien ja jättikuplien tekemistä.</p><p><b>klo 14–15<br>Faso Kan</b><br>Faso Kan esittää Länsi-Afrikan rikkaasta musiikkiperinteestä ponnistavaa melodista ja vauhdikasta musiikkia, joka ei jätä yhtäkään yleisöä kylmäksi. Lavalla yhtye antaa soiton, tanssin ja laulun ilon näkyä!</p><p>Faso Kan –yhtyeen ohjelma käsittelee musiikin välityksellä ympäristön ja yhteisön hyvinvoinnin teemoja. Aurinkoinen esitys soi ystävyyden ja rauhan hengessä ja välittää kuulijoille positiivista energiaa.</p><p>Yhtyeen perinteiset länsiafrikkalaiset soittimet on valmistettu puusta ja luonnonmateriaaleista ja niiden syvä soundi antaa äänen metsälle. Ilmastokriisi koskettaa koko maailmaa ja metsät voivat toimia tärkeänä osana sen ratkaisemista.</p><p><b>klo 15–16<br>Faso Kan rumpu- & tanssityöpaja</b><br>Kokeile djemberummun soittoa ja afrikkalaista tanssia Faso Kan muusikoiden johdolla.</p><p>Soitamme, tanssimme ja laulamme länsiafrikkalaisia rytmejä ja pidämme hauskaa yhdessä. Tule uuden rentouttavan harrastuksen pariin!</p><p>Työpajaan osallistuminen ei vaadi aikaisempaa kokemusta tai omaa soitinta. Osallistujamäärä maksimissaan 20 henkilöä.</p><p>Paikka: Konttilavan edusta</p><p><b>klo 16–16:30<br>Tanssiesitys Ay romale</b><br>Tanssiryhmä Ay romale tulkitsee romanimusiikkia leveiden hameenhelmojen ja huivien pyörteissä.</p><p>Juurevien rytmien kiihtyvässä tempossa romanitanssi ilmaisee laajaa tunneskaalaa: voimaa, herkkyyttä, melankoliaa, ystävyyttä ja etenkin elämäniloa. Ay romale on toiminut Helsingissä lähes 10 vuotta tanssinopettaja Anita Kurvisen ohjauksessa.</p><p>Kurvisen lisäksi ryhmässä tanssii Silja Koivisto, Olga Kemppinen, Marjo Kopra, Milla Laaksonen, Linda Lemmetty, Lina Machmouchi sekä Lotta Ora.</p><p>Paikka: Konttilavan edusta</p><p><b>klo 17–18<br>Honey B & T-Bones</b><br>Suomalaisen rytmimusiikin kulttikokoonpanoihin lukeutuva Honey B & T-Bones tarjoaa taattua laatua Malmin 30-vuotisjuhlassa!<br>Yhtye on tunnettu korkeatasoisesta soitannasta ja yllättävyydestä. Soundissa psykedeeliset värit tyrskyävät yhteen bluesin, funkin ja popin kanssa. Tuloksena on persoonallista ja tässä ajassa elävää musiikkia, joka saa kuulijankin jammailemaan mukana.</p><p>Bändin jäsenet:<br>Aija Puurtinen: laulu, kosketinsoittimet ja basso <br>Esa Kuloniemi: kitarat ja laulu<br>Mooses Kuloniemi: rummut ja laulu<br>Pekka Rajamäki: basso, kakkoskitara ja laulu</p>",
                "sv": "<p>Honey B & T-Bones som räknas bland den finländska rytmmusikens kultensembler bjuder på garanterad kvalitet på Malms 30-årsfest!</p><p>Kom med och få fart på dansen av såpbubblor, ta del av workshoppar och bekanta sig med all världens kultur! Under dagen ordnas även workshoppar i bildkonst, djembe och dans samt dansskolan Hilpeät Helmats dansuppvisning. Om du är intresserad av historian för vår kära stadsdel, välkommen med och höra mer om den på en gemensam promenadrunda.</p><p><b>kl. 12–14.15<br>Bildkonstskolans workshop Figurer och mönster!</b><br>Samhällelig bildkonst på sommaren: vi reser in i formernas och mönstrens värld! I workshoppen planerar vi färggranna mönster och målar dem på långa rullpapper i gemenskaplig stämning. Vid regn genomför vi workshoppen inomhus.</p><p>Workshoppen dras av Elina Gyldén och Aleksi Marjamaa som är lärare vid Pohjois-Helsingin kuvataidekoulu.</p><p>Språk: finska</p><p><b>kl. 14–15<br>Faso Kan</b><br>Faso Kan framför melodisk och fartfylld musik med rötterna i Västafrikas rika musiktradition, som inte lämnar en enda publik kall. På scenen låter bandet musiken, dansen och glädjen synas!<br>Faso Kan-bandets program behandlar miljön och samhällets välmående via musiken. Det soliga framträdandet klingar i vänskapens och fredens anda och förmedlar positiv energi till åhörarna.</p><p>Bandets traditionella västafrikanska instrument har tillverkats av trä och naturmaterial och deras djupa sound ger ljud åt skogen. Klimatkrisen påverkar hela världen och skogarna kan vara en viktig del av lösningen på den.</p><p><b>kl. 15–16<br>Faso Kan trum- & dansworkshop</b><br>Pröva på att spela djembetrumma och afrikansk dans med ledning av musikerna i Faso Kan.</p><p>Vi spelar, dansar och sjunger västafrikanska rytmer och har roligt tillsammans. Var med om en ny avslappnande hobby!</p><p>Deltagande i workshoppen kräver ingen<br>tidigare erfarenhet eller eget instrument. Deltagarantal max. 20 personer.</p><p><b<kl. 16–16.30<br>Dansföreställning Ay romale</b><br>Dansgruppen Ay romale tolkar rommusik i de vida kjolfållarnas och scarfarnas virvlar.</p><p>I ett ökande rotfast tempo uttrycker romdansen ett brett känsloregister: styrka, känslighet, melankoli, vänskap och framför allt livsglädje. Ay romale har fungerat nästan 10 år i Helsingfors under ledning av danslärare Anita Kurvinen.</p><p>Utöver Kurvinen består gruppen av Silja Koivisto, Olga Kemppinen, Marjo Kopra, Milla Laaksonen, Linda Lemmetty, Lina Machmouchi samt Lotta Ora.</p><p><b>kl. 17–18<br>Honey B & T-Bones</b><br>Honey B & T-Bones som räknas bland den finländska rytmmusikens kultensembler bjuder på garanterad kvalitet på Malms 30-årsfest!</p><p>Banden är känt för högklassig musik och överraskningar. I soundet forsar psykedeliska färger ihop med blues, funk och pop. Resultatet är personlig och samtida musik som även får åhöraren att jamma med.</p><p>Honey B & T-Bones framträder i dag som en kvartett.<br>Bandets medlemmar:<br>Aija Puurtinen: sång, keyboard och bas <br>Esa Kuloniemi: gitarr och sång<br>Mooses Kuloniemi: trummor och sång<br>Pekka Rajamäki: bas, andra gitarr och sång</p>",
                "en": "<p>Saturday on the anniversary weekend is filled with rhythm with jubilant Faso Kan and psychedelic Honey B & T-bones.</p><p>Join us and dance among the soap bubbles, tour the workshops and truly get to know lots of different world cultures! We will also holding visual arts, djembe and dance workshops as well as a dance show by dance school Hilpeät Helmat. If you’re interested in our district’s history, join the common walking tour to hear more.</p><p><b>12 noon to 2:15 pm<br>Art School’s Patterns and Designs! workshop</b></p><p>Visual community art for the summer: take a trip into the world of patterns and designs! At this workshop, we will be designing colourful patterns and painting them on long rolls of paper with everyone. The workshop will move indoors if it rains.</p><p>The workshop instructors are Art School of Northern Helsinki teachers Elina Gyldén and Aleksi Marjamaa.<br>Language: Finnish</p><p><b>2 pm to 3 pm<br>Faso Kan</b><br>Faso Kan performs melodic and upbeat music that draws on West African tradition that will not disappoint any audience. On stage, the group lets loose with the joy of music, dance, and singing!</p><p>Faso Kan’s musical programme focuses on the themes of community and environmental wellbeing. Their bright performance conveys a sense of friendship and peace, along with positive energy for the audience.</p><p>The group’s traditional West African instruments are made from wood and natural materials, and their deep sound evokes the sounds of a forest. The climate crisis impacts our whole planet, and the forests could be an important part of the solution.</p><p><b>3 pm to 4 pm<br>Faso Kan drum and dance workshop</b><br>Try out a djembe drum and African dances with the help of Faso Kan’s musicians.</p><p>We can play, dance and sing West African rhythms and have fun together. Come and discover a new, relaxing hobby!</p><p>You do not need prior experience or your own instruments to join. Maximum number of participants: 20 persons.</p><p><b>4 pm to 4:30 pm<br>Dance show Ay romale</b><br>Dance group Ay romale presents Roma music, with wide spinning hems and large scarves.</p><p>With an accelerating tempo of sturdy rhythms, Roma dances express a wide range of emotions. power, sensibility, melancholy, friendship, and the joy of living. Ay romale have been active in Helsinki for almost a decade under dance teacher Anita Kurvinen.</p><p>In addition to Kurvinen, the group’s performers include Silja Koivisto, Olga Kemppinen, Marjo Kopra, Milla Laaksonen, Linda Lemmetty, Lina Machmouchi and Lotta Ora.</p><p><b>5 pm to 6 pm<br>Honey B & T-Bones</b><br>Honey B & T-Bones, a staple cult classic of Finnish rhythm music bring their familiar performance to the Malmitalo 30th anniversary!</p><p>The band is known for its high-quality musicianship and surprises on stage. Their sound is mix of psychedelic colours, blues, funk and pop. What this turns into is a very characteristic and current style of music that gets listeners to feel the rhythm. <br>Currently, Honey B & T-Bones performs as a quartet.</p><p>Band members:<br>Aija Puurtinen: vocals, keyboard, bass <br>Esa Kuloniemi: guitar, vocals<br>Mooses Kuloniemi: drums, vocals<br>Pekka Rajamäki: bass, rhythm guitar, vocals</p>"
            },
            "name": {
                "fi": "Malmitalo 30 vuotta: Faso Kan, Honey B & T-bones ja kaiken maailman kulttuuria – Malmin tapahtumakesä",
                "sv": "Malms kulturhus 30 år: Faso Kan, Honey B & T-bones och all världens kultur – Malms evenemangssommar",
                "en": "Malmitalo 30th Anniversary: Faso Kan, Honey B & T-bones and all sorts of world culture – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63886/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63883",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-74/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151284,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-23T11:13:02.501043Z",
                    "last_modified_time": "2024-05-23T11:13:02.501055Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744935.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151284/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T11:13:02.482379Z",
            "last_modified_time": "2024-08-29T05:13:18.439873Z",
            "date_published": null,
            "start_time": "2024-08-23T13:00:00Z",
            "end_time": "2024-08-23T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Malmitalon 30-vuotissynttäriviikonlopun perjantai-illassa keikkailevat huippusuosittu Arppa ja hyvyyteen niin soundillisesti kuin myös eettisesti keskittyvä rap-yhtye good boys.",
                "sv": "På fredagkvällen under 30-årsjubileumsveckolutet för Malms kulturhus spelar toppopulära Arppa och rap-bandet Good Boys som både till soundet och sin etik fokuserar på det goda.",
                "en": "For the 30th Anniversary weekend of Malmitalo Cultural Centre, super-popular Arppa and rap group Good Boys, who focus on both sounding good and being ethical, will both be getting on stage on Friday."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B449B536CCD1A17A0F548CC91BC87F5F/Malmitalo_30_vuotta_Arppa_good_boys",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B449B536CCD1A17A0F548CC91BC87F5F/Malms_kulturhus_30_ar_Arppa_good_boys",
                "en": "http://www.malmitalo.fi/en/events/event/B449B536CCD1A17A0F548CC91BC87F5F/Malmitalo_30th_Anniversary_Arppa_good_boys"
            },
            "description": {
                "fi": "<p>Malmitalon 30-vuotissynttäriviikonlopun perjantai-illassa keikkailevat huippusuosittu Arppa ja hyvyyteen niin soundillisesti kuin myös eettisesti keskittyvä rap-yhtye good boys.</p><p>Ala-Malmin puisto raikaa juhlatunnelmaa, yhteisöllisyyttä unohtamatta: juhlavuoden kunniaksi Malmi Vice eli Valari Tynkkynen on ollut toteuttamassa Malmitalolle ja malmilaisille omaa yhteisötaideteosta, johon jokainen saa tulla jättämään merkkinsä.</p><p>Keräänny siis kanssamme yhteen ja tule puistoon karkeloimaan, vapaa pääsy!</p><p><b>Ohjelma:</p><p>klo 16–19<br>Malmi Vice -yhteisötaideteos ja työpaja</b><br>Malmi Vice on suunnitellut Malmitalon 30-vuotisjuhlia varten yhteisötaideteoksen, johon jokainen saa laittaa oman merkkinsä. Pääset siis jättämään jälkesi osaksi Malmin taidehistoriaa!</p><p>Yhteisötaideteoksen yhteydessä järjestetään maalitussi-työpaja, jota on pitämässä legendaarinen graffititaiteilija Samuli Turunen. Tule ihmeessä mukaan oppimaan yhteisötaiteesta, maalitusseista ja tapaamaan itse mr. Malmi Vice.</p><p>Paikka: Ala-Malmin puiston työpaja-alue</p><p><b>klo 16–19<br>Katumaalaus-työpaja</b><br>Tervetuloa katumaalaamaan Ala-Malmin torille Malmitalon 30-vuotisjuhlan kunniaksi! Maalaamme yhdessä tien Malmitalolle ja Ala-Malmin puistoon luonnonvärejä käyttäen ja väritämme Malmin tapahtumakesälle arvoisensa huipennuksen.</p><p>Ikäsuositus: soveltuu kaikille, alle 7v. aikuisen seurassa <br>Kieli: suomi, englanti, ranska</p><p><b>klo 17–18<br>good boys</b></p><p>Mystinen yhtye good boys lupaa hyvyyttä niin soundin kuin myös letkeiden riimien myötä. He kuvailevat itseään näin:</p><p>good boys on fennoskandian ensimmäinen täysin hyvyyskeskeinen bändi.<br>good boys on jo hyvän tovin luonut äärimmäisen laadukasta ynnä omaperäistä räppiä silkalla tahdonvoimalla sekä fiilispohjalla, ja löytänyt paikkansa suomiräpin sulkapallokentältä.<br>good boys on monipuolinen, laaja-alainen, erinomainen ja eräänlainen yhtye.<br>good boys on kulttuurin ja hyvinvoinnin kannalta olennainen osa ruokavaliota.<br>good boys on nähtävä livenä, jos aikoo väittää ikään kuin tietävänsä, että mistä on kyse, että.<br>good boys on se mistä on kyse, eikä muusiksi muutu.</p><p>Tule paikan päälle kuuntelemaan, mistä on kyse!</p><p><b>klo 19–20<br>Arppa</b><br>Energisiä ja yllätyksellisiä keikkoja tekevä Arppa yhtyeineen on yksi tämän hetken Suomi-indien kärkinimistä.</p><p>Arpan ihastuttava musiikki on ajatonta, ja tekstit kuin liikkuvaa kuvaa – oivaltavat, vilpittömät ja tarkkanäköisesti kuvatut tunnelmat liikkuvat Kokkolan Ykspihlajasta aina öisen Helsingin kautta Laila Kinnusen kanssa salakapakkaan heinäkuuhun 1958.</p><p>Arpan luonteva olemus ja yhtyeen esiintymisistä huokuva vilpitön riemu ei voi olla tempaamatta läsnäolijoita mukaansa.</p><p>Nyt saamme suositun Arpan yhtyeineen Malmitalon 30-vuotisbileisiin! Arpan yhtyeessä vaikuttavat muusikot Ville-Veikko Airaniemi, Eero Seppä ja Okko Saastamoinen.</p>",
                "sv": "<p>På fredagkvällen under 30-årsjubileumsveckolutet för Malms kulturhus spelar toppopulära Arppa och rap-bandet Good Boys som både till soundet och sin etik fokuserar på det goda.</p><p>Nedre Malms park genljuder av feststämning, utan att glömma gemenskapskänslan: till jubileumsårets ära har Malmi Vice, det vill säga Valari Tynkkynen genomfört ett eget samhällskonstverk för Malms kulturhus och malmborna, som alla får komma och sätta sitt eget spår vid.</p><p>Kom med oss och festa i parken, inträdet är fritt!</p><p><b>Program:</p><p>kl. 16–19<br>Malmi Vice-samhällskonstverk och workshop</b><br>Inför 30-årsjubileet för Malms kulturhus har Malmi Vice planerat ett samhällskonstverk på vilket var och en får sätta sitt eget märke. Du får alltså lämna ett eget spår som blir en del av Malms konsthistoria!</p><p>I samband med samhällskonstverket ordnas en tuschworkshop med den legendariska graffitiartisten Samuli Turunen. Kom med och lär dig om samhällskonst, tuschar och träffa själva mr. Malmi Vice.</p><p><b>kl. 16–19<br>Gatumålningsworkshop</b><br>Välkommen på gatumålning till Nedre Malms torg till ära för 30-årsjubileet för Malms kulturhus! Tillsammans målar vi vägen till Malms kulturhus och Nedre Malms park med naturfärger och färglägger en värdig höjdpunkt för Malms evenemangssommar.</p><p>Åldersrekommendation: passar för alla, under 7-åringar i sällskap av en vuxen.</p><p>Språk: finska, engelska, franska</p><p><b>kl. 17–18<br>good boys</b><br>Det mystiska bandet good boys utlovar godhet både då det gäller soundet och de lättsamma rimmen. Så här beskriver de sig själva:</p><p>good boys är fennoskandiens första helt godhetsfokuserade band.<br>good boys har redan i en god stund skapat enormt högkvalitativ och personlig rap med ren viljestyrka och bra känsla, och hittat sin plats på suomirappens badmintonplan.<br>good boys är ett mångsidigt, vidsträckt, utmärkt band av ett särskilt slag.<br>good boys är en väsentlig del av dieten då det gäller kultur och välmående.<br>good boys ska ses live ifall man tänker påstå att man vet vad det är fråga om.<br>goos boys är vad det är frågan om och så kommer det att förbli.</p><p>Kom på plats och hör vad det är frågan om!</p><p><b>kl. 19–20<br>Arppa</b><br>Arppa och hans band med sina energiska och överraskande spelningar är ett av toppnamnen inom finländsk indie just nu. <br>Arppas förtjusande musik är tidlös och texterna är som rörliga bilder – insiktsfulla, uppriktiga och skarpsynt beskrivna stämningar varierar mellan Yxpila i Karleby, det nattliga Helsingfors i Laila Kinnunens sällskap och en hemlig krog i juni 1958.</p><p>Arppas naturliga väsen och bandets uppträdande som utstrålar uppriktig glädje rycker oemotståndligt med sig de närvarande. Nu får vi den populära Arppa och hans band till 30-årsfesten för Malms kulturhus!</p><p>I Arppas band medverkar musikerna Ville-Veikko Airaniemi, Eero Seppä och Okko Saastamoinen.</p>",
                "en": "<p>For the 30th Anniversary weekend of Malmitalo Cultural Centre, super-popular Arppa and rap group Good Boys, who focus on both sounding good and being ethical, will both be getting on stage on Friday.</p><p>The party will be abuzz with a party atmosphere and sense of community: to celebrate the anniversary, Malmi Vice, a.k.a. Valari Tynkkynen has been involved in creating a piece of community art for Malmitalo and the people of Malmi, which everyone is invited to leave their mark on.</p><p>Join us in the park for this anniversary celebration, free of charge!</p><p><b>Programme:</p><p>4 pm to 7 pm<br>Malmi Vice community art and workshop</b><br>Malmi Vice has designed a piece of community art for Malmitalo’s 30th Anniversary, which everyone gets to put their own mark on. Make your mark in Malmi’s art history!</p><p>The community art includes a paint marker workshop, which will be held by legendary graffiti artist Samuli Turunen. Join us and learn more about community art, paint markers, and meet Mr. Malmi Vice himself.</p><p><b>4 pm to 7 pm<br>Street painting workshop</b><br>Join us for a street painting session on Ala-Malmi Square to celebrate Malmitalo’s 30th Anniversary! Together, we will paint a path to Malmitalo and Ala-Malmi Park with natural colours and put a new layer of paint to culminate the Malmi Summer of Events.</p><p>Age recommendation: all ages, children under 7 accompanied by an adult.</p><p>Language: Finnish, English, French</p><p><b>5 pm to 6 pm<br>good boys</b><br>good boys are a mystical band that promise to give you goodness, both in their sound and their chill rhyming. This is how they describe themselves:</p><p>good boys are the first fully goodness-focused band in Fennoscandia.<br>good boys have been creating very high quality and original rap with sheer force of will and feeling, and have found their place in the badminton field of Finnish rap.<br>good boys are a diverse, multi-talented, excellent and particular kind of band.<br>good boys are an essential part of a balanced cultural diet.<br>good boys must be seen live, if you intend to claim that you know what it’s about, that.<br>good boys are what it’s about, and nothing else.</p><p>Check them out and listen to find out!</p><p><b>7 pm to 8 pm<br>Arppa</b><br>Arppa’s gigs are energetic and surprising, and the band is one of the top names of the Finnish indie scene. <br>Arppa’s enchanting music is timeless and their texts like moving pictures – insightful, sincere and laser-sharp depictions of atmospheres go from Ykspihlaja in Kokkola to night-time Helsinki and onward to a July 1958 speakeasy with Laila Kinnunen.</p><p>It is impossible to not get swept away by Arppa’s natural presence and the band’s palpable, sincere joy of performing. And now, we get to hear Arppa and their band at the Malmitalo 30th Anniversary celebration!</p><p>Arppa’s band includes musicians Ville-Ville-Veikko Airaniemi, Eero Seppä and Okko Saastamoinen.</p>"
            },
            "name": {
                "fi": "Malmitalo 30 vuotta: Arppa, good boys – Malmin tapahtumakesä",
                "sv": "Malms kulturhus 30 år: Arppa, good boys – Malms evenemangssommar",
                "en": "Malmitalo 30th Anniversary: Arppa, good boys – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63883/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63882",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151283,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-23T11:13:02.382462Z",
                    "last_modified_time": "2024-05-23T11:13:02.382479Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744992.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151283/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T11:13:02.347742Z",
            "last_modified_time": "2024-08-29T05:13:18.202478Z",
            "date_published": null,
            "start_time": "2024-08-22T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Legendaarinen Terveet Kädet tuo rankempaa meteliä Malmin tapahtumakesään!",
                "sv": "Legendariska Terveet Kädet hämtar hårdare oljud till Malms evenemangssommar!",
                "en": "Legendary Terveet Kädet brings a louder noise to the Malmi Summer of Events!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/88EA088339483A86EA0C8823D18BC89E/Terveet_Kadet",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/88EA088339483A86EA0C8823D18BC89E/Terveet_Kadet",
                "en": "http://www.malmitalo.fi/en/events/event/88EA088339483A86EA0C8823D18BC89E/Terveet_Kadet"
            },
            "description": {
                "fi": "<p>Legendaarinen Terveet Kädet tuo rankempaa meteliä Malmin tapahtumakesään!</p><p>Vuodesta 1979 operoinut hardcore-yhtye Terveet Kädet on kiistatta kaikkien aikojen tunnetuin suomalainen punkbändi. Läjä Äijälän luotsaama yhtye opetti toimintansa 2016 liki neljänkymmenen toimintavuoden jälkeen, mutta mielipiteet onneksi muuttuvat ja Terveet Kädet on tehneet paluun pitkän odotuksen jälkeen.</p><p>Terveet Kädet on kerännyt vuosien varrella ihailijoita maailmanlaajuisesti metalliyhtye Sepulturan jäsenistöstä Mike Pattoniin ja ehti kiertää kotimaansa lisäksi myös valtameren tuolla puolella.</p>",
                "sv": "<p>Legendariska Terveet Kädet hämtar hårdare oljud till Malms evenemangssommar!</p><p>Hardcorebandet Terveet Kädet som har fungerat sedan år 1979 är utan tvivel alla tiders mest kända finländska punkband. Efter nästan fyrtio år upphörde bandet som leds av Läjä Äijälä med sin verksamhet år 2016, men som tur är kan åsikter ändras och Terveet Kädet har gjort en länge efterlängtad comeback.</p><p>Under årens lopp har Terveet Kädet samlat fans även bland metallbandet Sepulturas medlemmar i egenskap av Mike Patton, och har förutom i hemlandet även turnerat på andra sidan oceanen.</p>",
                "en": "<p>Legendary Terveet Kädet brings a louder noise to the Malmi Summer of Events!</p><p>Terveet Kädet are a hardcore band active since 1979, and are undeniably Finland’s all-time best known punk band. The band, headed by Läjä Äijälä, disbanded in 2016 after nearly forty years, but thankfully, they have had a change of heart and Terveet Kädet are back on the road.</p><p>Terveet Kädet found global fans along the years, from members of metal band Sepultura to Mike Patton, and got to go on tour in Finland and abroad.</p>"
            },
            "name": {
                "fi": "Terveet Kädet – Malmin tapahtumakesä",
                "sv": "Terveet Kädet – Malms evenemangssommar",
                "en": "Terveet Kädet – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63882/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63881",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151282,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-23T10:12:52.713062Z",
                    "last_modified_time": "2024-05-23T10:12:52.713080Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749027.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151282/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T10:12:52.671332Z",
            "last_modified_time": "2024-08-29T05:13:18.085575Z",
            "date_published": null,
            "start_time": "2024-08-22T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kyhiskessu on Helsingissä vuonna 2022 Perustettu punk, hardcore ja rap-elementtejä yhdistelevä bändi.",
                "sv": "Kyhiskessu är ett band som grundades i Helsingfors år 2022 och som kombinerar punk, hardcore och rap-element.",
                "en": "Kyhiskessu is a band that combines elements of punk, hardcore and rap from Helsinki, who formed in 2022."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/32F292DD0B56DFBF0DFE88153AFFE6B1/Kyhiskessu",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/32F292DD0B56DFBF0DFE88153AFFE6B1/Kyhiskessu",
                "en": "http://www.malmitalo.fi/en/events/event/32F292DD0B56DFBF0DFE88153AFFE6B1/Kyhiskessu"
            },
            "description": {
                "fi": "<p>Kyhiskessu on Helsingissä vuonna 2022 Perustettu punk, hardcore ja rap-elementtejä yhdistelevä bändi.</p><p>Bändin sanoitukset perustuvat punk-musiikille tyypillisesti yhteiskunnallisten aiheiden ympärille.</p><p>Kyhiskessu julkaisu demo-EP:n syksyllä 2023 ja tammikuussa 2024 ensimmäisen albuminsa, joka kantaa nimeä ”KYHISKESSU”.</p>",
                "sv": "<p>Kyhiskessu är ett band som grundades i Helsingfors år 2022 och som kombinerar punk, hardcore och rap-element.</p><p>Som är typiskt för punkmusiken grundar sig bandets texter på samhälleliga ämnen.</p><p>Kyhiskessu släppte sin demo-EP hösten 2023 och sitt första album med namnet “KYHISKESSU” i januari 2024.</p>",
                "en": "<p>Kyhiskessu is a band that combines elements of punk, hardcore and rap from Helsinki, who formed in 2022.</p><p>Their lyrics are naturally focused on the society, as is usual of punk.</p><p>Kyhiskessu published a demo EP in autumn 2023, and their self-titled first album was released in January 2024.</p>"
            },
            "name": {
                "fi": "Kyhiskessu – Malmin tapahtumakesä",
                "sv": "Kyhiskessu – Malms evenemangssommar",
                "en": "Kyhiskessu – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63881/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63878",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151279,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-23T08:19:46.345790Z",
                    "last_modified_time": "2024-05-23T08:19:46.345803Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744928.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151279/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T08:19:46.329736Z",
            "last_modified_time": "2024-08-29T05:13:17.902855Z",
            "date_published": null,
            "start_time": "2024-08-21T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kamarimusiikillinen konsertti täynnä suurta tunnetta ja syvää musiikillista yhteyttä; virtuositeettia kaihtamatta, rakkaudella!",
                "sv": "En kammarmusikalisk konsert full av stora känslor och djup musikalisk kontakt; utan att dra sig för virtuositet, med kärlek!",
                "en": "A chamber music concert with an emotional punch and a deep musical connection; full of virtuosity and love!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DC6777CABCA03BC74FE79020F0DD7F2C/Maria_Ylipaa_Marzi_Nyman",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/DC6777CABCA03BC74FE79020F0DD7F2C/Maria_Ylipaa_Marzi_Nyman",
                "en": "http://www.malmitalo.fi/en/events/event/DC6777CABCA03BC74FE79020F0DD7F2C/Maria_Ylipaa_Marzi_Nyman"
            },
            "description": {
                "fi": "<p>Kamarimusiikillinen konsertti täynnä suurta tunnetta ja syvää musiikillista yhteyttä; virtuositeettia kaihtamatta, rakkaudella!</p><p>Kaksi monialaista ja karismaattista muusikkoa kohtaavat intensiivisessä musiikkilajien yhteentörmäyksessä, jossa jokainen ilta on erilainen. Irtonainen improvisaatio ryydittää sekä kaikkien rakastamia klassikkokappaleita että suomalaiseen runouteen sävellettyä taidemusiikkia.</p><p><b>Maria Ylipää</b> on Suomen valovoimaisimpiin taiteilijoihin kuuluva laulaja-näyttelijä, joka tunnetaan lukuisista musiikkiteatteri-, elokuva- ja tv-rooleistaan. Musiikin saralla hänet tunnetaan monipuolisena tulkitsijana, joka on kotonaan lavalla niin jazz-yhtyeiden, big bandien kuin sinfoniaorkesterienkin solistina.</p><p><b>Marzi Nyman</b> syntyi vuonna 1979 Lohjalla. Musikaaliset vanhemmat laittoivat hänet pianotunneille 6-vuotiaana. Marzi opiskelikin klassista pianoa 10 vuotta, kunnes teini-iässä tajusi, että kitara on kaikkien soittimien kuningas, ja aloitti sen opiskelun intohimoisesti. Marzi Nyman aloitti opinnot Sibelius-Akatemian jazz-osastolla vuonna 1998. Tällä hetkellä opinnot jatkuvat keskittyen pääasiassa säveltämiseen. Erilaiset esiintymiset ja musiikin tekeminen ovat Marzille erityinen kiinnostuksen kohde. Hän on säveltänyt teoksia orkestereille, kamariyhtyeille, teatteriin ja elokuviin sekä soolomateriaalia itselleen. Ylipää & Ystävät-yhtyeen ohella Marzi on esiintynyt moninaisten yhtyeiden jakokoonpanojen kanssa niin Suomessa kuin ulkomaillakin.</p><p>Marzi on nähty yhteistyössä muun muassa Steve Vain, Anne Sofie von Otterin, Lenny Pickettin, Tim Riesin (The Rolling Stones), Anu Komsin, Osmo Vänskän, Hannu Linnun, Igudesman & Joo (The League of Xtrordinary Musicians)-yhtyeen ja Pekka Kuusiston kanssa. Marzi Nyman on valittu vuonna 2003 Vuoden Pori Jazz-taiteilijaksi. Arvostetun Suomen Teosto-palkinnon hän voitti vuonna 2006. Uteliaisuus ja halu olla yhteydessä ihmisiin ovat asioita, jotka ohjaavat Marzi Nymania ja vievät häntä eteenpäin.</p>",
                "sv": "<p>En kammarmusikalisk konsert full av stora känslor och djup musikalisk kontakt; utan att dra sig för virtuositet, med kärlek!</p><p>Två mångsysslande och karismatiska musiker möts i en intensiv kollision mellan musikgenrer, där varje kväll är annorlunda. Avslappnad improvisation smaksätter både klassiska låtar älskade av alla och konstmusik som har komponerats till finländsk poesi.</p><p><b>Maria Ylipää</b> är en sångerska-skådespelerska som tillhör Finlands populäraste konstnärer, och som är känd för sina talrika roller inom musikteater, film och tv. Inom musiken är hon känd som en mångsidig tolkare, och hon känner sig hemma på scenen som solist både för jazzband, big band och sinfoniorkestrar.</p>",
                "en": "<p>A chamber music concert with an emotional punch and a deep musical connection; full of virtuosity and love!</p><p>Two multi-talented and charismatic musicians come together in an intensive mix of musical genres – every performance is different. Loose improvisation spices up both well-loved classic songs as well as art music written with Finnish poetry as the basis.</p><p><b>Maria Ylipää</b> is one of Finland’s most prominent artists, a singer-actor known for a multitude of musical theatre, movie and TV roles. In music, she is known as an excellent vocalist who is at home stage, whether she’s singing for a jazz band, big band or a symphonic orchestra.</p>"
            },
            "name": {
                "fi": "Maria Ylipää & Marzi Nyman – Malmin tapahtumakesä",
                "sv": "Maria Ylipää & Marzi Nyman – Malms evenemangssommar",
                "en": "Maria Ylipää & Marzi Nyman – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63878/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63877",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151278,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-23T08:19:46.209713Z",
                    "last_modified_time": "2024-05-23T08:19:46.209727Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749010.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151278/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T08:19:46.172096Z",
            "last_modified_time": "2024-08-29T05:13:17.612373Z",
            "date_published": null,
            "start_time": "2024-08-21T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suuren suosion saavuttaneet Malmitalon yhteislaulut ovat mukana myös Malmin tapahtumakesässä.",
                "sv": "Den väldigt populära allsången på Malms kulturhus finns också med i Malms evenemangssommar.",
                "en": "Malmi Summer of Events also includes the highly popular sing-along at Malmitalo."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/49859EBE914648B43170EE0D8C6F5516/Yhteislaulut_Pauli_Kainulainen_ja_Jukka_Okkonen",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/49859EBE914648B43170EE0D8C6F5516/Allsang_Pauli_Kainulainen_och_Jukka_Okkonen",
                "en": "http://www.malmitalo.fi/en/events/event/49859EBE914648B43170EE0D8C6F5516/Sing-along_Pauli_Kainulainen_and_Jukka_Okkonen"
            },
            "description": {
                "fi": "<p>Suuren suosion saavuttaneet Malmitalon yhteislaulut ovat mukana myös Malmin tapahtumakesässä.</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.<br>  <br>Soveltuu kaikenikäisille. Ohjaus suomeksi.</p>",
                "sv": "<p>Den väldigt populära allsången på Malms kulturhus finns också med i Malms evenemangssommar.</p><p>Kom med och sjung!</p>",
                "en": "<p>Malmi Summer of Events also includes the highly popular sing-along at Malmitalo.</p><p>Join your voice with ours!</p>"
            },
            "name": {
                "fi": "Yhteislaulut: Pauli Kainulainen ja Jukka Okkonen – Malmin tapahtumakesä",
                "sv": "Allsång: Pauli Kainulainen och Jukka Okkonen – Malms evenemangssommar",
                "en": "Sing-along: Pauli Kainulainen and Jukka Okkonen – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63877/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}