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/?format=api&page=210&publisher_ancestor=ahjo%3A00001
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 11838,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=211&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=209&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:64354",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:47/?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/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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": 152051,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-08T12:14:42.409612Z",
                    "last_modified_time": "2024-08-08T12:14:42.409630Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752179.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152051/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-08T12:14:42.370577Z",
            "last_modified_time": "2024-08-29T05:13:17.777660Z",
            "date_published": null,
            "start_time": "2024-08-21T14:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Miksi niin moni muusikko kärsii mielenterveyden haasteista? Hakeutuuko luovalle alalle herkkiä ihmisiä vai altistavatko työolosuhteet ja toimintakulttuuri mielenterveyden häiriöille? Onko muutos mieliystävälliseen musiikkialaan mahdollinen?",
                "en": "Why are so many musicians in the creative sector so vulnerable to mental health problems? Are sensitive people attracted to the creative sector or are the working conditions and culture more prone to mental disorders? Is a shift to a mind-friendly music sector possible?"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/3640094E3E4F1DC8167B39BD5281940E/OAF_Talks_Musiikki_ja_mielenterveys_Miten_muusikon_mieli_voi_",
                "en": "http://www.caisa.fi/en/events/event/3640094E3E4F1DC8167B39BD5281940E/OAF_Talks_Music_and_mental_health_How_is_the_musician_s_mind_"
            },
            "description": {
                "fi": "<p>Miksi niin moni muusikko kärsii mielenterveyden haasteista? Hakeutuuko luovalle alalle herkkiä ihmisiä vai altistavatko työolosuhteet ja toimintakulttuuri mielenterveyden häiriöille? Onko muutos mieliystävälliseen musiikkialaan mahdollinen?</p><p>Lukuisten tutkimusten mukaan musiikkialalla työskentelevillä on muita aloja korkeampi todennäköisyys kärsiä mielenterveyden haasteista. Musiikkialan mielenterveyttä koetteleva pimeä puoli ei tule alalle yllätyksenä ja musiikin tekijöiden saatetaankin antaa roikkua keikkabussin kyydissä puolikuntoisena kunhan rundi jatkuu keskeytyksettä. Jos porukkaa alkaa tippua vauhdissa kyydistä, mitä jää jäljelle?</p><p>Ratkaisut eivät synny tyhjiössä vaan vuoropuhelussa. Musiikkiala tarvitsee sekä mainstreamia että vahvan ja elinvoimaisen indie- ja marginaalikentän tekemään yhteistyötä. Jos alalta ajautuvat pois hittitehtailua vierastavat tai menestymisen paineista sairastuneet työtään rakastavat muusikot, olemme kohta tilanteessa, jossa meillä ei ole enää musiikkia mitä kuunnella. Mitä voisimme tehdä yhdessä, jotta alalla työskentelevät ja sinne tähtäävät pysyisivät toimintakykyisinä?</p><p>OAF Talks paneelikeskustelu on mukana rakentamassa mieliystävällisempää musiikkialaa, jossa kaikki pysyisivät mukana kyydissä. Keskustelussa indie-artisti Iisa Pajula ja Muusikkojen liiton freelance-koordinaattori Jaakko Kämäräinen istuvat alas Kukunori ry:n Markus Raivion kanssa pohtimaan alan haasteita ja mahdollisia ratkaisuja.</p><p>Luvassa on suoraa puhetta suorituspaineista, jatkuvan kritiikin alla toimimisesta sekä työn epävakaasta luonteesta. Samalla lavalla näkyy myös valoa, kun panelistit jakavat parhaita käytäntöjä sekä uraauurtavia aloitteita, joilla keikkabussin suuntaa voidaan lähteä kääntämään.</p><p><b>Panelistit:</b></p><p><b>Iisa (Iisa Pajula)</b> on helsinkiläinen laulaja-lauluntekijä, esiintyvä artisti ja kirjoittaja. Hän on toiminut useissa rooleissa musiikin parissa vuodesta 2005: viisi soololevyä julkaisseena sooloartistina, Regina-yhtyeen solistina, ammattisanoittajana sekä 2012–2020 HMC Publishingille kiinnitettynä house writerina.</p><p><b>Jaakko Kämäräinen</b> on Muusikkojen liiton freelancekoordinaattori, ja hän edistää kokonaisvaltaisesti freelancemuusikkojen asiaa. Tällä hetkellä Jaakon työnkuva painottuu erityisesti mielen hyvinvointiin käynnissä olevan Mielenterveyden työkalupakki -hankkeen puitteissa. Jaakolla on yli kahdenkymmenen vuoden kokemus freelancemuusikon työstä sekä työnohjaajan pätevyys. Freelancemuusikkona työskentely on tuonut Jaakolle laaja-alaisen ymmärryksen muusikon ammatissa vastaan tulevista haasteista ja ilmiöistä.</p><p>Fasilitaattorina toimii Kukunori ry:n toiminnanjohtaja <b>Markus Raivio.</b> Raivio on pitkän linjan mielenterveystyön ammattilainen, järjestöjohtaja sekä yhteiskunnallinen yrittäjä, jonka intohimona on kehittää uudenlaisia ratkaisuja aikamme haasteisiin. Markus on taustaltaan keikkalavoja useamman vuoden kiertänyt ammattimuusikko, tuottaja sekä musiikkiterapeutti.</p><p>Kesto: noin 1 tunti<br>Kieli: suomi</p>",
                "en": "<p>Why are so many musicians in the creative sector so vulnerable to mental health problems? Are sensitive people attracted to the creative sector or are the working conditions and culture more prone to mental disorders? Is a shift to a mind-friendly music sector possible?</p><p>Numerous studies show that people working in the music sector are more likely than other sectors to suffer from mental health challenges. The dark side of music’s mental health comes as no surprise to the industry, and musicians may be allowed to hang around on the gig bus even though they are not okay as long as the tour continues uninterrupted. If people start to fall off, what’s left?</p><p>Solutions are not created in a vacuum, but in dialogue. The music industry needs both the mainstream and a strong and vibrant indie and fringe scene to work together. If the musicians who are averse to hit-making or who love their work but are sick of the pressures of success leave the industry, we will soon find ourselves in a situation where we no longer have music to listen to. What can we do together to keep those who work in the industry and those who aspire to it working?</p><p>The OAF Talks panel discussion aims to build a more mind-friendly music industry, where everyone stays on board. In the discussion, indie artist Iisa Pajula and Finnish Musicians’ Union freelance coordinator Jaakko Kämäräinen sit down with Kukunori ry’s Markus Raivio to discuss the challenges and possible solutions for the industry. There will be direct talk about performance pressures, working under constant criticism and the unstable nature of work. The panelists also share best practices and ground-breaking initiatives to turn the tide.</p><p><b>Panelists:</p><p><b>Iisa (Iisa Pajula)</b> is a Helsinki-based singer-songwriter, performing artist and writer. She has worked in various roles in music since 2005: as a solo artist with five solo albums, as a soloist in the band Regina, as a professional writer and as a house writer for HMC Publishing from 2012-2020.</p><p><b>Jaakko Kämäräinen</b> is the freelance coordinator of the Finnish Musicians’ Union, and he promotes the overall cause of freelance musicians. Currently, Jaakko’s job description focuses on mental wellbeing in the framework of the ongoing Mental Health Toolkit project. Jaakko has over twenty years of experience as a freelance musician and is a qualified work coach. Working as a freelance musician has given Jaakko a broad understanding of the challenges and phenomena faced in the musician’s profession.</p><p>The facilitator is <b>Markus Raivio</b>, Executive Director of Kukunori ry. Markus Raivio is a long-standing mental health professional, organisation leader and social entrepreneur with a passion for developing new solutions to the challenges of our time. Markus is a professional musician, producer and music therapist who has been touring the music scene for several years.</p><p>Duration: 1 hour<br>Language: Finnish</p>"
            },
            "name": {
                "fi": "OAF Talks: Musiikki ja mielenterveys – Miten muusikon mieli voi?",
                "en": "OAF Talks: Music and mental health – How is the musician’s mind?"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64354/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64130",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?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": 151535,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T10:13:03.715962Z",
                    "last_modified_time": "2024-06-26T10:13:03.715977Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749270.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151535/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T10:13:03.702705Z",
            "last_modified_time": "2024-08-29T05:13:17.717932Z",
            "date_published": null,
            "start_time": "2024-08-21T14: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": "Tänä vuonna 20-vuotista taivaltaan juhlistava, psykedeelistä regressiivistä rockia esittävä I.L.O. tekee paluun lavoille vuosien jälkeen.",
                "sv": "I år firar I.L.O. 20 år av psykedelisk, regressiv rock och gör en comeback till scenen efter flera års uppehåll.",
                "en": "Legendary Finnish psychedelic regressive rock band I.L.O. is returning to the stages after a long await to celebrate their 20 years traveling in sound and space."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/EC1947DD74C92606D78ABE6F3584F3E6/Inner_Light_Orchestra",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/EC1947DD74C92606D78ABE6F3584F3E6/Inner_Light_Orchestra",
                "en": "http://www.espanlava.fi/en/events/event/EC1947DD74C92606D78ABE6F3584F3E6/Inner_Light_Orchestra"
            },
            "description": {
                "fi": "<p>Tänä vuonna 20-vuotista taivaltaan juhlistava, psykedeelistä regressiivistä rockia esittävä I.L.O. tekee paluun lavoille vuosien jälkeen.</p><p>Ja mikäpä olisikaan parempi lava palata sorvin ääreen kuin Espa, jolla orkesteri soitti lukuisia kertoja alkuaikoinaan – mukaan lukien ensimmäisen Stadin-keikkansa. Yhtye julkaisi toistaiseksi ainoan albuminsa Pearl Moon vuonna 2012. Luvassa siis sisäisen valon ohjaamaa, instrumentaalista iloittelua perinteisen hämyisellä otteella!<br> <br>Samuel Leminen - kitara<br>Heikki Puska - kitara<br>Kimmo Dammert - basso<br>Ville Väätäinen - rummut<br>Janina Lehto - huilu</p>",
                "sv": "<p>I år firar I.L.O. 20 år av psykedelisk, regressiv rock och gör en comeback till scenen efter flera års uppehåll.</p><p>Vad kunde väl vara bättre än att återvända till svarven på Esplanaden, där orkestern har spelat många gånger under sin första tid – inklusive den första spelningen i Helsingfors. Bandet släppte sitt enda album hittills, Pearl Moon, år 2012. Med andra ord utlovas instrumentell glädje styrd av det inre ljuset och med den välkända dunkla touchen!</p><p>Samuel Leminen – gitarr<br>Heikki Puska – gitarr<br>Kimmo Dammert – bas<br>Ville Väätäinen – trummor<br>Janina Lehto – flöjt</p>",
                "en": "<p>Legendary Finnish psychedelic regressive rock band I.L.O. is returning to the stages after a long await to celebrate their 20 years traveling in sound and space.</p><p>The band played many times at Espa during their early years, so it’s a perfect place to continue group’s everlasting journey. Inner Light Orchestra released their debut album Pearl Moon in 2012, and now it’s more than interesting to see and hear how their classic tunes sound today.</p><p>Samuel Leminen - guitar<br>Heikki Puska - guitar<br>Kimmo Dammert - bass<br>Ville Väätäinen - drums<br>Janina Lehto - flute</p>"
            },
            "name": {
                "fi": "Inner Light Orchestra – Open Stage",
                "sv": "Inner Light Orchestra – Open Stage",
                "en": "Inner Light Orchestra – Open Stage"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64130/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64129",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?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": 151534,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T10:13:03.636113Z",
                    "last_modified_time": "2024-06-26T10:13:03.636126Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749265.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151534/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T10:13:03.618429Z",
            "last_modified_time": "2024-08-29T05:13:17.669465Z",
            "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": "Cantaresin repertuaari sisältää omia versioita tunnettujen säveltäjien suosituista kappaleista, jotka kattavat laajan valikoiman Latinalaisen Amerikan genrejä ja tyylejä.",
                "sv": "Cantares repertoar innehåller egna versioner av populära kompositörers kända låtar, och täcker ett brett spektrum av latinamerikanska genrer och stilar.",
                "en": "The repertoire includes their own versions of popular songs created by prominent composers, embracing a wide variety of Latin American genres and styles."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/B14AE28E042CD99FC0646981CFF58A56/Cantares_Ensamble",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/B14AE28E042CD99FC0646981CFF58A56/Cantares_Ensamble",
                "en": "http://www.espanlava.fi/en/events/event/B14AE28E042CD99FC0646981CFF58A56/Cantares_Ensamble"
            },
            "description": {
                "fi": "<p>Cantaresin repertuaari sisältää omia versioita tunnettujen säveltäjien suosituista kappaleista, jotka kattavat laajan valikoiman Latinalaisen Amerikan genrejä ja tyylejä.</p><p>Syksyllä 2017 venezuelalainen laulaja Nathaly Gómez ja perulainen multi-instrumentalisti ja musiikkitieteilijä Camilo Pajuelo muodostivat Duo Cantaresin. Idea duosta syntyi yhteisestä intohimosta oman kulttuuritaustan musiikkiin ja halusta tehdä tunnetuksi tätä musiikkia Pohjoismaissa.</p><p>Cantaresin ensimmäinen virallinen konsertti oli Espoossa Leppävaaran kirkossa marraskuussa 2017. Siitä lähtien Cantares on esiintynyt jatkuvasti Suomessa ja myös Perussa ja Espanjassa.<br>Cantares tekee yhteistyötä paikallisten taiteilijoiden ja muiden muusikoiden kanssa.</p><p>Tällä kertaa Cantares esiintyy lahjakkaiden muusikoiden Juha Varvikon (FIN) ja Markko Floresin (PE/FIN) rinnalla.</p>",
                "sv": "<p>Cantares repertoar innehåller egna versioner av populära kompositörers kända låtar, och täcker ett brett spektrum av latinamerikanska genrer och stilar.</p><p>Hösten 2017 grundades Duo Cantares av den venezuelanske sångaren Nathaly Gomez och den peruanska multi-instrumentalisten och musikvetaren Camilo Pajuelo. Idén till duon uppstod ur en gemensam passion för musiken från den egna kulturbakgrunden och önskan att göra den känd i Norden.</p><p>Cantares första officiella konsert ordnades i Alberga kyrka i Esbo i november 2017. Sedan dess har Cantares uppträtt kontinuerligt i Finland och även i Peru och Spanien.</p><p>Cantares samarbetar med lokala konstnärer och andra musiker. Den här gången uppträder Cantares tillsammans med de begåvade musikerna Juha Varvikko (FIN) och Markko Flores (PE/FIN).</p>",
                "en": "<p>The repertoire includes their own versions of popular songs created by prominent composers, embracing a wide variety of Latin American genres and styles.</p><p>In autumn 2017, Venezuelan singer Nathaly Gómez and Peruvian multi-instrumentalist and musicologist Camilo Pajuelo formed the Duo Cantares, inspired by a common passion for traditional music and the desire to promote it in the Nordic countries.</p><p>Cantares offered their first official concert at the Leppävaara Church in Espoo, in November 2017. Since then, Cantares maintains a constant activity in Finland and has performed also in Peru and Spain, cooperating also with local artists and from other nationalities.</p><p>On this occasion, Cantares will perform along talented musicians Juha Varvikko (FIN) and Markko Flores (PE/FIN).</p>"
            },
            "name": {
                "fi": "Cantares Ensamble – Open Stage",
                "sv": "Cantares Ensamble – Open Stage",
                "en": "Cantares Ensamble – Open Stage"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64129/?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"
        },
        {
            "id": "kulke:63066",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?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/18306078",
                        "sv": "https://www.lippu.fi/event/18306078",
                        "en": "https://www.lippu.fi/event/18306078"
                    },
                    "description": null,
                    "price": {
                        "fi": "39,50/37,50 €",
                        "sv": "39,50/37,50 €",
                        "en": "39,50/37,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 10836,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-02-14T11:13:14.926501Z",
                    "last_modified_time": "2024-02-14T11:13:14.926518Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744615.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10836/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-02-14T11:13:14.884777Z",
            "last_modified_time": "2024-08-29T05:13:17.546026Z",
            "date_published": null,
            "start_time": "2024-08-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": "Populaarimusiikin maailmassa ei ole montakaan 60-luvulla aloittanutta yhtyettä, joka vieläkin esiintyy ja levyttää lähes alkuperäisessä kokoonpanossaan.",
                "sv": "I populärmusikens värld finns inte många band som grundades på 60-talet, och som fortfarande uppträder och spelar in musik i nästan sin ursprungliga sammansättning.",
                "en": "Once the most popular popband in Finland, Topmost makes a comeback!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/796B6FF91D9B38AA08D8ED2792047077/Topmost_60_Forever",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/796B6FF91D9B38AA08D8ED2792047077/Topmost_60_Forever",
                "en": "http://www.savoyteatteri.fi/en/events/event/796B6FF91D9B38AA08D8ED2792047077/Topmost_60_Forever"
            },
            "description": {
                "fi": "<p>Populaarimusiikin maailmassa ei ole montakaan 60-luvulla aloittanutta yhtyettä, joka vieläkin esiintyy ja levyttää lähes alkuperäisessä kokoonpanossaan.</p><p>Vuonna 1964 helsinkiläisistä koulupojista perustettu Topmost-yhtye toimii vieläkin viiden alkuperäisjäsenen voimin: Gugi Kokljuschkin, Harri Saksala, Eero Lupari, Holle Holopainen ja Kisu Jernström. Kuudes Topmost, Poku Tarkkonen menehtyi vuonna 2007 ja hänen tilalleen tuli vuonna 2004 kosketinsoittaja Tommi Lindell.</p><p>Topmost oli vuosia Suomen suosituin popyhtye. Se teki kuusi singleä ja yhden albumin, kiersi myös Tanskassa ja Ruotsissa sellaisella menestyksellä, että ruotsalainen iltapäivälehti Expressen äityi kehumaan: Topmost on suurin sensaatio sitten Beatlesin!<br>Topmostin suosio perustui tuoreimpien pophittien esittämiseen, puhtaaseen stemmalauluun sekä rhythm and blues- ja soulmusiikin hallitsemiseen. Nuoret soittajat olivat myös tyttöjen mieleen, tätä edesauttoi huoliteltu pukeutuminen ja esiintymisasut ostettiin tietenkin Tukholman sen ajan huippuvaatekaupoista.</p><p>Topmostin 60 Forever juhlakonsertti pidetään Helsingin ytimessä ti 20.8. Savoy-teatterissa. Konsertissa esiintyy Topmostin yllätysvieraina muusikkoystäviä vuosien varrelta.</p><p>Vuosi 2024 on Topmostin juhlavuosi: 60 vuotta musiikintekoa.<br>Kunnianosoitus Suomen legendaarisimmalle ja maailman ehkä pitkäikäisimmälle 60-luvun yhtyeelle!</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua.</p>",
                "sv": "<p>I populärmusikens värld finns inte många band som grundades på 60-talet, och som fortfarande uppträder och spelar in musik i nästan sin ursprungliga sammansättning.</p><p>Topmost grundades år 1964 av skolpojkar från Helsingfors och är fortfarande verksamt med fem av de ursprungliga medlemmarna: Gugi Kokljuschkin, Harri Saksala, Eero Lupari, Holle Holopainen och Kisu Jernström. Den sjätte Topmost-medlemmen Poku Tarkkonen dog år 2007 och ersattes år 2004 av keyboardisten Tommi Lindell.</p><p>I flera år var Topmost det populäraste popbandet i Finland. Bandet släppte sex singlar och ett album, och turnerade även i Danmark och Sverige med sådan framgång att den svenska kvällstidningen Expressen utropade: Topmost är den största sensationen sedan Beatles!<br>Topmosts popularitet byggde på att framföra de senaste pophittarna, sjunga rent i stämmor och bemästra rhytm and blues och soulmusik. De unga musikernas vårdade klädsel gjorde dem också populära bland flickor. Självklart köptes scenkostymerna i tidens bästa klädbutiker i Stockholm.</p><p>Topmosts jubileumskonsert 60 Forever ordnas i Helsingfors stadskärna ti 20.8. på Savoy-teatern. Konserten omfattar även överraskningsgäster – Topmosts musikervänner från de gångna åren.</p><p>År 2024 är Topmosts jubileumsår: 60 år av musikskapande.<br>En hyllning till Finlands mest legendariska och kanske världens långvarigaste band från 1960-talet!</p><p>Längd ca 2 h, inklusive paus</p><p>Parkett F18 servering av alkoholdrycker. Balkong T, ingen servering av alkoholdrycker.</p>",
                "en": "<p>Once the most popular popband in Finland, Topmost makes a comeback!</p><p>In the world of popular music, there aren’t many bands that started in the 1960s who are still performing and recording with almost their original line-up.</p><p>Founded in 1964 by a group of schoolboys from Helsinki, Topmost is still active with five original members: Gugi Kokljuschkin, Harri Saksala, Eero Lupari, Holle Holopainen and Kisu Jernström. The sixth member of Topmost, Poku Tarkkonen, passed away in 2007 and was replaced in 2004 by keyboardist Tommi Lindell.</p><p>Topmost was the most popular pop band in Finland for years. They released six singles and one album and also toured Denmark and Sweden with such success that the Swedish tabloid Expressen was quick to praise them: “Topmost is the biggest sensation since the Beatles!”<br>Topmost’s popularity was based on playing the latest pop hits, pure harmonies, and on their proficiency in rhythm and blues and soul music. The young musicians were also popular with the girls, thanks to their stylish attire, and their stage outfits were naturally bought from the top clothing stores in Stockholm at the time.</p><p>Topmost’s 60 Forever celebration concert will be held in the heart of Helsinki on Tue, 20 August , at the Savoy Theatre. The concert will feature surprise guest appearances by Topmost’s musician friends from over the years.</p><p>2024 is Topmost’s anniversary year, celebrating  60 years of making music.<br>A tribute to Finland’s most legendary and perhaps the world’s longest-lived band from the 1960s!</p><p>Duration: approx. 2 h, including an intermission</p><p>Stalls 18+, a licensed (alcohol-serving) area. The balcony is a non-licensed area without an age limit.</p>"
            },
            "name": {
                "fi": "Topmost 60 Forever – Topmost with Special Guests",
                "sv": "Topmost 60 Forever – Topmost med speciell gästernä",
                "en": "Topmost 60 Forever – Topmost with Special Guests"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Lapsbasso Oy",
                "sv": "Lapsbasso Oy",
                "en": "Lapsbasso Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63066/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63859",
            "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": 151244,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-21T08:13:32.103266Z",
                    "last_modified_time": "2024-05-21T08:13:32.103282Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744925.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151244/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-21T08:13:32.064811Z",
            "last_modified_time": "2024-08-29T05:13:17.488340Z",
            "date_published": null,
            "start_time": "2024-08-20T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Indiepoppia ja rokkia oivaltavasti sekoittava Rebekka Holi tuo Malmin tapahtumakesään kaunista jammailua. Hurmaavat sävelet ja sanat puhkeavat Rebekka Holin uusimman albumin mukaisesti Kukkaan!",
                "sv": "Rebekka Holi som på ett undersökande sätt kombinerar indiepop och rock hämtar vackert jammande till Malms evenemangssommar. De förtjusande tonerna och orden blommar upp på samma sätt som Rebekka Holis nyaste album Kukkaan!",
                "en": "Rebekka Holi creates an insightful combination of indie pop and rock, bringing a beautiful jam session to the Malmi Summer of Events. Her charming tunes and lyrics can quite literally make the flowers bloom!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7F7BB3EE04F138AC3449ED137B07C62B/Rebekka_Holi",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7F7BB3EE04F138AC3449ED137B07C62B/Rebekka_Holi",
                "en": "http://www.malmitalo.fi/en/events/event/7F7BB3EE04F138AC3449ED137B07C62B/Rebekka_Holi"
            },
            "description": {
                "fi": "<p>Indiepoppia ja rokkia oivaltavasti sekoittava Rebekka Holi tuo Malmin tapahtumakesään kaunista jammailua. Hurmaavat sävelet ja sanat puhkeavat Rebekka Holin uusimman albumin mukaisesti Kukkaan!</p><p>Rebekka Holi on Helsingistä kotoisin oleva artisti ja lauluntekijä. Musiikkia läpi elämänsä säveltänyt artisti on suorasukainen sanoittaja, joka kertoo kappaleissaan oman elämänsä kokemuksista ja koukeroista. Syvällä oman taiteensa parissa viihtyvä Rebekka Holi on kokonaisvaltainen artisti, joka luo omaa taiteellista maailmansa pala kerrallaan. Kappaleet ovat Holin sanoittamia sekä säveltämiä. Artisti on myös itse tehnyt kansitaiteensa.</p><p>Rebekka Holi julkaisi helmikuussa 2024 uuden Kukkaan-albumin. Holin soittama akustinen kitara nivoo albumin tunnelmallisesti latautuneita kappaleita kauniisti yhteen. Tuokiokuvamaisesta albumista välittyy kuuntelijoille selkeä viesti: ympäristön tarkkaileminen ja kohtaamiset toisten olentojen kanssa kasvattavat ja auttavat kukkaan puhkeamisessa.</p>",
                "sv": "<p>Rebekka Holi som på ett undersökande sätt kombinerar indiepop och rock hämtar vackert jammande till Malms evenemangssommar. De förtjusande tonerna och orden blommar upp på samma sätt som Rebekka Holis nyaste album Kukkaan!</p><p>Rebekka Holi är en artist och låtskrivare från Helsingfors. Artisten som har komponerat musik i hela sitt liv är en rättfram textförfattare, som i sina låtar berättar om upplevelserna och kringelikrokarna i hennes eget liv. Den helhetsbetonade artisten Rebekka Holi trivs djupt inne i sin egen konst och skapar sin konstnärliga värld en bit i taget. Holi har skrivit texten till och komponerat låtarna. Artisten har även själv gjort konsten på albumets omslag.</p>",
                "en": "<p>Rebekka Holi creates an insightful combination of indie pop and rock, bringing a beautiful jam session to the Malmi Summer of Events. Her charming tunes and lyrics can quite literally make the flowers bloom!</p><p>Rebekka Holi is a singer-songwriter from Helsinki. Having made music all her life, she is an outspoken lyricist who uses her own experiences, twists and turns in her songs. Rebekka Holi enjoys her own art deeply and is a complete artist who creates her own artistic world, one piece at a time. Holi writes and composes all of her songs. She also draws her own album art.</p>"
            },
            "name": {
                "fi": "Rebekka Holi – Malmin tapahtumakesä",
                "sv": "Rebekka Holi – Malms evenemangssommar",
                "en": "Rebekka Holi – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63859/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64128",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?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": 151533,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T10:13:03.453445Z",
                    "last_modified_time": "2024-06-26T10:13:03.453461Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746692.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151533/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T10:13:03.433311Z",
            "last_modified_time": "2024-08-29T05:13:17.431192Z",
            "date_published": null,
            "start_time": "2024-08-20T14: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": "Showkuoro Aventur vuoroin mykisti ja vuoroin villiinnytti yleisön legendaarisessa PrimeTime-showssa toukokuussa. Espan Open Stagella kuoro esittää parhaat palat tästä vauhdikkaasta tuotannosta.",
                "sv": "Den Helsingforsbaserade showkören Aventur trollband publiken under den legendariska PrimeTime-showen på Aleksandersteatern in maj. På Espa Open Stage framför kören ett urval av de bästa låtarna från showen.",
                "en": "The crowd went both silent and wild during the legendary PrimeTime-show by the showchoir Aventur in May 2024. In the Espa Open Stage concert the choir performs the highlights of this incredible production."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/54501EDBA40D16D5DA0261484F336EDF/Aventur_The_Best_of_PrimeTime-show",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/54501EDBA40D16D5DA0261484F336EDF/Aventur_The_Best_of_PrimeTime-show",
                "en": "http://www.espanlava.fi/en/events/event/54501EDBA40D16D5DA0261484F336EDF/Aventur_The_Best_of_PrimeTime-show"
            },
            "description": {
                "fi": "<p>Showkuoro Aventur vuoroin mykisti ja vuoroin villiinnytti yleisön legendaarisessa PrimeTime-showssa toukokuussa. Espan Open Stagella kuoro esittää parhaat palat tästä vauhdikkaasta tuotannosta.</p><p>Tarjolla on a cappella -laulua jykevällä biitillä ja taatulla Aventura-asenteella!</p>",
                "sv": "<p>Den Helsingforsbaserade showkören Aventur trollband publiken under den legendariska PrimeTime-showen på Aleksandersteatern in maj. På Espa Open Stage framför kören ett urval av de bästa låtarna från showen.</p><p>Välkommen att njuta av a cappella sång med tungt beat och unik Aventurattityd!</p>",
                "en": "<p>The crowd went both silent and wild during the legendary PrimeTime-show by the showchoir Aventur in May 2024. In the Espa Open Stage concert the choir performs the highlights of this incredible production.</p><p>Welcome to enjoy a cappella singing with a kick-ass beat and the unique attitude of Aventur!</p>"
            },
            "name": {
                "fi": "Aventur: The Best of PrimeTime-show – Open Stage",
                "sv": "Aventur: The Best of PrimeTime-show – Open Stage",
                "en": "Aventur: The Best of PrimeTime-show – Open Stage"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64128/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64127",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?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": 151532,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T10:13:03.361600Z",
                    "last_modified_time": "2024-06-26T10:13:03.361614Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746691.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151532/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T10:13:03.346859Z",
            "last_modified_time": "2024-08-29T05:13:17.382248Z",
            "date_published": null,
            "start_time": "2024-08-20T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Helsinkiläinen Hi-Five Quintet on sykähdyttävä soul & blues -bändi, joka valloittaa yleisönsä sielukkailla melodioillaan ja vastustamattomalla groovella.",
                "sv": "Helsingforsbaserade Hi-Five Quintet är ett spännande soul & blues band som fängslar sin publik med sina själfulla melodier och oemotståndliga groove.",
                "en": "Helsinki-based Hi-Five Quintet is an exciting soul & blues band that captivates the audience with soulful melodies and irresistible groove."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/12E213815DE50DE3C94EBBF2AAFE65B5/Hi-Five_Quintet",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/12E213815DE50DE3C94EBBF2AAFE65B5/Hi-Five_Quintet",
                "en": "http://www.espanlava.fi/en/events/event/12E213815DE50DE3C94EBBF2AAFE65B5/Hi-Five_Quintet"
            },
            "description": {
                "fi": "<p>Helsinkiläinen Hi-Five Quintet on sykähdyttävä soul & blues -bändi, joka valloittaa yleisönsä sielukkailla melodioillaan ja vastustamattomalla groovella.</p><p>Vuodesta 2014 lähtien viisihenkinen kokoonpano on yhdistänyt soul & bluesin moderniin tyyliin luoden ohjelmiston täynnä ikivihreitä hittejä ja vauhdikkaita rhythm & blues kappaleita.</p><p>Hi-Five Quintet edusti Suomea kesäkuussa 2023 European Blues Challenge -kilpailussa Puolan Chorzówissa, ja heidän upea esityksensä vakuutti niin tuomariston kuin yleisönkin. Bändin laulajan Saara Koiviston voimakas ja tunteikas ääni koskettaa kuulijoita syvältä, ja hänen tulkintansa herättävät unohtumattomia tuntemuksia, jotka jäävät mieleen.</p><p>Hi-Five Quintet on julkaissut kaksi vaikuttavaa levyä, ja tuorein, \"The Land Of Make Believe,\" näki päivänvalon toukokuussa 2023. Levy on täynnä tunteikasta soulia ja bluesia, ja se on saanut kiitosta kriitikoilta laajasti.</p><p>Hi-Five Quintet tuo mukanaan sielukkaan ja soul bluesin täyteisen tunnelman, joka ei varmasti jätä yleisöä kylmäksi.</p>",
                "sv": "<p>Helsingforsbaserade Hi-Five Quintet är ett spännande soul & blues band som fängslar sin publik med sina själfulla melodier och oemotståndliga groove.</p><p>Sedan 2014, en line-up på fem personer har kombinerat själfull soulblues med en modern stil och skapat en repertoar full av vintergröna hits och snabba rhythm & blues låtar.</p><p>Hi-Five Quintet representerade Finland i juni 2023 vid European Blues Challenge i Chorzów, Polen, och deras fantastiska framträdande övertygade både juryn och publiken. Bandets sångerska Saara Koivistos starka och känslomässiga röst berör lyssnarna djupt, och hennes tolkningar väcker oförglömliga känslor som finns kvar i minnet.</p><p>Hi-Five Quintet har släppt två imponerande album, med det senaste, \"The Land Of Make Believe\", som kommer att se dagens ljus i maj 2023. Fullt av själfull soul och blues har albumet fått stor kritik.</p><p>Hi-Five Quintet för med sig en själfull blues stämning som absolut inte kommer att lämna publiken kallt.</p>",
                "en": "<p>Helsinki-based Hi-Five Quintet is an exciting soul & blues band that captivates the audience with soulful melodies and irresistible groove.</p><p>Since 2014, the five-member ensemble has combined soulful soul & blues with a modern style, creating a repertoire full of evergreen hits and fast-paced rhythm & blues songs.</p><p>Hi-Five Quintet represented Finland in June 2023 at the European Blues Challenge in Chorzów, Poland, and their wonderful performance convinced both the jury and the audience. The strong and emotional voice of the band's singer Saara Koivisto touches the listeners deeply, and her interpretations evoke unforgettable feelings that remain in the memory.</p><p>Hi-Five Quintet has released two impressive albums, with the latest, \"The Land Of Make Believe,\" set to see the light of day in May 2023. Full of soulful soul and blues, the album has received widespread critical acclaim.</p><p>Hi-Five Quintet brings a soulful blues atmosphere that will certainly not leave the audience cold.</p>"
            },
            "name": {
                "fi": "Hi-Five Quintet – Open Stage",
                "sv": "Hi-Five Quintet – Open Stage",
                "en": "Hi-Five Quintet – Open Stage"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64127/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63384",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?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:46/?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": 150624,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-16T15:13:07.547540Z",
                    "last_modified_time": "2024-04-16T15:13:07.547559Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745541.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150624/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-16T15:13:07.532926Z",
            "last_modified_time": "2024-08-29T05:13:17.280283Z",
            "date_published": null,
            "start_time": "2024-08-20T07:40: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": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.",
                "en": "Annantalo Art Centre’s music playschool in summer invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/11D4A4A5F4DC2E2DED60FFDDE803BA1D/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/11D4A4A5F4DC2E2DED60FFDDE803BA1D/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/11D4A4A5F4DC2E2DED60FFDDE803BA1D/Music_playschool_in_summer_"
            },
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin.</p><p>Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy.  <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>",
                "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk.</p><p>Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>",
                "en": "<p>Annantalo Art Centre’s music playschool in summer invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the  music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>"
            },
            "name": {
                "fi": "Kesämuskari – Summer Music Play School",
                "sv": "Musikstund på sommaren",
                "en": "Music playschool in summer"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63384/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63383",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?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:46/?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": 150623,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-16T15:13:07.474172Z",
                    "last_modified_time": "2024-04-16T15:13:07.474184Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745540.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150623/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-16T15:13:07.462119Z",
            "last_modified_time": "2024-08-29T05:13:17.222840Z",
            "date_published": null,
            "start_time": "2024-08-20T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.",
                "en": "Annantalo Art Centre’s music playschool in summer invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/17190EAF774416FF643867C65629DC48/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/17190EAF774416FF643867C65629DC48/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/17190EAF774416FF643867C65629DC48/Music_playschool_in_summer_"
            },
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin.</p><p>Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy.  <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>",
                "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk.</p><p>Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>",
                "en": "<p>Annantalo Art Centre’s music playschool in summer invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the  music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>"
            },
            "name": {
                "fi": "Kesämuskari – Summer Music Play School",
                "sv": "Musikstund på sommaren",
                "en": "Music playschool in summer"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63383/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64126",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?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": 151531,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T10:13:03.145378Z",
                    "last_modified_time": "2024-06-26T10:13:03.145392Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755876.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151531/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T10:13:03.132877Z",
            "last_modified_time": "2024-08-29T05:13:17.171346Z",
            "date_published": null,
            "start_time": "2024-08-19T14: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": "Sahaj Unlimited on intialaisella vaikutteella soivaa folk-popmusiikkia, jonka juuret ovat henkisessä bhajan-genren perinteessä.",
                "sv": "Sahaj Unlimited är en indisk influerad folk-popmusik grupp, som har sina rötter i bhajan-genrens andliga tradition.",
                "en": "Sahaj Unlimited is Indian-influenced folk-pop music that has its roots in the spiritual tradition of the bhajan-genre."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/97D5281C2E4788853A6C3641C41F7989/Sahaj_Unlimited",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/97D5281C2E4788853A6C3641C41F7989/Sahaj_Unlimited",
                "en": "http://www.espanlava.fi/en/events/event/97D5281C2E4788853A6C3641C41F7989/Sahaj_Unlimited"
            },
            "description": {
                "fi": "<p>Sahaj Unlimited on intialaisella vaikutteella soivaa folk-popmusiikkia, jonka juuret ovat henkisessä bhajan-genren perinteessä.</p><p>Yhtyeen muusikot ovat suomalaisia musiikin ammattilaisia, mutta Espan lavalle he saavat mukaansa itävallanintialaisia muusikoita, laulajan sekä tabla-rumpujen soittajan. Ohjelmassa on bhajan-lauluja, joita Sahaj Unlimited on levyttänyt 2000-luvun alkupuolella. Tämän lisäksi kuullaan semiklassista intialaista laulua, intialaisilla soittimilla säestettynä.</p><p>Yhtyeen esittämä musiikki liittyy myös löyhästi meditaatioon, ja Espan lavan sivuun pystytetään meditointipiste, jossa puiston ihmiset ja ohikulkijat voivat kokeilla Sahaja Yoga -meditointia ilmaiseksi.</p><p>Tervetuloa nauttimaan intialaisen musiikin sointiväreistä ja hyvistä meditointiviboista!</p>",
                "sv": "<p>Sahaj Unlimited är en indisk influerad folk-popmusik grupp, som har sina rötter i bhajan-genrens andliga tradition.</p><p>På Esplanadens scen den 19 Augusti kommer vi att få höra bandets finska musiker samt ett par österrikiska indiska musiker. Programmet börjar kl 17:00 och innehåller bhajan-låtar inspelade av bandet i början av 2000-talet samt indisk sång, ackompanjerad av indiska instrument.</p><p>Musiken som bandet framför är också delvis kopplat till meditation, som vi även kan få prova intill Esplanadens scen. Sahaja Yoga-meditation är gratis och evenemanget är kostnadsfritt och öppet för alla.</p><p>Välkomna och njuta av toner av indisk musik och goda vibbar!</p>",
                "en": "<p>Sahaj Unlimited is Indian-influenced folk-pop music that has its roots in the spiritual tradition of the bhajan-genre.</p><p>The band's musicians are Finnish music professionals, but this Espa Stage program includes also Austrian Indian musicians, a singer and a player of tabla drums. The program includes bhajan songs recorded by Sahaj Unlimited in the early 2000s. In addition to that, there is semi-classical Indian singing, accompanied by Indian instruments.</p><p>The music performed by the band is also loosely related to meditation, and there shall be a meditation stand on the side of the stage, where people in the park can try Sahaja Yoga meditation for free.</p><p>Welcome to enjoy the tones of Indian music and good vibes of meditation!</p>"
            },
            "name": {
                "fi": "Sahaj Unlimited",
                "sv": "Sahaj Unlimited",
                "en": "Sahaj Unlimited"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64126/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64125",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?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": 151530,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T10:13:03.059891Z",
                    "last_modified_time": "2024-06-26T10:13:03.059935Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755875.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151530/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T10:13:03.048060Z",
            "last_modified_time": "2024-08-29T05:13:17.118437Z",
            "date_published": null,
            "start_time": "2024-08-19T13: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": "Ed on freelance-perkussionisti, opettaja ja säveltäjä, joka asuu Seattlessa, Washingtonin osavaltiossa.",
                "sv": "Ed är en frilansande perkussionist, lärare och kompositör som bor i Seattle i delstaten Washington. Han är hemma från Lingít Sitka i Alaska, och har släppt tre album med ursprungsbefolkningens traditionella melodier, som han också har arrangerat för jazzstil tillsammans med bandet Native Jazz Quartet.",
                "en": "Ed is a freelance percussionist, educator and composer based out of Seattle, WA. He is Lingít from Sitka, Alaska and has released three albums featuring traditional native melodies, which he also arranged into the jazz idiom with the Native Jazz Quartet."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/E276813DC9C858406DFC5DACA4D1F371/Ed_Littlefield",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/E276813DC9C858406DFC5DACA4D1F371/Ed_Littlefield",
                "en": "http://www.espanlava.fi/en/events/event/E276813DC9C858406DFC5DACA4D1F371/Ed_Littlefield"
            },
            "description": {
                "fi": "<p>Ed on freelance-perkussionisti, opettaja ja säveltäjä, joka asuu Seattlessa, Washingtonin osavaltiossa.</p><p>Hän on Lingít Sitkasta, Alaskasta, ja on julkaissut kolme albumia, joissa esiintyy perinteisiä alkuperäiskansojen melodioita, jotka hän on myös sovittanut jazz-tyyliin Native Jazz Quartet -yhtyeen kanssa.</p><p>Tämä kvartetti edusti myös Yhdysvaltoja Etelä-Amerikassa \"Jazz Ambassadors\" -ohjelman kautta American Music Abroad -ohjelman puitteissa. Elokuva-alalla hän on säveltänyt kappaleen Betty Whiten hahmolle vuoden 2009 Disney-elokuvaan The Proposal ja soitti lyömäsoittimia sekä konsultoi alkuperäismusiikin osalta vuoden 2022 dokumenttielokuvassa Exposing Muybridge.</p><p>Tällä hetkellä hän työskentelee kolmivuotisen projektin parissa luodakseen ensimmäisen Lingít-oopperan. Tämä projekti yhdistää perinteisiä ja nykyaikaisia Lingít-melodioita länsimaiseen oopperagenreen ja siihen kuuluu myös täysin alkuperäiskansoista koostuva näyttelijäryhmä.</p><p>Ed on myös aktiivinen opettaja ympäri maata, ohjaten taiteilijaresidenssejä opiskelijoille ja opettajille auttaen heitä oppimaan lisää Lingít-kulttuurista ja musiikista sekä perinteisistä tiedonhankintatavoista.</p><p>Konsertti toteutetaan yhteistyössä Suomen Yhdysvaltain suurlähetystön kanssa.</p>",
                "sv": "<p>Ed är en frilansande perkussionist, lärare och kompositör som bor i Seattle i delstaten Washington. Han är hemma från Lingít Sitka i Alaska, och har släppt tre album med ursprungsbefolkningens traditionella melodier, som han också har arrangerat för jazzstil tillsammans med bandet Native Jazz Quartet.</p><p>Denna kvartett representerade också USA i Sydamerika via programmet “Jazz Ambassadors” inom ramen för programmet American Music Abroad. Inom filmindustrin har han komponerat en låt för karaktären Betty White i Disney-filmen The Proposal från 2009, och spelat slagverk och konsulterat om ursprungsmusik i dokumentären Exposing Muybridge från 2022.</p><p>För närvarande arbetar han med ett treårigt projekt för att skapa den första Lingít-operan. Detta projekt kombinerar traditionella och moderna Lingít-melodier med den västerländska operagenren, och inkluderar även en skådespelargrupp som består uteslutande av ursprungsbefolkningar.</p><p>Ed är också en aktiv lärare på olika håll i landet, och vägleder konstnärsresidens för studerande och lärare för att lära dem mer om Lingít-kultur och musik samt traditionella sätt att förvärva kunskap.</p><p>Konserten genomförs i samarbete med USA:s ambassad i Finland.</p>",
                "en": "<p>Ed is a freelance percussionist, educator and composer based out of Seattle, WA. He is Lingít from Sitka, Alaska and has released three albums featuring traditional native melodies, which he also arranged into the jazz idiom with the Native Jazz Quartet.</p><p>This quartet also represented the United States in South America as “Jazz Ambassadors” through the American Music Abroad program. For film he composed a song for the 2009 Disney movie The Proposal for Betty White’s character and played the percussion score and consulted on indigenous music for the 2022 documentary Exposing Muybridge.</p><p>Currently he is working on a three-year project to create the first ever Lingít opera. This project will combine traditional contemporary Lingít melodies inside the western opera genre and will also include an all-indigenous cast.</p><p>Ed is also an active educator around the country facilitating artist residencies for students and teachers to help them learn more about Lingít culture and music and traditional ways of knowing.<br>The concert is established in collaboration with the U.S. Embassy in Finland.</p>"
            },
            "name": {
                "fi": "Ed Littlefield",
                "sv": "Ed Littlefield",
                "en": "Ed Littlefield"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64125/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63721",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:47/?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:55/?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:p39492/?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.tiketti.fi/outsider-art-festival-2024-kulttuurikeskus-caisa-helsinki-tickets/100066",
                        "en": "https://www.tiketti.fi/outsider-art-festival-2024-kulttuurikeskus-caisa-helsinki-tickets/100066"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 10 € + support ticket 25 €",
                        "en": "15 € / 10 € + support ticket 25 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151127,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-14T14:12:55.716063Z",
                    "last_modified_time": "2024-05-14T14:12:55.716080Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752249.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151127/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-14T14:12:55.696477Z",
            "last_modified_time": "2024-08-29T05:13:17.063282Z",
            "date_published": null,
            "start_time": "2024-08-17T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "OAF:n Musiikillinen Mikrokosmos on lyyrinen, omaääninen, koskettava ja kantaaottava. Lauantaina lavan valtaa kaksi nousevaa artistia: Stella Massa ja Ondi.",
                "en": "The OAF Musical Microcosm is lyrical, original, touching and topical. On Saturday, two up-and-coming artists will take the stage: Stella Massa and Ondi."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/BE9180C7F21AC59B7167B2091D96BC61/Stella_Massa_Ondi",
                "en": "http://www.caisa.fi/en/events/event/BE9180C7F21AC59B7167B2091D96BC61/Stella_Massa_Ondi"
            },
            "description": {
                "fi": "<p>OAF:n Musiikillinen Mikrokosmos on lyyrinen, omaääninen, koskettava ja kantaaottava. Lauantaina lavan valtaa kaksi nousevaa artistia: Stella Massa ja Ondi.</p><p><b>Stella Massa</b> on suomalais-karjalainen näyttelijä, performanssitaiteilija, musiikintekijä ja aktivisti. Stella Massa esittää tekemänsä Kukkilintu-teoksen, joka yhdistelee musiikkia sekä video- ja esitystaidetta. Teoksen kappaleet käsittelevät ylisukupolvisuutta, ei-binäärisyyttä, luontosuhdetta sekä karjalaisiin juuriin tutustumista.</p><p><b>Ondi</b> on Porissa asuva kenialainen tarinankertoja, joka itse kuvaa musiikkiaan Nairobi-folkiksi. Tämän vuoden festivaaleille Ondi tuo soolo-esityksen, jossa hänen ainutlaatuisia tarinoitaan kuullaan laulun, ukulelen ja kitaran kiehtovana kokonaisuutena.</p><p><b>Illan aikataulu</b><br>klo 19 Stella Massa<br>klo 20 Ondi</p><p>Tapahtuman kesto noin kaksi tuntia.</p><p>Huomaathan, että OAF-liput myy Tiketti, eikä niitä voi ostaa Caisan lipunmyynnistä!</p><p>Lue lisää festivaalista <u>https://outsiderart.fi/</u></p>",
                "en": "<p>The OAF Musical Microcosm is lyrical, original, touching and topical. On Saturday, two up-and-coming artists will take the stage: Stella Massa and Ondi.</p><p><b>Stella Massa</b> is a Finnish-Carelian actress, performance artist, musician and activist. Stella Massa will perform her work Kukkilintu, which combines music, video and performance art. The piece deal with transgenerationalism, being non-binary, relationship with nature and the exploration of Karelian roots.</p><p><b>Ondi</b> is a Kenyan storyteller living in Pori, who describes his music as Nairobi-folk. For this year’s festival, Ondi will bring a solo performance, where her unique stories will be heard as a fascinating ensemble of song, ukulele and guitar.</p><p>Doors 18.30, Stella Massa 19.00, Ondi 20.00</p><p>Tickets 15 € / 10 € + support ticket 25 €, tiketti.fi<br>Please note that OAF tickets are not sold at the Caisa ticket counter.</p><p>Read more about the festival and the artists <u>https://outsiderart.fi/en/outsider-art-finland/</u></p>"
            },
            "name": {
                "fi": "Stella Massa & Ondi – OAF X Caisa",
                "en": "Stella Massa & Ondi – OAF X Caisa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63721/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63854",
            "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: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: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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": 151184,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-20T11:13:00.348586Z",
                    "last_modified_time": "2024-05-20T11:13:00.348605Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744919.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151184/?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-05-20T11:13:00.329451Z",
            "last_modified_time": "2024-08-29T05:13:16.998611Z",
            "date_published": null,
            "start_time": "2024-08-17T09:00:00Z",
            "end_time": "2024-08-17T14: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": "Malmin tapahtumakesässä vietetään perhepäivää! Päivässä kuullaan satuja, hauskaa fillaripianistia sekä lastenmusiikkiyhtye Päistikkaa, joka hurmaa myös aikuiset. Mukana on tietysti myös alpakat, kanit ja taaperoiden ikisuosikki: pomppulinna!",
                "sv": "Under dagen får vi höra sagor, en skojig cykelpianist samt barnmusikbandet Päistikka, som även förtjusar de vuxna. Med finns även alpackor, kaniner och småbarnens favorit: en hoppborg!",
                "en": "This is a day for stories, a fun cycling pianist, and children’s band Päistikka, whose charm is strong enough to get the adults, too. Naturally, there will be alpacas, rabbits and every toddler’s favourite: a bouncy castle!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/462A75911F5004328E7F9E0CCC78DCF8/Perhepaiva_Paistikka_ja_muuta_koko_perheen_ohjelmaa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/462A75911F5004328E7F9E0CCC78DCF8/Familjedag_Paistikka_",
                "en": "http://www.malmitalo.fi/en/events/event/462A75911F5004328E7F9E0CCC78DCF8/Family_Day_Paistikka_"
            },
            "description": {
                "fi": "<p>Malmin tapahtumakesässä vietetään perhepäivää! Päivässä kuullaan satuja, hauskaa fillaripianistia sekä lastenmusiikkiyhtye Päistikkaa, joka hurmaa myös aikuiset. Mukana on tietysti myös alpakat, kanit ja taaperoiden ikisuosikki: pomppulinna!</p><p>Ota viltti ja omat eväät mukaan tai nauti Malmitalon ravintolan makoisista palveluista. Malmitalosta löytyy myös vessat ja lastenhoitohuone. Tule viettämään riemastuttava päivä kauniissa Ala-Malmin puistossa monenlaisen perhepuuhan parissa!</p><p><b>OHJELMA</p><p>klo 12–17<br>Pomppulinna</b><br>Ilon kiljahdukset ja lentävät loikat auringonpaisteen alla! Puistoon pystytetään pomppulinna pienten lasten iloksi, tervetuloa pomppimaan.</p><p><b>klo 12–13.15 ja 13.45-15<br>Pukinmäen Taidekoulut: Sirkustyöpajat</b><br>Tervetuloa kokeilemaan eri sirkuslajeja, kuten akrobatiaa, tasapainoilua ja jongleerausta! Sopii kaikenikäisille.<br>Paikka: Ala-Malmin puiston työpaja-alue</p><p><b>klo 12–15<br>Malmin seurakunta: Temppu-/liikuntarata</b><br>Malmin seurakunta järjestää temppu- ja liikuntaradan eri ikäisille liikkujille ja askartelua kaikenikäisille.<br>Paikka: Ala-Malmin puiston työpaja-alue</p><p><b>klo 12, 13, 14 ja 16<br>Murkens-satutyöpajat</b><br>Murkens-kirjaperheeseen perustuva satutyöpaja kutsuu perheen pienet heittäytymään tunteiden ja tarinoiden maailmaan!</p><p>Pienperheyhdistys toteuttaa satutyöpajoja tasatunnein perhepäivän ajan. Mukaan mahtuu 10 lasta ja heidän aikuistaan per työpaja. Työpajan kesto noin 40 min.</p><p>Murkens on Maaret Kallion ja Susanna Ruuhilahden kirjoittama ihastuttava satutietokirjasarja alkaen 5-vuotiaille.<br>Ikäsuositus: 4-8 v</p><p><b>Ilmoittautumiset satutyöpajoihin:</b><br>klo 12 Murkens ja kaikkien aikojen juhlat https://zef.fi/s/582cw49u/<br>klo 13 Murkens, Pullopostia mereltä https://zef.fi/s/0onfjdch/<br>klo 14 Murkens, Luminen nujakka https://zef.fi/s/6o1q12z9/<br>klo 16 Murkens, Hirmuinen syysmyrsky https://zef.fi/s/bp767cw2/</p><p><b>klo 13–15<br>Ali-Ollin Alpakkatilan alpakat ja kanit</b><br>Malmin tapahtumakesä saa ihastuttavia pörröisiä vierailijoita, kun Ali-Ollin Alpakkatilalta tulee muutama alpakka ja pari kania vierailulle. Tule ja riemastu!</p><p><b>13–13.30, 14.30–15 ja 16.30–17<br>Fillaripianisti</b><br>Tule Ala-Malmin puistoon ihmettelemään polkupyörän ja pianon yhdistelmää! Fillaripianisti Aarno Paakkari kulkee kevyesti pyörällään paikasta toiseen ja soittaa samalla pianoa taidokkaasti.</p><p><b>klo 13.30–14 Vauvasta taaperoon / Salla Salminen: Inspiraatioluento motoristen taitojen oppimisesta</b><br>Inspiroidu lapsen motorisen kehityksen tukemisesta - Mikä on lapsen liikunnallinen identiteetti? Miten sen kasvua voi tukea? Millä tavalla liikunnallinen identiteetti vaikuttaa lapsen motoriseen kehitykseen?</p><p><b>klo 15–16<br>Päistikka</b><br>Lastenmusiikkiyhtye Päistikan musiikissa käsitellään paljon luontoa, ystävyyden voimaa, mielikuvitusmaailmaa, seikkailuja sekä ympärillämme tapahtuvia ilmiöitä.</p><p>Päistikka on ammentanut musiikillisia vaikutteita eri vuosikymmenten rock-, pop-, folk-, sekä diskomaailmoista.</p><p>Päistikka panostaa musiikillisen ilonpidon lisäksi myös esiintymishetkiin, ja tuo lavalle aina sopivasti interaktiivisuutta sekä tarinallisuutta. Pariin otteeseen Vuoden lastenmusiikkiyhtyeeksikin ehdolla ollut yhtye on julkaissut kaksi albumia Päistikka (2015) sekä Lähtölaskenta (2020). Yhtyeen kolmas levy julkaistaan syksyllä 2024.</p><p><b>klo 16–17<br>Helsingin Tanssiopiston perhetanssituokio</b><br>Koko perhe tanssii Helsingin Tanssiopiston opastuksella! Tule ja pistä jalat liikkeelle vaikka koko suvun voimin – tämä perhetanssituokio soveltuu kaikenikäisille.</p><p>Tule mukaan tanssimaan yhdessä kivojen lastenlaulujen tahdissa! Aiempaa tanssitaustaa tai kokemusta ei tarvita, kaikki pääsevät mukaan! Tanssituokiossa aikuiset ja lapset pääsevät tanssimaan yhdessä, ja kokeilemaan jopa helppoja, hauskoja akrobaattisia temppuja. Isommat lapset voivat toki osallistua itsenäisestikin, mutta oman aikuisen tai oman lapsen kanssa tanssiminen on hurjan mukavaa.</p><p>Tanssinopettajana toimii Helsingin tanssiopistossa pitkään lapsia opettanut Hanna Yli-Tepsa, jonka lastentanssitunneilla kaikki pääsevät iloitsemaan tanssin riemusta!</p><p>Tapahtumiin on vapaa pääsy.</p>",
                "sv": "<p>Under dagen får vi höra sagor, en skojig cykelpianist samt barnmusikbandet Päistikka, som även förtjusar de vuxna. Med finns även alpackor, kaniner och småbarnens favorit: en hoppborg!</p><p>Ta med en egen filt och matsäck eller njut av de välsmakande tjänsterna i restaurangen till Malms kulturhus. I Malms kulturhus hittar du även toaletter och ett barnskötselrum. Kom och fira en sprittande rolig dag i vackra Nedre malms park med mångsidiga familjeaktiviteter!</p><p><b>PROGRAM</p><p>kl. 12–17<br>Hoppborg</b><br>Glädjeskrin och flygande skutt i solskenet! Vi monterar en hoppborg i parken till småbarnens glädje, välkommen att hoppa!</p><p><b>kl. 12–13.15 och 13.45–15<br>Bocksbacka konstskolor: Cirkusworkshoppar</b><br>Cirkusskolan i Bocksbacka ordnar avgiftsfria non-stop-cirkusworkshoppar för alla åldrar kl. 12–13.15 och 13.45–15. Välkommen att pröva på olika cirkusgrenar, såsom akrobatik, balansgång och jonglering!</p><p><b>kl. 12–15<br>Malms församling: Trick-/motionsbana</b><br>Malms församling ordnar en trick- och motionsbana och stenmålning för alla åldrar.</p><p><b>kl. 12, 13, 14 och 16<br>Murkens-sagoworkshoppar</b><br>Sagoworkshoppen som grundar sig på bokfamiljen Murkens bjuder in familjens yngsta att kasta sig in i känslornas och berättelsernas värld!</p><p>Pienperheyhdistys genomförs sagoworkshopparna varje heltimme under familjedagen. 10 barn med föräldrar ryms med i varje workshop. Workshoppen varar i cirka 40 min. <br>Murkens är Maaret Kallios och Susanna Ruuhilahtis förtjusande sagofaktabokserie för 5-åringar och äldre.<br>Åldersrekommendation: 4–8-åringar i sällskap av en vuxen<br>Språk: finska</p><p><b>Anmälan till sagoworkshopparna:</b><br>kl. 12 Murkens ja kaikkien aikojen juhlat<br>https://zef.fi/s/582cw49u/<br>kl. 13 Murkens, Pullopostia mereltä<br>https://zef.fi/s/0onfjdch/<br>kl. 14 Murkens, Luminen nujakka<br>https://zef.fi/s/6o1q12z9/<br>kl. 16 Murkens, Hirmuinen syysmyrsky<br>https://zef.fi/s/bp767cw2/</p><p><b>kl. 13–15<br>Alpackor och kaniner från Ala-Ollis alpackagård</b><br>Malms evenemangssommar får förtjusande lurviga besökare när några alpackor och kaniner kommer på besök från Ala-Ollis alpackagård. Kom och bli förtjust!</p><p><b>kl. 13–13.30, 14.30–15 och 16.30–17<br>Cykelpianisten</b><br>Cykelpianisten Aarno Paakkari rör sig smidigt från plats till plats på cykel och spelar samtidigt skickligt piano. <br>Plats: Cykelpianisten cyklar omkring i Nedre Malms park</p><p><b>kl. 13.30–14.00 <br>Från baby till småbarn / Salla Salminen: Inspirationsföreläsning om inlärning av motoriska färdigheter</b><br>Föreläsning på finska</p><p><b>kl. 15–16<br>Päistikka</b><br>Barnmusikbandet Päistikka handlar mycket om naturen, vänskapens kraft, fantasivärlden, äventyr samt de fenomen som sker omkring oss.</p><p>Päistikka har inhämtat musikaliska influenser från rock-, pop-, folk- och diskovärldarna från olika årtionden.<br>utöver musikalist nöje satsar Päistikka även på uppträdandena och hämtar alltid interaktivitet och storytelling med på scenen i lämpliga mått. Bandet som två gånger har nominerats till årets barnmusikband har släppt två album Päistikka (2015) och Lähtölaskenta (2020). Bandets tredje album publiceras på hösten 2024.</p><p><b>kl. 16–17<br>Dansstund för familjer med Helsingin Tanssiopisto</b><br>Hela familjen dansar under ledning av Helsingin Tanssiopisto! Kom och sätt fart på benen, varför inte med hela släkten – den här dansstunden för familjer lämpar sig för alla åldrar.<br>Kom med och dansa tillsammans till trevliga barnsånger! Ingen dansbakgrund eller tidigare erfarenhet behövs, alla får vara med! Vid dansstunden får vuxna och barn dansa tillsammans och till och med pröva på lätta och skojiga akrobatiska trick. Större barn får dock delta självständigt, men det är väldigt kul att få dansa med sin egen förälder eller sitt eget barn. Som danslärare fungerar Hanna Yli-Tepsa från Helsingin Tanssiopisto som har lång erfarenhet av att undervisa barn. På hennes danstimmar för barn får alla glädja sig över dansens förtjusning!</p>",
                "en": "<p>This is a day for stories, a fun cycling pianist, and children’s band Päistikka, whose charm is strong enough to get the adults, too. Naturally, there will be alpacas, rabbits and every toddler’s favourite: a bouncy castle!</p><p>Bring your picnic blanket or enjoy the tasty fare of the Malmitalo restaurant. Malmitalo also has toilets and a baby care room, if you need them. Join us for a fantastic day for a variety of family activities at beautiful Ala-Malmi Park!</p><p><b>PROGRAMME</p><p>12 noon to 5 pm<br>Bouncy Castle</b><br>Shout and jump for joy under the sun! A bouncy castle will be set up in the park for the little ones to bounce their day away.</p><p><b>12 noon to 1:15 pm and 1:45 to 3 pm</b><br>Art schools at Pukinmäki: Circus workshops<br>The Pukinmäki Circus school will be holding free-of-charge non-stop circus workshops for all ages from noon to 1:15 pm and from 1:45 pm to 3 pm. Come and try various circus acts, such as acrobatics, balancing and juggling!</p><p><b>12 noon to 3 pm</b><br>Malmi parish: Stunt/exercise track and rock painting<br>The Malmi congregation is arranging a stunt and exercise track and craft workshop for all ages.</p><p><b>12 noon, 1 pm, 2 pm and 4 pm<br>Murkens story workshops</b><br>This fairytale workshop is based on the Murkens series of books and invites children to immerse in the world of feelings and stories!</p><p>The Single Parents’ Association holds fairytale workshops on the hour on this day. There’s room for 10 children with adults per workshop. Workshop duration: ca. 40 min.</p><p>Murkens is a delightful series of fairytale encyclopedias by Maaret Kallio and Susanna Ruuhilahti for 5-year olds.<br>Age recommendation: 4–8-year-olds with adults<br>Language: Finnish</p><p><b>Registration for fairytale workshops:</b><br>12 noon Murkens ja kaikkien aikojen juhlat: https://zef.fi/s/582cw49u/<br>1 pm Murkens, Pullopostia mereltä: https://zef.fi/s/0onfjdch/<br>2 pm Murkens, Luminen nujakka: https://zef.fi/s/6o1q12z9/<br>4 pm Murkens, Hirmuinen syysmyrsky:  https://zef.fi/s/bp767cw2/</p><p><b>1 pm to 3 pm<br>Alpacas and rabbits from Ali-Olli's Alpaca Farm</b><br>The Malmi Summer of Events welcomes new furry friends with some visiting alpacas and rabbits from Ali-Olli's Alpaca Farm. Enjoy your time with the animals!</p><p><b>1 pm to 1:30 pm, 2:30 pm to 3 pm and 4:30 pm to 5 pm<br>Cycling pianist</b><br>Aarno Paakkari, the cycling pianist rides his bicycle from place to place while playing the piano. His performance is sure to put a smile on your face!<br>Location: The cycling pianist will be riding all around Ala-Malmi Park</p><p><b>1:30 pm to 2:00 pm <br>From Baby to Toddler / Salla Salminen: Inspirational Lecture on Learning Motor Skills</b><br>Lecture in Finnish.</p><p><b>3 pm to 4 pm<br>Päistikka</b><br>Children’s band Päistikka covers nature, the power of friendship, the world of imagination, adventures and surrounding phenomena with their music.</p><p>Päistikka’s musical influences are in rock, pop, folk and disco music from different decades.</p><p>Päistikka focuses on musical joy and their performances, and will always bring a good amount of audience interaction and storytelling to the stage. They’ve been nominated for Children’s Band of the Year twice, and have released two albums, Päistikka (2015) and Lähtölaskenta (2020). Their third album will be released in autumn 2024.</p><p><b>4 pm to 5 pm<br>Helsinki Dance Institute family dance session</b><br>Get your whole family dancing with the help of the Helsinki Dance Institute! Put some pep in your whole family’s steps – this family dance sessions is suited for all ages.<br>Join us and dance to the tunes of fun children's music! No need for previous skills or dancing experience, anyone can join! At this dance session, adults and children get to dance together and even try easy and fun acrobatics. Older children can participate on their own, but don’t forget that it’s a lot of fun to dance with your very own adult or child. The dance instructor is Helsinki Dance Institute’s long-term children’s dance teacher Hanna Yli-Tepsa, whose children’s dance lessons let everyone feel the joy of dance!</p>"
            },
            "name": {
                "fi": "Perhepäivä: Päistikka ja muuta koko perheen ohjelmaa – Malmin tapahtumakesä",
                "sv": "Familjedag: Päistikka – Malms evenemangssommar",
                "en": "Family Day: Päistikka – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63854/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63852",
            "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": 151182,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-20T11:13:00.136717Z",
                    "last_modified_time": "2024-05-20T11:13:00.136737Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749011.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151182/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-20T11:13:00.119587Z",
            "last_modified_time": "2024-08-29T05:13:16.914263Z",
            "date_published": null,
            "start_time": "2024-08-16T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Modernin hiphop-estetiikan ja bassovoittoisen grimen ja trapin sekä memphisrapin rajapinnassa pomppiva Pimeä Hedelmä hurmaa Malmin tapahtumakesässä!",
                "sv": "Pimeä Hedelmä som studsar i gränssnittet mellan hiphop-estetik och grime och trap med tung bas samt memphisrap förtjusar i Malms evenemangssommar!",
                "en": "Pimeä Hedelmä, who exist in the gap between modern hip-hop aesthetics, bassy grime and trap, and Memphis rap will charm your socks off at Malmi Summer of Events!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/79E0771D970E6BF988A5AD44222EA412/Pimea_Hedelma",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/79E0771D970E6BF988A5AD44222EA412/Pimea_Hedelma",
                "en": "http://www.malmitalo.fi/en/events/event/79E0771D970E6BF988A5AD44222EA412/Pimea_Hedelma"
            },
            "description": {
                "fi": "<p>Modernin hiphop-estetiikan ja bassovoittoisen grimen ja trapin sekä memphisrapin rajapinnassa pomppiva Pimeä Hedelmä hurmaa Malmin tapahtumakesässä!</p><p><b>HUOM! Pimeä Hedelmä esiintyy vasta kello 19, vaikka aiemmin aikatauluissa luki ajankohtana 18.30. Olemme pahoillamme muutoksesta.</b></p><p>PIMEÄ HEDELMÄ on Pirkanmaalta lähtöisin oleva, vahvasta livepresenssistään tunnettu UG-suomirap -yhtye. Bändin räppärit Kaisa Cleva ja Vane Vane käsittelevät lyriikoissaan todellisuutta ironisen toteavaan ja humoristiseen sävyyn, siinä missä tuottaja Liki varmistaa, että Pimeä Hedelmä ei laahaa hetkeäkään, vaan pomppii joka tilanteessa. Biitit ammentavat modernin hiphop-estetiikan ja bassovoittoisen grimen ja memphisrapin rajapinnoilta.</p>",
                "sv": "<p>Pimeä Hedelmä som studsar i gränssnittet mellan hiphop-estetik och grime och trap med tung bas samt memphisrap förtjusar i Malms evenemangssommar!</p><p>PIMEÄ HEDELMÄ är ett UG-suomirapband från Birkaland som är känt för sina starka framträdanden. I sin lyrik behandlar bandets rappare Kaisa Cleva och Vane Vane verkligheten i en ironiskt konstaterande och humoristisk ton, och producenten Liki ser till att Pimeä Hedelmä inte släpar efter en enda stund, utan studsar hela tiden.</p>",
                "en": "<p>Pimeä Hedelmä, who exist in the gap between modern hip-hop aesthetics, bassy grime and trap, and Memphis rap will charm your socks off at Malmi Summer of Events!</p><p>PIMEÄ HEDELMÄ are an underground Finnish rap group from Pirkanmaa, who are known for their powerful performances. The rappers, Kaisa Cleva and Vane Vane use their lyrics to talk about reality in an ironic and humorous way, while producer Liki makes sure that Pimeä Hedelmä never feels like its dragging its feet, remaining bouncy in every situation.</p>"
            },
            "name": {
                "fi": "Pimeä Hedelmä – Malmin tapahtumakesä",
                "sv": "Pimeä Hedelmä – Malms evenemangssommar",
                "en": "Pimeä Hedelmä – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63852/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64124",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?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": 151529,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T10:13:02.855677Z",
                    "last_modified_time": "2024-06-26T10:13:02.855693Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746390.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151529/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T10:13:02.832587Z",
            "last_modified_time": "2024-08-29T05:13:16.865601Z",
            "date_published": null,
            "start_time": "2024-08-16T14: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": "Kitaristi Jonas Metsäkylä tunnetaan uuden sukupolven nousevana muusikkona, jonka taituruutta on ylistänyt muun muassa jazzlegenda, basisti Chuck Israels.",
                "sv": "Gitarristen Jonas Metsäkylä är känd som en stigande stjärna inom den nya generationen av musiker. Hans skicklighet har bland annat hyllats av jazzlegenden och basisten Chuck Israels.",
                "en": "Guitarist Jonas Metsäkylä is known as a rising musician of the new generation, whose skill has received praise from legendary jazz bassist Chuck Israels, among others."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/106C0505F561E6812E11B4FB1971D6DE/Metsakyla_-_Maensivu_-_Peri",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/106C0505F561E6812E11B4FB1971D6DE/Metsakyla_-_Maensivu_-_Peri",
                "en": "http://www.espanlava.fi/en/events/event/106C0505F561E6812E11B4FB1971D6DE/Metsakyla_-_Maensivu_-_Peri"
            },
            "description": {
                "fi": "<p>Kitaristi Jonas Metsäkylä tunnetaan uuden sukupolven nousevana muusikkona, jonka taituruutta on ylistänyt muun muassa jazzlegenda, basisti Chuck Israels.</p><p>Basisti Kaisa Mäensivu Savoy JAZZfestin taiteellinen johtaja ja Manhattan School of Musicissa opiskellut, kansainvälistä uraa luova kontrabasisti, jonka soittotaito on kovassa kysynnässä kotimaassa ja maailmalla. Yhtyeen täydentää amerikkalainen rumpali Joe Peri, joka on levyttänyt muun muassa Lady Gagan ja Tony Bennettin levyllä 'Love for Sale'.</p><p>Keikalla kuullaan tyylikkäästi svengaavia sävellyksiä Metsäkylän, Perin ja Mäensivun kynistä sekä kekseliäitä, retrosoundin omaavalle kitaratriolle sopivia sovituksia jazzklassikoista.</p>",
                "sv": "<p>Gitarristen Jonas Metsäkylä är känd som en stigande stjärna inom den nya generationen av musiker. Hans skicklighet har bland annat hyllats av jazzlegenden och basisten Chuck Israels.</p><p>Basisten Kaisa Mäensivu är konstnärlig ledare för Savoy JAZZfest och har studerat vid Manhattan School of Music. Hennes skicklighet på kontrabas har gett internationell framgång, och efterfrågan på hennes spelande är stor både i hemlandet och utomlands. Bandet kompletteras av den amerikanske trummisen Joe Peri, som bland annat har spelat in på Lady Gagas och Tony Bennetts album “Love for Sale”.</p><p>På konserten får vi höra elegant svängande kompositioner av Metsäkylä, Peri och Mäensivu samt uppfinningsrika arrangemang av jazzklassiker som lämpar sig för gitarrtrion med retrosound.</p>",
                "en": "<p>Guitarist Jonas Metsäkylä is known as a rising musician of the new generation, whose skill has received praise from legendary jazz bassist Chuck Israels, among others.</p><p>Double bassist Kaisa Mäensivu, Artistic Director of Savoy JAZZfest and a Manhattan School of Music graduate, has created an international career with playing skills that are in high demand in Finland and abroad. The band is complemented by American drummer Joe Peri, who has played, among others, on Lady Gaga and Tony Bennett's album 'Love for Sale'.</p><p>The gig will feature elegant swing compositions by Metsäkylä, Peri and Mäensivu, as well as inventive retro-tinged arrangements of jazz classics for a guitar trio.</p>"
            },
            "name": {
                "fi": "Metsäkylä - Mäensivu - Peri",
                "sv": "Metsäkylä - Mäensivu - Peri",
                "en": "Metsäkylä - Mäensivu - Peri"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64124/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63851",
            "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": 151181,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-20T11:13:00.009261Z",
                    "last_modified_time": "2024-05-20T11:13:00.009280Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744918.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151181/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-20T11:12:59.975175Z",
            "last_modified_time": "2024-08-29T05:13:16.812282Z",
            "date_published": null,
            "start_time": "2024-08-16T14: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": "Jyväskyläläisen suomirap-kulttuurin tienraivaaja, KPC-kollektiivin taustamuskelina ja kasvona vaikuttava Kriso tunnetaan kentällään erityisesti omatoimisesta ja kokonaisvaltaisesta lähestymisestään tekemiseensä ja puheräppityylin suvereenina ykkösnimenä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E68F97AD5D9ABA8E8A5EF94A744D1A37/Kriso",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E68F97AD5D9ABA8E8A5EF94A744D1A37/Kriso",
                "en": "http://www.malmitalo.fi/en/events/event/E68F97AD5D9ABA8E8A5EF94A744D1A37/Kriso_"
            },
            "description": {
                "fi": "<p>Jyväskyläläisen suomirap-kulttuurin tienraivaaja, KPC-kollektiivin taustamuskelina ja kasvona vaikuttava Kriso tunnetaan kentällään erityisesti omatoimisesta ja kokonaisvaltaisesta lähestymisestään tekemiseensä ja puheräppityylin suvereenina ykkösnimenä.</p><p>Artistin kyky sanoittaa oivaltavasti itse tuotettujen äänimaisemien päälle, sekä kuvittaa ne videoiden muotoon, vakuuttaa kuulijansa kerta toisensa jälkeen. Kriso on tuottanut myös laajalti musiikkia suomirapin keskuudessa. Krison tuotantoa kuultiin esimerkiksi arvostetun Teosto-palkinnon saaneella Eevil Stöön ”Marsipan Wave” -albumilla.</p><p>Krison materiaalista tekee poikkeavan artistin rento elämänfilosofia: humoristisella, mutta laadukkaalla otteella musiikkia työstävä artisti kuvailee itseään seuraavasti:<br>“Oon työskennellyt muun muassa radiossa, levykaupassa, julkisella sektorilla, musiikkialalla sekä vuosia Postin lajittelukeskuksessa.\u2028 Rakastan uunissa valmistuvaa ruokaa, Nerf-pyssyjä sekä kevättä.”</p><p>Kriso edustaa paitsi musiikillista lahjakkuutta myös kokonaisvaltaista omistautumista rapmusiikille ja siihen liittyvän historian yksityiskohtien spekuloimista. Aren ja Krison JKL Funk Days-tapahtuman ympärille on kasvanut radio-ohjelma, kulttimaineen saavuttanut oheistuotesarja sekä ajanhampaan purentaa kestävää räppimusaa.</p><p>Kriso keikkailee tällä hetkellä pääsääntöisesti duona Aren kanssa. Suomirappiin korvaamattomasti vaikuttaneelta kaksikolta voidaan odottaa viihdyttävä ja ainutlaatuinen keikkakokemus takuuvarmalla suorittamisella.</p>"
            },
            "name": {
                "fi": "Kriso – Malmin tapahtumakesä",
                "sv": "Kriso – Malms evenemangssommar",
                "en": "Kriso – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63851/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64123",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-73/?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": 151528,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T10:13:02.692578Z",
                    "last_modified_time": "2024-06-26T10:13:02.692593Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743810.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151528/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T10:13:02.678670Z",
            "last_modified_time": "2024-08-29T05:13:16.739402Z",
            "date_published": null,
            "start_time": "2024-08-16T11: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": "Laivaston soittokunnan kesäinen konsertti Espan lavalla!",
                "sv": "Flottans musikkårs somriga fredagskonsert.",
                "en": "The Navy Band's summer concert."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/963AA224B54E7C6CA4B446491E6920BE/MIL-Espa",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/963AA224B54E7C6CA4B446491E6920BE/MIL-Espa",
                "en": "http://www.espanlava.fi/en/events/event/963AA224B54E7C6CA4B446491E6920BE/MIL-Espa"
            },
            "description": {
                "fi": "<p>Laivaston soittokunnan kesäinen konsertti Espan lavalla!</p><p>MIL-Espa-puistokonsertteja on järjestetty vuodesta 1927 lähtien Esplanadin puistossa. Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen.</p><p>MIL-Espa-puistokonsertit 2024 kesäperjantaisin 24.5., 31.5., 7.6., 14.6., 28.6., 5.7., 12.7., 19.7., 26.7. ja 16.8. Espan lavalla.</p>",
                "sv": "<p>Flottans musikkårs somriga fredagskonsert.</p><p>MIL-Espa-parkkonserterna har ordnats från och med år 1927 i Esplanadparken. På sommarfredagar ser vi olika sammansättningar av militärmusikkårer från olika håll i Finland på Esplanadestraden. Underhållande framträdanden med olika musikstilar utlovas.</p><p>MIL-Espa-parkkonserterna 2024 på sommarfredagar 24.5., 31.5., 7.6., 14.6., 28.6., 5.7., 12.7., 19.7., 26.7. och 16.8. på Esplanadestraden.</p>",
                "en": "<p>The Navy Band's summer concert.</p><p>MIL-Espa park concerts have been held in the Esplanade Park since 1927. On summer Fridays, the Espa Stage will host various military band ensembles from around Finland. The programme includes live performances in many genres of music.</p><p>MIL-Espa park concerts on summer Fridays in 2024 on 24 May, 31 May, 7 June, 14 June, 28 June, 5 July, 12 July, 19 July, 26 July and 16 August on the Espa Stage.</p>"
            },
            "name": {
                "fi": "MIL-Espa – Laivaston soittokunnan varusmiesbändi",
                "sv": "MIL-Espa – Flottans musikkår",
                "en": "MIL-Espa – The Navy Band"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64123/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64122",
            "has_user_editable_resources": false,
            "location": null,
            "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:48/?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": 151527,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T10:13:02.568211Z",
                    "last_modified_time": "2024-06-26T10:13:02.568224Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744812.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151527/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T10:13:02.547647Z",
            "last_modified_time": "2024-08-29T05:13:16.693464Z",
            "date_published": null,
            "start_time": "2024-08-15T18: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": "Etnopop-artisti Vilma Jää yhdistää kansanperinteelle tyypillisiä soittimia synteettisesti tuotettuihin biitteihin ja suomalais-ugrilaista lauluperinnettä pop-estetiikkaan.",
                "sv": "Etnopopartisten Vilma Jää kombinerar traditionella folkmusikinstrument med syntetiskt producerade beats och finsk-ugrisk sångtradition med popestetik.",
                "en": "In the closing concert of the Night of the Arts at the Espa Stage, Vilma Jää combines Finno-Ugric singing traditions with pop aesthetics, and archetypal folk music instruments with synthetically produced beats."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/5756234127239199FD98C1E4CF2176F7/Taiteiden_yo_Vilma_Jaa",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/5756234127239199FD98C1E4CF2176F7/Konstens_natt_Vilma_Jaa",
                "en": "http://www.espanlava.fi/en/events/event/5756234127239199FD98C1E4CF2176F7/Night_of_the_Arts_Vilma_Jaa"
            },
            "description": {
                "fi": "<p>Etnopop-artisti Vilma Jää yhdistää kansanperinteelle tyypillisiä soittimia synteettisesti tuotettuihin biitteihin ja suomalais-ugrilaista lauluperinnettä pop-estetiikkaan.</p><p>Jää lähestyy feministisen kantaaottavassa musiikissaan ajankohtaisia aiheita historian kautta, joka paljastaa meille, kuinka surullisen vähän maailma on erityisesti monissa naisiin kohdistuvissa asioissa muuttunut. Kansanmusiikkijuurten lisäksi hänen sävelkielessään kuuluu hänen pitkä taustansa sekä kuoromusiikin että instrumentaalimusiikin parissa.</p><p>Kovassa nosteessa olevan laulajan debyyttialbumi ‘Kosto’ ilmestyi vuoden 2023 lopussa ja sai huippuarvostelut mm. Helsingin Sanomilta. Vilma Jään debyyttialbumilla on lunastettu jo vuoden kansanmusiikkilevy -palkinto, vuoden Etno-Emma-palkinto ja lisäksi se on ehdolla Teosto-palkinnon saajaksi.</p><p>Kesto noin 1 tunti</p><p>Konsertti on osa Suomen Kulttuurirahaston Uudenmaan rahaston tukemaa Meidän Uusimaa -konserttikokonaisuutta.</p>",
                "sv": "<p>Etnopopartisten Vilma Jää kombinerar traditionella folkmusikinstrument med syntetiskt producerade beats och finsk-ugrisk sångtradition med popestetik.</p><p>I sin feministiskt ställningstagande musik närmar sig Jää aktuella frågor via historien, vilket visar oss hur sorgligt lite världen har förändrats särskilt då det gäller frågor som påverkar kvinnor. Utöver rötterna som finns i folkmusiken påverkas Jääs tonspråk av hennes långa bakgrund både inom kör- och instrumentalmusiken.</p><p>Den mycket aktuella sångerskans debutalbum “Kosto” släpptes i slutet av 2023 och fick topprecensioner i bland annat Helsingin Sanomat. Vilma Jääs debutalbum har redan tilldelats utmärkelsen för årets folkmusikalbum, årets Etno-Emma-pris, och är dessutom nominerat till Teosto-priset.</p><p>Konserten är en del av konserthelheten Meidän Uusimaa (Vårt Nyland) som stöds av Finska kulturfondens Nylandsfond.</p>",
                "en": "<p>In the closing concert of the Night of the Arts at the Espa Stage, Vilma Jää combines Finno-Ugric singing traditions with pop aesthetics, and archetypal folk music instruments with synthetically produced beats.</p><p>Through her feminist and ideologically charged music, Jää approaches current topics from a historical standpoint, illustrating to us how frustratingly little the world has changed, particularly when it comes to many issues related to women. In addition to the artist’s folk music roots, her music reflects her long involvement with both choral and instrumental music.</p><p>Enjoying a skyrocketing career, the singer’s debut album Kosto (Revenge) was released at the end of 2023 and has already nabbed a string of awards, such as the Folk Music Record of the Year and the Ethno-Emma Award, as well as a Teosto Prize nomination.</p><p>Duration 1 hour.</p>"
            },
            "name": {
                "fi": "Taiteiden yö: Vilma Jää",
                "sv": "Konstens natt: Vilma Jää",
                "en": "Night of the Arts: Vilma Jää"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64122/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63724",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:47/?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:55/?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:p39492/?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": 151126,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-14T13:12:41.912472Z",
                    "last_modified_time": "2024-05-14T13:12:41.912485Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752254.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151126/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-14T13:12:41.898695Z",
            "last_modified_time": "2024-08-29T05:13:16.641678Z",
            "date_published": null,
            "start_time": "2024-08-15T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "OAF:n Musiikillinen Mikrokosmos on lyyrinen, omaääninen, koskettava ja kantaaottava. Avajaisiltana festivaalin käynnistävät Madde Matilda, Pure ja MC Zen & Urbaani unelma.",
                "en": "The OAF Musical Microcosm is lyrical, original, touching and topical. OAF music program artists are Stella Massa, Ondi, MC Zen & Urbaani Unelma, Timjune Tianjun Li and Madde Matilda."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/7AA3225332AFCD0F722ED42F98C1F584/Madde_Matilda_Pure_MC_Zen_Urbaani_unelma",
                "en": "http://www.caisa.fi/en/events/event/7AA3225332AFCD0F722ED42F98C1F584/Madde_Matilda_Pure_MC_Zen_Urbaani_unelma"
            },
            "description": {
                "fi": "<p>OAF:n Musiikillinen Mikrokosmos on lyyrinen, omaääninen, koskettava ja kantaaottava. Avajaisiltana festivaalin käynnistävät Madde Matilda, Pure ja MC Zen & Urbaani unelma.</p><p><b>Madde Matilda</b> on duo Pohjanmaalta, joka tekee raikasta ja hyväntuulista pop-musiikkia omasta elämästä ja heille tärkeistä asioista: “Meillä molemmilla on Downin syndrooma, mutta se ei estä meitä tekemästä sitä, mitä haluamme, ja työskentelemästä unelmiemme saavuttamiseksi.”</p><p><b>Pure</b> on joensuulainen rap-artisti ja rapin Suomen mestari, joka on erikoistunut improvisoituun freestyle-rappiin. Purelta nähdään freestyle-rap -esitys, jossa rapataan yleisön antamista aiheista, tavaroista ja milloin mistäkin.</p><p><b>MC Zen & Urbaani Unelma</b> esittää energistä ja lyyrisesti monimuotoista suomenkielistä räppiä. Syksyllä 2023 Satakieli-nimisen EP:n julkaissut bändi esiintyy Outsider Art Festivaalilla  kolmihenkisellä kokoonpanolla, johon kuuluu keulakuva MC Zenin (Sami Kekäläinen) ohella perkussionisti Eero Loutti ja kitaristi Linda Toratti.</p><p>Tapahtuman kesto noin 3 tuntia.</p><p>Vapaa pääsy, tervetuloa!</p><p>Lue lisää festivaaleista ja artisteista <u>https://outsiderart.fi/</u></p>",
                "en": "<p>The OAF Musical Microcosm is lyrical, original, touching and topical. OAF music program artists are Stella Massa, Ondi, MC Zen & Urbaani Unelma, Timjune Tianjun Li and Madde Matilda.</p><p><b>Madde Matilda</b> is a duo from west Finland that makes fresh upbeat pop music. “We both have Down’s syndrome, but it doesn’t stop us from doing what we want and working towards our dreams”.</p><p><b>Pure</b> is a rap artist from Joensuu, specializing in improvised freestyle rap. Pure has a total of three medals from the Finnish Rap Championship competition (Rapin SM-kilpailut), the brightest of which is gold. At Outsider Art Festival, Pure will perform a freestyle rap show, improvising rhymes on the spot about any topics the audience gives him.</p><p><b>MC Zen & Urbaani Unelma</b> is an energetic and lyrically diverse Finnish rap group. The band’s music carries the lyrical and cultural heritage of rap, but also boldly deviates from the norms of the genre. The lyrics contain references to oriental philosophies, social grievances and, for example, bohemian artist life.</p><p>The event is free, welcome!</p><p>Read more about the festival and the artist at <u>https://outsiderart.fi/en/outsider-art-finland/</u>>></p>"
            },
            "name": {
                "fi": "Madde Matilda, Pure, MC Zen & Urbaani unelma – OAF X Caisa",
                "en": "Madde Matilda, Pure, MC Zen & Urbaani unelma – OAF X Caisa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63724/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}