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

{
    "meta": {
        "count": 27757,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=5",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=3"
    },
    "data": [
        {
            "id": "kulke:68085",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494806,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-09T12:13:57.459304Z",
                    "last_modified_time": "2026-02-09T12:13:57.459320Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784532.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494806/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-02-09T12:13:57.370080Z",
            "last_modified_time": "2026-03-20T01:14:25.357028Z",
            "date_published": null,
            "start_time": "2026-05-26T06:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/538C3F9F87B1DE6CB70703DC1E6B940A/Jussi_Ollilan_metsasatutuokiot",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/538C3F9F87B1DE6CB70703DC1E6B940A/Skogssagostunder_med_Jussi_Ollila_",
                "en": "http://www.vuotalo.fi/en/events/event/538C3F9F87B1DE6CB70703DC1E6B940A/Jussi_Ollila_s_forest_fairy_tales_"
            },
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Satu on aina uusi, koska se syntyy vuorovaikutuksessa lapsiyleisön kanssa. Metsäsatutuokio sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille     <br>Kesto: n. 45 min <br>Kieli: suomi     <br>Vapaa pääsy <br>Tarkoitettu päiväkotiryhmille ja perheille. Päiväkotiryhmille ennakkoilmoittautumiset osoitteessa www.kultus.hel.fi</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen. <br>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar <br>Längd: ca 45 min. <br>Språk: finska <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på www.kultus.hel.fi</p>",
                "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip. <br>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds <br>Duration: approx. 45 min <br>Language: Finnish <br>Free of charge  <br>Intended for day-care groups and families. Advance registration for groups at www.kultus.hel.fi</p>"
            },
            "name": {
                "fi": "Jussi Ollilan metsäsatutuokiot",
                "sv": "Skogssagostunder med Jussi Ollila",
                "en": "Jussi Ollila's forest fairy tales"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68085/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68166",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1518710,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-04T08:14:46.161810Z",
                    "last_modified_time": "2026-03-04T08:14:46.161828Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785951.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1518710/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-04T08:14:46.024727Z",
            "last_modified_time": "2026-03-20T01:14:24.420684Z",
            "date_published": null,
            "start_time": "2026-05-23T11:00:00Z",
            "end_time": "2026-05-23T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Musiikkitapahtuma Sitratorilla",
                "sv": "Ett musikevenemang på Cittertorget",
                "en": "Music event at Sitratori square"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8A8387A46BC962C36183D171A7EC45F6/SITRAROK",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8A8387A46BC962C36183D171A7EC45F6/SITRAROK",
                "en": "http://www.kanneltalo.fi/en/events/event/8A8387A46BC962C36183D171A7EC45F6/SITRAROK"
            },
            "description": {
                "fi": "<p>Musiikkitapahtuma Sitratorilla</p><p>Kannelmäen Sitratorilla siirrytään kesää kohti suuren juhlan voimin. Lauantaina 23.5.2026 torille nousee lava ja kattava tarjonta erilaista live-musiikkia. Illan aikana myös saatetaan Kannelmäen asema kohti peruskorjauksesta johtuvaa pitkää remonttia. Tapahtuman mahdollistavat paikalliset talkoovoimat, Helsingin kaupunki sekä KunnonMuutto Oy.</p><p>Aikataulu<br>15.00 Surya<br>15.45 Mökä<br>16.30 Varför inte<br>17.15 Turpakäräjät<br>18.00 Balkan Maggarac<br>19.00 Sirpa ja Myöhäset</p><p>20.00 Tapahtuma päättyy</p><p>Paikka: Sitratori</p>",
                "sv": "<p>Ett musikevenemang på Cittertorget</p><p>På Cittertorget i Gamlas inleder vi sommaren med en stor fest. Lördagen den 23 maj 2026 reses en scen på torget, och det bjuds på ett stort utbud av olika slags livemusik. Under kvällen uppmärksammar vi också Gamlas station som ska genomgå en lång och grundlig renovering. Evenemanget möjliggörs av lokala talkokrafter, Helsingfors stad och KunnonMuutto Oy.</p><p>Tidtabell<br>15.00 Surya<br>15.45 Mökä<br>16.30 Varför inte<br>17.15 Turpakäräjät<br>18.00 Balkan Maggarac<br>19.00 Sirpa ja Myöhäset</p><p>20.00 Evenemanget avslutas</p><p>Plats: Cittertorget</p>",
                "en": "<p>Music event at Sitratori square</p><p>Sitratori square in Kannelmäki is inching towards summer by putting on a big party. On Saturday 23 May 2026, the square will host a stage and a full range of live music. The evening will also be a farewell to Kannelmäki station ahead of its major renovation. The event is made possible by local volunteers, the City of Helsinki and KunnonMuutto Oy.</p><p>Schedule<br>15.00 Surya<br>15.45 Mökä<br>16.30 Varför inte<br>17.15 Turpakäräjät<br>18.00 Balkan Maggarac<br>19.00 Sirpa ja Myöhäset</p><p>20.00 Event ends</p><p>Location: Sitratori square</p>"
            },
            "name": {
                "fi": "SITRAROK",
                "sv": "SITRAROK",
                "en": "SITRAROK"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68166/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68082",
            "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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494797,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-09T08:13:25.268764Z",
                    "last_modified_time": "2026-02-09T08:13:25.268779Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781215.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494797/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-09T08:13:25.101833Z",
            "last_modified_time": "2026-03-20T01:14:24.282682Z",
            "date_published": null,
            "start_time": "2026-05-23",
            "end_time": "2026-06-26",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Haagan Taideseuran juhlanäyttely esittelee 60-vuotiaan seuran toimintaa ja täyttää Kanneltalon taiteella sekä tarinoilla.",
                "sv": "Haagan Taideseuras jubileumsutställning presenterar den 60-åriga föreningens verksamhet och fyller Gamlasgården med konst och berättelser.",
                "en": "The Haaga Art Society's anniversary exhibition presents 60 years of the society's activities and fills Kanneltalo with art and stories."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/EED96DBDC65D1633BF90A50964308C53/Haagan_Taideseuran_60-vuotisjuhlanayttely",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/EED96DBDC65D1633BF90A50964308C53/Haagan_Taideseuras_60-arsjubileumsutstallning_",
                "en": "http://www.kanneltalo.fi/en/events/event/EED96DBDC65D1633BF90A50964308C53/60th_anniversary_exhibition_of_the_Haaga_Art_Society"
            },
            "description": {
                "fi": "<p>Haagan Taideseuran juhlanäyttely esittelee 60-vuotiaan seuran toimintaa ja täyttää Kanneltalon taiteella sekä tarinoilla.</p><p>Kanneltalon gallerian näyttely kokoaa yhteen Haagan Taideseuran taiteilijoiden teoksia eri vuosikymmeniltä. Esillä on maalauksia, grafiikkaa, valokuvia ja veistoksia, jotka kertovat sekä yksittäisten taiteilijoiden ilmaisusta mutta myös yhteisön pitkästä ja rikkaasta perinteestä. Teokset heijastavat eri aikakausien tyylisuuntia, kokeiluja ja tekijöidensä henkilökohtaisia näkemyksiä. Vanhempien teosten lisäksi nähdään myös tuoreita teoksia, mikä tarjoaa katsojalle mahdollisuuden kulkea ajassa.</p><p>Vuonna 1966 Pohjois-Haagassa perustettu Haagan Taideseura on alueensa tärkeä kulttuuritoimija, joka tarjoaa tilaisuuksia taiteen yhteisölliseen tekemiseen ja esittämiseen. Seura on vuosien varrella järjestänyt lukuisia näyttelyitä, kursseja, työpajoja ja yhteisprojekteja, jotka ovat tarjonneet inspiraatiota ja oppia sekä kokeneille tekijöille, että vasta-alkajille.</p><p>Näyttelyn yhteydessä esitellään myös seuran historiaa ja toimintaa. Kesänäyttely toimii paitsi taiteen juhlistuksena, myös kunnianosoituksena niille, jotka ovat tehneet Haagan Taideseurasta sen, mitä se tänään on: aktiivisen, lämpimän yhteisön, jossa taiteella on tilaa elää. Näyttely kutsuu niin nykyiset kuin entisetkin jäsenet sekä kaikki taiteen ystävät juhlimaan yhdessä menneitä vuosikymmeniä ja kurkistamaan tulevaisuuteen.</p><p>Vapaa pääsy.</p>",
                "sv": "<p>Haagan Taideseuras jubileumsutställning presenterar den 60-åriga föreningens verksamhet och fyller Gamlasgården med konst och berättelser.</p><p>Utställningen i Gamlasgårdens galleri samlar verk av Haagan Taideseuras konstnärer från olika decennier. Där visas målningar, grafik, fotografier och skulpturer som berättar om de enskilda konstnärernas uttryck men också om föreningens långa och rika tradition. Verken återspeglar stilar från olika tider, experiment och upphovsmännens personliga synsätt. Förutom äldre verk visas också nyare verk, vilket ger publiken en möjlighet att resa i tiden.</p><p>Haagan Taideseura, som grundades i Norra Haga 1966, är en viktig kulturaktör i sitt område och erbjuder möjligheter att skapa och visa konst tillsammans. Under årens lopp har klubben anordnat många utställningar, kurser, verkstäder och samarbetsprojekt som har gett inspiration och lärdomar för både erfarna konstnärer och nybörjare.</p><p>I samband med utställningen presenteras också föreningens historia och verksamhet. Sommarutställningen ordnas både för att fira konsten och för att hedra dem som har gjort Haagan Taideseura till vad den är i dag: en aktiv, varm gemenskap där konsten får plats att leva. Utställningen bjuder in nuvarande och tidigare medlemmar och alla konstintresserade att tillsammans fira de gångna decennierna och blicka framåt.</p><p>Fritt inträde.</p>",
                "en": "<p>The Haaga Art Society's anniversary exhibition presents 60 years of the society's activities and fills Kanneltalo with art and stories.</p><p>The Kanneltalo Gallery exhibition brings together works by Haaga Art Society artists from different decades. The exhibition features paintings, graphic art prints, photographs and sculptures reflecting the expression of individual artists but also the long and rich tradition of the community. The works reflect the styles, experiments and personal views of their creators over different eras. In addition to older works, recent works will also be exhibited, offering the viewer the opportunity to travel through time.</p><p>Founded in 1966 in Pohjois-Haaga, the Haaga Art Society is an important local cultural institution, providing opportunities for community-based creation and presentation of art. Over the years, the society has organised numerous exhibitions, courses, workshops and collaborative projects that have provided inspiration and learning for both experienced artists and novices.</p><p>The exhibition will also present the history and activities of the club. The summer exhibition is not only a celebration of art, but also a tribute to those who have made the Haaga Art Society what it is today: an active, warm community where art has a place to thrive. The exhibition invites current and former members and all art lovers to celebrate the past decades and look to the future together.</p><p>Free entry.</p>"
            },
            "name": {
                "fi": "Haagan Taideseuran 60-vuotisjuhlanäyttely",
                "sv": "Haagan Taideseuras 60-årsjubileumsutställning",
                "en": "60th anniversary exhibition of the Haaga Art Society"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68082/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67809",
            "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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494917,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-20T12:13:09.880231Z",
                    "last_modified_time": "2026-02-20T12:13:09.880244Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782919.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494917/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-20T12:13:09.759398Z",
            "last_modified_time": "2026-03-20T01:14:22.655597Z",
            "date_published": null,
            "start_time": "2026-05-20T09:00:00Z",
            "end_time": "2026-05-20T09:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Esityksellinen rentoutumishetki päiväkoti- ja koululaisryhmille Karhukallion metsässä",
                "sv": "En avslappnande föreställning för daghems- och elevgrupper i Björnklippans skog.",
                "en": "Performance and relaxation moment for day-care and school groups in the Karhukallio forest."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/816A12D892A0A124A49F6F1BEB61C463/Metsaan_laskeutumiset_Karhukalliolla_paivakodeille_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/816A12D892A0A124A49F6F1BEB61C463/Metsaan_laskeutuminen_Landa_i_skogen_",
                "en": "http://www.stoa.fi/en/events/event/816A12D892A0A124A49F6F1BEB61C463/Metsaan_laskeutuminen_Descending_into_the_forest_"
            },
            "description": {
                "fi": "<p>Esityksellinen rentoutumishetki päiväkoti- ja koululaisryhmille Karhukallion metsässä</p><p>Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitettu satu metsässä asuvasta oravasta. Sen avulla laskeudutaan metsän rauhaan kaikkia aisteja hyödyntäen. Köllöttelemme riippumatoissa kuunnellen elävää musiikkia ja metsän ääniä. Mitä kaikkea metsä supattaa, jos pysähdymme kuuntelemaan?</p><p>Jokaiselle lapselle varataan oma riippumatto, ja siksi ryhmän maksimikoko on 19.</p><p>Työpaja soveltuu 4–8-vuotiaille. Myrskyn sattuessa tapahtumalle pyritään löytämään uusi ajankohta.</p><p>Ohjaajat: Verna Kuntsi ja Satu Sipilä, Seikkailutaidekoulu</p><p>Paikka: Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br>Kesto: n. 45 min</p><p>Ikäsuositus: 4–8-vuotiaat</p><p>Kieli: suomi</p><p>Vapaa pääsy. Pakolliset ennakkoilmoittautumiset: kultus.hel.fi, 9.1. klo 10 alkaen</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>En avslappnande föreställning för daghems- och elevgrupper i Björnklippans skog.</p><p>Visste du att man också kan vila i skogen? I början av skogsstunden får vi se och höra en liveillustrerad saga om en ekorre som bor i skogen. Med hjälp av den landar vi i skogens frid och utnyttjar alla sinnen. Vi slappnar av i hängmattor och lyssnar på levande musik och skogens ljud. Vad viskar skogen om då vi stannar upp och lyssnar?</p><p>Det finns en egen hängmatta för varje barn, och därför är den maximala gruppstorleken 19.</p><p>Workshoppen är lämplig för 4–8-åringar. I händelse av stormigt väder försöker vi hitta ett nytt datum för evenemanget.</p><p>Handledare: Verna Kuntsi och Satu Sipilä, Seikkailutaidekoulu</p><p>Plats: Björnklippans skog i Kasåkern. Mötesplats vid korsningen mellan Viilarvägen och Hylsnyckelvägen. Spårjokerns hållplats (linje 15): Kauppamyllyntie.</p><p>Åldersrekommendation: 4–8-åringar <br>Längd: ca 45 min. <br>Språk: finska</p><p>Fritt inträde. Obligatorisk förhandsanmälan: kultus.hel.fi,</p><p>Mer information: hanna.westerholm@hel.fi</p>",
                "en": "<p>Performance and relaxation moment for day-care and school groups in the Karhukallio forest.</p><p>Did you know that you are also allowed to rest in the forest? At the beginning of the forest moment, you will see and hear a live fairy tale about a squirrel living in the forest. It allows you to descend into the peace of the forest using all your senses. You get to relax in a hammock, listen to live music and the sounds of the forest. What does the forest tell us, if we stop to listen?</p><p>Hammocks are provided for each child, which is why the maximum group size is 19.</p><p>The workshop is suitable for 4–8-year-olds. In the event of a storm, we will try to reschedule the event.</p><p>Instructors: Verna Kuntsi and Satu Sipilä, Seikkailutaidekoulu<br>Location: Karhukallio Forest in Roihupelto<br>Age recommendation: Ages 4–8 <br>Duration: approx. 45 min <br>Language: Finnish</p><p>Admission is free. Pre-registration required at kultus.hel.fi, from 9 January at 10 am</p><p>Additional information: hanna.westerholm@hel.fi</p>"
            },
            "name": {
                "fi": "Metsään laskeutumiset Karhukalliolla (päiväkodeille)",
                "sv": "Metsään laskeutuminen (Landa i skogen)",
                "en": "Metsään laskeutuminen (Descending into the forest)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67809/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67808",
            "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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494916,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-20T12:13:09.438408Z",
                    "last_modified_time": "2026-02-20T12:13:09.438422Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782918.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494916/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-20T12:13:09.284888Z",
            "last_modified_time": "2026-03-20T01:14:22.516599Z",
            "date_published": null,
            "start_time": "2026-05-20T07:00:00Z",
            "end_time": "2026-05-20T07:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Esityksellinen rentoutumishetki päiväkoti- ja koululaisryhmille Karhukallion metsässä",
                "sv": "En avslappnande föreställning för daghems- och elevgrupper i Björnklippans skog.",
                "en": "Performance and relaxation moment for day-care and school groups in the Karhukallio forest."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/9AA3E1F8FD0CAE867A87D554033F93F5/Metsaan_laskeutumiset_Karhukalliolla_paivakodeille_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/9AA3E1F8FD0CAE867A87D554033F93F5/Metsaan_laskeutuminen_Landa_i_skogen_",
                "en": "http://www.stoa.fi/en/events/event/9AA3E1F8FD0CAE867A87D554033F93F5/Metsaan_laskeutuminen_Descending_into_the_forest_"
            },
            "description": {
                "fi": "<p>Esityksellinen rentoutumishetki päiväkoti- ja koululaisryhmille Karhukallion metsässä</p><p>Tiesitkö, että metsässä on lupa myös levätä? Metsähetken aluksi nähdään ja kuullaan livekuvitettu satu metsässä asuvasta oravasta. Sen avulla laskeudutaan metsän rauhaan kaikkia aisteja hyödyntäen. Köllöttelemme riippumatoissa kuunnellen elävää musiikkia ja metsän ääniä. Mitä kaikkea metsä supattaa, jos pysähdymme kuuntelemaan?</p><p>Jokaiselle lapselle varataan oma riippumatto, ja siksi ryhmän maksimikoko on 19.</p><p>Työpaja soveltuu 4–8-vuotiaille. Myrskyn sattuessa tapahtumalle pyritään löytämään uusi ajankohta.</p><p>Ohjaajat: Verna Kuntsi ja Satu Sipilä, Seikkailutaidekoulu</p><p>Paikka: Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie. <br>Kesto: n. 45 min</p><p>Ikäsuositus: 4–8-vuotiaat</p><p>Kieli: suomi</p><p>Vapaa pääsy. Pakolliset ennakkoilmoittautumiset: kultus.hel.fi, 9.1. klo 10 alkaen</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>En avslappnande föreställning för daghems- och elevgrupper i Björnklippans skog.</p><p>Visste du att man också kan vila i skogen? I början av skogsstunden får vi se och höra en liveillustrerad saga om en ekorre som bor i skogen. Med hjälp av den landar vi i skogens frid och utnyttjar alla sinnen. Vi slappnar av i hängmattor och lyssnar på levande musik och skogens ljud. Vad viskar skogen om då vi stannar upp och lyssnar?</p><p>Det finns en egen hängmatta för varje barn, och därför är den maximala gruppstorleken 19.</p><p>Workshoppen är lämplig för 4–8-åringar. I händelse av stormigt väder försöker vi hitta ett nytt datum för evenemanget.<br>Handledare: Verna Kuntsi och Satu Sipilä, Seikkailutaidekoulu</p><p>Plats: Björnklippans skog i Kasåkern. Mötesplats vid korsningen mellan Viilarvägen och Hylsnyckelvägen. Spårjokerns hållplats (linje 15): Kauppamyllyntie.<br>Åldersrekommendation: 4–8-åringar</p><p>Längd: ca 45 min. <br>Språk: finska</p><p>Fritt inträde. Obligatorisk förhandsanmälan: kultus.hel.fi,</p><p>Mer information: hanna.westerholm@hel.fi</p>",
                "en": "<p>Performance and relaxation moment for day-care and school groups in the Karhukallio forest.</p><p>Did you know that you are also allowed to rest in the forest? At the beginning of the forest moment, you will see and hear a live fairy tale about a squirrel living in the forest. It allows you to descend into the peace of the forest using all your senses. You get to relax in a hammock, listen to live music and the sounds of the forest. What does the forest tell us, if we stop to listen?</p><p>Hammocks are provided for each child, which is why the maximum group size is 19.</p><p>The workshop is suitable for 4–8-year-olds. In the event of a storm, we will try to reschedule the event.</p><p>Instructors: Verna Kuntsi and Satu Sipilä, Seikkailutaidekoulu<br>Location: Karhukallio Forest in Roihupelto<br>Age recommendation: Ages 4–8</p><p>Duration: approx. 45 min <br>Language: Finnish</p><p>Admission is free. Pre-registration required at kultus.hel.fi, from 9 January at 10 am</p><p>Additional information: hanna.westerholm@hel.fi</p>"
            },
            "name": {
                "fi": "Metsään laskeutumiset Karhukalliolla (päiväkodeille)",
                "sv": "Metsään laskeutuminen (Landa i skogen)",
                "en": "Metsään laskeutuminen (Descending into the forest)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67808/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68139",
            "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:41/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494933,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-24T09:13:07.094548Z",
                    "last_modified_time": "2026-02-24T09:13:07.094567Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785764.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494933/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-02-24T09:13:06.984251Z",
            "last_modified_time": "2026-03-20T01:14:22.196395Z",
            "date_published": null,
            "start_time": "2026-05-19T11:00:00Z",
            "end_time": "2026-05-19T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Haluatko vinkkejä ekologisesti kestävämpään arkeen? Helsinki järjestää monipuolisen kiertotaloustapahtuman Kanneltalossa ja Sitratorilla.",
                "sv": "Vill du ha tips för en mer ekologiskt hållbar livsstil? Helsingfors ordnar ett mångsidigt evenemang för cirkulär ekonomi på Gamlasgården och Cittertorget.",
                "en": "Would you like some tips for a more ecologically sustainable lifestyle? Helsinki is organising a diverse circular economy event at Kanneltalo and Sitratori."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2044C7506A56FC313EE841241C37BCC3/Kaikki_kiertaa_Kanneltalossa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2044C7506A56FC313EE841241C37BCC3/Allt_cirkulerar_pa_Gamlasgarden",
                "en": "http://www.kanneltalo.fi/en/events/event/2044C7506A56FC313EE841241C37BCC3/Recycling_at_Kanneltalo"
            },
            "description": {
                "fi": "<p>Haluatko vinkkejä ekologisesti kestävämpään arkeen? Helsinki järjestää monipuolisen kiertotaloustapahtuman Kanneltalossa ja Sitratorilla.</p><p>Kaupungin omien toimijoiden ja yhteistyökumppaneiden työpajoissa opitaan hyödyllisiä taitoja vaatteiden korjaamisesta jätteiden lajitteluun, minkä lisäksi tutustutaan erilaisiin kiertotalouden palveluihin.</p><p>Tapahtumassa saadaan lisäksi nauttia musiikista, kiertotalousmuotinäytöksistä ja monenlaisesta yllättävästäkin tekemisestä.<br>Vapaa pääsy!</p>",
                "sv": "<p>Vill du ha tips för en mer ekologiskt hållbar livsstil? Helsingfors ordnar ett mångsidigt evenemang för cirkulär ekonomi på Gamlasgården och Cittertorget.</p><p>I verkstäder som ordnas av stadens egna aktörer och samarbetspartner kan du lära dig nyttiga färdigheter i allt från hur man lagar kläder till hur man sorterar skräp, och du kan också lära dig mer om olika tjänster för cirkulär ekonomi.</p><p>Evenemanget bjuder också på musik, modevisningar med fokus på cirkulär ekonomi och olika överraskningsaktiviteter.<br>Fritt inträde!</p>",
                "en": "<p>Would you like some tips for a more ecologically sustainable lifestyle? Helsinki is organising a diverse circular economy event at Kanneltalo and Sitratori.</p><p>Attend workshops held by the City's own actors and partners to learn useful skills from repairing clothes to sorting waste, as well as learning about different circular economy services.</p><p>The event will also feature music, circular economy fashion shows and all sorts of unexpected activities.<br>Free entry!</p>"
            },
            "name": {
                "fi": "Kaikki kiertää Kanneltalossa – Pukeutumisen ja taiteen kiertotaloustapahtuma",
                "sv": "Allt cirkulerar på Gamlasgården",
                "en": "Recycling at Kanneltalo"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68139/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68084",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494804,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-09T12:13:55.943387Z",
                    "last_modified_time": "2026-02-09T12:13:55.943402Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784528.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494804/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-02-09T12:13:55.843920Z",
            "last_modified_time": "2026-03-20T01:14:22.076250Z",
            "date_published": null,
            "start_time": "2026-05-19T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen",
                "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8BC18318E85F9689273B9FB3F14FBA87/Jussi_Ollilan_metsasatutuokiot",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8BC18318E85F9689273B9FB3F14FBA87/Skogssagostunder_med_Jussi_Ollila_",
                "en": "http://www.vuotalo.fi/en/events/event/8BC18318E85F9689273B9FB3F14FBA87/Jussi_Ollila_s_forest_fairy_tales_"
            },
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Satu on aina uusi, koska se syntyy vuorovaikutuksessa lapsiyleisön kanssa. Metsäsatutuokio sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille     <br>Kesto: n. 45 min <br>Kieli: suomi     <br>Vapaa pääsy <br>Tarkoitettu päiväkotiryhmille ja perheille. Päiväkotiryhmille ennakkoilmoittautumiset osoitteessa www.kultus.hel.fi</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen. <br>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar <br>Längd: ca 45 min. <br>Språk: finska <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på www.kultus.hel.fi</p>",
                "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip. <br>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds <br>Duration: approx. 45 min <br>Language: Finnish <br>Free of charge  <br>Intended for day-care groups and families. Advance registration for groups at www.kultus.hel.fi</p>"
            },
            "name": {
                "fi": "Jussi Ollilan metsäsatutuokiot",
                "sv": "Skogssagostunder med Jussi Ollila",
                "en": "Jussi Ollila's forest fairy tales"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68084/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68083",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494803,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-09T12:13:55.567981Z",
                    "last_modified_time": "2026-02-09T12:13:55.568000Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784527.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494803/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-02-09T12:13:55.440738Z",
            "last_modified_time": "2026-03-20T01:14:21.955597Z",
            "date_published": null,
            "start_time": "2026-05-19T06:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A6CD010052293AC80AF1F3D0753EE519/Jussi_Ollilan_metsasatutuokiot",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A6CD010052293AC80AF1F3D0753EE519/Skogssagostunder_med_Jussi_Ollila_",
                "en": "http://www.vuotalo.fi/en/events/event/A6CD010052293AC80AF1F3D0753EE519/Jussi_Ollila_s_forest_fairy_tales_"
            },
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Satu on aina uusi, koska se syntyy vuorovaikutuksessa lapsiyleisön kanssa. Metsäsatutuokio sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille     <br>Kesto: n. 45 min <br>Kieli: suomi     <br>Vapaa pääsy <br>Tarkoitettu päiväkotiryhmille ja perheille. Päiväkotiryhmille ennakkoilmoittautumiset osoitteessa www.kultus.hel.fi</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen. <br>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar <br>Längd: ca 45 min. <br>Språk: finska <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på www.kultus.hel.fi</p>",
                "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip. <br>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds <br>Duration: approx. 45 min <br>Language: Finnish <br>Free of charge  <br>Intended for day-care groups and families. Advance registration for groups at www.kultus.hel.fi</p>"
            },
            "name": {
                "fi": "Jussi Ollilan metsäsatutuokiot",
                "sv": "Skogssagostunder med Jussi Ollila",
                "en": "Jussi Ollila's forest fairy tales"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68083/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67291",
            "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: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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494069,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T12:12:55.786888Z",
                    "last_modified_time": "2025-12-04T12:12:55.786903Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780841.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494069/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T12:12:55.716304Z",
            "last_modified_time": "2026-03-20T01:14:21.852845Z",
            "date_published": null,
            "start_time": "2026-05-18T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!",
                "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!",
                "en": "Nothing is more fun than singing – except for singing together!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/783B218B5684279DF42BD6ACEA181C5D/Nyt_lauletaan_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/783B218B5684279DF42BD6ACEA181C5D/Nu_sjunger_vi_",
                "en": "http://www.kanneltalo.fi/en/events/event/783B218B5684279DF42BD6ACEA181C5D/Let_us_sing_"
            },
            "description": {
                "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko Mari Kätkä.</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.</p><p>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Kesto: 1 h</p>",
                "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. Mari Kätkä leder allsången.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p><p>Längd: 1 h</p>",
                "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by Mari Kätkä.</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p><p>Duration: 1 h</p>"
            },
            "name": {
                "fi": "Nyt lauletaan! – Maksuttomat maanantait",
                "sv": "Nu sjunger vi! – Kostnadsfria måndagar",
                "en": "Let us sing! – Free Mondays"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67291/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67898",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494318,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-23T12:14:03.929506Z",
                    "last_modified_time": "2025-12-23T12:14:03.929523Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777015.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494318/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-23T12:14:03.781196Z",
            "last_modified_time": "2026-03-20T01:14:21.732409Z",
            "date_published": null,
            "start_time": "2026-05-18",
            "end_time": "2026-05-24",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Toukokuun lopussa Annantalossa juhlistetaan valtakunnallista lastenkulttuurin juhlaviikkoa. Juhlaviikolla tuomme lasten ja nuorten äänen kuuluviin ja juhlistamme heidän tekemäänsä taidetta!",
                "sv": "I slutet av maj firar Annegården den nationella barnkulturveckan. Under veckan lyfter vi fram barns och ungas röster och firar den konst som de skapar!",
                "en": "At the end of May, Annantalo will celebrate National Children's Culture Week. During the week, we will celebrate the art of children and young people!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9A5D093B348188A742A42EC13FDC160B/Annantalon_lastenkulttuurin_juhlaviikko_Piilossa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9A5D093B348188A742A42EC13FDC160B/Annegardens_barnkulturvecka_I_det_fordolda_",
                "en": "http://www.annantalo.fi/en/events/event/9A5D093B348188A742A42EC13FDC160B/Annantalo_Children_s_Culture_Week_Hide_and_Seek_"
            },
            "description": {
                "fi": "<p>Toukokuun lopussa Annantalossa juhlistetaan valtakunnallista lastenkulttuurin juhlaviikkoa. Juhlaviikolla tuomme lasten ja nuorten äänen kuuluviin ja juhlistamme heidän tekemäänsä taidetta!</p><p>Viikon aikana nähdään teatteri- ja tanssiesityksiä, joita Annantalon esittävien taiteiden ryhmät ovat valmistelleet lukuvuoden kestoisilla kursseillaan. Esitykset saavat ensi-iltansa juhlaviikolla.</p><p>Juhlaviikko huipentuu Piilossa -viikonloppuun 23.–24.5., jolloin kaikki esitykset ovat katsottavissa usean esityksen sarjoissa. Esitysten yhteyteen järjestetään näyttelyopastuksia, joissa pääset tutustumaan Piilossa -näyttelyyn, jossa on esillä muun muassa lasten tekemiä maalauksia sekä video- ja keramiikkateoksia.</p><p>Osana viikon ohjelmaa järjestämme myös päiväkodeille suunnattua toimintaa.</p><p>Tarkempi ohjelma julkaistaan kevään aikana.</p>",
                "sv": "<p>I slutet av maj firar Annegården den nationella barnkulturveckan. Under veckan lyfter vi fram barns och ungas röster och firar den konst som de skapar!</p><p>Under veckan visas teater- och dansföreställningar som Annegårdens scenkonstgrupper har förberett under sina årskurser. Föreställningarna har premiär under festveckan. <br> <br>Veckan kulminerar i en helg i det fördolda den 23-24 maj, då alla föreställningar visas i en serie med flera föreställningar. Föreställningarna åtföljs av guidade visningar av utställningen ”Piiloss”, som visar målningar, video- och keramikverk av barn. <br> <br>Som en del av veckans program kommer vi också att anordna aktiviteter för förskolor. <br> <br>Ett mer detaljerat program kommer att publiceras under våren.</p>",
                "en": "<p>At the end of May, Annantalo will celebrate National Children's Culture Week. During the week, we will celebrate the art of children and young people!</p><p>The week will feature theater and dance performances prepared by Annantalo's performing arts groups during their courses throughout the school year. The performances will premiere during the festival week. <br> <br>The week will culminate in the Piilossa (Hide and seek) weekend on May 23–24, when all performances will be seen in a series of multiple performances. In connection with the performances, guided tours of the exhibition will be organized, where you can explore the Piilossa exhibition, which features paintings as well as video and ceramic works by children.</p><p>As part of the week's program, we will also organize activities for daycare groups.<br> <br>A more detailed program will be published during the spring.</p>"
            },
            "name": {
                "fi": "Annantalon lastenkulttuurin juhlaviikko: Piilossa",
                "sv": "Annegårdens barnkulturvecka: I det fördolda",
                "en": "Annantalo Children's Culture Week: Hide and Seek"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67898/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67680",
            "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:32/?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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493982,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-01T13:14:20.422610Z",
                    "last_modified_time": "2025-12-01T13:14:20.422624Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782329.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493982/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T13:14:20.331787Z",
            "last_modified_time": "2026-03-20T01:14:21.391834Z",
            "date_published": null,
            "start_time": "2026-05-16T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!",
                "sv": "Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!",
                "en": "How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/905324E06F71E2A4BAB34A2477A083D2/Kaikkien_lasten_tanssitunti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/905324E06F71E2A4BAB34A2477A083D2/Danslektion_for_alla_barn",
                "en": "http://www.annantalo.fi/en/events/event/905324E06F71E2A4BAB34A2477A083D2/All_children_s_dance_class"
            },
            "description": {
                "fi": "<p>Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!</p><p>Inklusiiviset kaikkien lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Tunteja ohjaavat tanssiin, vammaisuuteen, pedagogiikkaan ja esteettömyyteen perehtyneet ammattilaiset, joilla kaikilla on erilainen taiteellis-pedagoginen tausta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen: opetus@kaaoscompany.fi</p><p>Osallistujamäärä: max. 18 (lasta ja aikuista yhdessä)</p>",
                "sv": "<p>Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!</p><p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar.</p><p>Lektionerna leds av yrkesverksamma som är insatta i dans, funktionsnedsättning, pedagogik och tillgänglighet, som alla har olika konstnärlig-pedagogisk bakgrund.</p><p>Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning via e-post: opetus@kaaoscompany.fi</p><p>Antal deltagare: max. 18 (barn och vuxna tillsammans)</p>",
                "en": "<p>How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!</p><p>Children’s Inclusive Dance Classes offer children and their adults the joy of togetherness, movement and an opportunity to meet new people of similar and different backgrounds.</p><p>During the classes we play with movement together and each in our own way.<br>The classes are free and open to children of all ages, their siblings and adults, regardless of disability or non-disability.</p><p>The classes are taught by professionals with expertise in dance, theatre, disability, pedagogy and accessibility, all with different artistic-pedagogical backgrounds.</p><p>The lesson lasts one hour. The space is accessible.</p><p>Free admission, pre-registration required by email: opetus@kaaoscompany.fi</p><p>Number of participants: max. 18 (children and adults together)<br>Sat 18.10.2025 at 14.00<br>Tanssiluokka<br>Annankatu 30, Helsinki<br>Free entry</p>"
            },
            "name": {
                "fi": "Kaikkien lasten tanssitunti – kaikenikäisille",
                "sv": "Danslektion för alla barn – för alla åldrar",
                "en": "All children's dance class – for all ages"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67680/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67500",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494175,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-10T12:13:31.213517Z",
                    "last_modified_time": "2025-12-10T12:13:31.213538Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781607.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494175/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-10T12:13:31.123089Z",
            "last_modified_time": "2026-03-20T01:14:21.291332Z",
            "date_published": null,
            "start_time": "2026-05-16T08:00:00Z",
            "end_time": "2026-05-16T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B4E81D44F4ED4BDACF091196616D6C87/Annantalon_taidelauantai_Fragmentit_framille",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/B4E81D44F4ED4BDACF091196616D6C87/Annegardens_konstlordagar_Fram_med_fragmenten",
                "en": "http://www.annantalo.fi/en/events/event/B4E81D44F4ED4BDACF091196616D6C87/Annantalo_Art_Saturdays_Fragments_to_the_front"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Fragmentit framille</b></p><p>Annantalon kakkoskerrokseen on ilmestynyt kuvia vanhoista taideteoksista. Millaisia yksityiskohtia taideteoksissa on piilossa? Millaisia kuvia syntyisi, jos yhdistelisimmekin eri teosten palasia?</p><p>Työpajassa katsotaan taideteoksia tarkasti ja leikitään sommittelulla.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Fram med fragmenten</b><br>På Annegårdens andra våning har det dykt upp bilder på gamla konstverk. Vilken typ av detaljer döljer sig i konstverken? Hurdana bilder uppstår om vi kombinerar delar av olika verk?<br>Under verkstaden undersöker vi konstverken noga och leker med kompositionerna.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkomna till Annegården på lördagar!</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Fragments to the front</b><br>Pictures of old works of art have appeared on the second floor of Annantalo. What kind of details are hidden in the artworks? What kind of images would we get if we were to combine pieces of different works?<br>This workshop involves examining artworks and playing with image composition.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Fragmentit framille",
                "sv": "Annegårdens konstlördagar: Fram med fragmenten",
                "en": "Annantalo Art Saturdays: Fragments to the front"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67500/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68088",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494817,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-09T14:13:22.000974Z",
                    "last_modified_time": "2026-02-09T14:13:22.000992Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780515.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494817/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-09T14:13:21.778797Z",
            "last_modified_time": "2026-03-20T01:14:20.608536Z",
            "date_published": null,
            "start_time": "2026-05-13T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jazz for Kids -konsertteihin ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä volyymillä aulassa.",
                "sv": "Jazz for Kids-konserterna är öppna för alla, oavsett ålder! Professionella musiker framför sina egna verk med en barnvänlig volym i lobbyn.",
                "en": "Jazz for Kids concerts welcome everyone from babies to grandparents! Professional musicians perform their own work at a child-friendly volume in the lobby."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/65AB1B8383955E28B423F403A23B2133/Jazz_for_Kids_Oona_Mattsson_Riitta_Paakki",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/65AB1B8383955E28B423F403A23B2133/Jazz_for_Kids_Oona_Mattsson_Riitta_Paakki",
                "en": "http://www.vuotalo.fi/en/events/event/65AB1B8383955E28B423F403A23B2133/Jazz_for_Kids_Oona_Mattsson_Riitta_Paakki"
            },
            "description": {
                "fi": "<p>Jazz for Kids -konsertteihin ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä volyymillä aulassa.</p><p>Jazz for Kids on korkeatasoisten jazzkonserttien sarja, johon ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä äänenvoimakkuudella <br>kulttuurikeskusten helposti saavutettavissa aulatiloissa.</p><p>Uunituoreen Luotsi-yhtyeen muusikot, alttosaksofonisti ja huilisti Oona Mattsson sekä pianisti Riitta Paakki, esittävät Jazz Suomi 100 -juhlavuoden kunniaksi kiehtovan kattauksen suomalaisia jazzoriginaaleja sekä omaa tuotantoaan. Luvassa on jazzyleisölle sekä tuttuja että harvemmin kuultuja helmiä tämän päivän tulkintoina, joten katse suuntautuu historian lisäksi vahvasti tulevaisuuteen.</p><p>Oona Mattsson on esiintynyt useiden tunnettujen kotimaisten jazzmuusikoiden kanssa, sekä big bandien että pienempien kokoonpanojen riveissä. Hänen soittoaan voi kuulla muun muassa Kanvas-yhtyeen ja Siina Suutarisen keväällä 2025 julkaistuilla albumeilla. Riitta Paakki on puolestaan arvostettu jazzmuusikko, säveltäjä ja yhtyeenjohtaja, joka sai Jazzliiton Yrjö-palkinnon vuonna 2019. Hän on julkaissut omien yhtyeidensä kanssa seitsemän albumia.</p><p>Tilaisuuden kesto on 45 min. Yhtye esiintyy noin 35 minuuttia, jonka jälkeen yleisö voi tervehtiä muusikoita ja soittimia.</p><p>Oona Mattsson – alttosaksofoni <br>Riitta Paakki – piano</p><p>Suomen Jazzliiton ja Helsingin kulttuurikeskusten Jazz for Kids -toimintamalli pohjautuu samannimiseen konserttisarjaan, jota on järjestetty Espoon kulttuurikeskuksessa vuodesta 2015 yhteistyössä Espoon musiikkiopiston pop/jazzlinja Ebelin kanssa. Konseptin kehittäjä on Espoon musiikkiopiston pop/jazzlinja Ebeli.</p><p>Vuonna 2026 tulee kuluneeksi 100 vuotta siitä, kun jazz symbolisesti rantautui Andania-laivan mukana Suomeen. Vuosi on siten historiallinen kotimaisen jazzin juhlavuosi: Jazz Suomi 100 -juhlavuosi. Juhlavuosi nostaa esiin kotimaista jazzia ja sen tekijöitä niin Suomessa kuin ulkomailla, ja juhlii jazzia osana suomalaista kulttuuriperintöä. Jazz Suomi 100 -kampanjaa koordinoi Suomen Jazzliitto.</p><p>KOHDEYRHMÄ: lapset, perheet <br>KESTO: 45 min</p>",
                "sv": "<p>Jazz for Kids-konserterna är öppna för alla, oavsett ålder! Professionella musiker framför sina egna verk med en barnvänlig volym i lobbyn.</p><p>Jazz for Kids är en serie jazzkonserter på hög nivå där alla åldrar är välkomna! Professionella musiker framför sin egen produktion med barnvänlig volym i kulturcentrens lättillgängliga lobbyutrymmen.</p><p>Musikerna i det färska bandet Luotsi, altsaxofonisten och flöjtisten Oona Mattsson och Pianisten Riitta Paakki, framför en fascinerande blandning av finländska jazzoriginal och egen produktion för att uppmärksamma Jazz Finland 100-jubileumsåret. På programmet står både låtar som är välkända bland jazzpubliken och mindre kända pärlor i moderna tolkningar, så blicken riktas såväl mot historien som starkt framåt.</p><p>Oona Mattsson har framträtt med många kända finska jazzmusiker, både i storband och mindre ensembler. Man kan höra henne spela bland annat på gruppen Kanvas och Siina Suutarinens album från våren 2025. Riitta Paakki är en hyllad jazzmusiker, tonsättare och bandledare som tilldelades jazzförbundets Yrjö-pris år 2019. Hon har gett ut sju album med sina egna band.</p><p>Evenemanget varar i 45 minuter. Bandet spelar i ca 35 minuter, varefter publiken kan hälsa på musikerna och instrumenten.</p><p>Oona Mattsson – altsaxofon <br>Riitta Paakki – piano</p><p>Suomen Jazzliittos och Helsingfors kulturcenters verksamhetsmodell Jazz for Kids baserar sig på en konsertserie med samma namn som har ordnats på kulturcentren i Esbo sedan 2015 i samarbete med pop-/jazzlinjen Ebeli vid Espoon musiikkiopisto. Konceptet har utvecklats av pop-/jazzlinjen Ebeli vid Espoon musiikkiopisto.</p><p>År 2026 blir det 100 år sedan jazzen symboliskt landsteg i Finland med fartyget Andania. Året är alltså ett historiskt jubileumsår för den inhemska jazzen: Jubileumsåret Jazz Finland 100. Under jubileumsåret lyfter vi fram den finländska jazzen och dess artister både i Finland och utomlands samt firar jazzen som en del av det finländska kulturarvet. Kampanjen Jazz Suomi 100 samordnas av Suomen Jazzliitto.</p><p>KOHDEYRHMÄ: lapset, perheet <br>KESTO: 45 min</p>",
                "en": "<p>Jazz for Kids concerts welcome everyone from babies to grandparents! Professional musicians perform their own work at a child-friendly volume in the lobby.</p><p>Jazz for Kids is a series of high-quality jazz concerts for everyone from babies to grandparents! Professional musicians perform their work at child-friendly volumes in the easily accessible lobbies of the City’s cultural centres.</p><p>The musicians of the newly formed Luotsi band, alto saxophonist and flutist Oona Mattsson and pianist Riitta Paakki, will perform a fascinating selection of Finnish jazz originals and their own compositions to celebrate the Jazz in Finland 100 anniversary year. With both familiar and less-heard gems for jazz audiences, interpreted in a contemporary way, the focus of the concert is not only on history but also on the future.</p><p>Oona Mattsson has performed with many well-known Finnish jazz musicians, both in big bands and smaller ensembles. Her playing can be heard on recordings such as the albums released by Kanvas and Siina Suutarinen in spring 2025. Riitta Paakki is an acclaimed jazz musician, composer and bandleader who received the Finnish Jazz Federation’s Yrjö Award in 2019. She has released seven albums with her own bands.</p><p>The duration of the event is 45 minutes. The band will perform for about 35 minutes, after which the audience can come greet the musicians and see the instruments.</p><p>Oona Mattsson – alto saxophone <br>Riitta Paakki – piano</p><p>The Jazz for Kids operating model of the Finnish Jazz Federation and City of Helsinki Cultural Centres is based on the concert series of the same name, which has been organised at the Espoo Cultural Centre since 2015 in cooperation with Espoo Music Institute’s pop/jazz line Ebeli. The concept was developed by Ebeli, the pop/jazz line at Espoo Music Institute.</p><p>2026 marks the 100th anniversary of jazz symbolically landing in Finland on the ship Andania. Thus, the year is a historic celebration of Finnish jazz: the Jazz in Finland 100 centenary. The centenary will highlight Finnish jazz and its artists both in Finland and abroad, and celebrate jazz as part of the Finnish cultural heritage. The Jazz in Finland 100 campaign is coordinated by the Finnish Jazz Federation.</p><p>KOHDEYRHMÄ: lapset, perheet <br>KESTO: 45 min</p>"
            },
            "name": {
                "fi": "Jazz for Kids: Oona Mattsson & Riitta Paakki",
                "sv": "Jazz for Kids: Oona Mattsson & Riitta Paakki",
                "en": "Jazz for Kids: Oona Mattsson & Riitta Paakki"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68088/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68245",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1643197,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-16T13:13:58.489784Z",
                    "last_modified_time": "2026-03-16T13:13:58.489800Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786458.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1643197/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-16T13:13:58.369761Z",
            "last_modified_time": "2026-03-20T01:14:20.488416Z",
            "date_published": null,
            "start_time": "2026-05-13",
            "end_time": "2026-06-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,
            "short_description": {
                "fi": "Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D50B706A0B2D9A3FC8B30813AB05C3C8/Made_in_Vuosaari_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D50B706A0B2D9A3FC8B30813AB05C3C8/Made_in_Vuosaari_",
                "en": "http://www.vuotalo.fi/en/events/event/D50B706A0B2D9A3FC8B30813AB05C3C8/Made_in_Vuosaari"
            },
            "description": {
                "fi": "<p>Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta.</p><p>Projektin tarkoitus on kurottaa kohti alueen asukkaita ja saada tutkimaan omia kodin tavaroita. Mistä ne ovat lähtöisin? Onko niillä käyttöä? Minne ne tulevat päätymään, kun niitä ei enää tarvita?</p><p>Vuosaarelaisten lahjoittamista tarpeettomista tavaroista on tehty koosteita kirjaston elämäkertaosastoille. Esinekoosteet näyttäytyvät alueen asukkaiden muotokuvina. Lahjoitetut esineet on skannattu ja tulostettu uuteen kokonaisuuteen 3D-tulostimella. Näin näyttelyn osaksi tuodaan paikallisten asukkaiden läsnäoloa ja mikrohistoriaa.</p><p>Alueen asukkailta kerätyt esineet ovat suurelta osin Kiinassa massatuotettuja tavaroita, joiden merkitys on hävinnyt uutuusarvon kadottua. Ehkä juuri tässä piilee nykyhetkessämme kytevä kriisi: maailma täyttyy muovista ja tavarasta, jota kukaan ei arvosta tai halua. Miten muuttaisimme suhteemme esineisiin vaalivaksi ja arvostavaksi? Miten oppisimme näkemään uutuusarvon ohi ja suosimaan kestäväksi suunniteltuja, korjattavissa olevia, tarinoiden kyllästämiä tavaroita?</p><p>Anne Roininen on kuvanveistäjä, joka työskentelee usein paikkasidonnaisesti ja prosessipohjaisesti. Kohtaamiset ihmisten kanssa ovat tärkeä osa Roinisen työskentelyä, ja teosten taustalla on usein poliittinenkin lataus. Lue lisää:https://anneroininen.com/</p><p>Löydät teokset Elämäkerta-hyllyistä, Vuosaaren kirjaston puolelta.</p>"
            },
            "name": {
                "fi": "Made in Vuosaari – Vuosaaren kirjastossa",
                "sv": "Made in Vuosaari – Vuosaaren kirjastossa",
                "en": "Made in Vuosaari – Vuosaaren kirjastossa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68245/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67469",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494013,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T08:13:11.160660Z",
                    "last_modified_time": "2025-12-03T08:13:11.160676Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781436.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494013/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T08:13:11.046257Z",
            "last_modified_time": "2026-03-20T01:14:20.239203Z",
            "date_published": null,
            "start_time": "2026-05-12T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!",
                "sv": "Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!",
                "en": "Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9F1D8C4D84688DEDF9DF5DE98CA77820/Yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9F1D8C4D84688DEDF9DF5DE98CA77820/Allsang",
                "en": "http://www.malmitalo.fi/en/events/event/9F1D8C4D84688DEDF9DF5DE98CA77820/Singalongs"
            },
            "description": {
                "fi": "<p>Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.<br>Yhteislauluja järjestetään Malmitalon pienessä salissa kuukauden ensimmäisinä tiistaina seuraavasti:</p><p>Ti 13.1. klo 17.00<br>Ti 3.2. klo 17.00<br>Ti 10.3. klo 17.00<br>Ti 14.4. klo 17.00<br>Ti 12.5. klo 17.00</p><p>Kesto: 1 t<br>Vapaa pääsy</p>",
                "sv": "<p>Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!</p><p>Under ledning av Jukka Okkonen och Pauli Kainulainen får var och en sjunga härliga favoriter med hela sitt hjärta.<br>Allsången ordnas i den lilla salen i Malms kulturhus den första tisdagen i månaden enligt följande:</p><p>Tis 13.1 kl. 17.00<br>Tis 3.2 kl. 17.00<br>Tis 10.3 kl. 17.00<br>Tis 14.4 kl. 17.00<br>Tis 12.5 kl. 17.00</p><p>Längd: 1 h<br>Fritt inträde</p>",
                "en": "<p>Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!</p><p>Under the direction of Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to a number of wonderful evergreens.<br>Community singalongs will be held in the small hall of Malmitalo on the first Tuesday of the month as follows:</p><p>Tue 13 January at 17.00<br>Tue 3 February at 17.00<br>Tue 10 March at 17.00<br>Tue 14 April at 17.00<br>Tue 12 May at 17.00</p><p>Duration: 1 h<br>Free entry</p>"
            },
            "name": {
                "fi": "Yhteislaulut",
                "sv": "Allsång",
                "en": "Singalongs"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67469/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68097",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494836,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-10T10:13:07.993790Z",
                    "last_modified_time": "2026-02-10T10:13:07.993804Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784521.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494836/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-10T10:13:07.887828Z",
            "last_modified_time": "2026-03-20T01:14:19.610071Z",
            "date_published": null,
            "start_time": "2026-05-12T09:00:00Z",
            "end_time": "2026-05-12T10: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,
            "short_description": {
                "fi": "Millaista on olla yhteyttävä puu? Miltä sienirihmastossa kulkevat ravinteet kuulostavat?",
                "sv": "Hur är det att vara ett assimilerande träd? Hur låter de näringsämnen som rör sig i svamparnas mycel?",
                "en": "What is it like to be a photosynthesising tree? What do the nutrients travelling through the mycelium sound like?"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7F4D42B7F9F6DD87D97F3368B3FB028E/Toisissa_tiloissa_-kollektiivi_METSIYDYTAAN_-tyopajat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/7F4D42B7F9F6DD87D97F3368B3FB028E/Toisissa_tiloissa-kollektivet_METSIYDYTAAN_-verkstader",
                "en": "http://www.vuotalo.fi/en/events/event/7F4D42B7F9F6DD87D97F3368B3FB028E/Other_Spaces_collective_INTO_THE_FOREST_workshops"
            },
            "description": {
                "fi": "<p>Millaista on olla yhteyttävä puu? Miltä sienirihmastossa kulkevat ravinteet kuulostavat?</p><p>Metsiydytään! -työpajoissa tutkitaan metsäekosysteemin prosesseja taidetyöskentelyä ja luonnontiedettä yhdistäen. Työpajoissa alakoulun oppilaat tutustuvat kokemuksellisesti metsäekosysteemin eri ilmiöihin yhdessä tehtävien keholliseen oppimiseen perustuvien harjoitteiden kautta. Tutkimme metsän eri osasia sekä eläydyimme metsäeliöiden kiehtoviin vuorovaikutussuhteisiin ja kiertokulkuihin.</p><p>Työpaja metsäympäristöä lähestytään toisten lajien näkökulmasta käsin. Sen tavoitteena on syventää lasten luontosuhdetta myönteisten oivallusten ja elämysten kautta. Työpaja lisää tietoa metsäluonnosta ja sen merkityksestä sekä tarjoaa opettajille kehollisen oppimisen työkaluja metsäsuhteen ja metsän eri ilmiöiden käsittelemiseen.</p><p>Työpajojen suunnittelusta ja ohjauksesta vastaavat Toisissa tiloissa -esitystaiteen kollektiivin Kaisa-Liisa Logrén ja Heli Keto. Toisissa tiloissa -esitystaiteen kollektiivi on kehittänyt kehollisia harjoitteita ja osallistavia esityksiä jo yli 20 vuoden ajan. Työpajoissa käytettävä metodi: kehollinen samaistuminen luonnon prosesseihin tarjoaa poikkeuksellisen reitin ekologisen ymmärryksen kasvattamiseen.</p><p>Ryhmille pakollinen ilmoittautuminen etukäteen: kultus.hel.fi</p><p>Kieli: suomi<br>Kesto: noin 1,5 tuntia<br>Vapaa pääsy</p>",
                "sv": "<p>Hur är det att vara ett assimilerande träd? Hur låter de näringsämnen som rör sig i svamparnas mycel?</p><p>Metsiydytään!-verkstäderna utforskar vi processer i skogens ekosystem genom en kombination av konst och naturvetenskap. I verkstäderna får lågstadieelever genom upplevelser bekanta sig med olika fenomen i skogens ekosystem genom gemensamma övningar som baserar sig på kroppsligt lärande. Vi utforskar skogens olika delar och lever oss in i skogsvarelsernas fascinerande relationer och kretslopp.</p><p>I verkstaden närmar vi oss skogsmiljön ur andra arters perspektiv. Dess mål är att fördjupa barnens relation till naturen genom positiva insikter och upplevelser. Verkstaden ökar kunskapen om skogsnaturen och dess betydelse och erbjuder läraren verktyg för kroppsligt lärande för att behandla relationen till skogen och olika fenomen i den.</p><p>Verkstäderna planeras och leds av Kaisa-Liisa Logrén och Heli Keto från Toisissa tiloissa-kollektivet för performancekonst. Toisissa tiloissa-kollektivet för performancekonst har utvecklat kroppsliga övningar och inkluderande föreställningar i över 20 år. Metoden som används i verkstäderna: när man kroppsligen identifierar sig med naturens processer öppnar sig en exceptionell väg till en ökad ekologisk förståelse.</p><p>Grupper måste anmäla sig i förväg: kultus.hel.fi</p><p>Språk: finska<br>Längd: cirka 1,5 h<br>Fritt inträde</p>",
                "en": "<p>What is it like to be a photosynthesising tree? What do the nutrients travelling through the mycelium sound like?</p><p>The Into the Forest! workshops explore forest ecosystem processes by combining art work and natural science. In the workshops, primary school pupils learn experientially about different phenomena in the forest ecosystem through collaborative exercises based on bodily learning. We will explore different parts of the forest and immerse ourselves in the fascinating interactions and cycles of forest organisms.</p><p>The workshop approaches the forest environment from the perspective of other species. The aim is to deepen children’s relationship with nature through positive discoveries and experiences. The workshop increases awareness of forest nature and its importance, and provides teachers with bodily learning tools for delving into the different phenomena of forest relations and forests.</p><p>The workshops will be planned and instructed by Kaisa-Liisa Logrén and Heli Keto from the performance art collective Other Spaces. The Other Spaces performance art collective has been developing bodily exercises and participatory performances for over 20 years. The method used in the workshops: bodily identification with natural processes provides an exceptional route to increasing ecological understanding.</p><p>Groups must register in advance: kultus.hel.fi</p><p>Language: Finnish<br>Duration: roughly 1.5 h<br>Free entry</p>"
            },
            "name": {
                "fi": "Toisissa tiloissa -kollektiivi: METSIYDYTÄÄN! -työpajat – Luonnontiedettä ja taidetta yhdistävät työpajat 1.–2.-luokkalaisille",
                "sv": "Toisissa tiloissa-kollektivet: METSIYDYTÄÄN!-verkstäder – Verkstäder för barn i årskurs 1–2 som kombinerar naturvetenskap och konst",
                "en": "Other Spaces collective: INTO THE FOREST! workshops – Workshops combining natural science and art for 1st–2nd graders"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68097/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68096",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494835,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-10T10:13:07.632332Z",
                    "last_modified_time": "2026-02-10T10:13:07.632346Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784520.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494835/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-10T10:13:07.515803Z",
            "last_modified_time": "2026-03-20T01:14:19.477424Z",
            "date_published": null,
            "start_time": "2026-05-12T07:00:00Z",
            "end_time": "2026-05-12T08: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,
            "short_description": {
                "fi": "Millaista on olla yhteyttävä puu? Miltä sienirihmastossa kulkevat ravinteet kuulostavat?",
                "sv": "Hur är det att vara ett assimilerande träd? Hur låter de näringsämnen som rör sig i svamparnas mycel?",
                "en": "What is it like to be a photosynthesising tree? What do the nutrients travelling through the mycelium sound like?"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/79C0CE19AE03EAB9E2B2FBDDAEB90D92/Toisissa_tiloissa_-kollektiivi_METSIYDYTAAN_-tyopajat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/79C0CE19AE03EAB9E2B2FBDDAEB90D92/Toisissa_tiloissa-kollektivet_METSIYDYTAAN_-verkstader",
                "en": "http://www.vuotalo.fi/en/events/event/79C0CE19AE03EAB9E2B2FBDDAEB90D92/Other_Spaces_collective_INTO_THE_FOREST_workshops"
            },
            "description": {
                "fi": "<p>Millaista on olla yhteyttävä puu? Miltä sienirihmastossa kulkevat ravinteet kuulostavat?</p><p>Metsiydytään! -työpajoissa tutkitaan metsäekosysteemin prosesseja taidetyöskentelyä ja luonnontiedettä yhdistäen. Työpajoissa alakoulun oppilaat tutustuvat kokemuksellisesti metsäekosysteemin eri ilmiöihin yhdessä tehtävien keholliseen oppimiseen perustuvien harjoitteiden kautta. Tutkimme metsän eri osasia sekä eläydyimme metsäeliöiden kiehtoviin vuorovaikutussuhteisiin ja kiertokulkuihin.</p><p>Työpaja metsäympäristöä lähestytään toisten lajien näkökulmasta käsin. Sen tavoitteena on syventää lasten luontosuhdetta myönteisten oivallusten ja elämysten kautta. Työpaja lisää tietoa metsäluonnosta ja sen merkityksestä sekä tarjoaa opettajille kehollisen oppimisen työkaluja metsäsuhteen ja metsän eri ilmiöiden käsittelemiseen.</p><p>Työpajojen suunnittelusta ja ohjauksesta vastaavat Toisissa tiloissa -esitystaiteen kollektiivin Kaisa-Liisa Logrén ja Heli Keto. Toisissa tiloissa -esitystaiteen kollektiivi on kehittänyt kehollisia harjoitteita ja osallistavia esityksiä jo yli 20 vuoden ajan. Työpajoissa käytettävä metodi: kehollinen samaistuminen luonnon prosesseihin tarjoaa poikkeuksellisen reitin ekologisen ymmärryksen kasvattamiseen.</p><p>Ryhmille pakollinen ilmoittautuminen etukäteen: kultus.hel.fi</p><p>Kieli: suomi<br>Kesto: noin 1,5 tuntia<br>Vapaa pääsy</p>",
                "sv": "<p>Hur är det att vara ett assimilerande träd? Hur låter de näringsämnen som rör sig i svamparnas mycel?</p><p>Metsiydytään!-verkstäderna utforskar vi processer i skogens ekosystem genom en kombination av konst och naturvetenskap. I verkstäderna får lågstadieelever genom upplevelser bekanta sig med olika fenomen i skogens ekosystem genom gemensamma övningar som baserar sig på kroppsligt lärande. Vi utforskar skogens olika delar och lever oss in i skogsvarelsernas fascinerande relationer och kretslopp.</p><p>I verkstaden närmar vi oss skogsmiljön ur andra arters perspektiv. Dess mål är att fördjupa barnens relation till naturen genom positiva insikter och upplevelser. Verkstaden ökar kunskapen om skogsnaturen och dess betydelse och erbjuder läraren verktyg för kroppsligt lärande för att behandla relationen till skogen och olika fenomen i den.</p><p>Verkstäderna planeras och leds av Kaisa-Liisa Logrén och Heli Keto från Toisissa tiloissa-kollektivet för performancekonst. Toisissa tiloissa-kollektivet för performancekonst har utvecklat kroppsliga övningar och inkluderande föreställningar i över 20 år. Metoden som används i verkstäderna: när man kroppsligen identifierar sig med naturens processer öppnar sig en exceptionell väg till en ökad ekologisk förståelse.</p><p>Grupper måste anmäla sig i förväg: kultus.hel.fi</p><p>Språk: finska<br>Längd: cirka 1,5 h<br>Fritt inträde</p>",
                "en": "<p>What is it like to be a photosynthesising tree? What do the nutrients travelling through the mycelium sound like?</p><p>The Into the Forest! workshops explore forest ecosystem processes by combining art work and natural science. In the workshops, primary school pupils learn experientially about different phenomena in the forest ecosystem through collaborative exercises based on bodily learning. We will explore different parts of the forest and immerse ourselves in the fascinating interactions and cycles of forest organisms.</p><p>The workshop approaches the forest environment from the perspective of other species. The aim is to deepen children’s relationship with nature through positive discoveries and experiences. The workshop increases awareness of forest nature and its importance, and provides teachers with bodily learning tools for delving into the different phenomena of forest relations and forests.</p><p>The workshops will be planned and instructed by Kaisa-Liisa Logrén and Heli Keto from the performance art collective Other Spaces. The Other Spaces performance art collective has been developing bodily exercises and participatory performances for over 20 years. The method used in the workshops: bodily identification with natural processes provides an exceptional route to increasing ecological understanding.</p><p>Groups must register in advance: kultus.hel.fi</p><p>Language: Finnish<br>Duration: roughly 1.5 h<br>Free entry</p>"
            },
            "name": {
                "fi": "Toisissa tiloissa -kollektiivi: METSIYDYTÄÄN! -työpajat – Luonnontiedettä ja taidetta yhdistävät työpajat 1.–2.-luokkalaisille",
                "sv": "Toisissa tiloissa-kollektivet: METSIYDYTÄÄN!-verkstäder – Verkstäder för barn i årskurs 1–2 som kombinerar naturvetenskap och konst",
                "en": "Other Spaces collective: INTO THE FOREST! workshops – Workshops combining natural science and art for 1st–2nd graders"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68096/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68072",
            "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: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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494750,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T15:13:55.009122Z",
                    "last_modified_time": "2026-02-05T15:13:55.009145Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780739.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494750/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T15:13:54.893753Z",
            "last_modified_time": "2026-03-20T01:14:18.180130Z",
            "date_published": null,
            "start_time": "2026-05-09T09:00:00Z",
            "end_time": "2026-05-09T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Lähde spektaakkelimaiselle kuoromatkalle Stoan aukiolle!",
                "sv": "Kom med på en spektakulär körresa på Stoaplatsen!",
                "en": "Go on a spectacular choir trip to Stoa square!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/79C347F3AD6050633BB7C7B1FC88F809/Stoan_laulupaiva",
                "sv": "http://www.stoa.fi/sv/evenemang/event/79C347F3AD6050633BB7C7B1FC88F809/Stoas_kordag",
                "en": "http://www.stoa.fi/en/events/event/79C347F3AD6050633BB7C7B1FC88F809/Choir_day_at_Stoa"
            },
            "description": {
                "fi": "<p>Lähde spektaakkelimaiselle kuoromatkalle Stoan aukiolle!</p><p>Herätään yhdessä muuttolintujen kanssa laulamaan kevät ja kesä tervetulleeksi. Stoan aukiolla moniääninen laulu raikaa, kun useat kuorot kokoontuvat laulamaan yhdessä eri kielillä. Yleisökin saa laulaa mukana!</p><p>Kesto: 4 tuntia<br>Kieli: suomi/monikielinen</p><p>Vapaa pääsy</p>",
                "sv": "<p>Kom med på en spektakulär körresa på Stoaplatsen!</p><p>Vi vaknar med flyttfåglarna för att sjunga in våren och sommaren.</p><p>På Stoatorget ljuder en mångröstad sång när flera körer samlas för att sjunga tillsammans på olika språk. Publiken får också sjunga med!</p><p>Längd: 4 timmar<br>Språk: finska/flerspråkigt</p>",
                "en": "<p>Go on a spectacular choir trip to Stoa square!</p><p>Let's join the migratory birds in welcoming spring and summer.</p><p>Polyphonic singing will echo in Stoa square as several choirs come together to sing in different languages. The audience can sing along too!</p><p>Duration: 4 hours<br>Language: Finnish/multilingual</p>"
            },
            "name": {
                "fi": "Stoan laulupäivä",
                "sv": "Stoas kördag",
                "en": "Choir day at Stoa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68072/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67574",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494592,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-21T13:13:11.534450Z",
                    "last_modified_time": "2026-01-21T13:13:11.534464Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781797.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494592/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-21T13:13:11.428506Z",
            "last_modified_time": "2026-03-20T01:14:17.470142Z",
            "date_published": null,
            "start_time": "2026-05-08",
            "end_time": "2026-06-07",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Puotinharjun Puhos on paljon enemmän kuin ostoskeskus – se on elävä kohtaamispaikka, jossa yhteisö ja kulttuurien moninaisuus kukoistavat.",
                "sv": "Puhos i Botbyhöjden är mycket mer än ett köpcentrum – det är en levande mötesplats där gemenskapen och kulturens mångfald blomstrar.",
                "en": "Puhos in Puotinharju is much more than a shopping centre – it is a vibrant meeting place where community and cultural diversity flourish."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D7027FC4306AFFFFDB99B52B88746965/Puhos_Itahelsinkilaisesta_ostarista_kulttuurien_keitaaksi",
                "sv": "http://www.stoa.fi/sv/evenemang/event/D7027FC4306AFFFFDB99B52B88746965/Puhos_Ett_kopcentrum_i_ostra_Helsingfors_blir_en_kulturoas",
                "en": "http://www.stoa.fi/en/events/event/D7027FC4306AFFFFDB99B52B88746965/Puhos_from_a_shopping_mall_in_East_Helsinki_to_an_oasis_of_cultures"
            },
            "description": {
                "fi": "<p>Puotinharjun Puhos on paljon enemmän kuin ostoskeskus – se on elävä kohtaamispaikka, jossa yhteisö ja kulttuurien moninaisuus kukoistavat.</p><p>Stoan galleriaan avautuva valokuvanäyttely avaa näkymiä Puhoksen arkeen ja sen moniin ääniin. Puhoksen etniset kaupat, kahvilat ja ravintolat kertovat tarinaa ihmisistä, jotka tekevät Puhoksesta omanlaisen maailmansa.</p><p>Se kuvaa paikkaa, joka herättää vahvoja tunteita – ja kutsuu pohtimaan, mitä voimme Puhoksessa oppia yhteisöllisyydestä, monimuotoisuudesta ja kaupungin jatkuvasta muutoksesta.</p><p>Näyttelyn kuvat ovat pääasiassa syntyneet valokuvaaja Sami Mannerheimon monivuotisesta kuvausprojektista Puhoksella, ja mukana on myös Angela Mussen ja muiden avustajien otoksia.</p><p>Näyttely liittyy samannimisen kirjaan, joka julkaistaan näyttelyn yhteydessä. Kirjan tekstit, joista näyttelyssä on myös lainauksia, ovat kirjoittaneet Joonas Kervinen ja joukko Puhoksen yhteisöön kuuluvia avustajia.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Puhos i Botbyhöjden är mycket mer än ett köpcentrum – det är en levande mötesplats där gemenskapen och kulturens mångfald blomstrar.</p><p>En fotoutställning som öppnar i Stoas galleri visar perspektiv på Puhos vardag och dess många röster. Puhos etniska butiker, kaféer och restauranger berättar om de människor som gör Puhos till sin egen värld.</p><p>Utställningen beskriver en plats som väcker starka känslor – och som bjuder in oss att fundera på vad vi i Puhos kan lära oss om gemenskap, mångfald och stadens ständiga förändring.</p><p>Bilderna i utställningen kommer främst från fotografen Sami Mannerheimos fleråriga fotograferingsprojekt i Puhos, och en del är också tagna av Angela Musse och andra medhjälpare.</p><p>Till utställningen hör också en bok som ges ut i samband med utställningen. Texterna i boken, som också citeras i utställningen, är skrivna av Joonas Kervinen och en grupp medhjälpare som tillhör Puhos gemenskap.</p><p>Fritt inträde</p>",
                "en": "<p>Puhos in Puotinharju is much more than a shopping centre – it is a vibrant meeting place where community and cultural diversity flourish.</p><p>The photographic exhibition opening in the Stoa gallery opens up a view of everyday life in Puhos and its many voices. The ethnic shops, cafés and restaurants in Puhos tell the story of the people who make Puhos a world of its own.</p><p>The exhibition depicts a place that evokes strong emotions – and invites us to reflect on what we can learn in Puhos about community, diversity and the constant change in the city.</p><p>The photos in the exhibition are mainly the result of Photographer Sami Mannerheimo's multi-year photography project in Puhos, but the exhibition also includes photographs by Angela Musse and other contributors.</p><p>The exhibition will be accompanied by a book of the same name, which will be published in conjunction with the exhibition. The texts of the book, which are also quoted in the exhibition, were written by Joonas Kervinen and a group of contributors from the Puhos community.</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Puhos – Itähelsinkiläisestä ostarista kulttuurien keitaaksi",
                "sv": "Puhos – Ett köpcentrum i östra Helsingfors blir en kulturoas",
                "en": "Puhos – from a shopping mall in East Helsinki to an oasis of cultures"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67574/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68034",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494648,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-27T10:13:11.147628Z",
                    "last_modified_time": "2026-01-27T10:13:11.147640Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778319.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494648/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-27T10:13:10.978158Z",
            "last_modified_time": "2026-03-20T01:14:16.499238Z",
            "date_published": null,
            "start_time": "2026-05-06T13:00:00Z",
            "end_time": "2026-05-06T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.",
                "sv": "Vi är kreativa tillsammans! Kom och laga vackra och användbara dekorationer och utveckla dina kunskaper i konsthantverk.",
                "en": "Let’s get creative together! Come and make beautiful, necessary decorations and develop your craftsmanship."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/181F9D53966C8BD4D83187E6B8142E30/Luova_hetki_avoin_taidepaja",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/181F9D53966C8BD4D83187E6B8142E30/Kreativ_stund_oppen_konstworkshop",
                "en": "http://www.vuotalo.fi/en/events/event/181F9D53966C8BD4D83187E6B8142E30/Creative_Moment_Open_Art_Workshop"
            },
            "description": {
                "fi": "<p>Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.</p><p>Kangaskassi koristellaan tuputtamalla tekstiilimaalia itsetehdyn sabluunan läpi. Saat kierrätetyn kangaskassin työpajasta tai voit halutessasi tuoda oman puhtaan kangaskassin.</p><p>Järjestämme eriteemaisia taidepajoja Vuotalon aulassa. Taidepajat sopivat lapsille ja aikuisille. Työpajoja ohjaa Chloé Mahy-Hulkko.<br>Kevään ohjelma</p><p>ke 4.2. klo 16–18 Paperipitsiä<br>ke 4.3. klo 16–18 Muovipussit uuteen käyttöön!<br>ke 1.4. klo 16–18 Sikin sokin<br>ke 6.5. klo 16–18 Kangaskassille uusi ilme</p><p>Kieli: suomi, englanti, ranska<br>Työpajoihin on vapaa pääsy!</p>",
                "sv": "<p>Vi är kreativa tillsammans! Kom och laga vackra och användbara dekorationer och utveckla dina kunskaper i konsthantverk.</p><p>Tygkassen dekoreras genom att dutta textilfärg genom en egenhändigt gjord schablon. Du kan få en återvunnen tygkasse från verkstaden, eller så kan du ta med dig en egen ren tygkasse om du vill.</p><p>Vårens program<br>ons 4.2 kl. 16–18 Pappersspets<br>ons 4.3 kl. 16–18 Återanvänd plastpåsar!<br>ons 1.4. kl. 16–18 Huller om buller<br>ons 6.5 kl. 16–18 Gör om en tygpåse</p><p>Vi ordnar konstverkstäder med olika teman i Nordhusets aula. Konstverkstäderna är lämpliga för både barn och vuxna.<br>Chloé Mahy-Hulkko leder verkstäderna</p><p>Språk: finska, engelska, franska<br>Konstverkstäderna är kostnadsfria!</p>",
                "en": "<p>Let’s get creative together! Come and make beautiful, necessary decorations and develop your craftsmanship.</p><p>The fabric bag is decorated by dabbing textile paint through a self-made stencil. You can get a recycled fabric bag from the workshop, or you can bring your own clean bag if you wish.</p><p>Spring programme<br>Wed 4 February 16.00–18.00: Paper lace<br>Wed 4 March 16.00–18.00: New use for plastic bags!<br>Wed 1 April 16.00–18.00: Helter-skelter<br>Wed 6 May 16.00–18.00: New look for a fabric bag</p><p>We will hold art workshops with varying themes in the Vuotalo lobby. The art workshops are suitable for children and adults alike. The workshops are led by Chloé Mahy-Hulkko.</p><p>Language: Finnish, English, French<br>The art workshops are free of charge!</p>"
            },
            "name": {
                "fi": "Luova hetki – avoin taidepaja – Kangaskassille uusi ilme",
                "sv": "Kreativ stund – öppen konstworkshop – Gör om en tygpåse",
                "en": "Creative Moment – Open Art Workshop – New look for a fabric bag"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68034/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}