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

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 ordering is descending order by -last_modified_time. 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&hide_recurring_children=true&page=175
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 19219,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=176",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=174"
    },
    "data": [
        {
            "id": "kulke:63581",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 €",
                        "en": "15 €"
                    },
                    "info_url": {
                        "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=babygonia",
                        "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=babygonia"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151472,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-17T11:13:41.195745Z",
                    "last_modified_time": "2024-06-17T11:13:41.195762Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751692.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151472/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-06-17T11:13:41.161544Z",
            "last_modified_time": "2024-08-29T05:13:19.137167Z",
            "date_published": null,
            "start_time": "2024-08-28T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/283F92309CDB61338CDD16B2CC35B6F0/SAMPO_Festivaali_Babygonia",
                "en": "http://www.annantalo.fi/en/events/event/283F92309CDB61338CDD16B2CC35B6F0/SAMPO_Festival_Babygonia"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Babygonia on esitys, joka kutsuu vauvat (8 kk–2,5 v) teatteriin, aikuisväen seurassa.</p><p>Pienimmät saapuvat esitykseen kuin kuninkaalliset, vaunuissa seurueensa saattelemina. Teatteritilaa ei jaeta katsomoon ja näyttämöön, vaan vieras astuu sisään esityksen maailmaan. Esityksessä on lupa kulkea rohkeasti esityksen virran mukana tai sitä vastaan, voi katsella kuinka tila muuttuu, osallistua, tunnustella tai vain olla ja kuunnella ääniä ympärillään.</p><p>Vauvakatsoja on kuin pieni Buddha: hän ei tiedä sitä mitä aikuiset tietävät, mutta hän muistaa vielä sen, minkä aikuiset ovat unohtaneet. Hänellä on hämmästyttävä uteliaisuus kaikkea ympärillä olevaa kohtaan. Hän kyseenalaistaa ja tutkii jokaista pientä huomaamaansa asiaa jonka ja nauttii tutkimisen ja jakamisen prosessista.</p><p>Esityksessä syntyvät mikro- ja makrouniversumit muodostuvat erivärisistä, -kokoisista ja -tuntuisista objekteista. Esiintyjät luovat assosiatiivisia kuvia, sommitelmia, tunnelmia ja tapahtumia live-muusikon avustuksella. Jokainen Babygonia-näytös on ainutlaatuinen.</p><p><b>TYÖRYHMÄ</b><br>Esiintyjät: Anna Nekrassova ja Jenni Rutanen<br>Konsepti, ohjaus: Anna Ivanova<br>Visuaalisuus, tila ja objektit: Jenni Rutanen<br>Äänisuunnittelu, muusikko lavalla: Roosa Halme<br>Valosuunnittelu: Antton Kainulainen<br>Koreografia: Mantas Stabačinskas</p><p>Kesto: 30 min<br>Ikäsuositus: 8 kk – 2,5-v (aikuisten kanssa)<br>Kielet: sanaton</p><p>Lippuvaraukset: 020 735 2235, toimisto@nukketeatterisampo.fi<br>Lipputoimisto: Nukketeatteri Sampo, Erottajankatu 7, Helsinki.</p><p><b>SAMPO Festivaali</b> <br>Kansainvälinen nukketeatteritapahtuma SAMPO Festivaali toteutuu nyt jo kahdeksatta kertaa! Luvassa sanatonta nukketeatteria aikuisille ja lapsille, elävää musiikkia, vauvateatteria, sirkusta, absurdia minimalismia ja suuren näyttämön varjoteatteria.</p><p>Ohjelmassa on kotimaisia uutuuksia ja kansainvälisiä huippunimiä ensimmäistä kertaa Suomessa!<br> <br>Tutustu koko ohjelmaan: https://sampofestival.fi/</p>",
                "en": "<p>We invite babies from eight months to two and a half years old to arrive at a theatre.</p><p>They always come like royalty in carriages, accompanied by an adult retinue. And they enter the show as a river can be entered – they can bravely go with its flow or against it; they can watch how it flows; they can lie down and look into it, or just listen to the sound of water.</p><p>The theatre is not divided into an auditorium and a stage. The actors create a variety of images and compositions in space, where, if desired and ready, large and small spectators can enter. The audience chooses the degree of their participation and activity in the action organized by the actors.<br> <br>Baby spectator is a little Buddha: s/he does not know what adults do know. But s/he still remembers what grown-ups have forgotten. S/he has an amazing curiosity about everything around. S/he questions and explores every tiny thing s/he notices. S/he enjoys this devising process.</p><p>The performance is based on associative forms, shapes and tactile-sensory perception of space, in which micro- and macro-universes are formed, assembled from objects of different colors, sizes, textures and sounds (the visual story is accompanied by live music).</p><p>We borrow from little buddhas their method of communication with reality and we are using it as a professional approach in creating baby theatre.</p><p><b>WORKING GROUP</b><br>Performers: Anna Nekrassova and Jenni Rutanen<br>Concept, directing: Anna Ivanova<br>Visual realization, space and objects: Jenni Rutanen<br>Sound designer and musician on stage: Roosa Halme<br>Light designer: Antton Kainulainen<br>Movement designer: Mantas Stabačinskas</p><p>Duration: 30 minutes<br>Age recommendation: 8 months – 2,5 years old (with adults)<br>Language: Non-verbal</p><p>Reservations and inquires: phone 020 735 2235, email toimisto@nukketeatterisampo.fi</p><p>SAMPO Festival in Helsinki</p><p>The international puppet theatre event SAMPO Festival is coming for the eighth time! There will be nonverbal puppet theatre for adults and children, live music, circus, theatre for babies, absurd minimalism and shadow theatre of grand proportions!</p><p>New domestic performances and international top names for the first time in Finland!<br> <br>Check out the entire program: https://sampofestival.fi/en/</p>"
            },
            "name": {
                "fi": "SAMPO Festivaali: Babygonia",
                "en": "SAMPO Festival: Babygonia"
            },
            "short_description": {
                "fi": "Babygonia on esitys, joka kutsuu vauvat (8 kk–2,5 v) teatteriin, aikuisväen seurassa.",
                "en": "We invite babies from eight months to two and a half years old to arrive at a theatre."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63581/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64135",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151540,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T11:13:02.176434Z",
                    "last_modified_time": "2024-06-26T11:13:02.176455Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745185.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151540/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T11:13:02.145720Z",
            "last_modified_time": "2024-08-29T05:13:19.085805Z",
            "date_published": null,
            "start_time": "2024-08-28T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C4F32DB9ADDED7C223FC7CB8431823BB/Helsingin_Poliisisoittokunnan_lastenyhtye_Nallekopla",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/C4F32DB9ADDED7C223FC7CB8431823BB/Helsingfors_polismusikkars_barnband_Nallekopla",
                "en": "http://www.espanlava.fi/en/events/event/C4F32DB9ADDED7C223FC7CB8431823BB/Children_s_Ensemble_Nallekopla_of_the_Helsinki_Police_Band"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Konsertti on suunnattu lapsille sekä lapsenmielisille ja sisältää lastenmusiikkia, laulua, leikitystä ja valistusta.</p><p>Konsertissa vierailee myös Helsingin poliisileijona, jolta ei puutu vauhtia ja vaarattomia tilanteita.</p><p>Mukaan ovat tervetulleita päiväkotiryhmät, alakoululuokat ja toki kaikki muutkin lastenmusiikista ja hyvästä meiningistä nauttivat!</p><p>Konsertti on osa Suomen Kulttuurirahaston Uudenmaan rahaston tukemaa Meidän Uusimaa -konserttikokonaisuutta.</p>",
                "sv": "<p>Konserten riktar sig till barn och personer med barnasinnet i behåll, och omfattar barnmusik, sång, lek och upplysning.</p><p>Konserten besöks också av Helsingfors fartfyllda polislejon, som är välbekant med ofarliga situationer.</p><p>Dagisgrupper, grundskoleklasser och naturligtvis alla andra som tycker om barnmusik och gott humör är välkomna!</p><p>Konserten är en del av konserthelheten Meidän Uusimaa (Vårt Nyland) som stöds av Finska kulturfondens Nylandsfond.</p>",
                "en": "<p>The concert is aimed at children and child-minded people; the set includes children's music, singing, playing and education.</p><p>The concert will also be attended by the Helsinki Police Lion, who is not lacking in speed and danger-free situations.</p><p>Day-care groups, elementary school classes and, of course, everyone else who enjoys children's music and a good atmosphere is welcome!</p><p>The concert is part of the Meidän Uusimaa concert series supported by the Finnish Cultural Foundation’s Uusimaa Regional Fund.</p>"
            },
            "name": {
                "fi": "Helsingin Poliisisoittokunnan lastenyhtye Nallekopla",
                "sv": "Helsingfors polismusikkårs barnband Nallekopla",
                "en": "Children's Ensemble Nallekopla of the Helsinki Police Band"
            },
            "short_description": {
                "fi": "Konsertti on suunnattu lapsille sekä lapsenmielisille ja sisältää lastenmusiikkia, laulua, leikitystä ja valistusta.",
                "sv": "Konserten riktar sig till barn och personer med barnasinnet i behåll, och omfattar barnmusik, sång, lek och upplysning.",
                "en": "The concert is aimed at children and child-minded people; the set includes children's music, singing, playing and education."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64135/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64134",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151539,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T10:13:04.544996Z",
                    "last_modified_time": "2024-06-26T10:13:04.545013Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746696.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151539/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T10:13:04.530746Z",
            "last_modified_time": "2024-08-29T05:13:19.018043Z",
            "date_published": null,
            "start_time": "2024-08-27T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/BB90DD7AEBC10F4468E44052DCA43258/Komisarion_Koirapartio",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/BB90DD7AEBC10F4468E44052DCA43258/Komisarion_Koirapartio",
                "en": "http://www.espanlava.fi/en/events/event/BB90DD7AEBC10F4468E44052DCA43258/Komisarion_Koirapartio"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Komisarion Koirapartio johdattaa kuulijansa elämänmakuisiin tarinoihin kitaran ja synan maalatessa maisemaa.</p><p>Yhtye tarjoilee melodista, popahtavaa uuden ajan suomirockia vahvoilla lauluilla ja stemmoilla. Komisarion Koirapartion kolmas pitkäsoitto julkaistiin keväällä 2023, jonka jälkeen yhtyeen on voinut spotata keikkalavoilta. Yhtye vaikuttaa pääkaupunkiseudulla ja työstää aktiivisesti uutta musiikkia.<br> <br>Komisarion Koirapartio on helsinkiläinen kokoonpano, joka syntyi kohtalokkaan karaokeillan tuloksena loppuvuodesta 2011. Laulaja löysi lauluntekijän (vai oliko se toisinpäin) ja yhdestä kertosäkeestä kasvoi usean albumin mittainen tarina. Löydä sinäkin suosikkisi tarinoiden joukosta!</p>",
                "sv": "<p>Komisarion Koirapartio leder sina lyssnare in i berättelser som smakar av livet, medan gitarren och synthen målar upp landskapet.</p><p>Bandet bjuder på melodisk, poppig och modern suomirock med starka låtar och stämmor. Komisarion Koirapartios tredje lp-skiva släpptes våren 2023, varefter bandet har skymtats på konsertscenerna. Bandet är verksamt i huvudstadsregionen och jobbar aktivt med ny musik.<br> <br>Komisarion Koirapartion är en helsingforsensemble som uppstod till följd av en ödesdiger karaokekväll i slutet av 2011. Sångaren hittade låtskrivaren (eller var det tvärtom) och en refräng växte till en berättelse som sträckte sig över flera album. Kom och hitta din favorit bland berättelserna!</p>",
                "en": "<p>Komisarion Koirapartio leads its listeners to life-flavored stories while the guitar and synth paints the landscape.</p><p>The band serves melodic, modern Finnish pop-rock music with strong vocals and harmonies. Komisarion Koirapartio's third full-length album was released in the spring of 2023 and since then the band has been spotted at live stages.</p><p>Komisarion Koirapartio was born as a result of a fateful karaoke night at 2011. A singer found a songwriter (or was it the other way around) and one chorus grew into a story spanning several albums. Find your favorite story among the many!</p>"
            },
            "name": {
                "fi": "Komisarion Koirapartio – Open Stage",
                "sv": "Komisarion Koirapartio – Open Stage",
                "en": "Komisarion Koirapartio – Open Stage"
            },
            "short_description": {
                "fi": "Komisarion Koirapartio johdattaa kuulijansa elämänmakuisiin tarinoihin kitaran ja synan maalatessa maisemaa.",
                "sv": "Komisarion Koirapartio leder sina lyssnare in i berättelser som smakar av livet, medan gitarren och synthen målar upp landskapet.",
                "en": "Komisarion Koirapartio leads its listeners to life-flavored stories while the guitar and synth paints the landscape."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64134/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64133",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151548,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T13:12:51.396803Z",
                    "last_modified_time": "2024-06-26T13:12:51.396826Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746695.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151548/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T10:13:04.425579Z",
            "last_modified_time": "2024-08-29T05:13:18.969826Z",
            "date_published": null,
            "start_time": "2024-08-27T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6625CF7C16AF2B725410D8AE73851C5A/Noitaperho",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/6625CF7C16AF2B725410D8AE73851C5A/Noitaperho",
                "en": "http://www.espanlava.fi/en/events/event/6625CF7C16AF2B725410D8AE73851C5A/Noitaperho"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Noitaperho soittaa kansanmusiikilla ja progella maustettua folkrockia. Suomalaisen melankolian kanssa käsikynkässä tamppaavat Irlannin rantojen kaiho, Balkanin vuorten poljento ja Kalifornian hippikesä.</p><p>Musiikkimatka Noitaperhon seurassa on vierailu ajan ja paikan tuolle puolen. Taikamaton nostavat ilmaan irlantilaisen bouzoukin ja avaraksi kaiutetun sähkökitaran vuoropuhelu, jonka selkärankana on rytmisektion perkussioiden ja basson hypnoottinen soitanta.</p><p>Vaikutteita Noitaperhon musiikissa voi kuulla idästä länteen, suomalaisesta pelimannimusiikista tuomiopäivän countryyn, vanhaan progeen, psykedeliaan ja kelttiläisestä folkista punkin rytkeeseen. Lopputuloksena on omaperäisellä tavalla orgaaninen äänimaailma, joka soljuu kuin puro tumman metsän sylissä kohti merta.</p><p><b>Soittajat:</b><br>Miikka Järvinen: bouzouki ja laulu<br>Tero Lappalainen: kitara<br>Jari Vanne: basso<br>Teppo Tolvanen: lyömäsoittimet</p>",
                "sv": "<p>Noitaperho spelar folkrock kryddad med folkmusik och prog. Hand i hand med finsk melankoli trampar längtan vid Irlands stränder, takten i Balkans berg och Kaliforniens hippiesommar.</p><p>En musikresa med Noitaperho är ett besök bortom tid och rum. En magisk matta lyfts av dialogen mellan den irländska bouzoukin och den vidgade elektriska gitarren, vars ryggrad är den hypnotiska spelningen av rytmsektionens slagverk och bas. Influenser i</p><p>Noitaperhos musik kan höras från öst till väst, från finsk spelmansmusik till domedagscountry, från gammal prog till psykedelia, och från keltisk folk till punkens rytm. Resultatet är ett på ett originellt sätt organiskt ljudlandskap, som flyter som en bäck i famnen av en mörk skog mot havet.</p><p><b>Musiker:</b><br>Miikka Järvinen: bouzouki och sång<br>Tero Lappalainen: gitarr<br>Jari Vanne: bas<br>Teppo Tolvanen: slaginstrument</p>",
                "en": "<p>Noitaperho performs folk rock seasoned with prog and folk music. Hand in hand with Finnish melancholy tread the longing of Ireland's shores, the beat of the Balkan mountains, and the summer of California's hippie era.</p><p>A musical journey with Noitaperho is a visit beyond time and place. A magic carpet is lifted by the dialogue between the Irish bouzouki and the echoed electric guitar, with a backbone formed by the hypnotic playing of the rhythm section's percussions and bass. Influences in</p><p>Noitaperho’s music can be heard from east to west, from Finnish folk music to doomsday country, from old prog to psychedelia, and from Celtic folk to the pulse of punk. The result is an uniquely organic soundscape that flows like a stream cradled by a dark forest towards the sea.</p><p><b>Musicians:</b><br>Miikka Järvinen: bouzouki and vocals<br>Tero Lappalainen: guitar<br>Jari Vanne: bass<br>Teppo Tolvanen: percussion instruments</p>"
            },
            "name": {
                "fi": "Noitaperho – Open Stage",
                "sv": "Noitaperho – Open Stage",
                "en": "Noitaperho – Open Stage"
            },
            "short_description": {
                "fi": "Noitaperho soittaa kansanmusiikilla ja progella maustettua folkrockia. Suomalaisen melankolian kanssa käsikynkässä tamppaavat Irlannin rantojen kaiho, Balkanin vuorten poljento ja Kalifornian hippikesä.",
                "sv": "Noitaperho spelar folkrock kryddad med folkmusik och prog. Hand i hand med finsk melankoli trampar längtan vid Irlands stränder, takten i Balkans berg och Kaliforniens hippiesommar.",
                "en": "Noitaperho performs folk rock seasoned with prog and folk music. Hand in hand with Finnish melancholy tread the longing of Ireland's shores, the beat of the Balkan mountains, and the summer of California's hippie era."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64133/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63386",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150626,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-16T15:13:07.733671Z",
                    "last_modified_time": "2024-04-16T15:13:07.733686Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749090.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150626/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-16T15:13:07.720839Z",
            "last_modified_time": "2024-08-29T05:13:18.918482Z",
            "date_published": null,
            "start_time": "2024-08-27T07: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CB3FF1DB8CA0FDF105922F5C836945E0/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CB3FF1DB8CA0FDF105922F5C836945E0/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/CB3FF1DB8CA0FDF105922F5C836945E0/Music_playschool_in_summer_"
            },
            "provider_contact_info": null,
            "provider": null,
            "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"
            },
            "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."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63386/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63385",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 150625,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-16T15:13:07.655997Z",
                    "last_modified_time": "2024-04-16T15:13:07.656013Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749089.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-16T15:13:07.643172Z",
            "last_modified_time": "2024-08-29T05:13:18.863670Z",
            "date_published": null,
            "start_time": "2024-08-27T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B4A0D44A9B8C1BA7F07E5D1142E11173/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/B4A0D44A9B8C1BA7F07E5D1142E11173/Musikstund_pa_sommaren",
                "en": "http://www.annantalo.fi/en/events/event/B4A0D44A9B8C1BA7F07E5D1142E11173/Music_playschool_in_summer_"
            },
            "provider_contact_info": null,
            "provider": null,
            "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"
            },
            "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."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63385/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63481",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?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:354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:p2433/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151618,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-03T13:13:19.526041Z",
                    "last_modified_time": "2024-07-03T13:13:19.526059Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751046.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151618/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2024-07-03T13:13:19.506665Z",
            "last_modified_time": "2024-08-29T05:13:18.812404Z",
            "date_published": null,
            "start_time": "2024-08-26T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/10C1ECB582FD3F3A1BD474A608E9DB58/Nyt_lauletaan_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/10C1ECB582FD3F3A1BD474A608E9DB58/Nu_sjunger_vi_",
                "en": "http://www.kanneltalo.fi/en/events/event/10C1ECB582FD3F3A1BD474A608E9DB58/Let_us_sing_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko <b>Mari Kätkä.</b></p><p>Kesto: 1 t<br>Vapaa pääsy</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. <b>Mari Kätkä</b> leder allsången.</p><p>Längd: 1 timme</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by <b>Mari Kätkä.</b></p><p>Duration: 1 hour</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "name": {
                "fi": "Nyt lauletaan! – Maksuttomat maanantait",
                "sv": "Nu sjunger vi! – Kostnadsfria måndagar",
                "en": "Let us sing! – Free Mondays"
            },
            "short_description": {
                "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!",
                "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!",
                "en": "Nothing is more fun than singing – except for singing together!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63481/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64150",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?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:32/?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:44/?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:p1278/?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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151591,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-01T13:12:57.344382Z",
                    "last_modified_time": "2024-07-01T13:12:57.344396Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755942.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151591/?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-07-01T13:12:57.308873Z",
            "last_modified_time": "2024-08-29T05:13:18.732067Z",
            "date_published": null,
            "start_time": "2024-08-24T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/5626CEB9C780CF739CAE9122D810FE80/Kolibr_Festivaali_INDABA",
                "sv": "http://www.stoa.fi/sv/evenemang/event/5626CEB9C780CF739CAE9122D810FE80/Kolibr_Festivaali_INDABA",
                "en": "http://www.stoa.fi/en/events/event/5626CEB9C780CF739CAE9122D810FE80/Kolibr_Festivaali_INDABA"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Lastenkonsertti Indaba on lämminhenkinen ja energinen show, jossa esiintyjät ja yleisö kohtaavat. Esityksessä lauluun yhdistyvät improvisaatio, perkussiogroovet sekä freestyle-tanssi.</p><p>Rytmeissä kuullaan vaikutteita tansanialaisesta perinnemusiikista sekä modernista eteläafrikkalaisesta house-musiikista.</p><p>Konsertissa pureudutaan kysymyksiin identiteetistä. Miten yhteen ihmiseen mahtuu monta identiteettiä? Entä kuka saa kertoa ihmisen tarinan? Esityksen kantava ajatus on, että paras tietäjä ja tarinankertoja on ihminen itse.</p><p>Konsertti rohkaisee lempeästi jokaista kertomaan oman tarinansa haluamallaan tavalla.</p><p>Indaba-lastenkonsertissa on kyse nähdyksi ja kuulluksi tulemisesta – ja samalla toisten näkemisestä ja kuuntelemisesta.<br>Indaba tarkoittaa zulun kielellä kokoontumista, jossa ihmiset päättävät heitä itseään koskevista asioista. Sana on vakiintunut osaksi myös muita eteläafrikkalaisia kieliä.</p><p>Indabassa esiintyvät muusikko Ayla Brinkmann (FIN/RSA), multi-instrumentalisti Kasheshi Makena (TZA/FIN) sekä tanssija ja dj Pietari Kauppinen (FIN/ETH). Esiintyjiä yhdistää suomalaisafrikkalainen tausta sekä intohimo tehdä kiinnostavaa ja ajankohtaista lastenkulttuuria.</p><p>Esityksessä käytetään ainakin suomen, englannin sekä swahilin kieltä.</p><p><u><a href=\"https://www.kolibrifestivaali.org/\">Kolibrifestivaali.org</a></u></p><p>Instagram: @kolibrifestivaali</p>",
                "sv": "<p>INDABA, performed by Ayla Brinkmann, Kasheshi Makena and Pietari Kauppinen, explores the rich tapestry of Afro-Finnish identities.</p><p>Derived from the isiZulu word for a meeting or a meaningful discussion, INDABA invites you to experience a vibrant merge of bamboo flute grooves, Tanzanian rhythms and a taste of South African amapiano and solos on voice, trombone, flutes, timbila, percussion, storytelling and dance. The performers speak and sing in Finnish, English, Kiswahili and Kisumbwa.</p><p>Let’s have an indaba!</p><p>Kolibrí Festivaali (LINK www.kolibrifestivaali.org) celebrates the Opening of its 13th edition at STOA, with the warm-hearted children's performance INDABA.  This is a free activity for all ages to discover the spirit of this unique, multicultural, open art festival for children and their families. This is a Kulttuurikeskus NINHO ry production.</p><p><u><a href=\"https://www.kolibrifestivaali.org/\">Kolibrifestivaali.org</a></u></p><p>Instagram: @kolibrifestivaali</p>",
                "en": "<p>INDABA, performed by Ayla Brinkmann, Kasheshi Makena and Pietari Kauppinen, explores the rich tapestry of Afro-Finnish identities.</p><p>How does it feel to be Finnish, African, or both? Who tells our stories best?</p><p>Derived from the isiZulu word for a meeting or a meaningful discussion, INDABA invites you to experience a vibrant merge of bamboo flute grooves, Tanzanian rhythms and a taste of South African amapiano and solos on voice, trombone, flutes, timbila, percussion, storytelling and dance. The performers speak and sing in Finnish, English, Kiswahili and Kisumbwa.</p><p>Let’s have an indaba!</p><p>Kolibrí Festivaali celebrates the Opening of its 13th edition at STOA, with the warm-hearted children's performance INDABA. This is a free activity for all ages to discover the spirit of this unique, multicultural, open art festival for children and their families. This is a Kulttuurikeskus NINHO ry production.</p><p><u><a href=\"https://www.kolibrifestivaali.org/\">Kolibrifestivaali.org</a></u></p><p>Instagram: @kolibrifestivaali</p>"
            },
            "name": {
                "fi": "Kolibrí Festivaali: INDABA",
                "sv": "Kolibrí Festivaali: INDABA",
                "en": "Kolibrí Festivaali: INDABA"
            },
            "short_description": {
                "fi": "Lastenkonsertti Indaba on lämminhenkinen ja energinen show, jossa esiintyjät ja yleisö kohtaavat. Esityksessä lauluun yhdistyvät improvisaatio, perkussiogroovet sekä freestyle-tanssi.",
                "sv": "INDABA, performed by Ayla Brinkmann, Kasheshi Makena and Pietari Kauppinen, explores the rich tapestry of Afro-Finnish identities.",
                "en": "INDABA, performed by Ayla Brinkmann, Kasheshi Makena and Pietari Kauppinen, explores the rich tapestry of Afro-Finnish identities."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64150/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64175",
            "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: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: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"
                },
                {
                    "@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": [],
                    "price": {
                        "fi": "11 € / 6 €",
                        "sv": "11 € / 6 €",
                        "en": "11 € / 6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/global-club-nights/",
                        "sv": "https://www.lippu.fi/artist/global-club-nights/",
                        "en": "https://www.lippu.fi/artist/global-club-nights/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151657,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-04T13:13:10.628567Z",
                    "last_modified_time": "2024-07-04T13:13:10.628590Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751269.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151657/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-04T13:13:10.590375Z",
            "last_modified_time": "2024-08-29T05:13:18.502424Z",
            "date_published": null,
            "start_time": "2024-08-23T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/7A3FF4FDABA03345BC8CEDE5DEA32898/Catavento_Kata_Vuoristo_Eve_Crazy_Mar_Yo",
                "sv": "http://www.caisa.fi/sv/evenemang/event/7A3FF4FDABA03345BC8CEDE5DEA32898/Catavento_Kata_Vuoristo_Eve_Crazy_Mar_Yo",
                "en": "http://www.caisa.fi/en/events/event/7A3FF4FDABA03345BC8CEDE5DEA32898/Catavento_Kata_Vuoristo_Eve_Crazy_Mar_Yo"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p><b>Catavento – Kata Vuoristo</b><br>Portugalin kielen sana cata-vento tarkoittaa tuuliviiriä eli tuulen suuntaan kääntyvää laitetta. Se toimii vertauskuvana ja ohjaavana periaatteena laulaja-säveltäjä Kata Vuoriston konsertissa. Se kuvastaa maailmanmuusikon jatkuvasti kehittyvää ja muuttuvaa identiteettiä, jota muokkaavat syventyminen erilaisiin musiikillisiin perinteisiin, paikkoihin ja yhteisöihin sekä niiden tuoma inspiraatio.</p><p>Catavento on tutkimusmatka tällaiseen alati muuttuvaan identiteettiin ja ylistyslaulu taiteellisen ilmaisun rajattomille mahdollisuuksille. Kata tarkastelee kehitystään muusikkona sekä sitä, miten siihen ovat vaikuttaneet hänen viime vuosina tekemänsä matkat ja sävellystyöt. Hän keskittyy erityisesti hiljattain Brasiliaan suuntautuneeseen kenttämatkaansa, jonka päätarkoituksena oli tällainen taiteellinen tutkiskelu.<br>Vuoriston sävellykset saavat innoituksensa Brasilian, Portugalin ja hänen kotimaansa Suomen rikkaista musiikkiperinteistä.<br>Konsertissa kuullaan eri taustoista tulevia muusikoita, ja se tuo esiin sitä, miten eri kulttuureihin syventyminen on vaikuttanut hänen musiikkiinsa. Catavento esittelee sävellyksiä, jotka vaihtelevat unenomaisesta melankoliasta kiehtoviin rytmeihin ja harmonisiin a cappella -sovituksiin.</p><p><b>Eve Crazy & Mar Yo</b><br>Eve Crazy & Mar Yo -duo yhdistää senegalilaista räppiä, suomalais-ugrilaista lauluestetiikkaa ja Suomen kansallissoittimen kanteleen äänimaailmaa. Heidän musiikkinsa tuo yhteen kaksi maanosaa, kulttuuria ja yhteiskuntaa, urbaanin ja perinteisen sekä universaalin naiseuden. Evelle ja Mar Yolle musiikki merkitsee keinoa kommunikoida ympäröivän maailman kanssa ja ottaa kantaa. Eve Crazy on Etelä-Senegalissa sijaitsevasta Casamancesta tuleva naisräppäri ja Mar Yo (Marjo Smolander) kanteleensoittaja ja laulaja Rääkkylästä.</p><p>Heidän ensimmäinen singlensä ”Jigéen ñi” julkaistiin huhtikuussa 2021. Joulukuussa 2021 he julkaisivat kolmen kappaleen kokoelman ”Trilogy”. Heidän debyyttialbuminsa ”New Stories” julkaistiin 3. toukokuuta 2024. Levynjulkaisukiertue järjestetään Suomessa kesällä 2024.</p><p>Eve Crazy: räppi ja laulu <br>Mar Yo (Marjo Smolander): kantele, laulu ja räppi <br>Karoliina Kantelinen: laulu <br>A-P Rissanen: rummut <br>Ndioba Gueye: basso</p><p>Kesto: 3,5 t, sis. väliajan <br>Kieli: englanti, suomi, portugali ja espanja<br>Liput: 11 € / 6 €<br>osoitteesta Lippu.fi</p><p><b>Global Club Nights</b><br>Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa.</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. <br><u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">Lue lisää kulttuurikavereista täältä</u></a></p><p>Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi</p>",
                "sv": "<p>Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.</p><p>Med livemusik, radioprogram, seminarier och workshoppar försöker evenemangen bygga broar mellan alla musikälskare och deras gemenskaper.</p><p>Långd: 3,5 t<br>Språk: engelska, finska, portugisiska och spanska</p>",
                "en": "<p>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive, and creative environment.</p><p>With live music, radio shows, seminars and workshops, the events attempt to build bridges between all music lovers and their communities.</p><p><b>Catavento – Kata Vuoristo</b><br>The Portuguese word Catavento translates as wind vane, which is a device that turns towards the direction of the wind, serving as a metaphor and the guiding principle throughout singer-composer Kata Vuoristo’s concert. It symbolizes the ever-evolving, fluid nature of a global musician’s identity, shaped by inspiration and immersion into different musical traditions, places, and communities.</p><p>Catavento is an exploration into the fluidity of one’s identity and a tribute to the boundless possibilities of artistic expression. Kata examines the development of her musicianship and the ways in which it has evolved throughout her recent years traveling and composing, particularly focusing on her recent field trip to Brazil, which was a journey undertaken solely for this artistic exploration.<br>Vuoristo’s compositions draw inspiration from the rich musical traditions of Brazil, Portugal, and her homeland, Finland. Featuring musicians from diverse backgrounds, this concert showcases how intercultural immersion has influenced her music. Catavento presents compositions ranging from dreamlike melancholy to captivating rhythms, and harmonious a cappella arrangements.</p><p><b>Eve Crazy & Mar Yo</b> <br>Eve Crazy & Mar Yo duo combines Senegalese rap, Finno-Ugric vocal aesthetic, and the soundscape of the Finnish national instrument kantele. Their music brings together two continents, cultures and societies, urban and traditional, and universal femininity. For Eve and Mar Yo, music is a way to communicate with the surrounding world and take a stand. Eve Crazy is a Senegalese female rapper from Casamance, Southern Senegal and Mar Yo (Marjo Smolander) is a Finnish kantele player and singer from Rääkkylä Finland.</p><p>The first single “Jigéen ñi” was released in April 2024. Three song complication “Trilogy” was released in November 2024. On the 3rd of May 2024, they are releasing their debut album “New Stories”. The album release tour take place in Finland in the summer of 2024.</p><p>Eve Crazy: rap and vocals <br>Mar Yo (Marjo Smolander): kantele, vocals and rap <br>Karoliina Kantelinen: vocals <br>A-P Rissanen: drums <br>Ndioba Gueye: bass</p><p>Duration: 3,5 h<br>Language: English, Finnish, Portuguese</p><p>Tickets: 11 € / 6 € from Lippu.fi</p>"
            },
            "name": {
                "fi": "Catavento – Kata Vuoristo | Eve Crazy & Mar Yo – Global Club Nights",
                "sv": "Catavento – Kata Vuoristo | Eve Crazy & Mar Yo – Global Club Nights",
                "en": "Catavento – Kata Vuoristo | Eve Crazy & Mar Yo – Global Club Nights"
            },
            "short_description": {
                "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.",
                "sv": "Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.",
                "en": "Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive, and creative environment."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64175/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64064",
            "has_user_editable_resources": false,
            "location": null,
            "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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151583,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-01T11:13:33.332624Z",
                    "last_modified_time": "2024-07-01T11:13:33.332640Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755437.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151583/?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-07-01T11:13:33.320521Z",
            "last_modified_time": "2024-08-29T05:13:18.386742Z",
            "date_published": null,
            "start_time": "2024-08-23T10:00:00Z",
            "end_time": "2024-08-23T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/BCDBC3F9F1DD320B49F040656993F881/Metsaan_laskeutuminen_koululaisille",
                "sv": "http://www.stoa.fi/sv/evenemang/event/BCDBC3F9F1DD320B49F040656993F881/Landa_i_skogen_",
                "en": "http://www.stoa.fi/en/events/event/BCDBC3F9F1DD320B49F040656993F881/Descending_into_the_forest_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitetettu satu Matokalliolla asuvasta oravasta.</p><p>Sen avulla laskeudutaan metsän rauhaan kaikkia aisteja hyödyntäen. Köllöttelemme riippumatoissa kuunnellen elävää musiikkia ja metsän ääniä. Mitä kaikkea metsä supattaa, jos pysähdymme kuuntelemaan?</p><p>Jokaiselle lapselle varataan oma riippumatto, ja siksi ryhmän maksimikoko on 21.</p><p>Työpaja soveltuu 4–8-vuotiaille. Myrskyn sattuessa tapahtumalle pyritään löytämään uusi ajankohta.</p><p>Ohjaajat: Verna Kuntsi ja Satu Sipilä, Seikkailutaidekoulu<br>Paikka: Karhukallion metsä Roihupellossa<br>Ikäsuositus: 4–8-vuotiaat <br>Kesto: n. 45 min <br>Kieli: suomi</p><p>Vapaa pääsy.</p><p>Pakolliset ennakkoilmoittautumiset: kultus.fi, 12.8. klo 10 alkaen</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Visste du att man också kan vila i skogen? I början av skogsstunden får vi se och höra en live-illustrerad saga om en ekorre som bor på Matokallio.</p><p>Med hjälp av den landar vi i skogens frid och utnyttjar alla sinnen. Vi slappnar av i hängmattor och lyssnar på levande musik och skogens ljud. Vad viskar skogen om då vi stannar upp och lyssnar?</p><p>Det finns en egen hängmatta för varje barn, och därför är den maximala gruppstorleken 21.</p><p>I händelse av stormigt väder försöker vi hitta ett nytt datum för evenemanget.</p><p>Handledare: Verna Kuntsi och Satu Sipilä, Seikkailutaidekoulu<br>Plats: Björnklippans skog i Kasåkern<br>Åldersrekommendation: 4–8-åringar <br>Längd: ca 45 min. <br>Språk: finska</p><p>Fritt inträde.</p><p>Förhandsanmälan: kultus.fi, från och med 12.8. kl. 10.00</p><p>Mer information: hanna.westerholm@hel.fi</p>",
                "en": "<p>Did you know that you are also allowed to rest in the forest? At the beginning of the forest moment, you will see and hear a live fairy tale about a squirrel living in Matokallio.</p><p>It allows you to descend into the peace of the forest using all your senses. You get to relax in a hammock, listen to live music and the sounds of the forest. What does the forest tell us, if we stop to listen?</p><p>Hammocks are provided for each child, which is why the maximum group size is 21.</p><p>In the event of a storm, we will try to reschedule the event.</p><p>Instructors: Verna Kuntsi and Satu Sipilä, Seikkailutaidekoulu<br>Location: Karhukallio Forest in Roihupelto<br>Age recommendation: Ages 4–8 <br>Duration: approx. 45 min <br>Language: Finnish</p><p>Admission is free.</p><p>Pre-registration required at kultus.fi, from 12 August at 10 am</p><p>Additional information: hanna.westerholm@hel.fi</p>"
            },
            "name": {
                "fi": "Metsään laskeutuminen koululaisille – Esityksellinen rentoutumishetki koululaisryhmille Karhukallion metsässä",
                "sv": "Landa i skogen – En avslappnande föreställning för elevgrupper i Björnklippans skog",
                "en": "Descending into the forest – Performance and relaxation moment for school groups in the Karhukallio forest"
            },
            "short_description": {
                "fi": "Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitetettu satu Matokalliolla asuvasta oravasta.",
                "sv": "Visste du att man också kan vila i skogen? I början av skogsstunden får vi se och höra en live-illustrerad saga om en ekorre som bor på Matokallio.",
                "en": "Did you know that you are also allowed to rest in the forest? At the beginning of the forest moment, you will see and hear a live fairy tale about a squirrel living in Matokallio."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64064/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64063",
            "has_user_editable_resources": false,
            "location": null,
            "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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151582,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-01T11:13:33.188363Z",
                    "last_modified_time": "2024-07-01T11:13:33.188382Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755436.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151582/?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-07-01T11:13:33.159494Z",
            "last_modified_time": "2024-08-29T05:13:18.339248Z",
            "date_published": null,
            "start_time": "2024-08-23T09:00:00Z",
            "end_time": "2024-08-23T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/EBB99E8411C9C8D55C5066F432932192/Metsaan_laskeutuminen_paivakotiryhmille_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/EBB99E8411C9C8D55C5066F432932192/Landa_i_skogen_",
                "en": "http://www.stoa.fi/en/events/event/EBB99E8411C9C8D55C5066F432932192/Descending_into_the_forest_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitetettu satu Matokalliolla asuvasta oravasta.</p><p>Sen avulla laskeudutaan metsän rauhaan kaikkia aisteja hyödyntäen. Köllöttelemme riippumatoissa kuunnellen elävää musiikkia ja metsän ääniä. Mitä kaikkea metsä supattaa, jos pysähdymme kuuntelemaan?</p><p>Jokaiselle lapselle varataan oma riippumatto, ja siksi ryhmän maksimikoko on 21.</p><p>Työpaja soveltuu 4–8-vuotiaille. Myrskyn sattuessa tapahtumalle pyritään löytämään uusi ajankohta.</p><p>Ohjaajat: Verna Kuntsi ja Satu Sipilä, Seikkailutaidekoulu<br>Paikka: Karhukallion metsä Roihupellossa<br>Ikäsuositus: 4–8-vuotiaat <br>Kesto: n. 45 min <br>Kieli: suomi</p><p>Vapaa pääsy.</p><p>Pakolliset ennakkoilmoittautumiset: kultus.fi, 12.8. klo 10 alkaen</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Visste du att man också kan vila i skogen? I början av skogsstunden får vi se och höra en live-illustrerad saga om en ekorre som bor på Matokallio.</p><p>Med hjälp av den landar vi i skogens frid och utnyttjar alla sinnen. Vi slappnar av i hängmattor och lyssnar på levande musik och skogens ljud. Vad viskar skogen om då vi stannar upp och lyssnar?</p><p>Det finns en egen hängmatta för varje barn, och därför är den maximala gruppstorleken 21.</p><p>Workshoppen är lämplig för 4–8-åringar. I händelse av stormigt väder försöker vi hitta ett nytt datum för evenemanget.</p><p>Handledare: Verna Kuntsi och Satu Sipilä, Seikkailutaidekoulu<br>Plats: Björnklippans skog i Kasåkern<br>Åldersrekommendation: 4–8-åringar <br>Längd: ca 45 min. <br>Språk: finska <br>Fritt inträde. <br>Obligatorisk förhandsanmälan: kultus.fi, från och med 12.8. kl. 10.00</p><p>Mer information: hanna.westerholm@hel.fi</p>",
                "en": "<p>Did you know that you are also allowed to rest in the forest? At the beginning of the forest moment, you will see and hear a live fairy tale about a squirrel living in Matokallio.</p><p>It allows you to descend into the peace of the forest using all your senses. You get to relax in a hammock, listen to live music and the sounds of the forest. What does the forest tell us, if we stop to listen?</p><p>Hammocks are provided for each child, which is why the maximum group size is 21.</p><p>The workshop is suitable for 4-8 year olds. In the event of a storm, we will try to reschedule the event.</p><p>Instructors: Verna Kuntsi and Satu Sipilä, Seikkailutaidekoulu<br>Location: Karhukallio Forest in Roihupelto<br>Age recommendation: Ages 4–8 <br>Duration: approx. 45 min <br>Language: Finnish <br>Admission is free. <br>Pre-registration required at kultus.fi, from 12 August at 10 am</p><p>Additional information: hanna.westerholm@hel.fi</p>"
            },
            "name": {
                "fi": "Metsään laskeutuminen päiväkotiryhmille – Esityksellinen rentoutumishetki päiväkotiryhmille Karhukallion metsässä",
                "sv": "Landa i skogen – En avslappnande föreställning för daghems- och elevgrupper i Björnklippans skog",
                "en": "Descending into the forest – Performance and relaxation moment for day-care and school groups in the Karhukallio forest"
            },
            "short_description": {
                "fi": "Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitetettu satu Matokalliolla asuvasta oravasta.",
                "sv": "Visste du att man också kan vila i skogen? I början av skogsstunden får vi se och höra en live-illustrerad saga om en ekorre som bor på Matokallio.",
                "en": "Did you know that you are also allowed to rest in the forest? At the beginning of the forest moment, you will see and hear a live fairy tale about a squirrel living in Matokallio."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64063/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63366",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151437,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-12T13:13:45.162890Z",
                    "last_modified_time": "2024-06-12T13:13:45.162906Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749282.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151437/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2024-06-12T13:13:45.124832Z",
            "last_modified_time": "2024-08-29T05:13:18.258005Z",
            "date_published": null,
            "start_time": "2024-08-23",
            "end_time": "2024-09-29",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/C812990D8E575EC3F2FC02C4B70DE725/Yhden_pallon_visiot",
                "sv": "http://www.stoa.fi/sv/evenemang/event/C812990D8E575EC3F2FC02C4B70DE725/Yhden_pallon_visiot",
                "en": "http://www.stoa.fi/en/events/event/C812990D8E575EC3F2FC02C4B70DE725/Yhden_pallon_visiot"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Millainen voisi olla maapallon kantokykyyn sovitettu kestävä tulevaisuus? Yhden pallon visiot -näyttelyssä hyppäämme seuraavien sukupolvien Suomeen kuvitettujen tulevaisuustarinoiden ja visioiden muodossa.</p><p>Ilmastonmuutos, luonnon monimuotoisuuden väheneminen, saastuminen – nykyisellä polulla suuntaamme kiihtyvällä tahdilla kohti kasvavia ympäristökriisejä, jotka puolestaan järisyttävät sivilisaatiomme perustuksia. Kestävyysmurroksen suuntana tulisi olla elämäntapojemme ja yhteiskuntien toiminnan sovittaminen maapallon ekologisiin reunaehtoihin ja toisaalta ihmisten hyvinvoinnin turvaaminen mahdollisimman oikeudenmukaisesti.<br> <br>Yhden pallon visiot -näyttely tuo yhteen tutkittua tietoa ja taidetta. Mahdollisia tulevaisuuksia raottavat kirjailijoiden ja kuvittajien toteuttamat tulevaisuustarinat ovat näyttelyssä esillä näyttävinä kuvituksina. Tulevaisuustarinat ovat lisäksi kuunneltavissa ääninovelleina kävijöiden omilla laitteilla tai niihin voi palata näyttelyn jälkeen hankkeen podcast-kanavissa. Tulevaisuuden yhteiskunnan toimintaa on esitetty teemakohtaisilla visiokuvituksilla pohjautuen tutkittuun tietoon ja työn aikana tehtyihin tutkijahaastatteluihin.<br> <br>Yhden pallon visioiden kokonaisuudesta vastaavat maisema-arkkitehdit Hanna Hannula ja Daniela Rosqvist. Tulevaisuuden maailmoja ovat kuvittaneet kuvittajat Terhi Ekebom, Ninni Kairisalo, Satu Kettunen, Sami Makkonen, Emmi Nieminen, Kati Närhi ja Daniel Stolle. Tulevaisuustarinat ovat kirjoittaneet kirjailijat Juha Hurme, Emmi Itäranta, Anni Kytömäki, Antti Rönkä, Salla Simukka ja Lars Sund.<br>  <br>Toivotamme kävijät mukaan kuvittelemaan toivottavia tulevaisuuksia.<br> <br>Yhden pallon visioiden mahdollistamisesta suuri kiitos kuuluu seuraaville tahoille: Maj ja Tor Nesslingin säätiö, Koneen säätiö, Tiedonjulkistamisen neuvottelukunta, Svenska Kulturfonden, Suomen Luonnonsuojelun säätiö, Helsingin kaupunki ja Suomen ympäristöministeriö.</p>",
                "sv": "<p>Hur skulle en hållbar framtid som är anpassad till planetens bärkraft kunna se ut? I utställningen Visioner för ett klot hoppar vi in i de kommande generationernas Finland i form av framtidsberättelser och visioner.</p><p>Klimatförändringen, förlusten av biologisk mångfald, föroreningar – på den nuvarande stigen är vi i allt snabbare takt på väg mot växande miljökriser, som i sin tur kommer att skaka om grunderna för vår civilisation. Riktningen för hållbarhetsrevolutionen bör vara att anpassa våra livsstilar och samhällen till planetens ekologiska ramvillkor, samtidigt som vi tryggar människornas välbefinnande på ett så rättvist sätt som möjligt.<br> <br>Utställningen Visioner för ett klot sammanför forskning och konst. Berättelser om framtiden som har skapats av författare och illustratörer för att utforska möjliga framtider presenteras på utställningen i form av slående illustrationer. Framtidsberättelserna går också att lyssna på som ljudnoveller på besökarnas egna enheter, eller så kan man återvända till dem efter utställningen på projektets podcastkanaler. Det framtida samhällets verksamhet presenteras i tematiska visionsillustrationer som bygger på forskningsresultat och intervjuer med forskare som genomförts under arbetet.<br> <br>Landskapsarkitekterna Hanna Hannula och Daniela Rosqvist ansvarar för den övergripande visionen för Visioner för ett klot. De framtida världarna har illustrerats av Terhi Ekebom, Ninni Kairisalo, Satu Kettunen, Sami Makkonen, Emmi Nieminen, Kati Närhi och Daniel Stolle. Framtidsberättelserna har skrivits av författarna Juha Hurme, Emmi Itäranta, Anni Kytömäki, Antti Rönkä, Salla Simukka och Lars Sund.<br>  <br>Vi bjuder in besökarna att föreställa sig önskvärda framtider tillsammans med oss.<br> <br>Vi vill rikta ett stort tack till följande parter för att ha möjliggjort Visioner för ett klot: Maj och Tor Nesslings stiftelse, Kone-stiftelsen, Delegationen för informationsspridning, Svenska Kulturfonden, Naturskyddsstiftelsen i Finland, Helsingfors stad och Finlands miljöministerium.</p>",
                "en": "<p>What could a sustainable future, adapted to the planet’s carrying capacity, be like? In the Yhden pallon visiot exhibition, we will jump to the Finland of the next generations in the form of illustrated future stories and visions.</p><p>Climate change, loss of biodiversity, pollution – on our current path, we are heading at an accelerating pace towards increasing environmental crises, which in turn are shaking the foundations of our civilisation. The direction of the sustainability transition should be to align our lifestyles and the activities of societies with the ecological framework conditions of the planet and, on the other hand, to safeguard people’s wellbeing as fairly as possible.<br> <br>The Yhden pallon visiot exhibition brings together researched knowledge and art. The future stories created by writers and illustrators that describe potential futures are on display in the exhibition as spectacular illustrations. In addition, future stories can be listened to as audio short stories on visitors’ own devices or they can be returned to after the exhibition in the project’s podcast channels. The activities of the future society have been presented with thematic vision illustrations based on researched information and researcher interviews conducted during the work.<br> <br>Yhden pallon visiot is the responsibility of landscape architects Hanna Hannula and Daniela Rosqvist. The worlds of the future have been illustrated by illustrators Terhi Ekebom, Ninni Kairisalo, Satu Kettunen, Sami Makkonen, Emmi Nieminen, Kati Närhi and Daniel Stolle. Future stories have been written by writers Juha Hurme, Emmi Itäranta, Anni Kytömäki, Antti Rönkä, Salla Simukka and Lars Sund.<br>  <br>We welcome visitors to join us in imagining desirable futures.<br> <br>For enabling the Yhden pallon visiot project, a big thank you goes to: Maj and Tor Nessling Foundation, Kone Foundation, Committee for Public Information (TJNK), Svenska Kulturfonden, Finnish Foundation for Nature Conservation, City of Helsinki and Finnish Ministry of the Environment.</p>"
            },
            "name": {
                "fi": "Yhden pallon visiot",
                "sv": "Yhden pallon visiot",
                "en": "Yhden pallon visiot"
            },
            "short_description": {
                "fi": "Millainen voisi olla maapallon kantokykyyn sovitettu kestävä tulevaisuus? Yhden pallon visiot -näyttelyssä hyppäämme seuraavien sukupolvien Suomeen kuvitettujen tulevaisuustarinoiden ja visioiden muodossa.",
                "sv": "Hur skulle en hållbar framtid som är anpassad till planetens bärkraft kunna se ut? I utställningen Visioner för ett klot hoppar vi in i de kommande generationernas Finland i form av framtidsberättelser och visioner.",
                "en": "What could a sustainable future, adapted to the planet’s carrying capacity, be like? In the Yhden pallon visiot exhibition, we will jump to the Finland of the next generations in the form of illustrated future stories and visions."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63366/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63882",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151283,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-23T11:13:02.382462Z",
                    "last_modified_time": "2024-05-23T11:13:02.382479Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744992.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151283/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T11:13:02.347742Z",
            "last_modified_time": "2024-08-29T05:13:18.202478Z",
            "date_published": null,
            "start_time": "2024-08-22T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/88EA088339483A86EA0C8823D18BC89E/Terveet_Kadet",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/88EA088339483A86EA0C8823D18BC89E/Terveet_Kadet",
                "en": "http://www.malmitalo.fi/en/events/event/88EA088339483A86EA0C8823D18BC89E/Terveet_Kadet"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Legendaarinen Terveet Kädet tuo rankempaa meteliä Malmin tapahtumakesään!</p><p>Vuodesta 1979 operoinut hardcore-yhtye Terveet Kädet on kiistatta kaikkien aikojen tunnetuin suomalainen punkbändi. Läjä Äijälän luotsaama yhtye opetti toimintansa 2016 liki neljänkymmenen toimintavuoden jälkeen, mutta mielipiteet onneksi muuttuvat ja Terveet Kädet on tehneet paluun pitkän odotuksen jälkeen.</p><p>Terveet Kädet on kerännyt vuosien varrella ihailijoita maailmanlaajuisesti metalliyhtye Sepulturan jäsenistöstä Mike Pattoniin ja ehti kiertää kotimaansa lisäksi myös valtameren tuolla puolella.</p>",
                "sv": "<p>Legendariska Terveet Kädet hämtar hårdare oljud till Malms evenemangssommar!</p><p>Hardcorebandet Terveet Kädet som har fungerat sedan år 1979 är utan tvivel alla tiders mest kända finländska punkband. Efter nästan fyrtio år upphörde bandet som leds av Läjä Äijälä med sin verksamhet år 2016, men som tur är kan åsikter ändras och Terveet Kädet har gjort en länge efterlängtad comeback.</p><p>Under årens lopp har Terveet Kädet samlat fans även bland metallbandet Sepulturas medlemmar i egenskap av Mike Patton, och har förutom i hemlandet även turnerat på andra sidan oceanen.</p>",
                "en": "<p>Legendary Terveet Kädet brings a louder noise to the Malmi Summer of Events!</p><p>Terveet Kädet are a hardcore band active since 1979, and are undeniably Finland’s all-time best known punk band. The band, headed by Läjä Äijälä, disbanded in 2016 after nearly forty years, but thankfully, they have had a change of heart and Terveet Kädet are back on the road.</p><p>Terveet Kädet found global fans along the years, from members of metal band Sepultura to Mike Patton, and got to go on tour in Finland and abroad.</p>"
            },
            "name": {
                "fi": "Terveet Kädet – Malmin tapahtumakesä",
                "sv": "Terveet Kädet – Malms evenemangssommar",
                "en": "Terveet Kädet – Malmi Summer of Events"
            },
            "short_description": {
                "fi": "Legendaarinen Terveet Kädet tuo rankempaa meteliä Malmin tapahtumakesään!",
                "sv": "Legendariska Terveet Kädet hämtar hårdare oljud till Malms evenemangssommar!",
                "en": "Legendary Terveet Kädet brings a louder noise to the Malmi Summer of Events!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63882/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64386",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152119,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-15T14:14:34.453870Z",
                    "last_modified_time": "2024-08-15T14:14:34.453885Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744076.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152119/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-15T14:14:34.409914Z",
            "last_modified_time": "2024-08-29T05:13:18.146967Z",
            "date_published": null,
            "start_time": "2024-08-22T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1E8C13FFA41C6A7FCB975D1C84023A06/Vuosaaren_musiikkiopiston_Napparit"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Vuotorilla esiintyy Vuosaaren musiikkiopiston lapsista ja nuorista koostuva pelimanniryhmä Näppärit!</p><p>Vuosaaren musiikkiopiston Näppärit aloitti toimintansa syksyllä 2011 Alina Järvelän johdolla. Tällä hetkellä Näppäreitä ohjaavat Raisa Päivinen, Sisko Hyvönen ja Terhi Murtoniemi.</p><p>Näppäri-orkesteriin ei ole pääsykokeita, kuten ei Vuosaaren musiikkiopistoonkaan. Mukaan soittamaan pääsevät kaikki iästä tai tasosta riippumatta. Sovitukset tehdään siten, että kaikille on mielekästä, taitoja vastaavaa soitettavaa. Kaikki soittajat käyvät Näppäreiden lisäksi myös yksilötunnilla.</p><p>Näppäri-idea sai alkunsa 1980-luvun alussa Kaustisella, jolloin idean isä Mauno Järvelä aloitti viulunsoiton opettamisen Perhonjokilaakson kansalaisopistossa ja alkoi vetää kansalaisopiston oppilaista koottua pelimanniryhmää. Näppärit on kehittynyt yhden kylän lasten pelimanniryhmästä kansallista ja kansainvälistä arvostusta nauttivaksi lasten ja nuorten kansanmusiikkiliikkeeksi ja koulutusmuodoksi.</p><p>Kesto: 45 min</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Vuosaaren musiikkiopiston Näppärit – Elokuun iltasoitto"
            },
            "short_description": {
                "fi": "Vuotorilla esiintyy Vuosaaren musiikkiopiston lapsista ja nuorista koostuva pelimanniryhmä Näppärit!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64386/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63881",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151282,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-23T10:12:52.713062Z",
                    "last_modified_time": "2024-05-23T10:12:52.713080Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749027.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151282/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T10:12:52.671332Z",
            "last_modified_time": "2024-08-29T05:13:18.085575Z",
            "date_published": null,
            "start_time": "2024-08-22T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/32F292DD0B56DFBF0DFE88153AFFE6B1/Kyhiskessu",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/32F292DD0B56DFBF0DFE88153AFFE6B1/Kyhiskessu",
                "en": "http://www.malmitalo.fi/en/events/event/32F292DD0B56DFBF0DFE88153AFFE6B1/Kyhiskessu"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kyhiskessu on Helsingissä vuonna 2022 Perustettu punk, hardcore ja rap-elementtejä yhdistelevä bändi.</p><p>Bändin sanoitukset perustuvat punk-musiikille tyypillisesti yhteiskunnallisten aiheiden ympärille.</p><p>Kyhiskessu julkaisu demo-EP:n syksyllä 2023 ja tammikuussa 2024 ensimmäisen albuminsa, joka kantaa nimeä ”KYHISKESSU”.</p>",
                "sv": "<p>Kyhiskessu är ett band som grundades i Helsingfors år 2022 och som kombinerar punk, hardcore och rap-element.</p><p>Som är typiskt för punkmusiken grundar sig bandets texter på samhälleliga ämnen.</p><p>Kyhiskessu släppte sin demo-EP hösten 2023 och sitt första album med namnet “KYHISKESSU” i januari 2024.</p>",
                "en": "<p>Kyhiskessu is a band that combines elements of punk, hardcore and rap from Helsinki, who formed in 2022.</p><p>Their lyrics are naturally focused on the society, as is usual of punk.</p><p>Kyhiskessu published a demo EP in autumn 2023, and their self-titled first album was released in January 2024.</p>"
            },
            "name": {
                "fi": "Kyhiskessu – Malmin tapahtumakesä",
                "sv": "Kyhiskessu – Malms evenemangssommar",
                "en": "Kyhiskessu – Malmi Summer of Events"
            },
            "short_description": {
                "fi": "Kyhiskessu on Helsingissä vuonna 2022 Perustettu punk, hardcore ja rap-elementtejä yhdistelevä bändi.",
                "sv": "Kyhiskessu är ett band som grundades i Helsingfors år 2022 och som kombinerar punk, hardcore och rap-element.",
                "en": "Kyhiskessu is a band that combines elements of punk, hardcore and rap from Helsinki, who formed in 2022."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63881/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64132",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151537,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T10:13:03.947190Z",
                    "last_modified_time": "2024-06-26T10:13:03.947203Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746693.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151537/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T10:13:03.936433Z",
            "last_modified_time": "2024-08-29T05:13:18.005324Z",
            "date_published": null,
            "start_time": "2024-08-22T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/32FF3503CAC86813FB8F83C8A3060EE3/Klezmer-rieha",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/32FF3503CAC86813FB8F83C8A3060EE3/Klezmerfest",
                "en": "http://www.espanlava.fi/en/events/event/32FF3503CAC86813FB8F83C8A3060EE3/Klezmer_Party"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Helsinki Klezmer Kapelye -yhtye on perustettu vuonna 2005 Helsinki Klezmer Festivaalin yhteydessä.</p><p>Perustamisestaan lähtien Helsinki Klezmer Kapelye on tehnyt klezmer-musiikkia ja jiddishinkielistä kulttuuria tunnetuksi suomalaiselle yleisölle. HKK on esiintynyt säännöllisesti konserteissa, festivaaleilla ja jameissa, joissa on laulettu, tanssittu ja kerran jopa vietetty häitäkin!</p><p>Helsinki Klezmer Kapelye kutsuu ja innostaa jatkuvasti uusia muusikoita soittamaan klezmer-musiikkia yhdessä! Tämä muusikkokollektiivi on ainoa Suomessa, joka esittää traditionaalista klezmer-musiikkia ja siten vie Itä-Euroopan vanhaa juutalaista kulttuuria eteenpäin. HKK on konsertoinut ahkerasti mm. Balderin salissa, Juttutuvassa, Tenho Restobarissa, G-Livelabissa, Kaustisen kansamusiikkifestivaalilla, Hauhon kartanossa, Tampeerella ja Hämeenlinnassa. Yhtye julkaisi ensimmäisen levynsä vuonna 2023.</p><p>Klezmerin juuret ulottuvat yli kahden tuhannen vuoden taakse: osa moodeista eli asteikoista on peräisin Jerusalemin Toisessa temppelissä lauletuista rukouksista. Klezmer-musiikki on Itä-Euroopan juutalaisten kansanmusiikkia ja juontaa juurensa keskiajan Eurooppaan. Klezmer on vauhdikasta tanssimusiikkia, jota on soitettu erilaisissa juhlissa ja häissä. 1800-luvun loppuun mennessä klezmer-musiikista oli tullut pitkälle kehittynyt musiikkityyli, joka keräsi vaikutteita sekä juutalaisesta kulttuurista että sen ulkopuolelta.</p>",
                "sv": "<p>Bandet Helsinki Klezmer Kapelye grundades år 2005 i samband med Helsinki Klezmer-festivalen.</p><p>Sedan bandet grundades har Helsinki Klezmer Kapelye gjort klezmermusik och jiddischspråkig kultur känd för den finländska publiken. HKK har regelbundet uppträtt på konserter, festivaler och jam där de har sjungit, dansat och till och med firat bröllop en gång!</p><p>Helsinki Klezmer Kapelye bjuder ständigt in och inspirerar nya musiker att spela klezmermusik tillsammans! Detta musikkollektiv är det enda i Finland som framför traditionell klezmermusik och därmed främjar den gamla östeuropeiska judiska kulturen. HKK har framträtt flitigt i bland annat Baldersalen, Juttutupa, Tenho Restobar, G-Livelab, på Kaustby folkmusikfestival, Hauho herrgård samt i Tammerfors och Tavastehus. Bandet släppte sitt första album år 2023.</p><p>Klezmermusikens rötter sträcker sig över två tusen år bakåt: en del av tonlägena, det vill säga skalorna, har sitt ursprung i de böner som sjöngs i Jerusalems andra tempel. Klezmermusiken är de östeuropeiska judarnas folkmusik och har sitt ursprung i det medeltida Europa. Klezmer är snabb dansmusik som har spelats på olika fester och bröllop. I slutet av 1800-talet hade klezmermusiken blivit en långt utvecklad musikalisk stil, som influerades både av den judiska kulturen och andra kulturer.</p>",
                "en": "<p>The Helsinki Klezmer Kapelye band was founded in 2005 in connection with the Helsinki Klezmer Festival</p><p>Since its foundation, Helsinki Klezmer Kapelye has made klezmer music and Yiddish culture known to the Finnish audience. HKK has regularly performed at concerts, festivals and jams where they have sung, danced and even celebrated weddings!</p><p>Helsinki Klezmer Kapelye consistently invites and inspires new musicians to play klezmer music together! This collective of musicians is the only one in Finland that performs traditional klezmer music and thus promotes the old Jewish culture of Eastern Europe. The HKK has performed diligently in the Balder Hall, Juttutupa, Tenho Restobar, G-Livelab, Kaustinen Folk Music Festival, Hauho Manor, Tampeere and Hämeenlinna. They released their first album in 2023.</p><p>Klezmer roots go back more than two thousand years: some of the modes, or scales, come from the prayers sung at the Second Temple in Jerusalem. Klezmer music is Jewish folk music from Eastern Europe that dates back to medieval Europe. Klezmer is fast-paced dance music that can be played at a variety of parties and weddings. By the end of the 19th century, klezmer music had become a highly developed style, drawing influences from both Jewish and non-Jewish cultures.</p>"
            },
            "name": {
                "fi": "Klezmer-rieha – Open Stage",
                "sv": "Klezmerfest – Open Stage",
                "en": "Klezmer Party – Open Stage"
            },
            "short_description": {
                "fi": "Helsinki Klezmer Kapelye -yhtye on perustettu vuonna 2005 Helsinki Klezmer Festivaalin yhteydessä.",
                "sv": "Bandet Helsinki Klezmer Kapelye grundades år 2005 i samband med Helsinki Klezmer-festivalen.",
                "en": "The Helsinki Klezmer Kapelye band was founded in 2005 in connection with the Helsinki Klezmer Festival"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64132/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64131",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151536,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-26T10:13:03.875784Z",
                    "last_modified_time": "2024-06-26T10:13:03.875799Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746694.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151536/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-26T10:13:03.865215Z",
            "last_modified_time": "2024-08-29T05:13:17.954649Z",
            "date_published": null,
            "start_time": "2024-08-22T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/66BC1E0C25A6F2D6A35DA44DF3F84E7D/Blues_Bizarre",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/66BC1E0C25A6F2D6A35DA44DF3F84E7D/Blues_Bizarre",
                "en": "http://www.espanlava.fi/en/events/event/66BC1E0C25A6F2D6A35DA44DF3F84E7D/Blues_Bizarre"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Blues Bizarre on suomalaisen modernin bluesin uusin nimi!</p><p>Yhtyeen musiikissa perinteisen juurevan bluesin kanssa sekoittuvat useat eri vaikutteet aina itämaisista sävyistä psykedeeliseen bluesiin. Vahvan jam band -pohjansa sekä omien kappaleidensa laajan kirjon ansiosta Blues Bizarre on vakiinnuttamassa asemaansa yhtenä Suomen bluesin omaperäisimmistä edustajista.</p><p><b>Kokoonpano:</b><br>Sylvi Saarekas, kitara ja laulu<br>Marko Karppi, kitara<br>Nikolas Rissanen, basso<br>Leevi Heikkilä, rummut</p>",
                "sv": "<p>Blues Bizarre är det nyaste namnet inom den moderna finländska bluesen!</p><p>I bandets musik sammansmälter flera olika intryck, allt från orientaliska toner till psykedelisk blues, med traditionellt robust blues. Tack vare sin starka jam band-bas och det stora antalet egna låtar håller Blues Bizarre på att etablera sig som en av de mest originella representanterna för den finländska bluesen.</p><p>Ensemble:<br>Sylvi Saarekas, gitarr och sång<br>Marko Karppi, gitarr<br>Nikolas Rissanen, bas<br>Leevi Heikkilä, trummor</p>",
                "en": "<p>Blues Bizarre is the freshest name in Finnish modern blues!</p><p>The band's music blends several influences, mixing traditional roots blues with oriental tones and psychedelic blues, among others. Thanks to its strong jam band base and the wide variety of original songs, Blues Bizarre is establishing itself as one of the most original representatives of Finnish blues.</p><p>Ensemble:<br>Sylvi Saarekas, guitar and vocals<br>Marko Karppi, guitar<br>Nikolas Rissanen, bass<br>Leevi Heikkilä, drums</p>"
            },
            "name": {
                "fi": "Blues Bizarre – Open Stage",
                "sv": "Blues Bizarre – Open Stage",
                "en": "Blues Bizarre – Open Stage"
            },
            "short_description": {
                "fi": "Blues Bizarre on suomalaisen modernin bluesin uusin nimi!",
                "sv": "Blues Bizarre är det nyaste namnet inom den moderna finländska bluesen!",
                "en": "Blues Bizarre is the freshest name in Finnish modern blues!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64131/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63878",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151279,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-23T08:19:46.345790Z",
                    "last_modified_time": "2024-05-23T08:19:46.345803Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744928.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151279/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-23T08:19:46.329736Z",
            "last_modified_time": "2024-08-29T05:13:17.902855Z",
            "date_published": null,
            "start_time": "2024-08-21T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DC6777CABCA03BC74FE79020F0DD7F2C/Maria_Ylipaa_Marzi_Nyman",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/DC6777CABCA03BC74FE79020F0DD7F2C/Maria_Ylipaa_Marzi_Nyman",
                "en": "http://www.malmitalo.fi/en/events/event/DC6777CABCA03BC74FE79020F0DD7F2C/Maria_Ylipaa_Marzi_Nyman"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kamarimusiikillinen konsertti täynnä suurta tunnetta ja syvää musiikillista yhteyttä; virtuositeettia kaihtamatta, rakkaudella!</p><p>Kaksi monialaista ja karismaattista muusikkoa kohtaavat intensiivisessä musiikkilajien yhteentörmäyksessä, jossa jokainen ilta on erilainen. Irtonainen improvisaatio ryydittää sekä kaikkien rakastamia klassikkokappaleita että suomalaiseen runouteen sävellettyä taidemusiikkia.</p><p><b>Maria Ylipää</b> on Suomen valovoimaisimpiin taiteilijoihin kuuluva laulaja-näyttelijä, joka tunnetaan lukuisista musiikkiteatteri-, elokuva- ja tv-rooleistaan. Musiikin saralla hänet tunnetaan monipuolisena tulkitsijana, joka on kotonaan lavalla niin jazz-yhtyeiden, big bandien kuin sinfoniaorkesterienkin solistina.</p><p><b>Marzi Nyman</b> syntyi vuonna 1979 Lohjalla. Musikaaliset vanhemmat laittoivat hänet pianotunneille 6-vuotiaana. Marzi opiskelikin klassista pianoa 10 vuotta, kunnes teini-iässä tajusi, että kitara on kaikkien soittimien kuningas, ja aloitti sen opiskelun intohimoisesti. Marzi Nyman aloitti opinnot Sibelius-Akatemian jazz-osastolla vuonna 1998. Tällä hetkellä opinnot jatkuvat keskittyen pääasiassa säveltämiseen. Erilaiset esiintymiset ja musiikin tekeminen ovat Marzille erityinen kiinnostuksen kohde. Hän on säveltänyt teoksia orkestereille, kamariyhtyeille, teatteriin ja elokuviin sekä soolomateriaalia itselleen. Ylipää & Ystävät-yhtyeen ohella Marzi on esiintynyt moninaisten yhtyeiden jakokoonpanojen kanssa niin Suomessa kuin ulkomaillakin.</p><p>Marzi on nähty yhteistyössä muun muassa Steve Vain, Anne Sofie von Otterin, Lenny Pickettin, Tim Riesin (The Rolling Stones), Anu Komsin, Osmo Vänskän, Hannu Linnun, Igudesman & Joo (The League of Xtrordinary Musicians)-yhtyeen ja Pekka Kuusiston kanssa. Marzi Nyman on valittu vuonna 2003 Vuoden Pori Jazz-taiteilijaksi. Arvostetun Suomen Teosto-palkinnon hän voitti vuonna 2006. Uteliaisuus ja halu olla yhteydessä ihmisiin ovat asioita, jotka ohjaavat Marzi Nymania ja vievät häntä eteenpäin.</p>",
                "sv": "<p>En kammarmusikalisk konsert full av stora känslor och djup musikalisk kontakt; utan att dra sig för virtuositet, med kärlek!</p><p>Två mångsysslande och karismatiska musiker möts i en intensiv kollision mellan musikgenrer, där varje kväll är annorlunda. Avslappnad improvisation smaksätter både klassiska låtar älskade av alla och konstmusik som har komponerats till finländsk poesi.</p><p><b>Maria Ylipää</b> är en sångerska-skådespelerska som tillhör Finlands populäraste konstnärer, och som är känd för sina talrika roller inom musikteater, film och tv. Inom musiken är hon känd som en mångsidig tolkare, och hon känner sig hemma på scenen som solist både för jazzband, big band och sinfoniorkestrar.</p>",
                "en": "<p>A chamber music concert with an emotional punch and a deep musical connection; full of virtuosity and love!</p><p>Two multi-talented and charismatic musicians come together in an intensive mix of musical genres – every performance is different. Loose improvisation spices up both well-loved classic songs as well as art music written with Finnish poetry as the basis.</p><p><b>Maria Ylipää</b> is one of Finland’s most prominent artists, a singer-actor known for a multitude of musical theatre, movie and TV roles. In music, she is known as an excellent vocalist who is at home stage, whether she’s singing for a jazz band, big band or a symphonic orchestra.</p>"
            },
            "name": {
                "fi": "Maria Ylipää & Marzi Nyman – Malmin tapahtumakesä",
                "sv": "Maria Ylipää & Marzi Nyman – Malms evenemangssommar",
                "en": "Maria Ylipää & Marzi Nyman – Malmi Summer of Events"
            },
            "short_description": {
                "fi": "Kamarimusiikillinen konsertti täynnä suurta tunnetta ja syvää musiikillista yhteyttä; virtuositeettia kaihtamatta, rakkaudella!",
                "sv": "En kammarmusikalisk konsert full av stora känslor och djup musikalisk kontakt; utan att dra sig för virtuositet, med kärlek!",
                "en": "A chamber music concert with an emotional punch and a deep musical connection; full of virtuosity and love!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63878/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63669",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "22,5 + tilausmaksu"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-rakasta-hiljaa-musiikkiteatterinaeytelmae-vuotalo-18681176/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151097,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-13T07:12:46.906139Z",
                    "last_modified_time": "2024-05-13T07:12:46.906156Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750221.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151097/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-13T07:12:46.862358Z",
            "last_modified_time": "2024-08-29T05:13:17.836538Z",
            "date_published": null,
            "start_time": "2024-08-21T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/032D4DED6D2B602D34607CA89D3B1D4C/RAKASTA_HILJAA_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Humoristinen musiikkinäytelmä vailla vertaa!</p><p>Musiikkinäytelmä Rakasta Hiljaa kunnioittaa L. Onervan tunnetun Hilja Onerva Lehtisen muistoa.<br>L. Onervan syntymästä tuli vuonna 2022 kuluneeksi 140 vuotta.<br>L. Onerva, Eino Leino ja Leevi Madetoja jättivät kaikki kolme jälkensä suomalaiseen kulttuurihistoriaan. Heidän kykynsä ja saavutuksensa ovat inspiroineet kirjailijoita, runoilijoita ja säveltäjiä sukupolvien ajan.</p><p>Onervan, Leinon ja Madetojan kolmiodraama näyttäytyi ulkopuolelle parhaiten taiteilijoiden omissa teoksissa sekä keskinäisessä kirjeenvaihdossaan.<br>Onervan ja Leinon ystävyys ja rakkaus oli ikuista.  Vaikka Onervan rakkaus Leinoon ei koskaan kuollut, hän avioitui ja eli Leevi Madetojan kanssa.</p><p>Onerva suljettiin - voisi jopa sanoa, että vangittiin - 1940-luvulla Nikkilän psykiatriseen sairaalaan kuudeksi pitkäksi vuodeksi – eräiden kertomusten mukaan, jotta Madetojan alkoholismi saataisiin parannettua \"juomiskimmokkeen poistuttua\" - eli vaimonsa. Madetojan kuoleman jälkeen Onerva pian vapautettiin \"parantuneena\". Hän eli pitkän elämän ja työskenteli melkein elämänsä loppuun saakka kirjoittamisen parissa.</p><p>Rakasta Hiljaa! - näytelmä myötäelää kepein ottein Onervan, Leinon ja Madetojan välistä kolmiota sen alkuaikoina.</p><p>Näytelmään sävellettyjen kappaleiden lyriikat ovat muutamaa poikkeusta lukuunottamatta peräisin Onervan ja Leinon kirjeistä ja runoista.</p><p>Lavalla: Mia Kavasto ja Salla Markkanen<br>Käsikirjoitus ja sovitus: Mia Kavasto<br>Musiikit: Mia Kavasto ja Salla Markkanen<br>Nukkejen rakennus ja nukkeohjaus: Kimmo Tähtivirta<br>Juliste ja kuva: Teemu Kavasto</p><p>Liput:<br>22,50 €<br>Kesto: 1,5h , sis.väliaika<br>Ikäraja: Suositellaan yli 10 vuotiaille.</p>"
            },
            "name": {
                "fi": "RAKASTA HILJAA! – Helsingin Teatteriakatemia esittää:"
            },
            "short_description": {
                "fi": "Humoristinen musiikkinäytelmä vailla vertaa!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63669/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": 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",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752179.jpg",
                    "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,
            "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_"
            },
            "provider_contact_info": null,
            "provider": null,
            "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?"
            },
            "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?"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64354/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}