Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&hide_recurring_children=true&page=6
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 22597,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=5"
    },
    "data": [
        {
            "id": "kulke:68401",
            "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:223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?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/kulke:759/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:761/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18311/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-13T13:13:22.150042Z",
            "last_modified_time": "2026-06-05T12:13:53.370597Z",
            "date_published": null,
            "start_time": "2026-08-24T14:00:00Z",
            "end_time": "2027-05-10T15: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,
            "name": {
                "fi": "Sydkustens ordskola: Skriftstojarna – 7–8-vuotiaat, 2018-2019 syntyneet",
                "sv": "Sydkustens ordskola: Skriftstojarna – 7–8-åringar, född 2018-2019",
                "en": "Sydkustens ordskola: Skriftstojarna – 7–8-year-olds, born 2018-2019"
            },
            "provider": null,
            "short_description": {
                "fi": "Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!",
                "sv": "Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!",
                "en": "Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!</p><p>Sydkustens ordkonstskola järjestää sanataidetta laaja oppimäärän mukaisena taiteen perusopetuksena. Tunneilla saat keksiä omia tarinoita, luoda ja kirjoittaa sekä runoutta, proosaa että draamaa. Saat tukea luoville ideoillesi, palautetta teksteistäsi ja mahdollisuuden kehittyä omaan tahtiisi. Opetus noudattaa sanataidekoulun opetussuunnitelmaa, joka löytyy osoitteesta ordkonst.fi. Opetuskieli ruotsi.</p><p>Ryhmissä on 14 oppituntia syyslukukaudella ja 16 oppituntia kevätlukukaudella. Hinta on 140 €/lukukausi 60 minuutin oppitunneille ja 180 €/lukukausi 90 minuutin oppitunneille. Hintaan sisältyy valinnainen kirjallisuuskurssi. Ilmoittautuminen avautuu 27.4.2026 osoitteessa sydkusten.eepos.fi</p>",
                "sv": "<p>Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!</p><p>Sydkustens ordkonstskola arrangerar ordkonst som grundläggande konstundervisning enligt fördjupad lärokurs. Under lektionerna får du fantisera fram egna berättelser, skapa och skriva både poesi, prosa och dramatik. Du får stöd för dina kreativa idéer, respons på dina texter och får utvecklas i egen takt. Undervisningen följer ordkonstskolans läroplan som finns på ordkonst.fi.</p><p>Grupperna har 14 lektioner under höstterminen och 16 lektioner under vårterminen. Avgiften är 140 €/ termin för 60 minuter långa och 180 €/termin för 90 minuter långa lektioner. I avgiften ingår en valfri litteraturkurs. Anmälan öppnas 27.4.2026 på sydkusten.eepos.fi</p>",
                "en": "<p>Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!</p><p>Sydkustens ordkonstskola arranges creative writing as basic arts education according to the advanced syllabus. During lessons, you get to create your own stories and produce poetry, prose, and drama. You'll receive support for your creative ideas, feedback on your texts, and get to develop at your own pace. The teaching follows the school’s curriculum, which can be found at ordkonst.fi. The language of instruction is Swedish.</p><p>​The groups have 14 lessons during the autumn semester and 16 lessons during the spring semester. The fee is 140 €/semester for 60-minute lessons and 180 €/semester for 90-minute lessons. An optional literature course is included in the fee. Registration opens April 27, 2026, at sydkusten.eepos.fi.</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/84F17232D38D8E67EE789C8C82E940DA/Sydkustens_ordskola_Skriftstojarna",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/84F17232D38D8E67EE789C8C82E940DA/Sydkustens_ordskola_Skriftstojarna",
                "en": "http://www.annantalo.fi/en/events/event/84F17232D38D8E67EE789C8C82E940DA/Sydkustens_ordskola_Skriftstojarna"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68401/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68400",
            "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:301/?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/kulke:759/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:761/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18311/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-13T13:13:21.652567Z",
            "last_modified_time": "2026-06-05T12:13:52.975442Z",
            "date_published": null,
            "start_time": "2026-08-24T13:00:00Z",
            "end_time": "2027-05-17T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sydkustens ordkonstskola: Sagospirarna – 6-vuotiaat, 2020 syntyneet",
                "sv": "Sydkustens ordkonstskola: Sagospirarna – 6-åringar, född 2020",
                "en": "Sydkustens ordkonstskola: Sagospirarna – 6-year-olds, born 2020"
            },
            "provider": null,
            "short_description": {
                "fi": "Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!",
                "sv": "Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!",
                "en": "Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!</p><p>Sydkustens ordkonstskola järjestää sanataidetta laaja oppimäärän mukaisena taiteen perusopetuksena. Tunneilla saat keksiä omia tarinoita, luoda ja kirjoittaa sekä runoutta, proosaa että draamaa. Saat tukea luoville ideoillesi, palautetta teksteistäsi ja mahdollisuuden kehittyä omaan tahtiisi. Opetus noudattaa sanataidekoulun opetussuunnitelmaa, joka löytyy osoitteesta ordkonst.fi. Opetuskieli ruotsi.</p><p>Ryhmissä on 14 oppituntia syyslukukaudella ja 16 oppituntia kevätlukukaudella. Hinta on 140 €/lukukausi 60 minuutin oppitunneille ja 180 €/lukukausi 90 minuutin oppitunneille. Hintaan sisältyy valinnainen kirjallisuuskurssi. Ilmoittautuminen avautuu 27.4.2026 osoitteessa sydkusten.eepos.fi</p>",
                "sv": "<p>Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!</p><p>Sydkustens ordkonstskola arrangerar ordkonst som grundläggande konstundervisning enligt fördjupad lärokurs. Under lektionerna får du fantisera fram egna berättelser, skapa och skriva både poesi, prosa och dramatik. Du får stöd för dina kreativa idéer, respons på dina texter och får utvecklas i egen takt. Undervisningen följer ordkonstskolans läroplan som finns på ordkonst.fi.</p><p>Grupperna har 14 lektioner under höstterminen och 16 lektioner under vårterminen. Avgiften är 140 €/ termin för 60 minuter långa och 180 €/termin för 90 minuter långa lektioner. I avgiften ingår en valfri litteraturkurs. Anmälan öppnas 27.4.2026 på sydkusten.eepos.fi</p>",
                "en": "<p>Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!</p><p>Sydkustens ordkonstskola arranges creative writing as basic arts education according to the advanced syllabus. During lessons, you get to create your own stories and produce poetry, prose, and drama. You'll receive support for your creative ideas, feedback on your texts, and get to develop at your own pace. The teaching follows the school’s curriculum, which can be found at ordkonst.fi. The language of instruction is Swedish.</p><p>​The groups have 14 lessons during the autumn semester and 16 lessons during the spring semester. The fee is 140 €/semester for 60-minute lessons and 180 €/semester for 90-minute lessons. An optional literature course is included in the fee. Registration opens April 27, 2026, at sydkusten.eepos.fi.</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4C5A8CCFA7D94C38F96E4AF5917445B7/Sydkustens_ordkonstskola_Sagospirarna",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/4C5A8CCFA7D94C38F96E4AF5917445B7/Sydkustens_ordkonstskola_Sagospirarna",
                "en": "http://www.annantalo.fi/en/events/event/4C5A8CCFA7D94C38F96E4AF5917445B7/Sydkustens_ordkonstskola_Sagospirarna"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68400/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68399",
            "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:223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?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/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:761/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18311/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-13T13:13:20.855605Z",
            "last_modified_time": "2026-06-05T12:13:52.355535Z",
            "date_published": null,
            "start_time": "2026-08-24T13:00:00Z",
            "end_time": "2027-05-10T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sydkustens ordkonstskola: Gestaltningsgänget – 9–10-vuotiaat, 2016-2017 syntyneet",
                "sv": "Sydkustens ordkonstskola: Gestaltningsgänget – 9–10-åringar, född 2016-2017",
                "en": "Sydkustens ordkonstskola: Gestaltningsgänget – 9–10-year-olds, born 2016-2017"
            },
            "provider": null,
            "short_description": {
                "fi": "Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!",
                "sv": "Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!",
                "en": "Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!</p><p>Sydkustens ordkonstskola järjestää sanataidetta laaja oppimäärän mukaisena taiteen perusopetuksena. Tunneilla saat keksiä omia tarinoita, luoda ja kirjoittaa sekä runoutta, proosaa että draamaa. Saat tukea luoville ideoillesi, palautetta teksteistäsi ja mahdollisuuden kehittyä omaan tahtiisi. Opetus noudattaa sanataidekoulun opetussuunnitelmaa, joka löytyy osoitteesta ordkonst.fi. Opetuskieli ruotsi.</p><p>Ryhmissä on 14 oppituntia syyslukukaudella ja 16 oppituntia kevätlukukaudella. Hinta on 140 €/lukukausi 60 minuutin oppitunneille ja 180 €/lukukausi 90 minuutin oppitunneille. Hintaan sisältyy valinnainen kirjallisuuskurssi. Ilmoittautuminen avautuu 27.4.2026 osoitteessa sydkusten.eepos.fi</p>",
                "sv": "<p>Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!</p><p>Sydkustens ordkonstskola arrangerar ordkonst som grundläggande konstundervisning enligt fördjupad lärokurs. Under lektionerna får du fantisera fram egna berättelser, skapa och skriva både poesi, prosa och dramatik. Du får stöd för dina kreativa idéer, respons på dina texter och får utvecklas i egen takt. Undervisningen följer ordkonstskolans läroplan som finns på ordkonst.fi.</p><p>Grupperna har 14 lektioner under höstterminen och 16 lektioner under vårterminen. Avgiften är 140 €/ termin för 60 minuter långa och 180 €/termin för 90 minuter långa lektioner. I avgiften ingår en valfri litteraturkurs. Anmälan öppnas 27.4.2026 på sydkusten.eepos.fi</p>",
                "en": "<p>Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!</p><p>Sydkustens ordkonstskola arranges creative writing as basic arts education according to the advanced syllabus. During lessons, you get to create your own stories and produce poetry, prose, and drama. You'll receive support for your creative ideas, feedback on your texts, and get to develop at your own pace. The teaching follows the school’s curriculum, which can be found at ordkonst.fi. The language of instruction is Swedish.</p><p>​The groups have 14 lessons during the autumn semester and 16 lessons during the spring semester. The fee is 140 €/semester for 60-minute lessons and 180 €/semester for 90-minute lessons. An optional literature course is included in the fee. Registration opens April 27, 2026, at sydkusten.eepos.fi.</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D18B7782830B3204DC68C08E90C692B2/Sydkustens_ordkonstskola_Gestaltningsganget",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D18B7782830B3204DC68C08E90C692B2/Sydkustens_ordkonstskola_Gestaltningsganget",
                "en": "http://www.annantalo.fi/en/events/event/D18B7782830B3204DC68C08E90C692B2/Sydkustens_ordkonstskola_Gestaltningsganget"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68399/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agpjo5xsdy",
            "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/kultus:16/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:56/?format=api"
                }
            ],
            "created_time": "2026-06-05T11:06:55.453926Z",
            "last_modified_time": "2026-06-05T11:21:34.117393Z",
            "date_published": null,
            "start_time": "2026-06-10T12:00:00Z",
            "end_time": "2026-06-10T13: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": "2026-06-05T14:10:00+03:00",
            "enrolment_end_time": "2026-06-09T15:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kulttuuripolku",
                "sv": "",
                "en": ""
            },
            "provider": null,
            "short_description": {
                "fi": "Kulttuuripolku",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kulttuuripolku</p>\n",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agpjo5xsdy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agk2h3lsgq",
            "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/kultus:11/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:16/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api"
                }
            ],
            "created_time": "2025-03-17T11:46:42.411966Z",
            "last_modified_time": "2026-06-05T11:21:13.002405Z",
            "date_published": null,
            "start_time": "2026-06-17T08:00:00Z",
            "end_time": "2026-06-17T10: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": "2026-06-05T14:30:00+03:00",
            "enrolment_end_time": "2026-06-16T11:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Test 3",
                "sv": "",
                "en": ""
            },
            "provider": null,
            "short_description": {
                "fi": "aadfadf",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>dfasdfas</p>\n",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agk2h3lsgq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69257",
            "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:732/?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:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "15 € / 7 €",
                        "sv": "15 € / 7 €",
                        "en": "15 € / 7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702289/",
                        "sv": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702289/",
                        "en": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702289/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384978,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T10:13:51.038594Z",
                    "last_modified_time": "2026-06-05T10:13:51.038609Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791969.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384978/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T10:13:50.907707Z",
            "last_modified_time": "2026-06-05T10:13:51.192605Z",
            "date_published": null,
            "start_time": "2026-11-01T11: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,
            "name": {
                "fi": "Old Forest Echoes – Ikimetsän kaiku: immersiivinen luontokonsertti – Caisa 30 Club",
                "sv": "Old Forest Echoes – Ikimetsän kaiku: immersiivinen luontokonsertti – Caisa 30 Club",
                "en": "Old Forest Echoes – Ikimetsän kaiku: Immersive Nature Concert – Caisa 30 Club"
            },
            "provider": null,
            "short_description": {
                "fi": "Old Forest Echoes – Ikimetsän kaiku on konserttikokemus, joka kasvaa halusta suojella Suomen ikimetsiä.",
                "en": "Old Forest Echoes – Ikimetsän kaiku is a concert experience grown from a desire to protect the old-growth forests of Finland."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Old Forest Echoes – Ikimetsän kaiku on konserttikokemus, joka kasvaa halusta suojella Suomen ikimetsiä.</p><p>Se on kansainvälisesti arvostetun multi-instrumentalisti <b>Barbora Xun</b> (Barbora Šilhánová) visio. Xu teki taiteellista tutkimustyötä näissä metsissä neljän kuukauden ajan, ja nyt hän tuo luonnosta inspiraationsa saaneen musiikkinsa kaupunkilaisyleisölle, immersiivessä sisätilakokemuksessa. Suomalaisten ikimetsien tunnelma saapuu kaupunkiin kanteleen, kiinalaisen sitran ja laulun ympärille rakentuvassa konsertissa, jota täydentävät video ja metsän äänet.</p><p>Esitys tapahtuu ympäristötaiteilija <b>Tommi Laineen</b> luonnonmateriaaleista rakentamassa sisämetsäinstallaatiossa. <b>Mikko Haapojan</b> äänimaisemainstallaatio yhdistää Barboran metsässä viettämän ajan kenttänauhoituksia ja kuvaaja <b>Ville Tantun</b> kuvaamaa videomateriaalia.</p><p><b>Työryhmä:</b><br><b>Barbora Xu/Barbora Šilhánová</b>: ohjaus, luontomusiikkitaiteilija <br><b>Mikko H. Haapoja</b>: äänimaisemainstallaatio ja ääniteknikko <br><b>Ville Tanttu</b>: videoprojektio <br><b>Tommi Laine</b>: ympäristötaiteilija, sisämetsäinstallaatio <br><b>Milla Aalto</b>: metsäasiantuntija   <br><b>Carly Markkanen</b>: tuottaja</p><p>Teosta on tukenut Koneen säätiö yhteistyössä Luontoliiton kanssa.</p><p><b>Luento ja työpajat</b></p><p>60-minuuttista konserttia täydentää lauantaina 31. lokakuuta esitykseen liittyvä luento Suomen aarniometsistä, jonka pitää Luontoliiton metsäasiantuntija <b>Milla Aalto</b>. Sunnuntaina 1. marraskuuta järjestetään eri kohderyhmille suunnattuja musiikkityöpajoja, mukaan lukien pidempi sessio aikuisille ja lyhyempi työpaja lapsiperheille.</p><p>Työpajoissa esityksen teemoja syvennetään samassa immersiivisessä ympäristössä. 45 tai 90 minuutin mittaisissa sessioissa tutkimme, kuuntelemme ja tulemme osaksi aarniometsien tunnelmaa ohjattujen aistimatkojen kautta.</p><p>Työpajat pidetään suomeksi ja englanniksi.</p><p><b>Sunnuntai 1. marraskuuta</b><br><i>– Ikimetsän kaiku perhetyöpaja –</i><br><b>13.00</b> | Perhetyöpaja kaikenikäisille: leikkisiä ja mukaansatempaavia metsästä inspiraationsa saaneita musiikkitoimintoja. Osallistuminen vapaaehtoista. <br><i>– Ikimetsän kaiku konsertti – Caisa 30 Club –</i><br><b>14.00</b> | Johdanto ja konsertti: Old Forest Echoes – Ikimetsän kaiku<br><i>– Ikimetsän kaiku työpaja –</i><br><b>15.15</b> | Työpaja kaikille: johdanto ikimetsiin ja opastettu aistimatka. Osallistuminen vapaaehtoista.</p>",
                "en": "<p>Old Forest Echoes – Ikimetsän kaiku is a concert experience grown from a desire to protect the old-growth forests of Finland.</p><p>It is the vision of internationally acclaimed multi-instrumentalist <b>Barbora Xu</b> (Barbora Šilhánová), who, after four months of artistic research in these forests, now brings her nature-inspired music to urban audiences as an immersive indoor experience. With kantele, Chinese zither and voice at its core, accompanied by video and sounds of the woods, the concert brings the atmosphere of Finnish old-growth forests into the city.</p><p>The performance takes place within an indoor forest installation made from natural materials by environmental artist <b>Tommi Laine</b>. A soundscape installation by <b>Mikko Haapoja</b> combines field recordings from Barbora’s time in the forest with footage captured by cinematographer <b>Ville Tanttu</b>.</p><p><b>Working group:</b><br><b>Barbora Xu/Barbora Šilhánová</b>: director, nature music artist <br><b>Mikko H. Haapoja</b>: soundscape installation and sound technician <br><b>Ville Tanttu</b>: video projections <br><b>Tommi Laine</b>: environmental artist, indoors forest installation <br><b>Milla Aalto</b>: forests expert   <br><b>Carly Markkanen</b>: producer  <br> <br>Supported by Kone Foundation in collaboration with Luontoliitto.</p><p><b>Talk and workshops</b></p><p>The 60-minute concert is complemented on Saturday 31 October by a pre-performance talk on Finnish old-growth forests by forests expert <b>Milla Aalto </b>of Luontoliitto (The Finnish Nature Association). On Sunday 1 November, music workshops for different audiences, including a longer session for adults and a shorter workshop for families with children, are held.</p><p>In the workshops, the themes of the performance are expanded upon within the same immersive setting. During the 45 or 90-minute sessions, we will explore, listen, and connect with the atmosphere of old-growth forests through a guided sensory journey.</p><p>The workshops are instructed in Finnish and English.</p><p><b>Sunday 1 November</b><br><i>– Old Forest Echoes: Family workshop –</i><br><b>13.00</b> | Family workshop for all ages: playful and engaging forest-inspired musical activities. Participation optional. <br><i>– Old Forest Echoes Concert – Caisa 30 Club –</i><br><b>14.00</b> | Introduction and concert: Old Forest Echoes – Ikimetsän kaiku<br><i>– Old Forest Echoes: Worshop for general audiences –</i><br><b>15.15</b> | Workshop for general audiences: introduction to old-growth forests and a guided sensory journey. Participation optional.</p>"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/8376C1D627E9F010009A7F12E757C791/Old_Forest_Echoes_Ikimetsan_kaiku_immersiivinen_luontokonsertti",
                "sv": "http://www.caisa.fi/sv/evenemang/event/8376C1D627E9F010009A7F12E757C791/Old_Forest_Echoes_Ikimetsan_kaiku_immersiivinen_luontokonsertti",
                "en": "http://www.caisa.fi/en/events/event/8376C1D627E9F010009A7F12E757C791/Old_Forest_Echoes_Ikimetsan_kaiku_Immersive_Nature_Concert"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69257/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69256",
            "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:732/?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:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "15 € / 7 €",
                        "sv": "15 € / 7 €",
                        "en": "15 € / 7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702288/",
                        "sv": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702288/",
                        "en": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702288/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384977,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T10:13:50.515960Z",
                    "last_modified_time": "2026-06-05T10:13:50.515973Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791966.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384977/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T10:13:50.350075Z",
            "last_modified_time": "2026-06-05T10:13:50.726213Z",
            "date_published": null,
            "start_time": "2026-10-31T16: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,
            "name": {
                "fi": "Old Forest Echoes – Ikimetsän kaiku: immersiivinen luontokonsertti – Caisa 30 Club",
                "sv": "Old Forest Echoes – Ikimetsän kaiku: immersiivinen luontokonsertti – Caisa 30 Club",
                "en": "Old Forest Echoes – Ikimetsän kaiku: Immersive Nature Concert – Caisa 30 Club"
            },
            "provider": null,
            "short_description": {
                "fi": "Old Forest Echoes – Ikimetsän kaiku on konserttikokemus, joka kasvaa halusta suojella Suomen ikimetsiä.",
                "en": "Old Forest Echoes – Ikimetsän kaiku is a concert experience grown from a desire to protect the old-growth forests of Finland."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Old Forest Echoes – Ikimetsän kaiku on konserttikokemus, joka kasvaa halusta suojella Suomen ikimetsiä.</p><p>Se on kansainvälisesti arvostetun multi-instrumentalisti <b>Barbora Xun</b> (Barbora Šilhánová) visio. Xu teki taiteellista tutkimustyötä näissä metsissä neljän kuukauden ajan, ja nyt hän tuo luonnosta inspiraationsa saaneen musiikkinsa kaupunkilaisyleisölle, immersiivessä sisätilakokemuksessa. Suomalaisten ikimetsien tunnelma saapuu kaupunkiin kanteleen, kiinalaisen sitran ja laulun ympärille rakentuvassa konsertissa, jota täydentävät video ja metsän äänet.</p><p>Esitys tapahtuu ympäristötaiteilija <b>Tommi Laineen</b> luonnonmateriaaleista rakentamassa sisämetsäinstallaatiossa. <b>Mikko Haapojan</b> äänimaisemainstallaatio yhdistää Barboran metsässä viettämän ajan kenttänauhoituksia ja kuvaaja <b>Ville Tantun</b> kuvaamaa videomateriaalia.</p><p><b>Työryhmä:</b><br><b>Barbora Xu/Barbora Šilhánová</b>: ohjaus, luontomusiikkitaiteilija <br><b>Mikko H. Haapoja</b>: äänimaisemainstallaatio ja ääniteknikko <br><b>Ville Tanttu</b>: videoprojektio <br><b>Tommi Laine</b>: ympäristötaiteilija, sisämetsäinstallaatio <br><b>Milla Aalto</b>: metsäasiantuntija   <br><b>Carly Markkanen</b>: tuottaja</p><p>Teosta on tukenut Koneen säätiö yhteistyössä Luontoliiton kanssa.</p><p><b>Luento ja työpajat</b></p><p>60-minuuttista konserttia täydentää lauantaina 31. lokakuuta esitykseen liittyvä luento Suomen aarniometsistä, jonka pitää Luontoliiton metsäasiantuntija <b>Milla Aalto</b>. Sunnuntaina 1. marraskuuta järjestetään eri kohderyhmille suunnattuja musiikkityöpajoja, mukaan lukien pidempi sessio aikuisille ja lyhyempi työpaja lapsiperheille.</p><p>Työpajoissa esityksen teemoja syvennetään samassa immersiivisessä ympäristössä. 45 tai 90 minuutin mittaisissa sessioissa tutkimme, kuuntelemme ja tulemme osaksi aarniometsien tunnelmaa ohjattujen aistimatkojen kautta.</p><p>Työpajat pidetään suomeksi ja englanniksi.</p><p><b>Lauantai 31. lokakuuta  </b><br><i>– Ikimetsän kaiku konsertti – Caisa 30 Club –</i><br><b>18.30</b> | Johdanto ikimetsiin: Luontoliiton metsäasiantuntija Milla Aallon luento<br><b>19.00</b> | Johdanto ja konsertti: Old Forest Echoes – Ikimetsän kaiku</p>",
                "en": "<p>Old Forest Echoes – Ikimetsän kaiku is a concert experience grown from a desire to protect the old-growth forests of Finland.</p><p>It is the vision of internationally acclaimed multi-instrumentalist <b>Barbora Xu</b> (Barbora Šilhánová), who, after four months of artistic research in these forests, now brings her nature-inspired music to urban audiences as an immersive indoor experience. With kantele, Chinese zither and voice at its core, accompanied by video and sounds of the woods, the concert brings the atmosphere of Finnish old-growth forests into the city.</p><p>The performance takes place within an indoor forest installation made from natural materials by environmental artist <b>Tommi Laine</b>. A soundscape installation by <b>Mikko Haapoja</b> combines field recordings from Barbora’s time in the forest with footage captured by cinematographer <b>Ville Tanttu</b>.</p><p><b>Working group:</b><br><b>Barbora Xu/Barbora Šilhánová</b>: director, nature music artist <br><b>Mikko H. Haapoja</b>: soundscape installation and sound technician <br><b>Ville Tanttu</b>: video projections <br><b>Tommi Laine</b>: environmental artist, indoors forest installation <br><b>Milla Aalto</b>: forests expert   <br><b>Carly Markkanen</b>: producer  <br> <br>Supported by Kone Foundation in collaboration with Luontoliitto.</p><p><b>Talk and workshops</b></p><p>The 60-minute concert is complemented on Saturday 31 October by a pre-performance talk on Finnish old-growth forests by forests expert <b>Milla Aalto </b>of Luontoliitto (The Finnish Nature Association). On Sunday 1 November, music workshops for different audiences, including a longer session for adults and a shorter workshop for families with children, are held.</p><p>In the workshops, the themes of the performance are expanded upon within the same immersive setting. During the 45 or 90-minute sessions, we will explore, listen, and connect with the atmosphere of old-growth forests through a guided sensory journey.</p><p>The workshops are instructed in Finnish and English.</p><p><b>Saturday 31 October  </b><br><i>– Old Forest Echoes Concert – Caisa 30 Club –</i><br><b>18.30</b> | Introduction to old-growth forests: talk by Milla Aalto, forests specialist, Luontoliitto<br><b>19.00</b> | Introduction and concert: Old Forest Echoes – Ikimetsän kaiku</p>"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/4315416BF35517CB764A83C690F786FD/Old_Forest_Echoes_Ikimetsan_kaiku_immersiivinen_luontokonsertti",
                "sv": "http://www.caisa.fi/sv/evenemang/event/4315416BF35517CB764A83C690F786FD/Old_Forest_Echoes_Ikimetsan_kaiku_immersiivinen_luontokonsertti",
                "en": "http://www.caisa.fi/en/events/event/4315416BF35517CB764A83C690F786FD/Old_Forest_Echoes_Ikimetsan_kaiku_Immersive_Nature_Concert"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69256/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69255",
            "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: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/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384976,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T09:13:41.129140Z",
                    "last_modified_time": "2026-06-05T09:13:41.129155Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793585.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384976/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T09:13:41.002562Z",
            "last_modified_time": "2026-06-05T09:13:41.285962Z",
            "date_published": null,
            "start_time": "2026-06-17",
            "end_time": "2026-08-30",
            "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,
            "name": {
                "fi": "Vaihtoehtokaavoja elonkirjon puolesta",
                "sv": "Vaihtoehtokaavoja elonkirjon puolesta",
                "en": "Vaihtoehtokaavoja elonkirjon puolesta"
            },
            "provider": null,
            "short_description": null,
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kaupungit ja kunnat kaavoittavat ympäri Suomen uusia asuin- ja teollisuusalueita sekä esimerkiksi datakeskuksia luonnon kustannuksella, vaikka lähiluonnon merkitys ihmisen hyvinvoinnille, luonnon monimuotoisuudelle ja ilmastonmuutokseen sopeutumiselle on tutkitusti merkittävä. Monet kaupunkien metsäalueille rakentamista osoittavat kaavat perustuvat vanhentuneisiin lähtökohtiin, eivätkä riittävissä määrin huomioi metsän merkitystä ihmisen ja elonkirjon elinolosuhteiden turvaajana ilmasto- ja ympäristökriisien ajassa. Suuri osa Suomen viimeisistä luonnontilaisisen kaltaisista metsistä sijaitsee kaupungeissa, koska niitä on harvemmin valjastettu metsätalouden käyttöön.</p><p>Elonkirjon kaupunki -hankkeessa tuotamme kaupunkien metsää tuhoavien suunnitelmien rinnalle vaihtoehto, joiden avulla kaupunkimetsät säästyvät rakentamiselta. Hanketta rahoittaa Koneen Säätiön Metsän puolella -aloite. Olemme toteuttaneet kaavaehdotuksia Kuopion Pieneen Neulamäkeen, Helsingin Stansvikiin ja Kumpulaan sekä Lehtivuoreen Lempäälässä – jokainen niistä tiiviissä yhteistyössä paikallisten kanssa. Huolella laadittujen vaihtoehtokaavojen tarkoituksena on vahvistaa asukkaiden toimijuutta kaupunkisuunnittelussa ja suojella lähimetsiä: ne ovat työkalu lähiluonnon puolustamiseen. Kustakin kaavaehdotuksesta järjestetään tiedotustilaisuuksia ja kaavakävelyitä, joissa asukkaat, päättäjät ja suunnittelijat kohtaavat.</p><p>Elonkirjon kaupungin muodostavat arkkitehdit Heljä Nieminen, Seela Pentikäinen, Cecilia Aintila ja Siiri Hänninen. Tuikku Leinonen oli mukana tekemässä Kumpulan vaihtoehtokaavaa. Kaikki valmistuneet vaihtoehtokaavat ja lisää tietoa toiminnasta löydät nettisivuiltamme www.elonkirjonkaupunki.com ja Instagramissa @elonkirjonkaupunki.</p>"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/0C2A94B263D2D32105C25E071D706846/Vaihtoehtokaavoja_elonkirjon_puolesta_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/0C2A94B263D2D32105C25E071D706846/Vaihtoehtokaavoja_elonkirjon_puolesta_",
                "en": "http://www.stoa.fi/en/events/event/0C2A94B263D2D32105C25E071D706846/Vaihtoehtokaavoja_elonkirjon_puolesta_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69255/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:c38c36eb-45b7-4fa9-a924-447b1d706d23",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46044/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "created_time": "2026-06-05T09:09:23.772488Z",
            "last_modified_time": "2026-06-05T09:09:23.772508Z",
            "date_published": "2026-06-05T08:58:58Z",
            "start_time": "2026-06-05T09:08:00Z",
            "end_time": "2026-06-05T11:08: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,
            "name": {
                "fi": "testi: #2770 tapahtuman julkaisun epäonnistuminen - sähköpostin sisältö"
            },
            "provider": {
                "fi": "Tapahtuman järjestäjä"
            },
            "short_description": {
                "fi": "Lyhyt kuvaus"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<div><p>Pitkä kuvaus</p></div>"
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:c38c36eb-45b7-4fa9-a924-447b1d706d23/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69254",
            "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:32/?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:348/?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: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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 20 € / 15 €",
                        "sv": "24,80 € / 20 € / 15 €",
                        "en": "24,80 € / 20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/compania-kaari-roni-martin-compania-kaari-roni-martin-goes-roots-kanneltalo-21702527/",
                        "sv": "https://www.lippu.fi/event/compania-kaari-roni-martin-compania-kaari-roni-martin-goes-roots-kanneltalo-21702527/",
                        "en": "https://www.lippu.fi/event/compania-kaari-roni-martin-compania-kaari-roni-martin-goes-roots-kanneltalo-21702527/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384975,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T08:14:10.499162Z",
                    "last_modified_time": "2026-06-05T08:14:10.499181Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793579.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384975/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T08:14:10.392805Z",
            "last_modified_time": "2026-06-05T08:14:10.632109Z",
            "date_published": null,
            "start_time": "2026-12-08T16: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,
            "name": {
                "fi": "Compañía Kaari & Roni Martin Goes ROOTS",
                "sv": "Compañía Kaari & Roni Martin Goes ROOTS",
                "en": "Compañía Kaari & Roni Martin Goes ROOTS"
            },
            "provider": null,
            "short_description": {
                "fi": "Compañía Kaarin & Roni Martinin musiikillisessa sulatusuunissa arabi-, juutalais- ja romanimusiikki kohtaavat flamencon rytmit ja suomalaisen jouhikon."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Compañía Kaarin & Roni Martinin musiikillisessa sulatusuunissa arabi-, juutalais- ja romanimusiikki kohtaavat flamencon rytmit ja suomalaisen jouhikon.</p><p>Compañía Kaari & Roni Martin on palkittu helsinkiläinen taiteilijaensemble, jonka juuret ovat flamencon ja nykytaiteen risteyksessä. Ryhmän teoksissa yhdistetään vapaasti eri musiikkiperinteitä ja -tyylejä, jotka rikastuttavat suomalaista kulttuurimaisemaa. Tuloksena on rohkeita, omaperäisiä ja monitaiteellisia näyttämötöitä, jotka puhuttelevat myös kansainvälisillä areenoilla.</p><p>Compañía Kaari & Roni Martin Goes ROOTS -teos on kuin musiikillinen sulatusuuni, jossa arabi-, juutalais- ja romanimusiikki kohtaavat flamencon rytmit ja suomalaisen jouhikon. Ryhmän taiteilijat ovat useista eri maista ja kulttuureista; irakilainen <b>Ali Saad</b> hallitsee perinteisen arabialaisen musiikin, Roni Martin perheensä juutalaisen musiikkitradition, jouhikonsoittaja <b>Pekko Käppi</b> suomalaisen kansanmusiikin ja koreografi <b>Kaari Martin</b> flamencotanssin ja rytmiikan.</p><p>Yhteistyössä Kanneltalon kanssa teoksen esiintyjäkaarti laajenee ja juuria etsimässä ja uudistamassa ovat mukana myös syyrialaistanssija <b>Angela Aldebs</b>, irakilainen näyttelijä-ohjaaja <b>Bakr Hasan</b> sekä romanimuusikot <b>Miritza Lundberg</b> ja <b>Miska Lundberg</b> sekä laulussa ja tanssissa <b>Madiana Lundberg</b>.</p><p>Teoksessa lauletaan ainakin suomeksi, arabiaksi, hepreaksi, ladinoksi ja romanikielellä.</p><p>Työryhmä: <br>Pekko Käppi – jouhikko, laulu <br>Roni Martin – piano, kitara, laulu <br>Kaari Martin – tanssi, laulu <br>Ali Saad – laulu <br>Angela Aldebs – tanssi, laulu <br>Bakr Hasan – runonlausunta, laulu <br>Miritza Lundberg – laulu<br>Madiana Lundberg – tanssi, laulu <br>Miska Lundberg – laulu <br>Eppu Helle – äänisuunnittelu</p><p>Kesto 1 h 15 min</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6C22555E403ABA5C4A0A483232C618AE/Compa_a_Kaari_Roni_Martin_Goes_ROOTS",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6C22555E403ABA5C4A0A483232C618AE/Compa_a_Kaari_Roni_Martin_Goes_ROOTS",
                "en": "http://www.kanneltalo.fi/en/events/event/6C22555E403ABA5C4A0A483232C618AE/Compa_a_Kaari_Roni_Martin_Goes_ROOTS"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69254/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69253",
            "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:32/?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:348/?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: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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 20 € / 15 €",
                        "sv": "24,80 € / 20 € / 15 €",
                        "en": "24,80 € / 20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/compania-kaari-roni-martin-compania-kaari-roni-martin-goes-roots-kanneltalo-21702525/",
                        "sv": "https://www.lippu.fi/event/compania-kaari-roni-martin-compania-kaari-roni-martin-goes-roots-kanneltalo-21702525/",
                        "en": "https://www.lippu.fi/event/compania-kaari-roni-martin-compania-kaari-roni-martin-goes-roots-kanneltalo-21702525/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384974,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T08:14:09.983737Z",
                    "last_modified_time": "2026-06-05T08:14:09.983752Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793578.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384974/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T08:14:09.856659Z",
            "last_modified_time": "2026-06-05T08:14:10.127799Z",
            "date_published": null,
            "start_time": "2026-12-05T16: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,
            "name": {
                "fi": "Compañía Kaari & Roni Martin Goes ROOTS",
                "sv": "Compañía Kaari & Roni Martin Goes ROOTS",
                "en": "Compañía Kaari & Roni Martin Goes ROOTS"
            },
            "provider": null,
            "short_description": {
                "fi": "Compañía Kaarin & Roni Martinin musiikillisessa sulatusuunissa arabi-, juutalais- ja romanimusiikki kohtaavat flamencon rytmit ja suomalaisen jouhikon."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Compañía Kaarin & Roni Martinin musiikillisessa sulatusuunissa arabi-, juutalais- ja romanimusiikki kohtaavat flamencon rytmit ja suomalaisen jouhikon.</p><p>Compañía Kaari & Roni Martin on palkittu helsinkiläinen taiteilijaensemble, jonka juuret ovat flamencon ja nykytaiteen risteyksessä. Ryhmän teoksissa yhdistetään vapaasti eri musiikkiperinteitä ja -tyylejä, jotka rikastuttavat suomalaista kulttuurimaisemaa. Tuloksena on rohkeita, omaperäisiä ja monitaiteellisia näyttämötöitä, jotka puhuttelevat myös kansainvälisillä areenoilla.</p><p>Compañía Kaari & Roni Martin Goes ROOTS -teos on kuin musiikillinen sulatusuuni, jossa arabi-, juutalais- ja romanimusiikki kohtaavat flamencon rytmit ja suomalaisen jouhikon. Ryhmän taiteilijat ovat useista eri maista ja kulttuureista; irakilainen <b>Ali Saad</b> hallitsee perinteisen arabialaisen musiikin, Roni Martin perheensä juutalaisen musiikkitradition, jouhikonsoittaja <b>Pekko Käppi</b> suomalaisen kansanmusiikin ja koreografi <b>Kaari Martin</b> flamencotanssin ja rytmiikan.</p><p>Yhteistyössä Kanneltalon kanssa teoksen esiintyjäkaarti laajenee ja juuria etsimässä ja uudistamassa ovat mukana myös syyrialaistanssija <b>Angela Aldebs</b>, irakilainen näyttelijä-ohjaaja <b>Bakr Hasan</b> sekä romanimuusikot <b>Miritza Lundberg</b> ja <b>Miska Lundberg</b> sekä laulussa ja tanssissa <b>Madiana Lundberg</b>.</p><p>Teoksessa lauletaan ainakin suomeksi, arabiaksi, hepreaksi, ladinoksi ja romanikielellä.</p><p>Työryhmä: <br>Pekko Käppi – jouhikko, laulu <br>Roni Martin – piano, kitara, laulu <br>Kaari Martin – tanssi, laulu <br>Ali Saad – laulu <br>Angela Aldebs – tanssi, laulu <br>Bakr Hasan – runonlausunta, laulu <br>Miritza Lundberg – laulu<br>Madiana Lundberg – tanssi, laulu <br>Miska Lundberg – laulu <br>Eppu Helle – äänisuunnittelu</p><p>Kesto 1 h 15 min</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8DBB08C12094E2B6E7188C3804C7F980/Compa_a_Kaari_Roni_Martin_Goes_ROOTS",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8DBB08C12094E2B6E7188C3804C7F980/Compa_a_Kaari_Roni_Martin_Goes_ROOTS",
                "en": "http://www.kanneltalo.fi/en/events/event/8DBB08C12094E2B6E7188C3804C7F980/Compa_a_Kaari_Roni_Martin_Goes_ROOTS"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69253/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69064",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 17,80 €",
                        "sv": "24,80 € / 17,80 €",
                        "en": "24,80 € / 17,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/traveling-jones-feat-esa-kuloniemi-plays-fleetwood-mac-malmitalo-21595789/",
                        "sv": "https://www.lippu.fi/event/traveling-jones-feat-esa-kuloniemi-plays-fleetwood-mac-malmitalo-21595789/",
                        "en": "https://www.lippu.fi/event/traveling-jones-feat-esa-kuloniemi-plays-fleetwood-mac-malmitalo-21595789/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384973,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T08:14:05.621368Z",
                    "last_modified_time": "2026-06-05T08:14:05.621383Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792649.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384973/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T08:14:05.494660Z",
            "last_modified_time": "2026-06-05T08:14:05.777458Z",
            "date_published": null,
            "start_time": "2026-10-28T17: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,
            "name": {
                "fi": "Traveling Jones featuring Esa Kuloniemi plays Fleetwood Mac",
                "sv": "Traveling Jones featuring Esa Kuloniemi plays Fleetwood Mac",
                "en": "Traveling Jones featuring Esa Kuloniemi plays Fleetwood Mac"
            },
            "provider": null,
            "short_description": {
                "fi": "Traveling Jones on saanut solistikseen maamme Fleetwood Mac -spesialistien terävimpään kärkeen kuuluvan kitaristi-laulaja Esa ”Bluesministeri” Kuloniemen."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Traveling Jones on saanut solistikseen maamme Fleetwood Mac -spesialistien terävimpään kärkeen kuuluvan kitaristi-laulaja Esa ”Bluesministeri” Kuloniemen.</p><p>Traveling Jones on tullut tunnetuksi mm. Pepe Ahlqvistin ja Eero Raittisen luottokokoonpanona. Kuloniemi puolestaan on soittanut mm. Honey B & T-Bones -yhtyeessä.</p><p>Luvassa tunnelmallinen, nostalginen ja kitarasoolojen täyteinen ilta brittiblues-klassikoiden parissa!<br> <br>Kitaralegenda Peter Greenin Lontoossa vuonna 1967 perustama alkuperäinen Fleetwood Mac mullisti kokonaisen sukupolven tajunnan. Yhtye aloitti puhtaana, autenttisuuteen pyrkivänä 60-luvun brittiblues-kokoonpanona. Vuosikymmenen loppua kohti bändin tyyli kehittyi ilmaisultaan eklektisemmäksi ja sitä pidetään yhtenä jam band -käsitteen esitaistelijoista. Parhaiten tuon ajan kokoonpano muistetaan kolmen kitaristinsa soolotyöskentelystä ja Greenin ja Danny Kirwanin upeasta sävellystyöstä, joka vaikutti jopa The Beatlesiin ja jonka ansiosta yhtyettä kosiskeltiin Apple-levymerkin rosteriin. Bändin hitit ja klassikot kuten ”Albatross”, ”Oh, Well”, ”Man of the World” ja ”Jigsaw Puzzle Blues” ovat jääneet elämään.</p><p>Esa Kuloniemi (laulu ja kitara)</p><p>Traveling Jones:<br>Jakke Aho (laulu ja basso)<br>Juha Sundqvist (kitara ja laulu)<br>Pekka Qvist (koskettimet)<br>Ossi Nykänen (rummut).<br> <br>Kesto: 1 h 45 min, sis. 20 min väliajan</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8CFFC40CD166AF35EA497A2684794EF5/Traveling_Jones_featuring_Esa_Kuloniemi_plays_Fleetwood_Mac",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8CFFC40CD166AF35EA497A2684794EF5/Traveling_Jones_featuring_Esa_Kuloniemi_plays_Fleetwood_Mac",
                "en": "http://www.malmitalo.fi/en/events/event/8CFFC40CD166AF35EA497A2684794EF5/Traveling_Jones_featuring_Esa_Kuloniemi_plays_Fleetwood_Mac"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69064/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69063",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "34,90 € / 29,90 €",
                        "sv": "34,90 € / 29,90 €",
                        "en": "34,90 € / 29,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/antti-autio-haahuillen-malmitalo-21684000/",
                        "sv": "https://www.lippu.fi/event/antti-autio-haahuillen-malmitalo-21684000/",
                        "en": "https://www.lippu.fi/event/antti-autio-haahuillen-malmitalo-21684000/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384972,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T08:14:04.766602Z",
                    "last_modified_time": "2026-06-05T08:14:04.766617Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792646.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384972/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T08:14:04.645841Z",
            "last_modified_time": "2026-06-05T08:14:04.922443Z",
            "date_published": null,
            "start_time": "2026-10-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,
            "name": {
                "fi": "Antti Autio: Haahuillen – A la Malmi",
                "sv": "Antti Autio: Haahuillen",
                "en": "Antti Autio: Haahuillen"
            },
            "provider": null,
            "short_description": {
                "fi": "Antti Aution Haahuillen-konserttisalikiertue tuo kuulijat lähemmäksi laulujen syntyhetkiä."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Antti Aution Haahuillen-konserttisalikiertue tuo kuulijat lähemmäksi laulujen syntyhetkiä.</p><p>Konsertit jatkavat alkuvuonna julkaistua <i>Tie on maalattu maahan</i> -albumin kiertuetta uudella syväluotaavalla tavalla. Albumin syntyä ja teemoja lähestytään vuorovaikutuksessa ja jutustellen yleisön kanssa.<br> <br>Illan aikana kuullaan tietysti myös vanhempaa tuotantoa, kuten kaikkien tuntemat ja miljoonia striimanneet \"Pihkassa\", \"Kaikki hyvin\", \"Norja\", \"Tehty sinulle\" sekä monia muita kappaleita joista kuullaan uusia ennenkuulumattomia sovituksia.<br> <br><i>”Haluamme tuoda kuulijat lähemmäs niitä hetkiä, kun kappaleet vasta syntyvät tai muotoutuvat. Haahuillen -konserttisalikiertue on kutsu tulla jakamaan nämä hetket yhtyeemme kanssa”</i>, Autio kuvailee.<br> <br>Antin lisäksi bändissä soittavat Jussi Liukkonen, Joska Saarinen, Joel Parvamo ja Ella Rosenlund.</p><p>Aution musiikkia on kuunneltu Spotifyssa yli 35 miljoonan toiston verran ja artistin on nähty esiintyvän mm. Flow Festivalin päälavalla. Kriitikoiden arvostusta osakseen saaneen artistin teoksia on noteerattu laajalti eri medioissa toistuvan ylistävään sävyyn. <i>Kaikki talot huojuu</i> -albumi ylitti kultalevyrajan syksyllä 2024. Viimeisin albumi <i>Tie on maalattu maahan</i> julkaistiin 20. Maaliskuuta.</p><p>Kesto: 2 h, sis. 20 min väliajan</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/81C333496DD8E63E4653763891F0642A/Antti_Autio_Haahuillen",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/81C333496DD8E63E4653763891F0642A/Antti_Autio_Haahuillen",
                "en": "http://www.malmitalo.fi/en/events/event/81C333496DD8E63E4653763891F0642A/Antti_Autio_Haahuillen"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69063/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68637",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "29,80 € / 24,80 €",
                        "sv": "29,80 € / 24,80 €",
                        "en": "29,80 € / 24,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmitalo-malmijazz-aili-ikonen-malmitalo-21582653/",
                        "sv": "https://www.lippu.fi/event/malmitalo-malmijazz-aili-ikonen-malmitalo-21582653/",
                        "en": "https://www.lippu.fi/event/malmitalo-malmijazz-aili-ikonen-malmitalo-21582653/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384971,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T08:14:03.276016Z",
                    "last_modified_time": "2026-06-05T08:14:03.276032Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791346.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384971/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T08:14:03.120961Z",
            "last_modified_time": "2026-06-05T08:14:03.466755Z",
            "date_published": null,
            "start_time": "2026-10-07T16: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,
            "name": {
                "fi": "Aili Ikonen – MalmiJazz",
                "sv": "Aili Ikonen",
                "en": "Aili Ikonen"
            },
            "provider": null,
            "short_description": {
                "fi": "Aili Ikonen on maamme ykköskaartiin kuuluva laulaja ja lauluntekijä, joka tunnetaan herkkänä ja taiturimaisena tulkitsijana."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Aili Ikonen on maamme ykköskaartiin kuuluva laulaja ja lauluntekijä, joka tunnetaan herkkänä ja taiturimaisena tulkitsijana.</p><p>Ikosen ilmaisullinen skaala lähtee jazzista ja murtautuu rohkeasti genrerajojen ulkopuolelle. Valovoimaisen artistin ura sisältää yhteistyötä erilaisten jazz-kombojen kanssa, big band -produktioita ja Ella Fitzgerald -tulkintoja. Ikonen tunnetaan nykyisin myös Rajaton-lauluyhtyeen jäsenenä.</p><p>Vuonna 2025 Ikonen palkittiin jazz-alan arvostetuimpiin tunnustuksiin kuuluvalla Suomen Jazzliiton myöntämällä Yrjö-palkinnolla. Ikonen on julkaissut viisi soololevyä, joista uusimman, Oulu Sinfonian kanssa äänitetyn <i>Valo</i>-orkesterialbumin vuonna 2024. Soololevykatalogiin kuuluu myös <i>Helposti palavaa</i> (2023), <i>Suru ei oo suora viiva</i> (2020), <i>Piirrä minut</i> (2017) ja <i>Laulan</i> (2016). Uutta musiikkia on luvassa keväällä 2026.</p><p>Ikosen levytyksiin kuuluvat myös suomalaisen jazziskelmän ytimeen pureutuva <i>Jazzbasilli</i>-albumi yhdessä HERD-jazztrion kanssa sekä <i>Aili Ikonen & Tribute to Ella</i> -albumi. Vuonna 2019 yhdessä Jukka Perko Avaran kanssa julkaistu <i>Laulu keskeneräinen</i> -albumi käsitteli 1960-luvun lauluntekijyyttä Hectorin suomenkielisin uusin käännöksin. Ikonen säveltää ja sanoittaa oman soolotuotantonsa lisäksi säännöllisesti Rajaton-lauluyhtyeelle sekä tekee tilaussävellyksiä.</p><p>Ikosen mukana lavalla on hänen luottokvintettinsä, jonka kanssa hän on tehnyt yhteistyötä jo yli 10 vuoden ja viiden albumin verran. Herkkänä, mutta samalla vahvana tulkitsijana tunnettua Ikosta on kuultu laaja-alaisesti niin aikamme huippuartistien kanssakuinsolistina eri kokoonpanoissa.</p><p>Aili Ikonen – laulu, viulu, sävellys ja sanoitus<br>Janne Toivonen – trumpetti<br>William Suvanne – saksofonit ja huilu<br>Tuomas J. Turunen – piano<br>Mikko Pellinen – basso ja sovitukset<br>Mikko Arlin – rummut</p><p>Kesto: 2 t, sis. väliajan 20 min</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/589412B90CAC3A6E85F298454D88F792/Aili_Ikonen",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/589412B90CAC3A6E85F298454D88F792/Aili_Ikonen",
                "en": "http://www.malmitalo.fi/en/events/event/589412B90CAC3A6E85F298454D88F792/Aili_Ikonen"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68637/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68623",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 17,80 €",
                        "sv": "24,80 € / 17,80 €",
                        "en": "24,80 € / 17,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmitalo-boppin-pete-the-barnshakers-malmitalo-21603921/",
                        "sv": "https://www.lippu.fi/event/malmitalo-boppin-pete-the-barnshakers-malmitalo-21603921/",
                        "en": "https://www.lippu.fi/event/malmitalo-boppin-pete-the-barnshakers-malmitalo-21603921/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384965,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:03.020515Z",
                    "last_modified_time": "2026-06-05T07:14:03.020533Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791290.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384965/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T07:14:02.872299Z",
            "last_modified_time": "2026-06-05T08:14:02.208585Z",
            "date_published": null,
            "start_time": "2026-09-30T16: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,
            "name": {
                "fi": "Boppin Pete & The Barnshakers",
                "sv": "Boppin Pete & The Barnshakers",
                "en": "Boppin Pete & The Barnshakers"
            },
            "provider": null,
            "short_description": {
                "fi": "Rock-konkarit lyöttäytyvät harvinaisessa konsertissa, jossa kuullaan Barnshakersien tunnetuimpia raitoja sekä Peten klassikkolevytyksiä – ja paljon muutakin."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Rock-konkarit lyöttäytyvät harvinaisessa konsertissa, jossa kuullaan Barnshakersien tunnetuimpia raitoja sekä Peten klassikkolevytyksiä – ja paljon muutakin.</p><p>Boppin' Pete, eli Petri Näsman, on helsinkiläinen pitkän linjan roots-muusikko. Boppin' Pete -nimellä hän nousi yhdeksi suomalaisen 50-luvun rock and roll- ja rockabilly-huuman veturiksi 1980-luvun Näsman teki albumin legendaariselle Rebel-merkille ja esiintyi kulttimaineeseen yltäneessä \"Rokkidiggari\"-elokuvassa.</p><p>The Barnshakers on Suomen kansainvälisesti menestyksekkäin rockabilly-yhtye, jonka yli 30-vuotinen ura on pitänyt sisällään lukuisia kiertueita ympäri maailmaa, yhteistyötä monien artistien kanssa sekä arvostettuja julkaisuja kotimaisella Goofin Recordsilla.</p><p>The Barnshakers:<br>Vesa Haaja - laulu ja kitara<br>Jussi Huhtakangas - kitara<br>Mika Liikari - basso<br>Jani Ahtiainen - rummut<br>Boppin' Pete - laulu ja kitara</p><p>Kesto: 1 h 45 min, sis. 20 min väliajan</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/272AEE620FC9CACC730E160FD931E49D/Boppin_Pete_The_Barnshakers",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/272AEE620FC9CACC730E160FD931E49D/Boppin_Pete_The_Barnshakers",
                "en": "http://www.malmitalo.fi/en/events/event/272AEE620FC9CACC730E160FD931E49D/Boppin_Pete_The_Barnshakers"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68623/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68636",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384970,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:10.883897Z",
                    "last_modified_time": "2026-06-05T07:14:10.883914Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791327.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384970/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T07:14:10.768262Z",
            "last_modified_time": "2026-06-05T07:14:11.037001Z",
            "date_published": null,
            "start_time": "2026-12-08T16:00:00Z",
            "end_time": "2026-12-08T18: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,
            "name": {
                "fi": "Big band -jamit",
                "sv": "Big band -jamit",
                "en": "Big band -jamit"
            },
            "provider": null,
            "short_description": {
                "fi": "Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!</p><p>Ilmaiset big band -jamit syyskaudella 2026:<br>ti 6.10. klo 18–20<br>ti 3.11. klo 18–20<br>Ti 8.12. klo 18–20</p><p>House bandien lyhyiden esitysten jälkeen kaikki saksofonisti, trumpetistit, pasunistit, komppisoittajat ja laulajat ovat tervetulleita mukaan musisoimaan! Paikan päältä löytyvät rumpusetti, piano, basso- ja kitaravahvistin, nuottitelineet sekä nuotit. Tuothan muut tarvitsemasi soittimet ja rumpukapulat mukanasi.<br> <br>Jameihin on valikoitu ohjelmistoksi mukavaa ja eri tasoisille soittajille soveltuvaa materiaalia - soitettavat kappaleet valitaan jameissa paikalle saapuvien soittajien mukaan!<br> <br>Kappaleiden nuotteja on mahdollista saada myös pyydettäessä etukäteen nähtäväksi. Laita tästä pyyntö osoitteeseen: info@sointijazzorchestra.com<br> <br>Tule ja ota kaverisikin mukaan musisoimaan yhdessä! Voit saapua paikalle myös vain kuuntelemaan ja nauttimaan big band -musiikista.<br> <br>Kesto: 2 t<br>Vapaa pääsy!</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/14B30DD74891205FDFEA36907D01D609/Big_band_-jamit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/14B30DD74891205FDFEA36907D01D609/Big_band_-jamit",
                "en": "http://www.malmitalo.fi/en/events/event/14B30DD74891205FDFEA36907D01D609/Big_band_-jamit"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68636/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69249",
            "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:32/?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:350/?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: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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 20 € / 15 €",
                        "sv": "24,80 € / 20 € / 15 €",
                        "en": "24,80 € / 20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/compania-kaari-roni-martin-compania-kaari-roni-martin-goes-roots-kanneltalo-21702524/",
                        "sv": "https://www.lippu.fi/event/compania-kaari-roni-martin-compania-kaari-roni-martin-goes-roots-kanneltalo-21702524/",
                        "en": "https://www.lippu.fi/event/compania-kaari-roni-martin-compania-kaari-roni-martin-goes-roots-kanneltalo-21702524/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384969,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:10.252250Z",
                    "last_modified_time": "2026-06-05T07:14:10.252270Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793580.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384969/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T07:14:10.141752Z",
            "last_modified_time": "2026-06-05T07:14:10.402309Z",
            "date_published": null,
            "start_time": "2026-12-04T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Compañía Kaari & Roni Martin Goes ROOTS",
                "sv": "Compañía Kaari & Roni Martin Goes ROOTS",
                "en": "Compañía Kaari & Roni Martin Goes ROOTS"
            },
            "provider": null,
            "short_description": {
                "fi": "Compañía Kaarin & Roni Martinin musiikillisessa sulatusuunissa arabi-, juutalais- ja romanimusiikki kohtaavat flamencon rytmit ja suomalaisen jouhikon."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Compañía Kaarin & Roni Martinin musiikillisessa sulatusuunissa arabi-, juutalais- ja romanimusiikki kohtaavat flamencon rytmit ja suomalaisen jouhikon.</p><p>Compañía Kaari & Roni Martin on palkittu helsinkiläinen taiteilijaensemble, jonka juuret ovat flamencon ja nykytaiteen risteyksessä. Ryhmän teoksissa yhdistetään vapaasti eri musiikkiperinteitä ja -tyylejä, jotka rikastuttavat suomalaista kulttuurimaisemaa. Tuloksena on rohkeita, omaperäisiä ja monitaiteellisia näyttämötöitä, jotka puhuttelevat myös kansainvälisillä areenoilla.</p><p>Compañía Kaari & Roni Martin Goes ROOTS -teos on kuin musiikillinen sulatusuuni, jossa arabi-, juutalais- ja romanimusiikki kohtaavat flamencon rytmit ja suomalaisen jouhikon. Ryhmän taiteilijat ovat useista eri maista ja kulttuureista; irakilainen <b>Ali Saad</b> hallitsee perinteisen arabialaisen musiikin, Roni Martin perheensä juutalaisen musiikkitradition, jouhikonsoittaja <b>Pekko Käppi</b> suomalaisen kansanmusiikin ja koreografi <b>Kaari Martin</b> flamencotanssin ja rytmiikan.</p><p>Yhteistyössä Kanneltalon kanssa teoksen esiintyjäkaarti laajenee ja juuria etsimässä ja uudistamassa ovat mukana myös syyrialaistanssija <b>Angela Aldebs</b>, irakilainen näyttelijä-ohjaaja <b>Bakr Hasan</b> sekä romanimuusikot <b>Miritza Lundberg</b> ja <b>Miska Lundberg</b> sekä laulussa ja tanssissa <b>Madiana Lundberg</b>.</p><p>Teoksessa lauletaan ainakin suomeksi, arabiaksi, hepreaksi, ladinoksi ja romanikielellä.</p><p>Työryhmä: <br>Pekko Käppi – jouhikko, laulu <br>Roni Martin – piano, kitara, laulu <br>Kaari Martin – tanssi, laulu <br>Ali Saad – laulu <br>Angela Aldebs – tanssi, laulu <br>Bakr Hasan – runonlausunta, laulu <br>Miritza Lundberg – laulu<br>Madiana Lundberg – tanssi, laulu <br>Miska Lundberg – laulu <br>Eppu Helle – äänisuunnittelu</p><p>Kesto 1 h 15 min</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0AA420D489EDD13118CE9DAE6856564C/Compa_a_Kaari_Roni_Martin_Goes_ROOTS",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0AA420D489EDD13118CE9DAE6856564C/Compa_a_Kaari_Roni_Martin_Goes_ROOTS",
                "en": "http://www.kanneltalo.fi/en/events/event/0AA420D489EDD13118CE9DAE6856564C/Compa_a_Kaari_Roni_Martin_Goes_ROOTS"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69249/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69248",
            "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:32/?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:348/?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: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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 20 € / 15 €",
                        "sv": "24,80 € / 20 € / 15 €",
                        "en": "24,80 € / 20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/compania-kaari-roni-martin-compania-kaari-roni-martin-goes-roots-kanneltalo-21702523/",
                        "sv": "https://www.lippu.fi/event/compania-kaari-roni-martin-compania-kaari-roni-martin-goes-roots-kanneltalo-21702523/",
                        "en": "https://www.lippu.fi/event/compania-kaari-roni-martin-compania-kaari-roni-martin-goes-roots-kanneltalo-21702523/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384968,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:09.804131Z",
                    "last_modified_time": "2026-06-05T07:14:09.804146Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793576.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384968/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T07:14:09.672903Z",
            "last_modified_time": "2026-06-05T07:14:09.956804Z",
            "date_published": null,
            "start_time": "2026-12-03T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Compañía Kaari & Roni Martin Goes ROOTS",
                "sv": "Compañía Kaari & Roni Martin Goes ROOTS",
                "en": "Compañía Kaari & Roni Martin Goes ROOTS"
            },
            "provider": null,
            "short_description": {
                "fi": "Compañía Kaarin & Roni Martinin musiikillisessa sulatusuunissa arabi-, juutalais- ja romanimusiikki kohtaavat flamencon rytmit ja suomalaisen jouhikon."
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Compañía Kaarin & Roni Martinin musiikillisessa sulatusuunissa arabi-, juutalais- ja romanimusiikki kohtaavat flamencon rytmit ja suomalaisen jouhikon.</p><p>Compañía Kaari & Roni Martin on palkittu helsinkiläinen taiteilijaensemble, jonka juuret ovat flamencon ja nykytaiteen risteyksessä. Ryhmän teoksissa yhdistetään vapaasti eri musiikkiperinteitä ja -tyylejä, jotka rikastuttavat suomalaista kulttuurimaisemaa. Tuloksena on rohkeita, omaperäisiä ja monitaiteellisia näyttämötöitä, jotka puhuttelevat myös kansainvälisillä areenoilla.</p><p>Compañía Kaari & Roni Martin Goes ROOTS -teos on kuin musiikillinen sulatusuuni, jossa arabi-, juutalais- ja romanimusiikki kohtaavat flamencon rytmit ja suomalaisen jouhikon. Ryhmän taiteilijat ovat useista eri maista ja kulttuureista; irakilainen <b>Ali Saad</b> hallitsee perinteisen arabialaisen musiikin, Roni Martin perheensä juutalaisen musiikkitradition, jouhikonsoittaja <b>Pekko Käppi</b> suomalaisen kansanmusiikin ja koreografi <b>Kaari Martin</b> flamencotanssin ja rytmiikan.</p><p>Yhteistyössä Kanneltalon kanssa teoksen esiintyjäkaarti laajenee ja juuria etsimässä ja uudistamassa ovat mukana myös syyrialaistanssija <b>Angela Aldebs</b>, irakilainen näyttelijä-ohjaaja <b>Bakr Hasan</b> sekä romanimuusikot <b>Miritza Lundberg</b> ja <b>Miska Lundberg</b> sekä laulussa ja tanssissa <b>Madiana Lundberg</b>.</p><p>Teoksessa lauletaan ainakin suomeksi, arabiaksi, hepreaksi, ladinoksi ja romanikielellä.</p><p>Työryhmä: <br>Pekko Käppi – jouhikko, laulu <br>Roni Martin – piano, kitara, laulu <br>Kaari Martin – tanssi, laulu <br>Ali Saad – laulu <br>Angela Aldebs – tanssi, laulu <br>Bakr Hasan – runonlausunta, laulu <br>Miritza Lundberg – laulu<br>Madiana Lundberg – tanssi, laulu <br>Miska Lundberg – laulu <br>Eppu Helle – äänisuunnittelu</p><p>Kesto 1 h 15 min</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FD3865C258E526F55F178C48AD855367/Compa_a_Kaari_Roni_Martin_Goes_ROOTS",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FD3865C258E526F55F178C48AD855367/Compa_a_Kaari_Roni_Martin_Goes_ROOTS",
                "en": "http://www.kanneltalo.fi/en/events/event/FD3865C258E526F55F178C48AD855367/Compa_a_Kaari_Roni_Martin_Goes_ROOTS"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69248/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68635",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384967,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:06.764136Z",
                    "last_modified_time": "2026-06-05T07:14:06.764157Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791325.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384967/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T07:14:06.617965Z",
            "last_modified_time": "2026-06-05T07:14:06.930584Z",
            "date_published": null,
            "start_time": "2026-11-03T16:00:00Z",
            "end_time": "2026-11-03T18: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,
            "name": {
                "fi": "Big band -jamit",
                "sv": "Big band -jamit",
                "en": "Big band -jamit"
            },
            "provider": null,
            "short_description": {
                "fi": "Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!</p><p>Ilmaiset big band -jamit syyskaudella 2026:<br>ti 6.10. klo 18–20<br>ti 3.11. klo 18–20<br>Ti 8.12. klo 18–20</p><p>House bandien lyhyiden esitysten jälkeen kaikki saksofonisti, trumpetistit, pasunistit, komppisoittajat ja laulajat ovat tervetulleita mukaan musisoimaan! Paikan päältä löytyvät rumpusetti, piano, basso- ja kitaravahvistin, nuottitelineet sekä nuotit. Tuothan muut tarvitsemasi soittimet ja rumpukapulat mukanasi.<br> <br>Jameihin on valikoitu ohjelmistoksi mukavaa ja eri tasoisille soittajille soveltuvaa materiaalia - soitettavat kappaleet valitaan jameissa paikalle saapuvien soittajien mukaan!<br> <br>Kappaleiden nuotteja on mahdollista saada myös pyydettäessä etukäteen nähtäväksi. Laita tästä pyyntö osoitteeseen: info@sointijazzorchestra.com<br> <br>Tule ja ota kaverisikin mukaan musisoimaan yhdessä! Voit saapua paikalle myös vain kuuntelemaan ja nauttimaan big band -musiikista.<br> <br>Kesto: 2 t<br>Vapaa pääsy!</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/668A9FF6B5E2D55BD5620FBE2FB42EBB/Big_band_-jamit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/668A9FF6B5E2D55BD5620FBE2FB42EBB/Big_band_-jamit",
                "en": "http://www.malmitalo.fi/en/events/event/668A9FF6B5E2D55BD5620FBE2FB42EBB/Big_band_-jamit"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68635/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68634",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384966,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:04.079096Z",
                    "last_modified_time": "2026-06-05T07:14:04.079114Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791322.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384966/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T07:14:03.936749Z",
            "last_modified_time": "2026-06-05T07:14:04.270514Z",
            "date_published": null,
            "start_time": "2026-10-06T15:00:00Z",
            "end_time": "2026-10-06T17: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,
            "name": {
                "fi": "Big band -jamit",
                "sv": "Big band -jamit",
                "en": "Big band -jamit"
            },
            "provider": null,
            "short_description": {
                "fi": "Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!</p><p>Ilmaiset big band -jamit syyskaudella 2026:<br>ti 6.10. klo 18–20<br>ti 3.11. klo 18–20<br>Ti 8.12. klo 18–20</p><p>House bandien lyhyiden esitysten jälkeen kaikki saksofonisti, trumpetistit, pasunistit, komppisoittajat ja laulajat ovat tervetulleita mukaan musisoimaan! Paikan päältä löytyvät rumpusetti, piano, basso- ja kitaravahvistin, nuottitelineet sekä nuotit. Tuothan muut tarvitsemasi soittimet ja rumpukapulat mukanasi.<br> <br>Jameihin on valikoitu ohjelmistoksi mukavaa ja eri tasoisille soittajille soveltuvaa materiaalia - soitettavat kappaleet valitaan jameissa paikalle saapuvien soittajien mukaan!<br> <br>Kappaleiden nuotteja on mahdollista saada myös pyydettäessä etukäteen nähtäväksi. Laita tästä pyyntö osoitteeseen: info@sointijazzorchestra.com<br> <br>Tule ja ota kaverisikin mukaan musisoimaan yhdessä! Voit saapua paikalle myös vain kuuntelemaan ja nauttimaan big band -musiikista.<br> <br>Kesto: 2 t<br>Vapaa pääsy!</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/051A195F3BC19B510CA06D91827C5A90/Big_band_-jamit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/051A195F3BC19B510CA06D91827C5A90/Big_band_-jamit",
                "en": "http://www.malmitalo.fi/en/events/event/051A195F3BC19B510CA06D91827C5A90/Big_band_-jamit"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68634/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}