Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 6964,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=18&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=16&weekday=6%2C7"
    },
    "data": [
        {
            "id": "espoo_le:agplcr3elm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3aza/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3b6e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3cyy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3dsa/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1491099,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-15T06:28:46.622009Z",
                    "last_modified_time": "2026-03-11T08:47:16.359204Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/aa8fb267-f840-4582-9896-6e420a631013.jpg",
                    "name": "",
                    "cropping": "0,0,480,480",
                    "photographer_name": "Kissojen omistaja Jaana",
                    "alt_text": "lukukissat Marvin ja Lenni poseeraavat valjaat päällä lastenkirjojen kanssa sohvalla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491099/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-10T10:55:57.235179Z",
            "last_modified_time": "2026-06-10T10:55:57.235190Z",
            "date_published": null,
            "start_time": "2026-08-15T10:00:00Z",
            "end_time": "2026-11-28T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lukukissat Marvin ja Lenni tavattavissa",
                "sv": "Katterna Marvin och Lenni i Reading är tillgängliga för besök",
                "en": "Reading cats Marvin and Lenni available for a meeting"
            },
            "short_description": {
                "fi": "Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin \n15.8, 12.9, 25.10 & 28.11.",
                "sv": "Marvin och Lenni lyssnar tålmodigt på lördagarna den 15.8, 12.9, 25.10 & 28.11.",
                "en": "Marvin and Lenni will be listening patiently on Saturdays, \n15.8, 12.9, 25.10 & 28.11."
            },
            "description": {
                "fi": "Entressen kirjastolla pääsee nyt lukemaan myös kissoille!<p><br></p><p>Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 15.8, 12.9, 25.10 &amp; 28.11.</p><p>Voit varata oman rauhallisen lukuhetken, jos lukeminen tuntuu hankalalta tai jännittää. Voit tulla harjoittelemaan Marvinin ja Lennin kanssa myös jos haluat harjoitella kieltä. Kissoille voi lukea millä kielellä tahansa.</p><p><br></p><p><br></p><p>Lukulemmikki</p><p>#HelloEspoo</p>",
                "sv": "<p>Entressen-biblioteket erbjuder nu högläsning för katter!</p><p><br></p><p>Marvin och Lenni lyssnar tålmodigt på lördagarna den 15.8, 12.9, 25.10 &amp; 28.11.</p><p>Du kan boka en egen läsestund om du tycker att det är svårt eller nervöst att läsa. Du kan också komma och öva med Marvin och Lenni om du vill träna språket. Du kan läsa för katterna på vilket språk som helst.</p><p><br></p><p>#HelloEspoo</p>",
                "en": "The Entressen Library now offers reading sessions for cats!<p><br></p><p>Marvin and Lenni will be listening patiently on Saturdays 15.8, 12.9, 25.10 &amp; 28.11.</p><p>You can book your own reading time if reading feels difficult or makes you nervous. You can also come and practice with Marvin and Lenni if you want to practice the language. You can read to cats in any language.</p><p><br></p><p>#HelloEspoo</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://suomenkarvakaverit.fi/",
                "en": "https://suomenkarvakaverit.fi/"
            },
            "location_extra_info": {
                "fi": "Lastenosasto",
                "sv": "Barnavdelningen",
                "en": "Children's section"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3elm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplcr3pv4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3fhi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3fze/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3gla/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3g2u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3hku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3h5q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3ipq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3jda/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3j2i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3ksu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3lda/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3lsi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3mae/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3mpe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3m6i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3nme/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3n4m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3ojy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3oyq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3phi/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490704,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-09T09:42:42.964320Z",
                    "last_modified_time": "2025-09-09T09:42:42.964337Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/16472c66-149f-48bc-8385-aef38a4b60cb.jpg",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "",
                    "alt_text": "Shakkilauta, tulilieskat ja teksti.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490704/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-10T10:43:19.942344Z",
            "last_modified_time": "2026-06-10T10:43:47.905160Z",
            "date_published": null,
            "start_time": "2026-08-06T12:00:00Z",
            "end_time": "2026-12-17T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Heroclix lautapeli",
                "sv": "Heroclix brädspel",
                "en": "Heroclix board game"
            },
            "short_description": {
                "fi": "Heroclix lautapelin opastusta ja pelaamista.",
                "sv": "Instruktioner och spelupplägg för brädspelet Heroclix.",
                "en": "Heroclix board game instructions and gameplay."
            },
            "description": {
                "fi": "<p>Tervetuloa opettelemaan ja pelaamaan Heroclix lautapeliä.</p><p>Heroclix peli Entressen kirjaston Kibessä klo 15-17.</p>",
                "sv": "<p>Välkommen att lära dig och spela brädspelet Heroclix.</p><p><br></p><p>Heroclix-spelet på Entresse Library Kibe kl. 15-17.</p>",
                "en": "<p>Welcome to learn and play the Heroclix board game.</p><p><br></p><p>Heroclix game at the Entresse Library Kibe from 3-5 pm.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3pv4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplcr3yva",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3qdq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3qsy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3rbi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3rqe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3r7e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3soi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3s54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3tnm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3t4y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3ul4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3u2m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3vje/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3vza/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3wii/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3wxy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3xg4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3xvm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3yfy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150472,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-13T07:34:03.349624Z",
                    "last_modified_time": "2024-03-13T07:34:03.349649Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Entressen_lukukoirat.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Kaksi mäyräkoiraa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150472/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-10T10:37:55.980663Z",
            "last_modified_time": "2026-06-10T10:37:55.980675Z",
            "date_published": null,
            "start_time": "2026-08-20T10:00:00Z",
            "end_time": "2026-12-17T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lukukoirat Nekku ja Pätkis tavattavissa",
                "sv": "Läshundarna Nekku och Pätkis kan träffas",
                "en": "Meet the reading dogs Nekku and Pätkis"
            },
            "short_description": {
                "fi": " Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.",
                "sv": " Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.",
                "en": " If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader."
            },
            "description": {
                "fi": "<p>Hei,</p><p>Olemme Nekku ja Pätkis, Entressen lukukoirat. Tykkäämme rapsuttelusta ja kuuntelemisesta. Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.</p><p>Kaikki ovat tervetulleita rapsuttamaan koiria!</p><p>Nekku ja Pätkis ovat tavattavissa Entressen lastenosastolla torstaisin klo 13-14:30.</p><p>Tervetuloa!</p>",
                "sv": "<p>Hej på er,</p><p>Vi är Nekku och Pätkis, Entresses läshundar. Vi gillar att bli klappade och lyssnade på. Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.</p><p>Alla är välkomna att klappa hundarna!</p><p>Nekku och Pätkis finns på barnavdelningen Entresse på torsdagar från den kl 13-14:30.</p><p>Varmt välkomna!</p>",
                "en": "<p>Hello,</p><p>We are Nekku and Pätkis, Entresse's reading dogs. We like to be petted and listened to. If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader.</p><p>Everyone is welcome to pet the dogs!</p><p>Nekku and Pätkis can be found in the Entresse children's section on Thursdays at 13-14:30</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Lastenosasto",
                "sv": "Barnavdelningen",
                "en": "Children's department"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3yva/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplcr344u",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3zem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3zsa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr32am/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr32ny/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr322q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr33im/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr33va/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr34cu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr34qe/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150450,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-01-17T07:59:13.420035Z",
                    "last_modified_time": "2024-01-17T07:59:13.420055Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/shakki.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "shakkinappuloita pelilaudalla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150450/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-10T10:24:42.264271Z",
            "last_modified_time": "2026-06-10T10:24:42.264281Z",
            "date_published": null,
            "start_time": "2026-08-25T14:00:00Z",
            "end_time": "2026-12-15T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Mr. Omarin Shakkiklubi",
                "sv": "Mr. Omar Schackklubb ",
                "en": "Mr. Omar's Chess Club"
            },
            "short_description": {
                "fi": "Nuorille suunnattu shakkiklubi.",
                "sv": "Schackklubben för unga.",
                "en": "Chess Club for teens."
            },
            "description": {
                "fi": "<p>Shakkiklubi Entressen kirjaston Kibessä. Tervetuloa.</p>",
                "sv": "<p>Entresse Librarys ungdomsavdelning i Kibe.</p>",
                "en": "<p>Chess Club in Entresse Library's youth section Kibe.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Kibe",
                "sv": "Kibe",
                "en": "Kibe"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr344u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69210",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385053,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-10T10:13:50.826921Z",
                    "last_modified_time": "2026-06-10T10:13:50.826934Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793514.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385053/?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-06-10T10:13:50.727349Z",
            "last_modified_time": "2026-06-10T10:13:50.972908Z",
            "date_published": null,
            "start_time": "2026-08-30T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Puzzle Theatre: Papa – SAMPO Festivaali",
                "sv": "Puzzle Theatre: Papa – SAMPO Festivaali",
                "en": "Puzzle Theatre: Papa – SAMPO Festival"
            },
            "short_description": {
                "fi": "Tämä teatteriesitys kertoo huumorin ja lempeyden sävyttämänä muuton aiheuttamasta kaaoksesta.",
                "en": "This theater performance tells, with humor and tenderness, the chaos of moving as seen by a somewhat lost dad, surrounded by cardboard boxes and childhood memories."
            },
            "description": {
                "fi": "<p>Tämä teatteriesitys kertoo huumorin ja lempeyden sävyttämänä muuton aiheuttamasta kaaoksesta.</p><p>Näkökulma on isän, joka on hieman hukassa pahvilaatikoiden ja lapsuuden muistojen keskellä.</p><p><i>PAPA tekee muuttoa. Kaikki on hukassa! Hän ei löydä enää mitään, ei edes omaa… lastaan! Pahvilaatikoita on kaikkialla – mikä uskomaton leikkikenttä!</i></p><p><i>Kun muuttaa, jättää aina taakseen jotakin… Tai jonkun…</i></p><p><i>Ja huomaa, että jokaisesta seinälle kiinnitetystä lapsen piirustuksesta puuttuu pala paperia…</i></p><p><i>Kun muuttaa, koko talo on mullin mallin! Ei enää tiedä, mikä on ylhäällä ja mikä alhaalla. Ei tiedä, onko kaikki todellista vai onko jossain kummallisessa unessa.</i></p><p>Esityksen tarkoituksena on inspiroida ja rohkaista lapsia luomaan asioita itse. Jokaisen esityksen lopussa järjestetään yleisön kanssa vuorovaikutteinen hetki. Hauskalla ja leikkisällä tavalla näyttelijä näyttää yleisölle, kuinka valmistaa naamioita ja nukkeja pahvilaatikoiden paloista yksinkertaisin ja edullisin keinoin.</p><p>Kesto: 40 minuuttia<br>Kieli: Esitys sisältää hyvin vähän puhetta, jonka ymmärtäminen ei ole edellytys esityksestä nauttimiselle.<br>Ikäsuositus: Yli 4-vuotiaille</p><p>Lippuja esityksiin myy <a href=\"https://nukketeatterisampo.fi/esityskalenteri\"><u>Nukketeatteri Sampo</u></a>. Lipun hinta: 15 €; kannatuslippu: 20 €.</p><p>Tekijä, esiintyjä: Csaba Raduly<br>Ohjaus: Pavla Mano<br>Visuaalinen suunnittelu ja puvustus: Ivan Stavrev<br>Naamiot ja nuket: Csaba Raduly ja Pavla Mano<br>Alkuperäismusiikki: Petya Nedeva</p><p><b>SAMPO Festivaali</b></p><p>Visuaalisen teatterin ja nukketeatterin kansainvälinen festivaali järjestetään jo kymmenettä kertaa Helsingissä ja pääkaupunkiseudulla. Tänä vuonna ohjelmassa on lapsille ja aikuisille suunnattuja esityksiä ja työpajoja Kanadasta, Ranskasta, Italiasta, Slovakiasta ja Ukrainasta.</p><p>Festivaalin kohokohtia ovat globalisoitumista ja kestävää kehitystä käsittelevän <i>Transport</i>-sarjan kolme esitystä, jotka saapuvat Helsinkiin Virosta, Liettuasta ja Tšekeistä, sekä Venetsian Biennaalin palkitsema italialaisen Teatro del Dragon teos <i>Golem – e fango è il mondo</i>. Mukana on myös kotimaisen nukketeatterin helmiä.</p><p>SAMPO Festivaali tuo monia kansainvälisiä tekijöitä ja esityksiä Suomeen ensimmäistä kertaa, kooten laajan kattauksen visuaalisen teatterin ja nukketeatterin monipuolisesta tarjonnasta suomalaisille näyttämöille.</p>",
                "en": "<p>This theater performance tells, with humor and tenderness, the chaos of moving as seen by a somewhat lost dad, surrounded by cardboard boxes and childhood memories.</p><p><i>PAPA is moving house. He’s completely lost! He can’t find anything anymore, not even his... child! Cardboard boxes everywhere – what an incredible playground!</i></p><p><i>When you move, you leave something behind… or someone…</i></p><p><i>And you realise there’s a piece of paper missing from the child’s every drawing hanging on the wall…</i></p><p><i>When you move house, everything is upside down! You no longer know which way is up or down. You don’t know if everything that’s happening is real or if you’re in a funny dream.</i></p><p>In a playful and humorous way, the actor shows curious minds how masks and puppets can be made from pieces of packaging cardboard using simple and inexpensive methods.</p><p>Duration: 40 minutes<br>Language: The performance is nearly wordless and understanding its language is not necessary for enjoying the piece.<br>Age recommendation: 4 years old and up</p><p>Tickets sold at <a href=\"https://nukketeatterisampo.fi/esityskalenteri/\"><u>Puppet Theatre Sampo</u></a>. Basic ticket: EUR 15; support ticket: EUR 20.</p><p>Creator, performance: Csaba Raduly<br>Direction: Pavla Mano<br>Visual design and costuming: Ivan Stavrev<br>Masks and puppets: Csaba Raduly and Pavla Mano<br>Original music: Petya Nedeva</p><p><b>SAMPO Festival</b></p><p>International visual theatre and puppet theatre festival SAMPO is held already for the 10th time in Helsinki and the metropolitan area. This year, the programme includes performances and workshops for children and adults from Canada, France, Italy, Slovakia, and the Ukraine.</p><p>Highlights of the programme include the <i>Transport</i> series, whose three performances – from Estonia, Lithuania and Czechia – examine globalisation and sustainable development, as well as <i>Golem – e fango è is mondo</i> by Italian Teatro del Drago, awarded at the Venice Biennale.</p><p>SAMPO Festival brings many international artists and performances to Finland for the first time, gathering a wide selection from the multi-faceted canon of  visual theatre and puppet theatre for the Finnish stages.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CAA2095CB9AEFD3301654B4A85C9E20A/Puzzle_Theatre_Papa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CAA2095CB9AEFD3301654B4A85C9E20A/Puzzle_Theatre_Papa",
                "en": "http://www.annantalo.fi/en/events/event/CAA2095CB9AEFD3301654B4A85C9E20A/Puzzle_Theatre_Papa"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69210/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69209",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385052,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-10T10:13:50.359295Z",
                    "last_modified_time": "2026-06-10T10:13:50.359308Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793513.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385052/?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-06-10T10:13:50.228285Z",
            "last_modified_time": "2026-06-10T10:13:50.561769Z",
            "date_published": null,
            "start_time": "2026-08-30T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Puzzle Theatre: Papa – SAMPO Festivaali",
                "sv": "Puzzle Theatre: Papa – SAMPO Festivaali",
                "en": "Puzzle Theatre: Papa – SAMPO Festival"
            },
            "short_description": {
                "fi": "Tämä teatteriesitys kertoo huumorin ja lempeyden sävyttämänä muuton aiheuttamasta kaaoksesta.",
                "en": "This theater performance tells, with humor and tenderness, the chaos of moving as seen by a somewhat lost dad, surrounded by cardboard boxes and childhood memories."
            },
            "description": {
                "fi": "<p>Tämä teatteriesitys kertoo huumorin ja lempeyden sävyttämänä muuton aiheuttamasta kaaoksesta.</p><p>Näkökulma on isän, joka on hieman hukassa pahvilaatikoiden ja lapsuuden muistojen keskellä.</p><p><i>PAPA tekee muuttoa. Kaikki on hukassa! Hän ei löydä enää mitään, ei edes omaa… lastaan! Pahvilaatikoita on kaikkialla – mikä uskomaton leikkikenttä!</i></p><p><i>Kun muuttaa, jättää aina taakseen jotakin… Tai jonkun…</i></p><p><i>Ja huomaa, että jokaisesta seinälle kiinnitetystä lapsen piirustuksesta puuttuu pala paperia…</i></p><p><i>Kun muuttaa, koko talo on mullin mallin! Ei enää tiedä, mikä on ylhäällä ja mikä alhaalla. Ei tiedä, onko kaikki todellista vai onko jossain kummallisessa unessa.</i></p><p>Esityksen tarkoituksena on inspiroida ja rohkaista lapsia luomaan asioita itse. Jokaisen esityksen lopussa järjestetään yleisön kanssa vuorovaikutteinen hetki. Hauskalla ja leikkisällä tavalla näyttelijä näyttää yleisölle, kuinka valmistaa naamioita ja nukkeja pahvilaatikoiden paloista yksinkertaisin ja edullisin keinoin.</p><p>Kesto: 40 minuuttia<br>Kieli: Esitys sisältää hyvin vähän puhetta, jonka ymmärtäminen ei ole edellytys esityksestä nauttimiselle.<br>Ikäsuositus: Yli 4-vuotiaille</p><p>Lippuja esityksiin myy <a href=\"https://nukketeatterisampo.fi/esityskalenteri\"><u>Nukketeatteri Sampo</u></a>. Lipun hinta: 15 €; kannatuslippu: 20 €.</p><p>Tekijä, esiintyjä: Csaba Raduly<br>Ohjaus: Pavla Mano<br>Visuaalinen suunnittelu ja puvustus: Ivan Stavrev<br>Naamiot ja nuket: Csaba Raduly ja Pavla Mano<br>Alkuperäismusiikki: Petya Nedeva</p><p><b>SAMPO Festivaali</b></p><p>Visuaalisen teatterin ja nukketeatterin kansainvälinen festivaali järjestetään jo kymmenettä kertaa Helsingissä ja pääkaupunkiseudulla. Tänä vuonna ohjelmassa on lapsille ja aikuisille suunnattuja esityksiä ja työpajoja Kanadasta, Ranskasta, Italiasta, Slovakiasta ja Ukrainasta.</p><p>Festivaalin kohokohtia ovat globalisoitumista ja kestävää kehitystä käsittelevän <i>Transport</i>-sarjan kolme esitystä, jotka saapuvat Helsinkiin Virosta, Liettuasta ja Tšekeistä, sekä Venetsian Biennaalin palkitsema italialaisen Teatro del Dragon teos <i>Golem – e fango è il mondo</i>. Mukana on myös kotimaisen nukketeatterin helmiä.</p><p>SAMPO Festivaali tuo monia kansainvälisiä tekijöitä ja esityksiä Suomeen ensimmäistä kertaa, kooten laajan kattauksen visuaalisen teatterin ja nukketeatterin monipuolisesta tarjonnasta suomalaisille näyttämöille.</p>",
                "en": "<p>This theater performance tells, with humor and tenderness, the chaos of moving as seen by a somewhat lost dad, surrounded by cardboard boxes and childhood memories.</p><p><i>PAPA is moving house. He’s completely lost! He can’t find anything anymore, not even his... child! Cardboard boxes everywhere – what an incredible playground!</i></p><p><i>When you move, you leave something behind… or someone…</i></p><p><i>And you realise there’s a piece of paper missing from the child’s every drawing hanging on the wall…</i></p><p><i>When you move house, everything is upside down! You no longer know which way is up or down. You don’t know if everything that’s happening is real or if you’re in a funny dream.</i></p><p>In a playful and humorous way, the actor shows curious minds how masks and puppets can be made from pieces of packaging cardboard using simple and inexpensive methods.</p><p>Duration: 40 minutes<br>Language: The performance is nearly wordless and understanding its language is not necessary for enjoying the piece.<br>Age recommendation: 4 years old and up</p><p>Tickets sold at <a href=\"https://nukketeatterisampo.fi/esityskalenteri/\"><u>Puppet Theatre Sampo</u></a>. Basic ticket: EUR 15; support ticket: EUR 20.</p><p>Creator, performance: Csaba Raduly<br>Direction: Pavla Mano<br>Visual design and costuming: Ivan Stavrev<br>Masks and puppets: Csaba Raduly and Pavla Mano<br>Original music: Petya Nedeva</p><p><b>SAMPO Festival</b></p><p>International visual theatre and puppet theatre festival SAMPO is held already for the 10th time in Helsinki and the metropolitan area. This year, the programme includes performances and workshops for children and adults from Canada, France, Italy, Slovakia, and the Ukraine.</p><p>Highlights of the programme include the <i>Transport</i> series, whose three performances – from Estonia, Lithuania and Czechia – examine globalisation and sustainable development, as well as <i>Golem – e fango è is mondo</i> by Italian Teatro del Drago, awarded at the Venice Biennale.</p><p>SAMPO Festival brings many international artists and performances to Finland for the first time, gathering a wide selection from the multi-faceted canon of  visual theatre and puppet theatre for the Finnish stages.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5AE465D6D55186A4D173D7D8D3D5F5E6/Puzzle_Theatre_Papa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/5AE465D6D55186A4D173D7D8D3D5F5E6/Puzzle_Theatre_Papa",
                "en": "http://www.annantalo.fi/en/events/event/5AE465D6D55186A4D173D7D8D3D5F5E6/Puzzle_Theatre_Papa"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69209/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplcdyyqi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agn6agzgh4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/paulaheljakka",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2385054,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-10T09:23:23.620026Z",
                    "last_modified_time": "2026-06-10T09:23:23.620042Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/70f9b2d1-b423-4ef4-99a4-01ab42a20286.jpg",
                    "name": "Näyttelyn maalauksissa olen kuvannut hetkiä mystisen veden elementin monimuotoisuuden äärellä sekä ajattomissa tähtimaisemissa",
                    "cropping": "375,0,2925,2550",
                    "photographer_name": "Paula Heljakka",
                    "alt_text": "Avaruudellinen kuva tähtineen ja tähtisumuineen",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385054/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-10T09:47:59.114191Z",
            "last_modified_time": "2026-06-10T09:47:59.114206Z",
            "date_published": "2026-06-10T10:15:00Z",
            "start_time": "2026-06-28T07:00:00Z",
            "end_time": "2026-08-01T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Veden äärellä, tähtien alla",
                "sv": "Vid vattnet, under stjärnorna",
                "en": "By the water, under the stars"
            },
            "short_description": {
                "fi": "Maalauksissa olen kuvannut hetkiä mystisen veden elementin monimuotoisuuden äärellä ajattomissa tähtimaisemissa, jotka vievät ajatukset laajoihin ulottuvuuksiin",
                "sv": "I målningarna har jag skildrat ögonblick genom det mystiska vattenelementets mångfald och i tidlösa stjärnlandskap som tar tankar till stora dimensioner.",
                "en": "In the paintings, I have depicted moments by the diversity of the mystical water element and in timeless starscapes that take thoughts to vast dimensions."
            },
            "description": {
                "fi": "<p>Näyttelyn maalauksissa olen kuvannut hetkiä mystisen veden elementin monimuotoisuuden äärellä sekä ajattomissa tähtimaisemissa, jotka vievät ajatukset laajoihin ulottuvuuksiin. Näitä maisemia ja tunnelmia voi katsoja kokea kohottavana, rentouttavana tai energisoivana. Maalaukseni ovat enimmäkseen akryyleja, osassa olen käyttänyt myös öljyväriä.</p><p>Olen Paula Heljakka, kuvataiteilija, kuvataideopettaja ja kuvataideterapeutti. Olen opiskellut kuvataidetta Snellman-korkeakoulussa sekä Pekka Halosen Akatemiassa. Minua inspiroivat elämän mysteerit, luonto sekä luovuuden erilaiset ilmenemismuodot. Teen maalauksia, joissa korostuvat värit, liike, energia, tarina ja kehitysprosessit. Teen myös intuitiivisia voimamaalauksia, kruunuja ja koruja. Opetan kuvataiteita Snellman-korkeakoulussa ja taidekursseilla. Olen tehnyt myös kuvituksia, mm. Pohjolan naisen voimakirjaan.</p><p>Teen ennen kaikkea kohottavaa taidetta, jossa on läsnä elämän kaunis syvyys ja ihme. Arvostan myös suuresti taiteen hoitavia puolia. Työskentelen työhuoneellani Espoossa.</p><p>Kotisivut: www.paulaheljakka.fi</p><p>Instagram: https://www.instagram.com/paulaheljakka</p>",
                "sv": "<p>I målningarna i utställningen har jag skildrat ögonblick genom det mystiska vattenelementets mångfald och i tidlösa stjärnlandskap som tar tankar till stora dimensioner. Betraktaren kan uppleva dessa landskap och stämningar som upplyftande, avslappnande eller energigivande. Mina målningar är mestadels akrylfärger, i vissa har jag även använt oljefärg.</p><p>Jag är Paula Heljakka, bildkonstnär, bildkonstlärare och bildkonstterapeut. Jag har studerat bildkonst vid Snellmans högskola och Pekka Halonen Akademi. Jag inspireras av livets mysterier, naturen och olika manifestationer av kreativitet. Jag gör målningar som betonar färger, rörelse, energi, berättelse och utvecklingsprocesser. Jag gör även intuitiva kraftmålningar, kronor och smycken. Jag undervisar i bildkonst vid Snellmans högskola och i konstkurser. Jag har också gjort illustrationer, till exempel för den bok Pohjolan naisen voimakirja.</p><p>Framför allt skapar jag upplyftande konst som förkroppsligar livets vackra djup och förundran. Jag uppskattar också mycket konstens helande aspekter. Jag arbetar på min ateljé i Esbo.</p><p>Webbplats: www.paulaheljakka.fi</p><p>Instagram: https://www.instagram.com/paulaheljakka</p>",
                "en": "<p>In the paintings in this exhibition, I have depicted moments by the diversity of the mystical water element and in timeless starscapes that take thoughts to vast dimensions. The viewer can experience these landscapes and moods as uplifting, relaxing or energizing. My paintings are mostly acrylics, in some I have also used oil paint.</p><p>I am Paula Heljakka, a visual artist, visual arts teacher and visual arts therapist. I have studied visual arts at Snellman University and Pekka Halonen Academy. I am inspired by the mysteries of life, nature and various manifestations of creativity. I make paintings that emphasize colors, movement, energy, story and development processes. I also make intuitive power paintings, crowns and jewelry. I teach visual arts at Snellman University and in art courses. I have also made illustrations, for example for the book Pohjolan naisen voimakirja.</p><p>Above all, I create uplifting art that embodies the beautiful depth and wonder of life. I also greatly appreciate the healing aspects of art. I work at my studio in Espoo.</p><p>Website: www.paulaheljakka.fi</p><p>Instagram: https://www.instagram.com/paulaheljakka</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.paulaheljakka.fi",
                "sv": "http://www.paulaheljakka.fi",
                "en": "http://www.paulaheljakka.fi"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki rummet",
                "en": "Salonki room"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcdyyqi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69208",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385050,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-10T09:13:48.862552Z",
                    "last_modified_time": "2026-06-10T09:13:48.862565Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793511.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385050/?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-06-10T09:13:48.753084Z",
            "last_modified_time": "2026-06-10T09:13:49.006451Z",
            "date_published": null,
            "start_time": "2026-08-29T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Puzzle Theatre: Bois – Puut – SAMPO Festivaali",
                "sv": "Puzzle Theatre: Bois – Puut – SAMPO Festivaali",
                "en": "Puzzle Theatre: Bois – Woods – SAMPO Festival"
            },
            "short_description": {
                "fi": "Bois – Puut on epätavallinen, värikkäs nukketeatteriesitys, joka on täynnä huumoria ja odottamattomia tilanteita.",
                "en": "Bois – Woods is an atypical, colourful puppet show, full of humour and unexpected situations."
            },
            "description": {
                "fi": "<p>Bois – Puut on epätavallinen, värikkäs nukketeatteriesitys, joka on täynnä huumoria ja odottamattomia tilanteita.</p><p>Vihreä lehti, joka kasvaa kuolleella oksalla. Puupalat yhdistyvät ja heräävät eloon, muuttuen oudoiksi olennoiksi – osa niistä on vihamielisiä, osa ihan hassuja…<br>Tämä utelias maailma yllättää, hämmästyttää ja inspiroi. Maailma, joka saa kaikki myös ajattelemaan ja ihmettelemään.</p><p>Kanadalainen nukketeatteriryhmä Puzzle Théâtre ammentaa inspiraatiota kokonaan uudesta materiaalista, luoden epätavallisen, värikkään nukketeatteriesityksen, joka on täynnä huumoria ja odottamattomia tilanteita.</p><p>Lippuja esityksiin myy <a href=\"https://nukketeatterisampo.fi/esityskalenteri\"><u>Nukketeatteri Sampo</u></a>. Lipun hinta: 15 €; kannatuslippu: 20 €.</p><p>Tekijät ja esiintyjät: Csaba Raduly ja Pavla Mano<br>Alkuperäinen musiikki: Petya Nedeva<br>Kesto: 40 minuuttia<br>Esitys ei sisällä puhetta.<br>Ikäsuositus: 4-vuotiaat ja sitä vanhemmat</p><p><b>SAMPO Festivaali</b></p><p>Visuaalisen teatterin ja nukketeatterin kansainvälinen festivaali järjestetään jo kymmenettä kertaa Helsingissä ja pääkaupunkiseudulla. Tänä vuonna ohjelmassa on lapsille ja aikuisille suunnattuja esityksiä ja työpajoja Kanadasta, Ranskasta, Italiasta, Slovakiasta ja Ukrainasta.</p><p>Festivaalin kohokohtia ovat globalisoitumista ja kestävää kehitystä käsittelevän <i>Transport</i>-sarjan kolme esitystä, jotka saapuvat Helsinkiin Virosta, Liettuasta ja Tšekeistä, sekä Venetsian Biennaalin palkitsema italialaisen Teatro del Dragon teos <i>Golem – e fango è il mondo</i>. Mukana on myös kotimaisen nukketeatterin helmiä.</p><p>SAMPO Festivaali tuo monia kansainvälisiä tekijöitä ja esityksiä Suomeen ensimmäistä kertaa, kooten laajan kattauksen visuaalisen teatterin ja nukketeatterin monipuolisesta tarjonnasta suomalaisille näyttämöille.</p>",
                "en": "<p>Bois – Woods is an atypical, colourful puppet show, full of humour and unexpected situations.</p><p>A green leaf that grows on a dead branch, pieces of wood that come together to form strange creatures, some hostile, some comical…<br>A curious world that surprises, amazes, and inspires. A world that also makes you think and wonder.</p><p>In keeping with its artistic approach, the Canadian puppetry group Puzzle Théâtre is drawing inspiration from a whole new medium to create an atypical, colourful puppet show, full of humour and unexpected situations.</p><p>Duration: 40 minutes<br>Language: no spoken parts<br>Age recommendation: 4 years old and up</p><p>Created and performed by: Csaba Raduly and Pavla Mano<br>Original music by: Petya Nedeva</p><p>Tickets sold at <a href=\"https://nukketeatterisampo.fi/esityskalenteri/\"><u>Puppet Theatre Sampo</u></a>. Basic ticket: EUR 15; support ticket: EUR 20.</p><p><b>SAMPO Festival</b></p><p>International visual theatre and puppet theatre festival SAMPO is held already for the 10th time in Helsinki and the metropolitan area. This year, the programme includes performances and workshops for children and adults from Canada, France, Italy, Slovakia, and the Ukraine.</p><p>Highlights of the programme include the <i>Transport</i> series, whose three performances – from Estonia, Lithuania and Czechia – examine globalisation and sustainable development, as well as <i>Golem – e fango è is mondo</i> by Italian Teatro del Drago, awarded at the Venice Biennale.</p><p>SAMPO Festival brings many international artists and performances to Finland for the first time, gathering a wide selection from the multi-faceted canon of  visual theatre and puppet theatre for the Finnish stages.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8C3F483DB4771307FFCD4BA47862D970/Puzzle_Theatre_Bois_Puut",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/8C3F483DB4771307FFCD4BA47862D970/Puzzle_Theatre_Bois_Puut",
                "en": "http://www.annantalo.fi/en/events/event/8C3F483DB4771307FFCD4BA47862D970/Puzzle_Theatre_Bois_Woods"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69208/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69207",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385049,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-10T09:13:48.467019Z",
                    "last_modified_time": "2026-06-10T09:13:48.467032Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793510.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385049/?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-06-10T09:13:48.335068Z",
            "last_modified_time": "2026-06-10T09:13:48.621776Z",
            "date_published": null,
            "start_time": "2026-08-29T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Puzzle Theatre: Bois – Puut – SAMPO Festivaali",
                "sv": "Puzzle Theatre: Bois – Puut – SAMPO Festivaali",
                "en": "Puzzle Theatre: Bois – Woods – SAMPO Festival"
            },
            "short_description": {
                "fi": "Bois – Puut on epätavallinen, värikkäs nukketeatteriesitys, joka on täynnä huumoria ja odottamattomia tilanteita.",
                "en": "Bois – Woods is an atypical, colourful puppet show, full of humour and unexpected situations."
            },
            "description": {
                "fi": "<p>Bois – Puut on epätavallinen, värikkäs nukketeatteriesitys, joka on täynnä huumoria ja odottamattomia tilanteita.</p><p>Vihreä lehti, joka kasvaa kuolleella oksalla. Puupalat yhdistyvät ja heräävät eloon, muuttuen oudoiksi olennoiksi – osa niistä on vihamielisiä, osa ihan hassuja…<br>Tämä utelias maailma yllättää, hämmästyttää ja inspiroi. Maailma, joka saa kaikki myös ajattelemaan ja ihmettelemään.</p><p>Kanadalainen nukketeatteriryhmä Puzzle Théâtre ammentaa inspiraatiota kokonaan uudesta materiaalista, luoden epätavallisen, värikkään nukketeatteriesityksen, joka on täynnä huumoria ja odottamattomia tilanteita.</p><p>Lippuja esityksiin myy <a href=\"https://nukketeatterisampo.fi/esityskalenteri\"><u>Nukketeatteri Sampo</u></a>. Lipun hinta: 15 €; kannatuslippu: 20 €.</p><p>Tekijät ja esiintyjät: Csaba Raduly ja Pavla Mano<br>Alkuperäinen musiikki: Petya Nedeva<br>Kesto: 40 minuuttia<br>Esitys ei sisällä puhetta.<br>Ikäsuositus: 4-vuotiaat ja sitä vanhemmat</p><p><b>SAMPO Festivaali</b></p><p>Visuaalisen teatterin ja nukketeatterin kansainvälinen festivaali järjestetään jo kymmenettä kertaa Helsingissä ja pääkaupunkiseudulla. Tänä vuonna ohjelmassa on lapsille ja aikuisille suunnattuja esityksiä ja työpajoja Kanadasta, Ranskasta, Italiasta, Slovakiasta ja Ukrainasta.</p><p>Festivaalin kohokohtia ovat globalisoitumista ja kestävää kehitystä käsittelevän <i>Transport</i>-sarjan kolme esitystä, jotka saapuvat Helsinkiin Virosta, Liettuasta ja Tšekeistä, sekä Venetsian Biennaalin palkitsema italialaisen Teatro del Dragon teos <i>Golem – e fango è il mondo</i>. Mukana on myös kotimaisen nukketeatterin helmiä.</p><p>SAMPO Festivaali tuo monia kansainvälisiä tekijöitä ja esityksiä Suomeen ensimmäistä kertaa, kooten laajan kattauksen visuaalisen teatterin ja nukketeatterin monipuolisesta tarjonnasta suomalaisille näyttämöille.</p>",
                "en": "<p>Bois – Woods is an atypical, colourful puppet show, full of humour and unexpected situations.</p><p>A green leaf that grows on a dead branch, pieces of wood that come together to form strange creatures, some hostile, some comical…<br>A curious world that surprises, amazes, and inspires. A world that also makes you think and wonder.</p><p>In keeping with its artistic approach, the Canadian puppetry group Puzzle Théâtre is drawing inspiration from a whole new medium to create an atypical, colourful puppet show, full of humour and unexpected situations.</p><p>Duration: 40 minutes<br>Language: no spoken parts<br>Age recommendation: 4 years old and up</p><p>Created and performed by: Csaba Raduly and Pavla Mano<br>Original music by: Petya Nedeva</p><p>Tickets sold at <a href=\"https://nukketeatterisampo.fi/esityskalenteri/\"><u>Puppet Theatre Sampo</u></a>. Basic ticket: EUR 15; support ticket: EUR 20.</p><p><b>SAMPO Festival</b></p><p>International visual theatre and puppet theatre festival SAMPO is held already for the 10th time in Helsinki and the metropolitan area. This year, the programme includes performances and workshops for children and adults from Canada, France, Italy, Slovakia, and the Ukraine.</p><p>Highlights of the programme include the <i>Transport</i> series, whose three performances – from Estonia, Lithuania and Czechia – examine globalisation and sustainable development, as well as <i>Golem – e fango è is mondo</i> by Italian Teatro del Drago, awarded at the Venice Biennale.</p><p>SAMPO Festival brings many international artists and performances to Finland for the first time, gathering a wide selection from the multi-faceted canon of  visual theatre and puppet theatre for the Finnish stages.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/68584A5195A067727577294EFF82EF80/Puzzle_Theatre_Bois_Puut",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/68584A5195A067727577294EFF82EF80/Puzzle_Theatre_Bois_Puut",
                "en": "http://www.annantalo.fi/en/events/event/68584A5195A067727577294EFF82EF80/Puzzle_Theatre_Bois_Woods"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69207/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69205",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385046,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-10T08:13:24.869501Z",
                    "last_modified_time": "2026-06-10T08:13:24.869514Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793508.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385046/?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-06-10T08:13:24.763850Z",
            "last_modified_time": "2026-06-10T08:13:25.017989Z",
            "date_published": null,
            "start_time": "2026-08-28T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Naivni Divadlo Liberec: Punainen ilmapallo – SAMPO Festivaali",
                "sv": "Naivni Divadlo Liberec: Punainen ilmapallo – SAMPO Festivaali",
                "en": "Naivni Divadlo Liberec: Red Balloon – SAMPO Festival"
            },
            "short_description": {
                "fi": "Esitys, joka on saanut inspiraationsa Albert Lamorissen samannimisestä ranskalaisesta elokuvasta, kertoo pienen pojan ja hänen ilmapallonsa tarinan.",
                "en": "The production - inspired by the French film of the same name by Albert Lamorisse - tells the story of a little boy and his balloon."
            },
            "description": {
                "fi": "<p>Esitys, joka on saanut inspiraationsa Albert Lamorissen samannimisestä ranskalaisesta elokuvasta, kertoo pienen pojan ja hänen ilmapallonsa tarinan.</p><p>Ilmapallo lentää minne haluaa, mutta ennen kaikkea se osaa vastata pojan ystävyyteen. Onko pojasta puolustamaan ilmapallokaveriaan ymmärtämättömiä aikuisia tai katulasten joukkoa vastaan?</p><p>Tämä runollinen esitys on lähes sanaton. Lavastaja Berta Doubkován kanssa yhteistyössä sen on valmistanut paikallinen luova työryhmä (ohjaaja Michaela Homolová, dramaturgi Vít Peřina, musiikki Filip Homola), joka on tehnyt useita palkittuja teoksia nuorimmalle yleisölle (mm. aiemmilla SAMPO Festivaaleilla nähdyt <i>Karitsa, joka putosi taivaasta, Tsuku. Tsuku. Tuut. Hau!</i> ja muita).</p><p>Aamupäiväesitykset järjestetään lapsiryhmille pe 28.8. klo 9.00 ja 10.30, ja niihin on ilmoittautuminen osoitteessa <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7254\"><u>kultus.hel.fi</u></a> 3.8. alkaen. Lisäksi yksittäislippuja esityksiin voi ostaa Nukketeatteri Sampon verkkosivuilla.</p><p>Torstai-illan klo 17.00 esitys on avoin kaikille ja siihen lippuja myy <a href=\"https://nukketeatterisampo.fi/esityskalenteri/\"><u>Nukketeatteri Sampo</u></a>.<br>Lipun hinta: 15 €; kannatuslippu: 20 €.</p><p>Tekijät: Albert Lamorisse / Vít Peřina ja työryhmä<br>Ohjaus: Michaela Homolová<br>Dramaturgia: Vít Peřina<br>Lavastus: Berta Doubková<br>Musiikki: Filip Homola<br>Näyttelijät: Veronika Khomová, Jakub Müller, Pavel Pfeifer, Petr Štěpánek</p><p><b>SAMPO Festivaali</b></p><p>Visuaalisen teatterin ja nukketeatterin kansainvälinen festivaali järjestetään jo kymmenettä kertaa Helsingissä ja pääkaupunkiseudulla. Tänä vuonna ohjelmassa on lapsille ja aikuisille suunnattuja esityksiä ja työpajoja Kanadasta, Ranskasta, Italiasta, Slovakiasta ja Ukrainasta.</p><p>Festivaalin kohokohtia ovat globalisoitumista ja kestävää kehitystä käsittelevän <i>Transport</i>-sarjan kolme esitystä, jotka saapuvat Helsinkiin Virosta, Liettuasta ja Tšekeistä, sekä Venetsian Biennaalin palkitsema italialaisen Teatro del Dragon teos <i>Golem – e fango è il mondo</i>. Mukana on myös kotimaisen nukketeatterin helmiä.</p><p>SAMPO Festivaali tuo monia kansainvälisiä tekijöitä ja esityksiä Suomeen ensimmäistä kertaa, kooten laajan kattauksen visuaalisen teatterin ja nukketeatterin monipuolisesta tarjonnasta suomalaisille näyttämöille.</p>",
                "en": "<p>The production - inspired by the French film of the same name by Albert Lamorisse - tells the story of a little boy and his balloon.</p><p>The balloon not only can fly wherever it wishes but, above all, it can reciprocate the boy's friendship. Will the boy defend his inflatable friend from uncomprehending adults or a bunch of childish street urchins?</p><p>This poetic production for the youngest children is almost wordless. In cooperation with designer Berta Doubková, it was prepared by a local creative team (director Michaela Homolová, dramaturge Vít Peřina, music Filip Homola) that have created a number of award-winning titles for the youngest audience (<i>About a Lamb that Fell from Heaven, Choo. Choo. Whistle. Woof!</i>, both seen previously at SAMPO Festival, and others).</p><p>The morning performances on Friday 29 August at 9.00 and 10.30 are held for daycare and other children's groups: registration at <a href=\"https://kultus.hel.fi/en/search?places=tprek%3A7254\"><u>kultus.hel.fi</u></a> from 3 August on. Additionally, individual tickets can be bought on the Puppet Theatre Sampo website.</p><p>The Thursday evening performance at 17.00 is open for all audiences. Tickets sold at <a href=\"https://nukketeatterisampo.fi/esityskalenteri/\"><u>Puppet Theatre Sampo</u></a>. Basic ticket: EUR 15; support ticket: EUR 20.</p><p>Created by: Albert Lamorisse / Vít Peřina and working group<br>Directed by: Michaela Homolová<br>Dramaturgy: Vít Peřina<br>Set design: Berta Doubková<br>Music: Filip Homola<br>Cast: Veronika Khomová, Jakub Müller, Pavel Pfeifer, Petr Štěpánek</p><p><b>SAMPO Festival</b></p><p>International visual theatre and puppet theatre festival SAMPO is held already for the 10th time in Helsinki and the metropolitan area. This year, the programme includes performances and workshops for children and adults from Canada, France, Italy, Slovakia, and the Ukraine.</p><p>Highlights of the programme include the <i>Transport</i> series, whose three performances – from Estonia, Lithuania and Czechia – examine globalisation and sustainable development, as well as <i>Golem – e fango è is mondo</i> by Italian Teatro del Drago, awarded at the Venice Biennale.</p><p>SAMPO Festival brings many international artists and performances to Finland for the first time, gathering a wide selection from the multi-faceted canon of  visual theatre and puppet theatre for the Finnish stages.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2C7D8EF86308C4EC7C2C6C0E60D3783A/Naivni_Divadlo_Liberec_Punainen_ilmapallo",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/2C7D8EF86308C4EC7C2C6C0E60D3783A/Naivni_Divadlo_Liberec_Punainen_ilmapallo",
                "en": "http://www.annantalo.fi/en/events/event/2C7D8EF86308C4EC7C2C6C0E60D3783A/Naivni_Divadlo_Liberec_Red_Balloon"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69205/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69204",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385045,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-10T08:13:24.465095Z",
                    "last_modified_time": "2026-06-10T08:13:24.465129Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793507.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385045/?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-06-10T08:13:24.336038Z",
            "last_modified_time": "2026-06-10T08:13:24.639503Z",
            "date_published": null,
            "start_time": "2026-08-28T06:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Naivni Divadlo Liberec: Punainen ilmapallo – SAMPO Festivaali",
                "sv": "Naivni Divadlo Liberec: Punainen ilmapallo – SAMPO Festivaali",
                "en": "Naivni Divadlo Liberec: Red Balloon – SAMPO Festival"
            },
            "short_description": {
                "fi": "Esitys, joka on saanut inspiraationsa Albert Lamorissen samannimisestä ranskalaisesta elokuvasta, kertoo pienen pojan ja hänen ilmapallonsa tarinan.",
                "en": "The production - inspired by the French film of the same name by Albert Lamorisse - tells the story of a little boy and his balloon."
            },
            "description": {
                "fi": "<p>Esitys, joka on saanut inspiraationsa Albert Lamorissen samannimisestä ranskalaisesta elokuvasta, kertoo pienen pojan ja hänen ilmapallonsa tarinan.</p><p>Ilmapallo lentää minne haluaa, mutta ennen kaikkea se osaa vastata pojan ystävyyteen. Onko pojasta puolustamaan ilmapallokaveriaan ymmärtämättömiä aikuisia tai katulasten joukkoa vastaan?</p><p>Tämä runollinen esitys on lähes sanaton. Lavastaja Berta Doubkován kanssa yhteistyössä sen on valmistanut paikallinen luova työryhmä (ohjaaja Michaela Homolová, dramaturgi Vít Peřina, musiikki Filip Homola), joka on tehnyt useita palkittuja teoksia nuorimmalle yleisölle (mm. aiemmilla SAMPO Festivaaleilla nähdyt <i>Karitsa, joka putosi taivaasta, Tsuku. Tsuku. Tuut. Hau!</i> ja muita).</p><p>Aamupäiväesitykset järjestetään lapsiryhmille pe 28.8. klo 9.00 ja 10.30, ja niihin on ilmoittautuminen osoitteessa <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7254\"><u>kultus.hel.fi</u></a> 3.8. alkaen. Lisäksi yksittäislippuja esityksiin voi ostaa Nukketeatteri Sampon verkkosivuilla.</p><p>Torstai-illan klo 17.00 esitys on avoin kaikille ja siihen lippuja myy <a href=\"https://nukketeatterisampo.fi/esityskalenteri/\"><u>Nukketeatteri Sampo</u></a>.<br>Lipun hinta: 15 €; kannatuslippu: 20 €.</p><p>Tekijät: Albert Lamorisse / Vít Peřina ja työryhmä<br>Ohjaus: Michaela Homolová<br>Dramaturgia: Vít Peřina<br>Lavastus: Berta Doubková<br>Musiikki: Filip Homola<br>Näyttelijät: Veronika Khomová, Jakub Müller, Pavel Pfeifer, Petr Štěpánek</p><p><b>SAMPO Festivaali</b></p><p>Visuaalisen teatterin ja nukketeatterin kansainvälinen festivaali järjestetään jo kymmenettä kertaa Helsingissä ja pääkaupunkiseudulla. Tänä vuonna ohjelmassa on lapsille ja aikuisille suunnattuja esityksiä ja työpajoja Kanadasta, Ranskasta, Italiasta, Slovakiasta ja Ukrainasta.</p><p>Festivaalin kohokohtia ovat globalisoitumista ja kestävää kehitystä käsittelevän <i>Transport</i>-sarjan kolme esitystä, jotka saapuvat Helsinkiin Virosta, Liettuasta ja Tšekeistä, sekä Venetsian Biennaalin palkitsema italialaisen Teatro del Dragon teos <i>Golem – e fango è il mondo</i>. Mukana on myös kotimaisen nukketeatterin helmiä.</p><p>SAMPO Festivaali tuo monia kansainvälisiä tekijöitä ja esityksiä Suomeen ensimmäistä kertaa, kooten laajan kattauksen visuaalisen teatterin ja nukketeatterin monipuolisesta tarjonnasta suomalaisille näyttämöille.</p>",
                "en": "<p>The production - inspired by the French film of the same name by Albert Lamorisse - tells the story of a little boy and his balloon.</p><p>The balloon not only can fly wherever it wishes but, above all, it can reciprocate the boy's friendship. Will the boy defend his inflatable friend from uncomprehending adults or a bunch of childish street urchins?</p><p>This poetic production for the youngest children is almost wordless. In cooperation with designer Berta Doubková, it was prepared by a local creative team (director Michaela Homolová, dramaturge Vít Peřina, music Filip Homola) that have created a number of award-winning titles for the youngest audience (<i>About a Lamb that Fell from Heaven, Choo. Choo. Whistle. Woof!</i>, both seen previously at SAMPO Festival, and others).</p><p>The morning performances on Friday 29 August at 9.00 and 10.30 are held for daycare and other children's groups: registration at <a href=\"https://kultus.hel.fi/en/search?places=tprek%3A7254\"><u>kultus.hel.fi</u></a> from 3 August on. Additionally, individual tickets can be bought on the Puppet Theatre Sampo website.</p><p>The Thursday evening performance at 17.00 is open for all audiences. Tickets sold at <a href=\"https://nukketeatterisampo.fi/esityskalenteri/\"><u>Puppet Theatre Sampo</u></a>. Basic ticket: EUR 15; support ticket: EUR 20.</p><p>Created by: Albert Lamorisse / Vít Peřina and working group<br>Directed by: Michaela Homolová<br>Dramaturgy: Vít Peřina<br>Set design: Berta Doubková<br>Music: Filip Homola<br>Cast: Veronika Khomová, Jakub Müller, Pavel Pfeifer, Petr Štěpánek</p><p><b>SAMPO Festival</b></p><p>International visual theatre and puppet theatre festival SAMPO is held already for the 10th time in Helsinki and the metropolitan area. This year, the programme includes performances and workshops for children and adults from Canada, France, Italy, Slovakia, and the Ukraine.</p><p>Highlights of the programme include the <i>Transport</i> series, whose three performances – from Estonia, Lithuania and Czechia – examine globalisation and sustainable development, as well as <i>Golem – e fango è is mondo</i> by Italian Teatro del Drago, awarded at the Venice Biennale.</p><p>SAMPO Festival brings many international artists and performances to Finland for the first time, gathering a wide selection from the multi-faceted canon of  visual theatre and puppet theatre for the Finnish stages.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CA3B64E552D6AD68356809F819683468/Naivni_Divadlo_Liberec_Punainen_ilmapallo",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CA3B64E552D6AD68356809F819683468/Naivni_Divadlo_Liberec_Punainen_ilmapallo",
                "en": "http://www.annantalo.fi/en/events/event/CA3B64E552D6AD68356809F819683468/Naivni_Divadlo_Liberec_Red_Balloon"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69204/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplam4uly",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2385037,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-10T05:58:11.546860Z",
                    "last_modified_time": "2026-06-10T05:58:11.546874Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/bae080a4-8f9c-4789-9bd6-90eab5f71979.png",
                    "name": "",
                    "cropping": "270,0,990,720",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on kitara, jonka päällä on kahvikuppi",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385037/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-10T06:01:19.616054Z",
            "last_modified_time": "2026-06-10T06:01:19.616066Z",
            "date_published": null,
            "start_time": "2026-12-12T12:00:00Z",
            "end_time": "2026-12-12T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Paikalliset lahjakkuudet loistavat: WU Music Studion matinea-konsertti",
                "sv": "Lokala talanger i rampljuset: WU Music Studios matinékonsert",
                "en": "Local talent shines: WU Music Studio's matinee concert"
            },
            "short_description": {
                "fi": "Tervetuloa kuuntelemaan WU Music Studion matinea-konserttia Salonkiin la 12.12. klo 14 alkaen",
                "sv": "Välkommen på en matinékonsert med WU Music Studio på Salonki lördagen den 12 december, med start kl. 14.00",
                "en": "Join us for a matinee concert by WU Music Studio at Salonki on Saturday, December 12, starting at 2 p.m"
            },
            "description": {
                "fi": "<p>Musiikki täyttää kirjaston lauantaina 12.12.2026, kun WU Music Studio järjestää kausittaisen oppilaskonserttinsa. Konsertti tarjoaa upean läpileikkauksen studion oppilaiden osaamisesta ja ahkeran työn tuloksista. Ohjelmassa on laaja valikoima eri genrejä herkistä klassisen kitaran kappaleista tuttuihin joululauluihin. Tapahtuma sopii kaikenikäisille ja tarjoaa inspiroivan hetken laadukkaan musiikin parissa. Tule viihtymään ja kannustamaan alueen esiintyjiä! Tilaisuuteen on vapaa pääsy.</p>",
                "sv": "<p>Musiken kommer att fylla biblioteket lördagen den 12 december 2026, när WU Music Studio anordnar sin årliga elevkonsert. Konserten bjuder på en fantastisk uppvisning av elevernas talang och resultatet av deras hårda arbete. Programmet spänner över en rad olika genrer, från finstämda klassiska gitarrstycken till välkända julsånger. Evenemanget passar alla åldrar och bjuder på en inspirerande stund med musik av hög kvalitet. Kom och njut av showen och heja på de lokala artisterna! Entrén är gratis.</p>",
                "en": "<p>Music will fill the library on Saturday, December 12, 2026, when WU Music Studio holds its seasonal student concert. The concert offers a wonderful showcase of the studio students’ skills and the results of their hard work. The program features a wide range of genres, from delicate classical guitar pieces to familiar Christmas carols. The event is suitable for all ages and offers an inspiring moment of high-quality music. Come enjoy the show and cheer on the local performers! Admission is free.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplam4uly/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agpkx4zxzy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45928/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?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,
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api"
                }
            ],
            "created_time": "2026-06-09T10:35:04.066152Z",
            "last_modified_time": "2026-06-09T10:39:20.914703Z",
            "date_published": null,
            "start_time": "2026-06-09T10:39:20.401000Z",
            "end_time": "2026-06-28T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2026-06-18T12:00:00+03:00",
            "enrolment_end_time": "2026-06-27T12:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Test event",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Test event",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Test event</p>\n",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agpkx4zxzy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69055",
            "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: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/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201340,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-20T05:12:51.763805Z",
                    "last_modified_time": "2026-05-20T05:12:51.763818Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792602.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201340/?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-05-20T05:12:51.612872Z",
            "last_modified_time": "2026-06-09T09:13:33.119768Z",
            "date_published": null,
            "start_time": "2026-06-08",
            "end_time": "2026-06-17",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "TÄYNNÄ | Stoan tekstiilisuunnittelun kesäkoulu – Haluatko suunnitella ja valmistaa oman tekstiilityösi?",
                "sv": "FULLBOKAT | Stoas sommarskola om textildesign – Vill du designa och tillverka ett eget textilarbete?",
                "en": "FULL | Stoa Textile Design Summer School – Do you want to design and make your own textile?"
            },
            "short_description": {
                "fi": "Stoa järjestää 9–13-vuotiaille lapsille ja nuorille 8-päiväisen maksuttoman kesäkoulun yhdessä tekstiilisuunnittelija Rosa Tolnov Clausenin kanssa.",
                "sv": "Stoa ordnar tillsammans med Rosa Tolnov Clausen en åtta dagar lång avgiftsfri sommarskola om textildesign för barn och unga i åldern 9–13 år.",
                "en": "Together with textile designer Rosa Tolnov Clausen, Stoa is inviting children and youth between 9-13 years of age to a free 8-day textile design summer school."
            },
            "description": {
                "fi": "<p>Stoa järjestää 9–13-vuotiaille lapsille ja nuorille 8-päiväisen maksuttoman kesäkoulun yhdessä tekstiilisuunnittelija Rosa Tolnov Clausenin kanssa.</p><p>Kesäkoulu keskittyy opettamaan oppilaille tekstiilisuunnittelun perusteita, kuten värejä, kuituja, kuvioita ja sommittelua. Painopisteenä ovat kokeileminen sekä ainutlaatuisen, itse tehdyn lopputuotteen valmistaminen.</p><p>Kesäkoulussa oppilaat työskentelevät japanilaisten pöytäkangaspuiden, ompelukoneiden sekä erilaisten lankojen ja kankaiden parissa tekstiilisuunnittelija Rosa Tolnov Clausenin ohjauksessa.</p><p>Stoa tarjoaa materiaalit. Ota mukaan omat eväät.</p><p>Ajankohta: 8.–17. kesäkuuta arkipäivinä (ei viikonloppuna)<br>Aika: klo 9–14<br>Paikka: Stoa, Turunlinnantie 1, Itäkeskus, 00900 Helsinki<br>Ikäryhmä: 9–13 vuotta<br>Osallistumismaksu: 0 €<br>Paikkoja: 10</p><p>Ohjauskielet: englanti, saksa ja ruotsi. Kesäkouluun voi osallistua joustavasti eri kielitaidoilla.</p><p>Ilmoittautuminen: link.webropol.com/ep/stoasummerschool</p>",
                "sv": "<p>Stoa ordnar tillsammans med Rosa Tolnov Clausen en åtta dagar lång avgiftsfri sommarskola om textildesign för barn och unga i åldern 9–13 år.</p><p>Sommarskolan fokuserar på att lära eleverna grunderna i textildesign, såsom färger, fibrer, mönster och utformning. Fokus ligger på att testa och skapa en unik, egengjord slutprodukt.</p><p>I sommarskolan arbetar eleverna med japanska bordsvävstolar, symaskiner samt olika garn och tyger under ledning av textildesigner Rosa Tolnov Clausen.</p><p>Stoa bjuder på materialet. Ta med egen matsäck!</p><p>Tidpunkt: 8–17 juni på vardagar (inte veckoslut)<br>Tid: kl. 9–14<br>Plats: Stoa, Åbohusvägen 1, Östra centrum, 00900 Helsingfors<br>Åldersgrupp: 9–13 år<br>Deltagaravgift: 0 €<br>Platser: 10</p><p>Språk: engelska, tyska och svenska. Man kan delta i sommarskolan flexibelt med olika språkkunskaper.</p><p>Anmälan: link.webropol.com/ep/stoasummerschool</p>",
                "en": "<p>Together with textile designer Rosa Tolnov Clausen, Stoa is inviting children and youth between 9-13 years of age to a free 8-day textile design summer school.</p><p>The summer school focuses on teaching the students basic textile design skills concerning colours, fibres, patterns and composition. There will be focus on experimentation, as well as the creation of a final unique self-made product.</p><p>In the summer school the students will work with Japanese table looms, sewing machines, and yarn and fabric of different kind under the guidance of Rosa Tolnov Clausen.</p><p>Materials are included. Bring your own lunch.</p><p>Dates: June 8 – June 17 (weekdays only, no weekend sessions)<br>Timing: 9am-2pm<br>Place: Stoa, Turunlinnantie 1, Itäkeskus, 00900 Helsinki<br>Age limit: 9-13 years<br>Participation fee: 0€<br>Places: 10</p><p>Languages of instruction: English, German and Swedish. The summer school is open to participants with varying levels of language proficiency.</p><p>Registration: link.webropol.com/ep/stoasummerschool</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/447E4B842CFEA25D63B5FB314B03A240/TAYNNA_Stoan_tekstiilisuunnittelun_kesakoulu",
                "sv": "http://www.stoa.fi/sv/evenemang/event/447E4B842CFEA25D63B5FB314B03A240/FULLBOKAT_Stoas_sommarskola_om_textildesign",
                "en": "http://www.stoa.fi/en/events/event/447E4B842CFEA25D63B5FB314B03A240/FULL_Stoa_Textile_Design_Summer_School"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69055/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69137",
            "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:223/?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/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384905,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-02T10:13:40.167611Z",
                    "last_modified_time": "2026-06-02T10:13:40.167629Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786168.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384905/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-02T10:13:40.043064Z",
            "last_modified_time": "2026-06-08T10:13:20.452945Z",
            "date_published": null,
            "start_time": "2026-08-17",
            "end_time": "2026-09-21",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kohti tuntematonta -työpaja – Kuva- ja sanataidepajat koululaisille",
                "sv": "Kohti tuntematonta -työpaja",
                "en": "Kohti tuntematonta -työpaja"
            },
            "short_description": {
                "fi": "Kohti tuntematonta -näyttely ja työpaja kutsuu koululaiset hyppäämään seikkailuihin mielikuvituksellisissa maailmoissa."
            },
            "description": {
                "fi": "<p>Kohti tuntematonta -näyttely ja työpaja kutsuu koululaiset hyppäämään seikkailuihin mielikuvituksellisissa maailmoissa.</p><p>Työpajat ovat suunnattuja 3.–6.-luokkalaisille. Työpajoissa tutustutaan sana- ja kuvataiteen keinoin Pasi Pitkäsen taidokkaista kuvituksista koostettuun näyttelyyn ja sen kautta avautuviin maailmoihin. Tarkoituksena on innostaa kokemaan kirja ja lukeminen uudesta, osallistavasta ja monitaiteisesta näkökulmasta.<br> <br>Työpajassa koululuokka jaetaan puoliksi niin, että puolet osallistuvat sanataidepajaan ja puolet kuvataidepajaan ja sitten vaihdetaan osia. Näin kaikki pääsevät työskentelemään sekä sanallisesti että kuvallisesti.</p><p>Työpajan ohjauskieli on suomi, ja kokonaiskesto 1,5 tuntia.</p><p>Työpajat maanantaisin<br>17.8. 9–10:30 ja 11–12:30 <br>24.8. 9–10:30 ja 11–12:30<br>31.8. 9–10:30 ja 11–12:30<br>7.9. 9–10:30 ja 11–12:30<br>14.9. 9–10:30 ja 11–12:30<br>21.9. 9–10:30 ja 11–12:30</p><p><b>Työpajoihin ilmoittaudutaan osoitteessa <a href=\"https://kultus.hel.fi/fi/event/kultus:agpgqgvsom\"><u>kultus.hel.fi</u></a>.</b></p><p><b>Matka käärmejunassa -sanataidetuokio</b><br>Matka käärmejunassa -tuokiossa tutustutaan Silja Sillanpään ja Pasi Pitkäsen Ouroboros-kirjaan, tehdään sanataidetehtäviä ja ratkaistaan arvoituksia.</p><p>Tuokiossa pohditaan muun muassa, minkälaisia varusteita oppilaat ottaisivat mukaan seikkailuun, etsitään omat käärmeystävät ja kirjoitetaan pieni matkakertomus. Pakopelihenkinen toiminnallisuus rytmittää tuokion kulkua ja innostaa oppilaita osallistumaan.</p><p><b>Sateenkaarikäärme-kuvataidetuokio</b><br>Sateenkaarikäärme -taidetuokiossa tutkitaan Pasi Pitkäsen kuvitustaiteen käärmehahmoja, kokeillaan piirtää erilaisia suomuja ja toteutetaan yhdessä pala palalta suuri sateenkaarikäärme.</p><p>Tuokiossa keskeisenä inspiraationa toimivat Pasi Pitkäsen kuvitukset, ja havainnon avulla harjoitellaan piirtämään käärmeiden kiehtovia suomupeitteitä. Oppilaiden pastelliliiduilla toteutetut piirrokset rakentuvat viikkojen aikana Sateenkaari-käärmeen muotoon, joka on yhteistaideteoksena esillä osana näyttelyä Vuotalon-aulassa.</p><p>KUVA: Pasi Pitkänen</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A6D5C2D1D2AF2A4589AE3328CFB36A6D/Kohti_tuntematonta_-tyopaja",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A6D5C2D1D2AF2A4589AE3328CFB36A6D/Kohti_tuntematonta_-tyopaja",
                "en": "http://www.vuotalo.fi/en/events/event/A6D5C2D1D2AF2A4589AE3328CFB36A6D/Kohti_tuntematonta_-tyopaja"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69137/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68683",
            "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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1906888,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-05T08:13:28.991575Z",
                    "last_modified_time": "2026-05-05T08:13:28.991590Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789854.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1906888/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-05T08:13:28.828729Z",
            "last_modified_time": "2026-06-08T09:13:45.735873Z",
            "date_published": null,
            "start_time": "2026-06-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,
            "name": {
                "fi": "Helsinki-päivä Stoassa: Helsinki Circus Festivalin ennakkojuhla",
                "sv": "Helsingforsdagen på Stoa",
                "en": "Helsinki Day at Stoa"
            },
            "short_description": {
                "fi": "Stoan aukio täyttyy Helsinki-päivänä sirkustaiteen taiasta, kun Pro sirkus ry esittää Helsinki Circus Festivalin ennakkojuhlan klo 17-19.",
                "sv": "Stoaplatsen fylls av cirkusmagi på Helsingforsdagen!",
                "en": "Stoa Square will be filled with the magic of circus on Helsinki Day!"
            },
            "description": {
                "fi": "<p>Stoan aukio täyttyy Helsinki-päivänä sirkustaiteen taiasta, kun Pro sirkus ry esittää Helsinki Circus Festivalin ennakkojuhlan klo 17-19.</p><p>Tervetuloa mukaan ainutlaatuiseen sirkustapahtumaan, jossa lavalle nousee toinen toistaan huikeampia esityksiä. Monipuolinen ohjelma yhdistää perinteisen sirkuksen lumon moderniin esitystaiteeseen – luvassa on iloa ja elämyksiä kaikenikäisille!</p><p><b>Esiintyjät / esitykset mm.:</b></p><p><b>Blind Gut Company / Viihdy! Viihdy! Viihdy!</b><br><b>Nuua Company / Olli Vuorinen </b><br><b>Race Horse Company / Kalle Lehto</b><br><b>Fragile kollektiivi / Haidi Ilona </b><br><b>Leo Kaipiainen</b></p><p>Esitysten lisäksi Stoan aukio täyttyy iloisesta festivaalitunnelmasta: luvassa on saippuakuplia, popcornia sekä työpajoja sirkus-teemalla.</p><p><b>Enemmän esityksistä:</b><br> <br><b>Blid Gut Companyn</b> hulvaton katusirkusesitys Viihdy! Viihdy! Viihdy!,  tuo vanhan narriperinteen tähän päivään. Markkinakojua muistuttavassa esityksessä yleisö pääsee tilaamaan itselleen erilaisia sirkuselämyksiä: tarjolla on akrobatiaa, jongleerausta, yllätyksiä ja osallistavia temppuja, joissa katsojatkin voivat päästä osaksi esitystä.</p><p>Vauhdikkaasta akrobatiasta vastaa myös <b>Kalle Lehto</b>, yksi <b>Race Horse Companyn</b> perustajajäsenistä. Hänen energisissä numeroissaan nähdään akrobatiaa muun muassa jumppapallon ja keppihevosten kanssa – luvassa on yllätyksiä, huumoria ja huikeaa fyysistä taituruutta.</p><p>Tunnelma saa myös rauhallisempia ja hypnoottisempia sävyjä, kun <b>Olli Vuorinen (Nuua Company)</b> vie yleisönsä abstraktiin jongleerausteokseen. Renkaiden toistuva liike, kehon muuntuvat muodot ja hitaasti rakentuvat kuviot luovat meditatiivisen kokemuksen, jossa nykysirkus muuttuu lähes tanssilliseksi visuaaliseksi virraksi.</p><p>Ilmassa nähtävä herkkyys ja voima puolestaan kuljettavat katsojat hetkeksi arjen ulkopuolelle, kun <b>Haidi Ilona</b> esittää sooloteoksia rengastrapetsilla ja spiraalilla. Hänen liikekielessään nykytanssi ja ilma-akrobatia sulautuvat saumattomasti yhteen runolliseksi ja vaikuttavaksi kokonaisuudeksi.</p><p>Päivän juontaa ja yleisön oppaana toimii <b>jonglööri Leo Kaipiainen</b>, jonka energinen läsnäolo, tarkasti hiottu jongleeraus ja sirkusmaailman kiehtovat tarinat sitovat päivän ohjelman lämpimäksi ja mukaansatempaavaksi kokonaisuudeksi.</p><p><b>Työpajat: </b></p><p><b>Tasapainoilijat -veistos</b><br>Osaatko seistä yhdellä jalalla tai käsillä? Miltä tuntuisi tanssia nuoralla? Miltä näyttää jonglööri tai ilma-akrobaatti? Pajassa inspiroidutaan tasapainoilusta ja luodaan muovailuvahasta pienikokoinen veistos. Ohjaaja: Chloé Mahy-Hulkko. Kielet: suomi, englanti ja ranska</p><p><b>Tikkunukketivoli</b>- sirkushahmoja kollaasitekniikalla<br>Eksoottisia eläimiä, tempovia temppuja sekä taidokasta taikaa, mikä on sinun sirkushahmosi supervoima? Tehdään nukketeatterihahmoja kollaasitekniikalla. Ihmeellisille esiintyjille on oma sirkusnäyttämö, jolla pääset näyttämään hurjimmat hypyt ja taianomaisimmat temput! Ohjaaja: Greta Isola. Sopii yli 4-vuotiaille.</p><p><b>Kokeile sirkusta!</b><br>Sirkus Magentan hauskassa sirkustyöpajassa jokainen pääsee kokeilemaan matalalla kynnyksellä eri sirkuslajeja. Tule kokeilemaan esimerkiksi jongleerausta erilaisilla välineillä, vanteen pyöritystä, tasapainolaudalla tasapainottelua ja käsinseisontaa!</p><p><b>Jättisaippuakuplat</b><br>Jättikuplien taikaa tarjoilee Kiksu-klovni! Ihaile ja ihmettele kuplien kulkua tai kokeile itse niiden tekemistä.</p><p><b>Paperitaikoja/b><br>Seikkailutaidekoulu kurvaa Stoan aukiolle Kesätaidefillarilla. Tehdään paperitaikoja, kun origamipaperit muuttuvat värikkäiksi lentäviksi perhosiksi!</p><p><b>Itäkeskuksen kirjaston</b> pisteellä voit pyöräyttää onnenpyörää ja valita palkinnoksi oman poistokirjan. Kirjastossa on myös esillä sirkusaiheinen kirjanäyttely klo 18 asti.</p><p>Stoan galleriassa vietetään <b>Luontosuhteita-näyttelyn</b> avajaisia klo 17-19. Monitaiteisen näyttelyn taiteilijat ovat KATOAVA-kollektiivi, Olli Kaukonen Lindholm, Lauri Lähteenmäki, Minttu Pyykkönen ja Emiel Riiko.</p><p>Vapaa pääsy.</p>",
                "sv": "<p>Stoaplatsen fylls av cirkusmagi på Helsingforsdagen!</p><p>Pro Cirkus rf ordnar förfest för Helsinki Circus Festival på Helsingforsdagen den 12 juni 2026 på Stoaplatsen.</p><p>Välkommen på ett unikt cirkusevenemang där du får se fantastiska framträdanden på scenen under två timmar. Det här är inte bara cirkus – det är en upplevelse som får hjärtat att bulta och ger dig ett leende på läpparna.</p><p>Det mångsidiga programmet kombinerar den traditionella cirkusens magi med modern scenkonst – här utlovas överraskningar för alla åldrar!</p><p>Evenemangen har fritt inträde.</p>",
                "en": "<p>Stoa Square will be filled with the magic of circus on Helsinki Day!</p><p>Pro sirkus ry will host the Helsinki Circus Festival pre-celebration on Helsinki Day 12 June 2026 on Stoa Square.</p><p>Join us for a unique circus event, where circus performances, each more amazing than the next, will take place on stage for two hours! This is not just a circus – this is an experience that will make your heart race and have you smiling from ear to ear.</p><p>The diverse programme combines the magic of traditional circus with modern performing arts – with surprises for all ages!</p><p>Entry to the events is free of charge.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/7410FE6427C79B67F43EBDE51AD2941F/Helsinki-paiva_Stoassa_Helsinki_Circus_Festivalin_ennakkojuhla",
                "sv": "http://www.stoa.fi/sv/evenemang/event/7410FE6427C79B67F43EBDE51AD2941F/Helsingforsdagen_pa_Stoa",
                "en": "http://www.stoa.fi/en/events/event/7410FE6427C79B67F43EBDE51AD2941F/Helsinki_Day_at_Stoa"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68683/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68377",
            "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: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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1801315,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-07T08:13:27.231123Z",
                    "last_modified_time": "2026-04-07T08:13:27.231137Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777739.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1801315/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-07T08:13:27.105917Z",
            "last_modified_time": "2026-06-08T08:13:11.261129Z",
            "date_published": null,
            "start_time": "2026-08-20",
            "end_time": "2026-09-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,
            "name": {
                "fi": "Kohti tuntematonta – Pasi Pitkäsen kuvituksia huimista seikkailuista",
                "sv": "Mot det okända – Pasi Pitkänens illustrationer av svindlande äventyr",
                "en": "Kohti tuntematonta (‘Towards the unknown’) – Pasi Pitkänen's illustrations of dizzying adventures"
            },
            "short_description": {
                "fi": "Pasi Pitkäsen tunnelmalliset kuvitukset avaavat ikkunoita mielikuvituksellisiin maailmoihin. Minkälaisia vieraita todellisuuksia näet kuvissa?",
                "sv": "Pasi Pitkänens stämningsfulla illustrationer öppnar dörrar till fantasivärldar. Hurdana främmande verkligheter ser du på bilderna?",
                "en": "Pasi Pitkänen's atmospheric illustrations open windows to imaginary worlds. What kind of foreign realities do you see in the pictures?"
            },
            "description": {
                "fi": "<p>Pasi Pitkäsen tunnelmalliset kuvitukset avaavat ikkunoita mielikuvituksellisiin maailmoihin. Minkälaisia vieraita todellisuuksia näet kuvissa?</p><p>Kohti tuntematonta kutsuu sinut hyppäämään seikkailuun!</p><p>Kuvituksella on tärkeä tehtävä sanojen henkiin puhaltamisessa. Katso vaikka itse! Näet ehkä arvoituksellisia paikkoja, outoja otuksia, valoa ja varjoa, taikavoimaisia käärmeitä, kiehtovia riimumerkkejä. Pitkäsen kuvat tihkuvat jännitystä, uhkaa ja vaaraakin. Uskallatko katsoa kuvaa, tarttua kirjaan ja suunnata kohti tuntematonta?</p><p>Lapsille ja nuorille suunnattu näyttely- ja tapahtumakokonaisuus on koottu Pasi Pitkäsen laajasta kuvitustuotannosta. Näyttelyyn on valikoitu kuvia kirjasarjoista, joissa Pitkänen on tasavahvana tekijänä kirjailijoiden rinnalla: <i>Pate</i> (Timo Parvela), <i>Kepler62</i> (Timo Parvela ja Bjørn Sortland), <i>Paavali Pattinen</i> (Hannele Lampela) sekä <i>Ouroboros</i> (Silja Sillanpää).</p><p>Näyttelyn oheisohjelmaa suunnataan kouluille ja perheille.</p><p>Kansainvälisenä lukutaitopäivänä 8.9. järjestetään koululaisille tapahtuma-aamu ja lauantaina 19.9. perhepäivä, joissa molemmissa Pasi Pitkänen on mukana.</p><p>Maanantaiaamupäivisin näyttelytila on varattu koululaisten työpajatyöskentelyyn.</p><p><b>Pasi Pitkänen</b> on monipuolinen kuvittaja, kirjailija ja graafikko, jonka kuvitukset ovat saavuttaneet myös kansainvälistä menestystä. Pitkänen on valmistunut graafiseksi suunnittelijaksi Aalto-yliopistosta ja työskennellyt kuvittajana, hahmosuunnittelijana ja graafikkona Rovio Entertainmentilla.</p><p>Nykyisin hän toimii freelancekuvittajana ja asuu osan vuodesta Japanissa.</p><p>Näyttelyn ja tapahtumakokonaisuuden ovat tuottaneet Vuotalon kulttuuripalveluista Salla Fornaro ja Vuosaaren kirjastosta Emilia Kämäräinen yhteistyössä Pasi Pitkäsen kanssa.</p><p>Näyttelyyn ja tapahtumiin on vapaa pääsy.</p><p>Näyttely on avoinna 13.8.-26.9.2026.</p>",
                "sv": "<p>Pasi Pitkänens stämningsfulla illustrationer öppnar dörrar till fantasivärldar. Hurdana främmande verkligheter ser du på bilderna?</p><p>Mot det okända bjuder in dig på ett äventyr! Illustrationer är viktiga för att ge liv åt orden. Se själv! Du kanske ser mystiska platser, konstiga varelser, ljus och skugga, magiska ormar och fascinerande runrad. Pitkänens bilder ångar av spänning, hot och även fara. Vågar du titta på bilden, fatta tag i boken och gå mot det okända?</p><p>Utställnings- och evenemangshelheten för barn och unga består av Pasi Pitkänens omfattande illustrationsproduktion. Utställningen innehåller ett urval av bilder från bokserier där Pitkänen är en jämbördig upphovsman vid sidan av författarna: Pate (Timo Parvela), Kepler62 (Timo Parvela och Bjørn Sortland), Paavali Pattinen (Hannele Lampela) samt Ouroboros (Silja Sillanpää).</p><p>Utställningen är öppen 13.8–26.9.2026. Programmet i anslutning till utställningen är avsett för skolor och familjer. På Internationella läskunnighetsdagen 8.9 ordas en evenemangsmorgon för skolelever och lördagen 19.9 en familjedag. Pasi Pitkänen deltar i båda evenemangen. På måndagsförmiddagar är utställningslokalen reserverad för verkstäder för skolelever.</p><p><b>Pasi Pitkänen</b> är en mångsidig illustratör, författare och grafiker, vars illustrationer också har rönt internationell framgång. Pitkänen tog examen som grafisk designer vid Aalto-universitetet och har arbetat som illustratör, figurdesigner och grafiker på Rovio Entertainment. För närvarande arbetar han som frilansillustratör och bor en del av året i Japan.</p><p>Utställningen och evenemangshelheten har producerats av Salla Fornaro från Nordhusets kulturtjänster och Emilia Kämäräinen från Nordsjö bibliotek i samarbete med Pasi Pitkänen.</p><p>Inträdet till utställningen och evenemangen är fritt.</p>",
                "en": "<p>Pasi Pitkänen's atmospheric illustrations open windows to imaginary worlds. What kind of foreign realities do you see in the pictures?</p><p>Kohti tuntematonta (‘Towards the unknown’) invites you to jump into the adventure! Illustration plays an important role in bringing words to life. See for yourself! You may see mysterious places, strange creatures, light and shadow, magical snakes and fascinating runic characters. Pitkänen's illustrations exude excitement, threat and even some danger. Do you dare look at the image, pick up a book and head into the unknown?</p><p>The exhibition and event for children and young people is a compilation of Pasi Pitkänen's extensive illustrations. The exhibition includes a selection of images from book series in which Pitkänen is an equal creator alongside the authors: Pate (Timo Parvela), Kepler62 (Timo Parvela and Bjørn Sortland), Paavali Pattinen (Hannele Lampela) and Ouroboros (Silja Sillanpää).</p><p>The exhibition is open from 13 August to 26 September 2026. The accompanying programme to the exhibition is aimed at schools and families. On International Literacy Day on 8 September, Vuotalo will host a morning of events for schoolchildren, and on Saturday 19 September, the centre will host a family day, both with Pasi Pitkänen. On Monday mornings, the exhibition space will be reserved for workshops for schoolchildren.</p><p><b>Pasi Pitkänen</b> is a versatile illustrator, writer and graphic designer whose works have also achieved international success. Pitkänen graduated as a graphic designer from Aalto University and has worked as an illustrator, character designer and graphic designer at Rovio Entertainment. He now works as a freelance illustrator and lives in Japan for part of the year.</p><p>The exhibition and the event have been produced by Salla Fornaro from Vuotalo’s cultural services and Emilia Kämäräinen from Vuosaari Library in collaboration with Pasi Pitkänen.</p><p>The exhibition and events are free of charge.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8507968AAAC8B1844AA2E54CC8975FFA/Kohti_tuntematonta",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/8507968AAAC8B1844AA2E54CC8975FFA/Mot_det_okanda",
                "en": "http://www.vuotalo.fi/en/events/event/8507968AAAC8B1844AA2E54CC8975FFA/Kohti_tuntematonta_Towards_the_unknown_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68377/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69262",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384984,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-08T07:13:58.136340Z",
                    "last_modified_time": "2026-06-08T07:13:58.136356Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784172.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384984/?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-06-08T07:13:57.975478Z",
            "last_modified_time": "2026-06-08T07:13:58.411713Z",
            "date_published": null,
            "start_time": "2026-11-06T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Opera Box: Giellavealgu – Svenska Dagen i Nordhuset",
                "sv": "Opera Box: Giellavealgu – Svenska Dagen i Nordhuset",
                "en": "Opera Box: Giellavealgu – Svenska Dagen i Nordhuset"
            },
            "short_description": {
                "fi": "Ruotsalaisuuden päivää juhlistetaan Vuotalossa monikielisellä oopperaesityksellä!",
                "sv": "Svenska Dagen firas med mångspråkig barnopera i Nordhuset!"
            },
            "description": {
                "fi": "<p>Ruotsalaisuuden päivää juhlistetaan Vuotalossa monikielisellä oopperaesityksellä!</p><p>Giellavealgu (Kielenvaihtaja) on tammikuussa 2026 ensi-iltansa saanut Opera Boxin tuottama, 3–12-vuotiaille suunnattu monikielinen lastenooppera. Teos käsittelee pohjoisen luontoa, ystävyyttä ja kieltä naalin, sinirinnan ja tunturipöllön etsiessä yhteistä ääntä. Oopperan ovat ohjanneet ja käsikirjoittaneet <b>Isa Kortekangas</b> ja <b>Ville Salonen</b> ja sen Lapin luontoon pohjautuvan, etno-vaikutteisen ja viulun säestämän musiikin ovat säveltäneet <b>Pessi Jouste</b> ja <b>Elias Nieminen</b>.</p><p>Ooppera korostaa pohjoisten kielten ja kulttuurien merkitystä ja on osa laajempaa kotimaisten<br>kielten teemavuotta. Sen keskeisiä teemoja ovat saamelaisuus, identiteetti, luonnon monimuotoisuus ja tasa-arvoinen ystävyys.</p><p>Ooppera esitettiin ensimmäistä kertaa 13.1.2026 Helsingissä, Aleksanterin teatterissa.</p><p>Esityskielet: pohjoissaame, suomi, ruotsi, somali, arabia, ukraina ja swahili<br>Kesto: noin 35 minuuttia</p>",
                "sv": "<p>Svenska Dagen firas med mångspråkig barnopera i Nordhuset!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7E7F772ECC404D08C1705B9BFBD05491/Opera_Box_Giellavealgu_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/7E7F772ECC404D08C1705B9BFBD05491/Opera_Box_Giellavealgu_",
                "en": "http://www.vuotalo.fi/en/events/event/7E7F772ECC404D08C1705B9BFBD05491/Opera_Box_Giellavealgu_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69262/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkmhpruu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpkhu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpla4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhplp4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpl5y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpmlq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpmze/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpnge/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpntm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpocm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpoqa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpo54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpplu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhppza/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpqii/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpqw4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpreq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 152265,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-02T09:37:57.139443Z",
                    "last_modified_time": "2024-09-02T09:37:57.139463Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/P%C3%B6yd%C3%A4n_%C3%A4%C3%A4ress%C3%A4_2.png",
                    "name": "",
                    "cropping": "970,0,2890,1920",
                    "photographer_name": "",
                    "alt_text": "Piirroskuva, ihmisiä pöydän ääressä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152265/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:aggo3dhzjq/?format=api"
                }
            ],
            "created_time": "2026-06-08T06:46:07.781160Z",
            "last_modified_time": "2026-06-08T06:46:07.781181Z",
            "date_published": null,
            "start_time": "2026-09-03T13:00:00Z",
            "end_time": "2026-12-17T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Roda ry Työllisyyspalvelut",
                "en": "Roda ry : Guidance on job search "
            },
            "short_description": {
                "fi": "Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30.",
                "en": "Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30."
            },
            "description": {
                "fi": "<p>Roda ry tarjoaa ohjauspalveluita viikottain torstaisin Pajassa klo 16.30-18.30</p><p><br></p><p>Apua työhakemusten ja CV:n laatimisessa:</p><p>Työhakemusten ja ansioluetteloiden (CV) kirjoittaminen ja muokkaaminen Valmennusta työhaastatteluihin Tietoa ja tukea työnhakuun liittyvissä kysymyksissä</p><p>Työnhakupalveluiden ja kanavien esittely</p><p>Keskustelua suomalaisesta työelämästä ja odotuksista.</p><p>Yksilöllistä neuvontaa elämäntilanteen mukaan.</p><p>Tukea urasuunnittelussa ja koulutuspolkujen hahmottamisessa.</p>",
                "en": "<p>Roda ry offers guidance services weekly on Thursdays at Paja from 16.30-18.30.</p><p><br></p><p>Help with writing job applications and CVs:</p><p>&nbsp;Writing and editing job applications and CVs Coaching for job interviews Information and support on job search issues Advice and guidance on everyday matters.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Paja",
                "en": "Paja"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpruu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpkmhpvb4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpsdy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpsp4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhps34/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhptiy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhptxa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpuge/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpuua/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150446,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-15T09:39:21.600649Z",
                    "last_modified_time": "2024-03-15T09:39:21.600673Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Miestenkahvila_helmet.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Miehiä kahvin äärellä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150446/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-08T06:39:44.673020Z",
            "last_modified_time": "2026-06-08T06:39:44.673031Z",
            "date_published": null,
            "start_time": "2026-11-06T11:00:00Z",
            "end_time": "2026-12-18T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Miesten kahvila",
                "sv": "Herrcafe",
                "en": "Men's cafe"
            },
            "short_description": {
                "fi": "Miesten kahvila arabiaa puhuville miehille",
                "sv": "Ett herrcafé för arabisktalande män",
                "en": "A men's cafe for Arabic speaking men"
            },
            "description": {
                "fi": "<p>Miesten kahvila arabiaa puhuville miehille</p>",
                "sv": "<p>Ett herrcafé för arabisktalande män</p>",
                "en": "<p>A men's cafe for Arabic speaking men</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Elina",
                "sv": "Elina",
                "en": "Elina"
            },
            "provider": {
                "fi": "Mirsal",
                "sv": "Mirsal",
                "en": "Mirsal"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpkmhpvb4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}