Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 27762,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=97",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=95"
    },
    "data": [
        {
            "id": "kulke:67749",
            "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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494146,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-09T07:13:38.939704Z",
                    "last_modified_time": "2025-12-09T07:13:38.939719Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780874.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494146/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-09T07:13:38.827966Z",
            "last_modified_time": "2026-01-07T12:12:52.732590Z",
            "date_published": null,
            "start_time": "2026-01-07T15:00:00Z",
            "end_time": "2026-01-09T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Annantalo muuttuu LUX Helsingin aikana pysähtymisen ja rauhoittumisen keitaaksi.",
                "sv": "Under LUX Helsinki kommer Annegården att bli en oas av stillhet och lugn.",
                "en": "During LUX Helsinki, Annantalo will become an oasis of stillness and calm."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/504CAA4918925400FFAFC24F3B724769/Stop_Time_LUX-tyopajat_koko_perheelle",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/504CAA4918925400FFAFC24F3B724769/Stop_Time_LUX-verkstader_for_hela_familjen",
                "en": "http://www.annantalo.fi/en/events/event/504CAA4918925400FFAFC24F3B724769/Stop_Time_LUX_workshops_for_the_whole_family"
            },
            "description": {
                "fi": "<p>Annantalo muuttuu LUX Helsingin aikana pysähtymisen ja rauhoittumisen keitaaksi.</p><p>Piipahda sisätiloihin nauttimaan lapsille ja lapsiperheille suunnitelluista Lux-teemaisista työpajoista sekä eri aisteja kutkuttavista tiloista.</p><p>Ohjelmallista toimintaa on tarjolla keskiviikosta perjantaihin klo 17–21.<br> <br>Vapaa pääsy!</p><p>Annantalon oma kahvila Napero on myös auki tapahtumien ajan.</p><p>Ohjelmakuvaukset:</p><p><b>Leikin oma tila</b> <br>klo 17 - 21<br>Merellinen mielikuvitusmaailma kutsuu leikkimään ja kuvittelemaan. Tilassa olevat elementit soveltuvat rauhallisiin leikkeihin. Tilassa toteutetaan myös työpaja/esitykset joista leikkijöitä tiedotetaan ajoissa. Niiden aikana vapaa leikki pidetään tauolla. <br>Esitysten aikana kutsumme siirtymään osallistuvaksi yleisöksi!</p><p><b>Maan Kajo ja meren Kimallus</b><br>Osallistava esitys<br>klo 18:00  / 19:00 / 20:00 (kesto n. 20 min) <br>Esitysten aikana kutsumme siirtymään osallistuvaksi yleisöksi!  <br>Tilaan mahtuu yhteensä 20 henkeä kerrallaan. Esitysosuuteen voi noutaa lipun ennakkoon infosta.</p><p><b>Birth of a Bird</b><br>VR-teos<br>klo 17:30 – 20:30<br>Mitä jos voisit hypätä kappaleen sisälle? Mitä jos voisit koskettaa ääntä? Entä jos musiikkiteoksen soittimet heräisivät eloon? Birth of a Bird kuljettaa käyttäjän sävellyksen keskelle. Äänet liikkuvat heidän ympärillään. He voivat koskettaa ääniä, pitää niitä kädessään, viedä ne korvalle kuullakseen uusia yksityiskohtia tai tuoda ääniä yhteen luodakseen uusia duoja, jotka muuttavat koko teoksen tunnelman.<br>Teos koetaan yksittäin, omalla 2x2m alueella käyttäen VR-laseja, jotka saa lainaan.<br>Tilaan pääsee viisi henkilöä kerrallaan kokemaan teoksen, jonka kesto on noin 6-7 min.</p><p><b>Valomaalaus</b><br>Työpaja<br>klo 17:15 – 20:55 <br>Tervetuloa valomaalaamaan!<br>Valomaalauksessa pensseleinä toimivat taskulamput ja maalauspohjana pimennetty huone. Tutkimme, millaisia jälkiä ja muotoja saamme piirrettyä ilmaan ja taltioitua valokuviin pitkien valotusaikojen avulla. Valoherkkien on hyvä ottaa huomioon, että pajassa käytetään kirkkaita taskulamppuja, joista osa myös vilkkuu.<br>Pajaan otetaan kerrallaan rajattu määrä henkilöitä, mutta muuten paja toimii nonstoppina.</p><p><b>Tuu leikkiin!</b>  <br>7.1. – 31.1.2026   <br>Ideointipiste tulevaisuuden tutkimusmatkailijoille.<br>Sukella kanssamme tulevaisuuden Annantaloon.  <br>Piste on interaktiivinen tapahtuman aikana.</p><p><b>Näkymiä kiertoradalta</b><br>Aulan valoteos: Nicolas Salo</p>",
                "sv": "<p>Under LUX Helsinki kommer Annegården att bli en oas av stillhet och lugn.</p><p>Titta in i gården för att njuta av verkstäder med Lux-tema för barn och barnfamiljer och besök de olika utrymmena som kittlar alla sinnen. <br>Programaktiviteter från onsdag till fredag kl. 17–21.</p><p>Fritt inträde!</p><p>Annegårdens eget café Napero håller öppet under evenemangen.</p><p>Program:</p><p><b>Lekens eget rum</b> <br>kl. 17.00–21.00 <br>En marin fantasivärld bjuder in till lek och föreställande. De element som finns i rummet lämpar sig för lugn lek. I rummet ordnas även workshoppar/föreställningar, om vilka deltagarna informeras i god tid. Under dessa pausar den fria leken.</p><p><b>Jordens Sken och havets Glans</b> <br>Deltagande förestelning<br>kl. 18.00 / 19.00 / 20.00 (längd ca 20 min) <br>Under föreställningarna bjuder vi in publiken att bli deltagande åskådare! Utrymmet rymmer totalt 20 personer åt gången. Biljetter till föreställningsdelen kan hämtas i förväg vid informationen. <br> <br><b>Birth of a Bird</b><br>VR upplevelse <br>kl 17:30 – 20:30 <br>Tänk om du kunde hoppa in i en låt? Tänk om du kunde röra vid ljud? Tänk om instrument i musikaliska kompositioner fick liv? Birth of a Bird förflyttar användaren rakt in i kompositionens centrum. De hör hur ljuden rör sig runt omkring dem. De kan ta på ljuden, hålla dem i handen, föra dem till örat för att upptäcka nya detaljer eller föra dem samman för att skapa nya duetter – och därigenom förändra hela styckets stämning.  Verket upplevs individuellt på ett eget område om 2 x 2 meter med hjälp av VR-glasögon som lånas på plats. Fem personer åt gången kan vistas i rummet för att uppleva verket, vars längd är cirka 6–7 minuter.</p><p><b>Ljusmålning</b><br>Verkstad <br>kl 17:15 – 20:55<br>Välkommen att ljusmåla! I ljusmålning fungerar ficklampor som penslar och ett mörklagt rum som målarduk. Vi utforskar vilka spår och former vi kan rita i luften och fånga i fotografier med hjälp av långa exponeringstider. Personer som är ljuskänsliga bör notera att starka ficklampor används i workshopen, varav vissa även blinkar. <br>Ett begränsat antal deltagare tas in åt gången, men i övrigt pågår workshopen som drop-in utan avbrott. <br> <br><b>Ska vi leka?</b><br>7–31.1.2026 <br>Idéhörna för framtidens upptäcktsresande. <br>Hoppa in i Annegårdens framtid tillsammans med oss. Hörnan är interaktiv under evenemanget. <br> <br><b>Vyer från omloppsbana</b> <br>Foajéns ljusinstallation: Nicolas Salo</p>",
                "en": "<p>During LUX Helsinki, Annantalo will become an oasis of stillness and calm.</p><p>Visit the indoor facilities to enjoy LUX-themed workshops for children and families with children, as well as a variety of spaces to tickle the senses.<br> <br>Programmed activities will be provided from Wednesday to Friday at 17.00–21.00.</p><p>Free entry!</p><p>Annantalo’s own café, Napero, will also be open during the events.</p><p>Program:</p><p><b>Play’s Own Space</b><br>from 5 PM to 9 PM <br>A maritime world of imagination invites you to play and dream. The elements in the space are suited for calm, gentle play. Workshops/performances will also take place in the space, and players will be informed of these in advance. During them, free play will be paused.</p><p><b>Earth’s Glow and the Sea’s Sparkle</b><br>Participatory performance <br>at 6 PM / 7 PM / 8 PM (duration approx. 20 minutes) <br>During the performances, we invite everyone to move into the role of a participatory audience!The space can accommodate a total of 20 people at a time. Tickets for the performance segment can be picked up in advance from the information desk. <br> <br><b>Birth of a Bird</b><br>VR experience <br>from 5.30 PM to 8.30 PM <br>What if you could jump inside of a song? What if you could touch sound? What if instruments in musical compositions came to life? Birth of a Bird transports the user into the middle of the composition. They hear the sounds move around them. They can touch the sounds, hold them in their hand, bring them to their ear to hear new details, or bring them together to create new duets, changing the whole mood of the piece. The work is experienced individually in a personal  <br>2 x 2 meter area using VR headsets, which are provided on site. Up to five people can enter the space at a time to experience the work, which lasts approximately 6–7 minutes. <br> <br><b>Light painting</b><br>Workshop<br>from 5:15 PM to 8.55 PM <br>Welcome to light paintig! In light painting, flashlights act as brushes and a darkened room as the canvas. We explore what kinds of traces and shapes we can draw in the air and capture in photographs using long exposure times. Those sensitive to light should note that bright flashlights are used in the workshop, some of which may also flash. <br>A limited number of participants are admitted at a time, but the workshop otherwise runs on a drop-in, continuous basis.</p><p><b>Let’s play</b><br>7.1. – 31.1.2026    <br>Brainstorming Point for the explorers of the future <br>Dive with us into the Annantalo of the future. <br>Interactive during the Annantalo event.</p><p><b>Views from Orbit</b><br>Light installation in the lobby: Nicolas Salo</p>"
            },
            "name": {
                "fi": "Stop Time / LUX-työpajat koko perheelle – LUX Helsinki",
                "sv": "Stop Time / LUX-verkstäder för hela familjen – LUX Helsinki",
                "en": "Stop Time / LUX workshops for the whole family – LUX Helsinki"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67749/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnspehbte",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?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:p2625/?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:p3917/?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:p4934/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494227,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-12-16T13:35:27.159966Z",
                    "last_modified_time": "2025-12-16T13:35:27.159983Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/506ee0f3-7a60-4886-b0d0-4adf043b8a74.jpeg",
                    "name": "",
                    "cropping": "397,0,1418,1021",
                    "photographer_name": "Kerttu Penttilä",
                    "alt_text": "Violettisävyinen kuva Espoon kulttuurikeskuksen julkisivusta kuvattuna talviaikaan keskusaltaan jäällä. Kuvassa on luistelevia lapsia.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494227/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-16T13:42:29.486100Z",
            "last_modified_time": "2026-01-07T11:17:59.995794Z",
            "date_published": "2025-12-16T13:11:00Z",
            "start_time": "2026-01-17T10:00:00Z",
            "end_time": "2026-01-17T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule tutustumaan, mitä kaikkea puuhaa Tapiolassa onkaan!",
                "sv": "Kom och upptäck allt roligt som finns i Hagalund!",
                "en": "Come and explore all the fun activities in Tapiola!"
            },
            "info_url": null,
            "description": {
                "fi": "<p><strong>Tule tutustumaan Tapiolan alueen toimijoihin ja löydä itsellesi puuhaa talvikaudelle 2026! Kierrä esittelypöytiä ja testaa, mikä toimii juuri sinulle! </strong></p><p><br></p><p>Ohjelma päivittyy vielä alkuvuodesta 2026.</p><p><br></p><p><br></p>\nOhjelmassa<p>Talviteemainen käsityötaiteen ja musiikin työpaja klo 12-14:00 (Espoo Creative)</p><p><br></p><p><br></p>\nMukana<p><strong>SPR, Espoon Ystävä- ja vapaaehtoisvälitys. </strong>Toimimme koko Espoon alueella. Välitämme vapaaehtoisten voimin tukea, apua ja seuraa erityisesti ikäihmisille. Tavoitteenamme on mm. vähentää yksinäisyyttä, syrjäytymistä ja turvattomuutta.</p><p><strong>Teatteri Hevosenkenkä.</strong> Teatteri Hevosenkenkä on Mankkaalla toimiva, lastennäytelmiin ja nukketeatteriin erikoistunut, Espoon ensimmäinen ammattiteatteri. Kevään 2026 ohjelmistossa on Nils Holgersson ja Villihanhet, Tatu ja Patu etsivinä - tapaus Puolittaja, Kani Untuvakerä ja Näin Unessa (vauva- ja taaperoteatteriesitys).</p><p><strong>EMMA-taidemuseosäätiö sr.</strong> EMMA täyttää 20-vuotta vuonna 2026! Juhlavuoden ohjelmisto tarjoaa kiehtovia sisältöjä ja tapahtumia kaikenikäisille. Varattavissa olevat kokous- ja juhlatilat, lasten synttärit, opastukset ja taidepajat kutsuvat museoon myös porukalla!</p><p><strong>Tapiolan seurakunta.</strong> Seurakunta tarjoaa perheille erilaisia kerhoja ja ryhmiä, joissa tavata muita samoissa elämäntilanteissa olevia. Järjestämme myös tapahtumia kuten vappukonsertin. Tapiolan kirkon kahvila ja leikkitila tarjoavat lisäksi mahdollisuuden kokoontua itsenäisesti viikkotoiminnan ulkopuolellakin.</p>",
                "sv": "<p><strong>Kom och träffa aktörer i området Hagalund! </strong></p><p><strong>Hitta aktiviteter för dig under vintersäsongen 2026. </strong></p><p><strong>Gå runt vid presentationsborden och se vad som passar just dig.</strong></p><p><br></p><p><br></p><p><br></p><p><br></p>\nProgram:<p>Vintertema hantverks- och musikverkstad kl. 12–14 (Espoo Creative).</p><p>Programmet kompletteras i början av år 2026.</p>",
                "en": "<p><strong>Come and meet the local actors in Tapiola!</strong></p><p><strong>Find activities for yourself for the winter season 2026.</strong></p><p><strong>Walk around the info tables and see what suits you best.</strong></p><p><br></p><p><br></p><p><br></p><p><br></p>\nProgramme:<p>Winter-themed arts and crafts and music workshop from 12:00 to 14:00 (Espoo Creative).</p><p>The programme will be updated in early 2026.</p>"
            },
            "name": {
                "fi": "Talvipuuhapäivä - Löydä tekemistä Tapiolasta",
                "sv": "Vinteraktivitetsdag – Hitta saker att göra i Hagalund",
                "en": "Winter Fun Day – Find Things to Do in Tapiola"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnspehbte/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzqobism",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1650/?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:p2630/?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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494390,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-01-07T10:46:27.801988Z",
                    "last_modified_time": "2026-01-07T10:46:27.802004Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a27b4e2c-964f-4ea7-b606-a3772049c70e.png",
                    "name": "",
                    "cropping": "0,135,1080,1215",
                    "photographer_name": "",
                    "alt_text": "Kirjailija Kukka Cedercreutz esittelee kuvassa hymyilleen julkaistua teostaan: Koulu kuilun reunalla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494390/?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-01-07T10:40:05.764866Z",
            "last_modified_time": "2026-01-07T10:46:47.809258Z",
            "date_published": null,
            "start_time": "2026-01-22T15:30:00Z",
            "end_time": "2026-01-22T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tärkeää keskustelua lasten koulussa pärjämisestä."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Äiti, isä tai lapsen huoltaja! Tervetuloa kuuntelemaan, miten voit auttaa lapsesi pärjäämistä koulussa - ja elämässä. Kukka Cedercreutz työskenteli luokanopettajana 26 vuotta ja nyt hän on julkaissut kirjan Koulu kuilun reunalla. Haastattelijana toimii Sara Nurttila.&nbsp;</p><p><br></p><p>Tervetuloa!</p>"
            },
            "name": {
                "fi": "Kirjailijavieras: Kukka Cedercreutz"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzqobism/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67751",
            "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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:671/?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:748/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494204,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-14T08:13:25.712835Z",
                    "last_modified_time": "2025-12-14T08:13:25.712851Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782261.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494204/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-14T08:13:25.434655Z",
            "last_modified_time": "2026-01-06T16:12:50.434560Z",
            "date_published": null,
            "start_time": "2026-01-10T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "A-alus kulkee maalla, merellä ja ilmassa, avaruudessa, tulevaisuudessa ja ennen kaikkea mielikuvituksessa. Aluksen tärkein osa olet sinä. Sukelletaan yhdessä leikin siivin tulevaisuuden Annantaloon.",
                "sv": "A-skeppet färdas på land, till sjöss och i luften, i rymden, i framtiden och framför allt i fantasin.",
                "en": "The A-ship travels on land, sea and air, in space, in the future and, above all, through your imagination. You are the most important part of this ship."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4CC9B6173C3F666A3909EF2F18355560/Tuu_leikkiin_LOPPUUNVARATTU_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/4CC9B6173C3F666A3909EF2F18355560/Ska_vi_leka_Fullbokad_",
                "en": "http://www.annantalo.fi/en/events/event/4CC9B6173C3F666A3909EF2F18355560/Let_s_Play_Fully_booked_"
            },
            "description": {
                "fi": "<p>A-alus kulkee maalla, merellä ja ilmassa, avaruudessa, tulevaisuudessa ja ennen kaikkea mielikuvituksessa. Aluksen tärkein osa olet sinä. Sukelletaan yhdessä leikin siivin tulevaisuuden Annantaloon.</p><p>Mitä tulevaisuuden Annantalossa tapahtuu, keitä siellä tapaat? Mikä siellä yllättää? Tuu leikkiin!</p><p>Annantalossa järjestetään Tuu leikkiin! -tulevaisuusleikki 7.–31.1.2026. Tapahtumien avulla kerätään lasten, nuorten ja perheiden näkemyksiä siitä, millainen Annantalo voisi olla tulevaisuudessa perusparannuksen jälkeen. Tule mukaan ideoimaan ja unelmoimaan!</p><p>Mukaan leikkiin mahtuu 5 lasta aikuisen kanssa. Työpaja on tarkoitettu 3-6-vuotiaille. Työpajan kesto 90 min.</p><p><b>HUOM! Vain ennakkoon ilmoittautuneille.</b> <br><u><a href=\"https://link.webropol.com/ep/tuuleikkiinaamu\">Ilmoittaudu mukaan työpajaan</a></u></p><p>Tapahtuma on suomenkielinen ja maksuton.</p><p>Annantalo – lasten, nuorten ja perheiden oma monitaiteinen taidekeskus – uudistuu perusparannushankkeen yhteydessä 2030-luvun alkupuolella. Nyt on mahdollisuus vaikuttaa talon tulevaisuuteen! Tavoitteena on tehdä Annantalosta lasten ja pienten kaupungin tekijöiden ylpeyden aihe ja yhä rakastetumpi helmi pääkaupunkiseudun lastenkulttuurikohteiden joukossa – talon kulttuurihistoriaa ja paikan henkeä kunnioittaen.</p>",
                "sv": "<p>A-skeppet färdas på land, till sjöss och i luften, i rymden, i framtiden och framför allt i fantasin.</p><p>Viktigast på skeppets är du för du kan påverka Annegårdens framtid genom att leka med oss och berätta allt möjligt. Vad händer och sker månne på Annegården i framtiden, enligt dig? Vem kommer du att att möta där? Vad kommer att överraska dig – och vad inte?</p><p>Vi ordnar framtidsleken Ska vi leka? på Annegården 7–31.1.2026. Med hjälp av evenemangen samlar vi in barns, ungas och familjers åsikter om hurdan Annegården kunde vara i framtiden efter renoveringen. Kom med, kläck vilda idéer och dröm om framtiden!</p><p>5 barn (med en vuxen) ryms med i leken. Verkstaden är avsedd för 3–6-åringar. Verkstaden är 90 minuter lång.</p><p><b>OBS! Endast med förhandsanmälan.</b> <br><u><a href=\"https://link.webropol.com/ep/tuuleikkiinaamu\">Anmäl dig till verkstaden</a></u></p><p>Evenemanget är avgiftsfritt. Evenemanget är på finska.</p><p>Helsingfors konstcentrum för barn och unga, Annegården, renoveras i början av 2030-talet. Nu har stadsborna av alla åldrar möjlighet att påverka gårdens framtid. Också barn och unga är välkomna att planera och säga sin åsikt med början 7.1.2026.</p><p>Annegården är barns, ungas och familjers mångsidiga konstcentrum samt Helsingfors största aktör inom barnkultur. Renoveringsarbetet vid Annegården inleds 2032 enligt en preliminär tidtabell. Det är framför allt orsaker som har att göra med den fysiska byggnadens utrymmen och byggnadens tekniska livslängd som gör att staden nu går in för en renovering. Till exempel måste tillgängligheten bli bättre och utrymmena modernare.</p><p>Samtidigt får staden och stadsborna tillsammans en möjlighet att planera och utveckla själva verksamheten, alltså de tjänster staden erbjuder helsingforsborna i Annegården. Därför är det viktigt att så många som möjlighet av de olika användarna, nuvarande och framtida kunderna och partnerna tar tillfället i akt och berättar för staden om hur de ser de framtida behoven. Blicken riktas mot framtiden genom lek och fantasi från och med 7.1.2026.</p>",
                "en": "<p>The A-ship travels on land, sea and air, in space, in the future and, above all, through your imagination. You are the most important part of this ship.</p><p>Let's play together and dive into the Annantalo of the future. What is happening in the Annantalo of the future, who are you meeting there? What surprises are in store? Let’s Play!</p><p>‘Let’s Play!’ imaginary expedition into the future will be held at Annantalo from 7 to 31 January 2026. The events will be used to gather the views of children, young people and families on what Annantalo could be like in the future, after the renovation. Come and join us in brainstorming and dreaming!</p><p>The workshop can accommodate up to 5 children (with an adult) at a time, and it is intended for children aged 3–6. Workshop duration 90 min.</p><p><b>PLEASE NOTE! Only for pre-registered participants.</b> <br><u><a href=\"https://link.webropol.com/ep/tuuleikkiinaamu\">Register for the workshop</a></u></p><p>The event is in Finnish and free of charge.</p><p>Annantalo Children and Youth Art Centre in Helsinki will be renovated in the early 2030s, and now the city residents – including children – have a chance to influence its future.</p><p>Annantalo is a multidisciplinary arts centre for children, young people and families and it is the largest children's culture operator in Helsinki. The construction works of the Annantalo renovation are scheduled to start in 2032.  The renovation needs are essentially related to the physical facilities and the technical lifespan of the building, such as improving its accessibility and modernising the facilities.  Major renovation projects also provide an opportunity to plan and develop the services offered. This is why Annantalo wants to engage in a dialogue with its different user groups, current customers and partners, and also potential future customers about their needs in the future.  Looking to the future through play and make-believe from 7 January 2026 onwards.</p>"
            },
            "name": {
                "fi": "Tuu leikkiin! [LOPPUUNVARATTU] – Tulevaisuusleikki tulevaisuuden tutkimusmatkailijoille",
                "sv": "Ska vi leka? [Fullbokad] – Framtidslek för framtidens upptäcktsresande",
                "en": "Let’s Play! [Fully booked] – An imaginary expedition into the future for explorers of the future"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Annantalo/Helsingin kaupunki",
                "sv": "Annegården",
                "en": "Annantalo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67751/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny5rquci",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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/helmet:11733/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqy5a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494386,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T14:43:30.133254Z",
                    "last_modified_time": "2026-01-05T14:43:30.133270Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/516334a3-fbb3-4582-8bb2-b7b767c048bd.png",
                    "name": "",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Connectorian järjestäjiä lavalla ryhmäkuvassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494386/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T14:46:18.779313Z",
            "last_modified_time": "2026-01-05T14:46:18.779330Z",
            "date_published": null,
            "start_time": "2026-06-12T13:00:00Z",
            "end_time": "2026-06-12T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tapahtuma tuo yhteen ihmisiä yli sukupolvi- ja kulttuurirajojen.",
                "sv": "Evenemanget för människor samman över generations- och kulturgränser.",
                "en": "The event brings people together across generations and cultures"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapahtuma tuo yhteen ihmisiä yli sukupolvi- ja kulttuurirajojen. Connectoriassa kerrotaan tarinoita ja jaetaan kokemuksia ympäri maailman eri ikäisten ihmisten välillä. Tapahtumassa pääset tutustumaan mielenkiintoisiin ihmisiin, joita et ehkä tavoittaisi tavallisessa arjessasi. </p><p>Tapaamme kerran kuussa perjantai-iltaisin. Joka kerta tutustumme toisiimme lisää jonkin erilaisen teeman ympärillä. Tervetuloa mukaan milloin tahansa. Tarjoamme aina myös kahvia ja teetä ja hieman syötävää. </p><p>Vuoden 2026 syksyn Connectoria: </p><p>pe 23.1. kello 16-18</p><p>pe 20.2. kello 16-18</p><p>pe 20.3. kello 16-18</p><p>pe 24.4. kello 16-18</p><p>pe 22.5. kello 16-18</p><p>pe 12.6. kello 16-18</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Evenemanget för människor samman över generations- och kulturgränser. På Connectoria delar människor i olika åldrar från hela världen berättelser och erfarenheter. Evenemanget ger dig möjlighet att möta intressanta personer som du kanske inte skulle träffa i din vanliga vardag.</p><p>Vi träffas en gång i månaden på fredagskvällar. Varje gång lär vi känna varandra genom ett nytt tema. Du är välkommen att delta när som helst. Vi bjuder alltid på kaffe, te och lite tilltugg.</p><p>Connectoria, våren 2026:</p><p>fre 23.1 kl. 16–18</p><p>fre 20.2 kl. 16–18</p><p>fre 20.3 kl. 16–18</p><p>fre 24.4 kl. 16–18</p><p>fre 22.5 kl. 16–18</p><p>fre 12.6 kl. 16–18</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>The event brings people together across generations and cultures. At Connectoria, people of different ages from around the world share stories and experiences. The event gives you the chance to meet interesting people you might not encounter in your everyday life.</p><p>We meet once a month on Friday evenings. Each time, we get to know one another through a different theme. You are welcome to join at any time. We always offer coffee, tea, and a little something to eat.</p><p>Connectoria, Spring 2026:</p><p>Fri 23 January, 16:00–18:00</p><p>Fri 20 February, 16:00–18:00</p><p>Fri 20 March, 16:00–18:00</p><p>Fri 24 April, 16:00–18:00</p><p>Fri 22 May, 16:00–18:00</p><p>Fri 12 June, 16:00–18:00</p><p><br></p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Connectoria ",
                "sv": "Connectoria",
                "en": "Connectoria"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rquci/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny5rqvc4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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/helmet:11733/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqy5a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494386,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T14:43:30.133254Z",
                    "last_modified_time": "2026-01-05T14:43:30.133270Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/516334a3-fbb3-4582-8bb2-b7b767c048bd.png",
                    "name": "",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Connectorian järjestäjiä lavalla ryhmäkuvassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494386/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T14:46:18.674783Z",
            "last_modified_time": "2026-01-05T14:46:18.674801Z",
            "date_published": null,
            "start_time": "2026-05-22T13:00:00Z",
            "end_time": "2026-05-22T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tapahtuma tuo yhteen ihmisiä yli sukupolvi- ja kulttuurirajojen.",
                "sv": "Evenemanget för människor samman över generations- och kulturgränser.",
                "en": "The event brings people together across generations and cultures"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapahtuma tuo yhteen ihmisiä yli sukupolvi- ja kulttuurirajojen. Connectoriassa kerrotaan tarinoita ja jaetaan kokemuksia ympäri maailman eri ikäisten ihmisten välillä. Tapahtumassa pääset tutustumaan mielenkiintoisiin ihmisiin, joita et ehkä tavoittaisi tavallisessa arjessasi. </p><p>Tapaamme kerran kuussa perjantai-iltaisin. Joka kerta tutustumme toisiimme lisää jonkin erilaisen teeman ympärillä. Tervetuloa mukaan milloin tahansa. Tarjoamme aina myös kahvia ja teetä ja hieman syötävää. </p><p>Vuoden 2026 syksyn Connectoria: </p><p>pe 23.1. kello 16-18</p><p>pe 20.2. kello 16-18</p><p>pe 20.3. kello 16-18</p><p>pe 24.4. kello 16-18</p><p>pe 22.5. kello 16-18</p><p>pe 12.6. kello 16-18</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Evenemanget för människor samman över generations- och kulturgränser. På Connectoria delar människor i olika åldrar från hela världen berättelser och erfarenheter. Evenemanget ger dig möjlighet att möta intressanta personer som du kanske inte skulle träffa i din vanliga vardag.</p><p>Vi träffas en gång i månaden på fredagskvällar. Varje gång lär vi känna varandra genom ett nytt tema. Du är välkommen att delta när som helst. Vi bjuder alltid på kaffe, te och lite tilltugg.</p><p>Connectoria, våren 2026:</p><p>fre 23.1 kl. 16–18</p><p>fre 20.2 kl. 16–18</p><p>fre 20.3 kl. 16–18</p><p>fre 24.4 kl. 16–18</p><p>fre 22.5 kl. 16–18</p><p>fre 12.6 kl. 16–18</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>The event brings people together across generations and cultures. At Connectoria, people of different ages from around the world share stories and experiences. The event gives you the chance to meet interesting people you might not encounter in your everyday life.</p><p>We meet once a month on Friday evenings. Each time, we get to know one another through a different theme. You are welcome to join at any time. We always offer coffee, tea, and a little something to eat.</p><p>Connectoria, Spring 2026:</p><p>Fri 23 January, 16:00–18:00</p><p>Fri 20 February, 16:00–18:00</p><p>Fri 20 March, 16:00–18:00</p><p>Fri 24 April, 16:00–18:00</p><p>Fri 22 May, 16:00–18:00</p><p>Fri 12 June, 16:00–18:00</p><p><br></p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Connectoria ",
                "sv": "Connectoria",
                "en": "Connectoria"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqvc4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny5rqv3m",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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/helmet:11733/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqy5a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494386,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T14:43:30.133254Z",
                    "last_modified_time": "2026-01-05T14:43:30.133270Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/516334a3-fbb3-4582-8bb2-b7b767c048bd.png",
                    "name": "",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Connectorian järjestäjiä lavalla ryhmäkuvassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494386/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T14:46:18.569216Z",
            "last_modified_time": "2026-01-05T14:46:18.569233Z",
            "date_published": null,
            "start_time": "2026-04-24T13:00:00Z",
            "end_time": "2026-04-24T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tapahtuma tuo yhteen ihmisiä yli sukupolvi- ja kulttuurirajojen.",
                "sv": "Evenemanget för människor samman över generations- och kulturgränser.",
                "en": "The event brings people together across generations and cultures"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapahtuma tuo yhteen ihmisiä yli sukupolvi- ja kulttuurirajojen. Connectoriassa kerrotaan tarinoita ja jaetaan kokemuksia ympäri maailman eri ikäisten ihmisten välillä. Tapahtumassa pääset tutustumaan mielenkiintoisiin ihmisiin, joita et ehkä tavoittaisi tavallisessa arjessasi. </p><p>Tapaamme kerran kuussa perjantai-iltaisin. Joka kerta tutustumme toisiimme lisää jonkin erilaisen teeman ympärillä. Tervetuloa mukaan milloin tahansa. Tarjoamme aina myös kahvia ja teetä ja hieman syötävää. </p><p>Vuoden 2026 syksyn Connectoria: </p><p>pe 23.1. kello 16-18</p><p>pe 20.2. kello 16-18</p><p>pe 20.3. kello 16-18</p><p>pe 24.4. kello 16-18</p><p>pe 22.5. kello 16-18</p><p>pe 12.6. kello 16-18</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Evenemanget för människor samman över generations- och kulturgränser. På Connectoria delar människor i olika åldrar från hela världen berättelser och erfarenheter. Evenemanget ger dig möjlighet att möta intressanta personer som du kanske inte skulle träffa i din vanliga vardag.</p><p>Vi träffas en gång i månaden på fredagskvällar. Varje gång lär vi känna varandra genom ett nytt tema. Du är välkommen att delta när som helst. Vi bjuder alltid på kaffe, te och lite tilltugg.</p><p>Connectoria, våren 2026:</p><p>fre 23.1 kl. 16–18</p><p>fre 20.2 kl. 16–18</p><p>fre 20.3 kl. 16–18</p><p>fre 24.4 kl. 16–18</p><p>fre 22.5 kl. 16–18</p><p>fre 12.6 kl. 16–18</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>The event brings people together across generations and cultures. At Connectoria, people of different ages from around the world share stories and experiences. The event gives you the chance to meet interesting people you might not encounter in your everyday life.</p><p>We meet once a month on Friday evenings. Each time, we get to know one another through a different theme. You are welcome to join at any time. We always offer coffee, tea, and a little something to eat.</p><p>Connectoria, Spring 2026:</p><p>Fri 23 January, 16:00–18:00</p><p>Fri 20 February, 16:00–18:00</p><p>Fri 20 March, 16:00–18:00</p><p>Fri 24 April, 16:00–18:00</p><p>Fri 22 May, 16:00–18:00</p><p>Fri 12 June, 16:00–18:00</p><p><br></p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Connectoria ",
                "sv": "Connectoria",
                "en": "Connectoria"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqv3m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny5rqwtq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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/helmet:11733/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqy5a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494386,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T14:43:30.133254Z",
                    "last_modified_time": "2026-01-05T14:43:30.133270Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/516334a3-fbb3-4582-8bb2-b7b767c048bd.png",
                    "name": "",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Connectorian järjestäjiä lavalla ryhmäkuvassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494386/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T14:46:18.448859Z",
            "last_modified_time": "2026-01-05T14:46:18.448878Z",
            "date_published": null,
            "start_time": "2026-03-20T14:00:00Z",
            "end_time": "2026-03-20T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tapahtuma tuo yhteen ihmisiä yli sukupolvi- ja kulttuurirajojen.",
                "sv": "Evenemanget för människor samman över generations- och kulturgränser.",
                "en": "The event brings people together across generations and cultures"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapahtuma tuo yhteen ihmisiä yli sukupolvi- ja kulttuurirajojen. Connectoriassa kerrotaan tarinoita ja jaetaan kokemuksia ympäri maailman eri ikäisten ihmisten välillä. Tapahtumassa pääset tutustumaan mielenkiintoisiin ihmisiin, joita et ehkä tavoittaisi tavallisessa arjessasi. </p><p>Tapaamme kerran kuussa perjantai-iltaisin. Joka kerta tutustumme toisiimme lisää jonkin erilaisen teeman ympärillä. Tervetuloa mukaan milloin tahansa. Tarjoamme aina myös kahvia ja teetä ja hieman syötävää. </p><p>Vuoden 2026 syksyn Connectoria: </p><p>pe 23.1. kello 16-18</p><p>pe 20.2. kello 16-18</p><p>pe 20.3. kello 16-18</p><p>pe 24.4. kello 16-18</p><p>pe 22.5. kello 16-18</p><p>pe 12.6. kello 16-18</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Evenemanget för människor samman över generations- och kulturgränser. På Connectoria delar människor i olika åldrar från hela världen berättelser och erfarenheter. Evenemanget ger dig möjlighet att möta intressanta personer som du kanske inte skulle träffa i din vanliga vardag.</p><p>Vi träffas en gång i månaden på fredagskvällar. Varje gång lär vi känna varandra genom ett nytt tema. Du är välkommen att delta när som helst. Vi bjuder alltid på kaffe, te och lite tilltugg.</p><p>Connectoria, våren 2026:</p><p>fre 23.1 kl. 16–18</p><p>fre 20.2 kl. 16–18</p><p>fre 20.3 kl. 16–18</p><p>fre 24.4 kl. 16–18</p><p>fre 22.5 kl. 16–18</p><p>fre 12.6 kl. 16–18</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>The event brings people together across generations and cultures. At Connectoria, people of different ages from around the world share stories and experiences. The event gives you the chance to meet interesting people you might not encounter in your everyday life.</p><p>We meet once a month on Friday evenings. Each time, we get to know one another through a different theme. You are welcome to join at any time. We always offer coffee, tea, and a little something to eat.</p><p>Connectoria, Spring 2026:</p><p>Fri 23 January, 16:00–18:00</p><p>Fri 20 February, 16:00–18:00</p><p>Fri 20 March, 16:00–18:00</p><p>Fri 24 April, 16:00–18:00</p><p>Fri 22 May, 16:00–18:00</p><p>Fri 12 June, 16:00–18:00</p><p><br></p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Connectoria ",
                "sv": "Connectoria",
                "en": "Connectoria"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqwtq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny5rqxmm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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/helmet:11733/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqy5a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494386,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T14:43:30.133254Z",
                    "last_modified_time": "2026-01-05T14:43:30.133270Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/516334a3-fbb3-4582-8bb2-b7b767c048bd.png",
                    "name": "",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Connectorian järjestäjiä lavalla ryhmäkuvassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494386/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T14:46:18.339089Z",
            "last_modified_time": "2026-01-05T14:46:18.339109Z",
            "date_published": null,
            "start_time": "2026-02-20T14:00:00Z",
            "end_time": "2026-02-20T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tapahtuma tuo yhteen ihmisiä yli sukupolvi- ja kulttuurirajojen.",
                "sv": "Evenemanget för människor samman över generations- och kulturgränser.",
                "en": "The event brings people together across generations and cultures"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapahtuma tuo yhteen ihmisiä yli sukupolvi- ja kulttuurirajojen. Connectoriassa kerrotaan tarinoita ja jaetaan kokemuksia ympäri maailman eri ikäisten ihmisten välillä. Tapahtumassa pääset tutustumaan mielenkiintoisiin ihmisiin, joita et ehkä tavoittaisi tavallisessa arjessasi. </p><p>Tapaamme kerran kuussa perjantai-iltaisin. Joka kerta tutustumme toisiimme lisää jonkin erilaisen teeman ympärillä. Tervetuloa mukaan milloin tahansa. Tarjoamme aina myös kahvia ja teetä ja hieman syötävää. </p><p>Vuoden 2026 syksyn Connectoria: </p><p>pe 23.1. kello 16-18</p><p>pe 20.2. kello 16-18</p><p>pe 20.3. kello 16-18</p><p>pe 24.4. kello 16-18</p><p>pe 22.5. kello 16-18</p><p>pe 12.6. kello 16-18</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Evenemanget för människor samman över generations- och kulturgränser. På Connectoria delar människor i olika åldrar från hela världen berättelser och erfarenheter. Evenemanget ger dig möjlighet att möta intressanta personer som du kanske inte skulle träffa i din vanliga vardag.</p><p>Vi träffas en gång i månaden på fredagskvällar. Varje gång lär vi känna varandra genom ett nytt tema. Du är välkommen att delta när som helst. Vi bjuder alltid på kaffe, te och lite tilltugg.</p><p>Connectoria, våren 2026:</p><p>fre 23.1 kl. 16–18</p><p>fre 20.2 kl. 16–18</p><p>fre 20.3 kl. 16–18</p><p>fre 24.4 kl. 16–18</p><p>fre 22.5 kl. 16–18</p><p>fre 12.6 kl. 16–18</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>The event brings people together across generations and cultures. At Connectoria, people of different ages from around the world share stories and experiences. The event gives you the chance to meet interesting people you might not encounter in your everyday life.</p><p>We meet once a month on Friday evenings. Each time, we get to know one another through a different theme. You are welcome to join at any time. We always offer coffee, tea, and a little something to eat.</p><p>Connectoria, Spring 2026:</p><p>Fri 23 January, 16:00–18:00</p><p>Fri 20 February, 16:00–18:00</p><p>Fri 20 March, 16:00–18:00</p><p>Fri 24 April, 16:00–18:00</p><p>Fri 22 May, 16:00–18:00</p><p>Fri 12 June, 16:00–18:00</p><p><br></p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Connectoria ",
                "sv": "Connectoria",
                "en": "Connectoria"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqxmm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny5rqy5a",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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/helmet:11733/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rquci/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqvc4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqv3m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqwtq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqxmm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqye4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494386,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T14:43:30.133254Z",
                    "last_modified_time": "2026-01-05T14:43:30.133270Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/516334a3-fbb3-4582-8bb2-b7b767c048bd.png",
                    "name": "",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Connectorian järjestäjiä lavalla ryhmäkuvassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494386/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T14:46:17.253403Z",
            "last_modified_time": "2026-01-05T14:46:17.253422Z",
            "date_published": null,
            "start_time": "2026-01-23T14:00:00Z",
            "end_time": "2026-06-12T15: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,
            "short_description": {
                "fi": "Tapahtuma tuo yhteen ihmisiä yli sukupolvi- ja kulttuurirajojen.",
                "sv": "Evenemanget för människor samman över generations- och kulturgränser.",
                "en": "The event brings people together across generations and cultures"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapahtuma tuo yhteen ihmisiä yli sukupolvi- ja kulttuurirajojen. Connectoriassa kerrotaan tarinoita ja jaetaan kokemuksia ympäri maailman eri ikäisten ihmisten välillä. Tapahtumassa pääset tutustumaan mielenkiintoisiin ihmisiin, joita et ehkä tavoittaisi tavallisessa arjessasi. </p><p>Tapaamme kerran kuussa perjantai-iltaisin. Joka kerta tutustumme toisiimme lisää jonkin erilaisen teeman ympärillä. Tervetuloa mukaan milloin tahansa. Tarjoamme aina myös kahvia ja teetä ja hieman syötävää. </p><p>Vuoden 2026 syksyn Connectoria: </p><p>pe 23.1. kello 16-18</p><p>pe 20.2. kello 16-18</p><p>pe 20.3. kello 16-18</p><p>pe 24.4. kello 16-18</p><p>pe 22.5. kello 16-18</p><p>pe 12.6. kello 16-18</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Evenemanget för människor samman över generations- och kulturgränser. På Connectoria delar människor i olika åldrar från hela världen berättelser och erfarenheter. Evenemanget ger dig möjlighet att möta intressanta personer som du kanske inte skulle träffa i din vanliga vardag.</p><p>Vi träffas en gång i månaden på fredagskvällar. Varje gång lär vi känna varandra genom ett nytt tema. Du är välkommen att delta när som helst. Vi bjuder alltid på kaffe, te och lite tilltugg.</p><p>Connectoria, våren 2026:</p><p>fre 23.1 kl. 16–18</p><p>fre 20.2 kl. 16–18</p><p>fre 20.3 kl. 16–18</p><p>fre 24.4 kl. 16–18</p><p>fre 22.5 kl. 16–18</p><p>fre 12.6 kl. 16–18</p><p><br></p><p>#helloespoo</p>",
                "en": "<p>The event brings people together across generations and cultures. At Connectoria, people of different ages from around the world share stories and experiences. The event gives you the chance to meet interesting people you might not encounter in your everyday life.</p><p>We meet once a month on Friday evenings. Each time, we get to know one another through a different theme. You are welcome to join at any time. We always offer coffee, tea, and a little something to eat.</p><p>Connectoria, Spring 2026:</p><p>Fri 23 January, 16:00–18:00</p><p>Fri 20 February, 16:00–18:00</p><p>Fri 20 March, 16:00–18:00</p><p>Fri 24 April, 16:00–18:00</p><p>Fri 22 May, 16:00–18:00</p><p>Fri 12 June, 16:00–18:00</p><p><br></p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Connectoria ",
                "sv": "Connectoria",
                "en": "Connectoria"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqy5a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny5dx3aq",
            "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/espoo_le:agggfz65pm/?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": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494382,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-01-05T13:03:22.119148Z",
                    "last_modified_time": "2026-01-05T13:03:22.119165Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/eb8ab581-e3e5-47e9-8159-1b83cdb96a0d.jpg",
                    "name": "",
                    "cropping": "328,0,2752,2424",
                    "photographer_name": "",
                    "alt_text": "Espoo Art Marathon 2025 (logo)",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494382/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T13:17:37.368754Z",
            "last_modified_time": "2026-01-05T13:17:37.368774Z",
            "date_published": "2026-01-05T12:59:00Z",
            "start_time": "2026-01-10T08:00:00Z",
            "end_time": "2026-01-28T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Taidenäyttely",
                "sv": "Konstutställning",
                "en": "Art Exhibition"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Espoo Art Marathon (Espoon taidemaraton) on sarja ulkoilmatyöpajoja kaupungin asukkaille ja vierailijoille, jonka järjesti taiteilija <strong>Katerina Godes</strong> Espoon kaupungin ja Art&amp;JOY Studion tuella. Työpajat järjestettiin Espoon kiehtovimpiin kuuluvissa paikoissa, joista jokaisella on oma historiallinen ja kulttuurinen merkityksensä.</p><p>Näyttelyssä on esillä maratonin osallistujien tekemiä akvarellimaalauksia ja -luonnoksia – monet heistä eivät olleet aiemmin harrastaneet taidetta ja piirsivät arkkitehtuuria ensimmäistä kertaa. Heidän teoksensa vangitsevat tuoreita, vilpittömiä vaikutelmia Espoon maisemista ja maamerkeistä ja tarjoavat kävijöille ainutlaatuisen ja sydämellisen taiteellisen näkemyksen kaupungista.</p>",
                "sv": "<p>Espoo Art Marathon är en serie utomhusworkshops för invånare och besökare i staden, organiserade av konstnären <strong>Katerina Godes</strong> med stöd av Espoo stad och Art&amp;JOY Studio. Sessionerna ägde rum på några av Espoos mest fascinerande platser, var och en med sin egen historiska och kulturella betydelse.</p><p>Utställningen visar akvarellskisser som skapats av maratonets deltagare – många av dem hade ingen tidigare erfarenhet av konst och skissade arkitektur för första gången. Deras verk fångar fräscha, uppriktiga intryck av Espos landskap och landmärken och erbjuder besökarna en unik och hjärtlig konstnärlig bild av staden.</p>",
                "en": "<p>The Espoo Art Marathon is a series of open air workshops for residents and visitors of the city, organized by artist <strong>Katerina Godes</strong> with the support of the City of Espoo and the Art&amp;JOY Studio. The sessions took place in some of Espoo’s most captivating locations, each with its own historical and cultural significance.</p><p>This exhibition features watercolor sketches created by the participants of the marathon — many of whom had no prior art experience and were sketching architecture for the very first time. Their works capture fresh, sincere impressions of Espoo’s landscapes and landmarks, offering visitors a unique and heartfelt artistic view of the city.</p><p><br></p>"
            },
            "name": {
                "fi": "Espoo Art Marathon – Sketch Exhibition (taidemaratonin näyttely)",
                "sv": "Espoo Art Marathon – Skissutställning   ",
                "en": "Espoo Art Marathon – Sketch Exhibition   "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Valatori-seinä",
                "sv": "Valatori-väggen",
                "en": "Valatori wall"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5dx3aq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnw7kjo5e",
            "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/espoo_le:agggfz65pm/?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": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494340,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-12-30T13:16:44.776950Z",
                    "last_modified_time": "2025-12-30T13:16:44.776967Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/7a9d46dc-946a-4b58-ab57-0cee40e0333b.png",
                    "name": "",
                    "cropping": "125,0,675,550",
                    "photographer_name": "",
                    "alt_text": "Maritta Nevalainen: Kaikuja (taidenäyttely)",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494340/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-30T13:17:16.636836Z",
            "last_modified_time": "2026-01-05T12:55:22.376778Z",
            "date_published": "2025-12-30T12:00:00Z",
            "start_time": "2026-01-02T06:00:00Z",
            "end_time": "2026-01-30T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Taidenäyttely",
                "sv": "Konstutställning",
                "en": "Art Exhibition"
            },
            "info_url": {
                "fi": "https://taidesivut.net/marittanevalainen",
                "sv": "https://taidesivut.net/marittanevalainen",
                "en": "https://taidesivut.net/marittanevalainen"
            },
            "description": {
                "fi": "<p>\"Kokosin tähän näyttelyyn teoksia lyhyen taidematkani varrelta. Se hetki, kun tartuin pensseliin, avasi oven mielen leikkeihin. Matka on ollut hiljainen vuoropuhelu sisimpäni kanssa – keskustelua ilman sanoja, täynnä tunnetta ja käden liikettä, tuskaa ja onnistumisia. Tämä näyttely on kokoelma abstrakteja teoksia, jotka syntyivät tarpeesta ilmaista sellaista, mitä en saa sanoitettua – kaikuja.</p><p>Jokainen teos on heijastus sisäisestä liikkeestä: kaipuusta, rauhasta, myllerryksestä ja hauraudesta. Tunteista, jotka liikuttavat. Värit ja muodot sekä niiden rytmi rakentavat tilan, jossa toivon katsojan voivan kohdata omat tunteensa - ehkä jopa ne, joita ei ole aiemmin uskaltanut nimetä.</p><p><em>Kaikuja </em>on matka sisäänpäin. Toivon, että teokseni saavat viipyä katseessasi ja ehkä jäädä kaikumaan hetkeksi myös mieleesi.\"</p><p>Lämmöllä Maritta</p><ul><li>Instagram: <a href=\"https://www.instagram.com/maritta_nevalainen_art/\">@maritta_nevalainen_art</a></li></ul><p>Taidenäyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p>",
                "sv": "<p>\"Utställningen består huvudsakligen av abstrakta verk, som har skapats ur ett behov av att uttrycka det som ord inte kan nå fram till. </p><p>Varje verk är en återspegling av inre rörelser: längtan, frid, oro och skörhet. Känslor som berör oss. Färger och former, och deras rytm, skapar ett utrymme där jag hoppas att betraktaren kan möta sina egna känslor – kanske till och med sådana som de inte tidigare vågat sätta ord på.\" </p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p>",
                "en": "<p>\"This exhibition brings together works from my brief yet deeply meaningful journey with art. It has been exactly 624 days since I first picked up a paintbrush after nearly twenty years. This time has been a quiet dialogue with my inner self – a wordless conversation filled with emotion and the movement of the hand, with struggle and moments of success.</p><p>The exhibition consists mostly of abstract works, born from a need to express what words cannot reach. I felt an overwhelming urge to speak through color – to give form to feelings I couldn’t articulate. Among the pieces, you’ll also find a few more figurative works. I’m particularly drawn to expressive, evocative female faces – imagined portraits shaped by the emotional state I found myself in at the time.</p><p>Each piece reflects an inner movement: of longing, peace, turbulence, and fragility. These are feelings that move me deeply. The colors, shapes, and their rhythms create a space in which the viewer may encounter their own emotions – perhaps even those they’ve never dared to name.</p><p><em>Echoes of Silence</em> is a journey inward. I hope my work lingers in your gaze – and perhaps echoes in your mind for a little while longer.\"&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Warmly Maritta</p><ul><li>Instagram: <a href=\"https://instagram.com/maritta_nevalainen_art\">@maritta_nevalainen_art</a></li></ul><p>The exhibition can be seen during the library opening hours. Welcome!</p>"
            },
            "name": {
                "fi": "Maritta Nevalainen: Kaikuja (näyttely)",
                "sv": "Maritta Nevalainen: Kaikuja / Ekor (utställning)",
                "en": "Maritta Nevalainen: Echoes of Silence (exhibition)"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Galleria Betoni",
                "sv": "Galleri Betoni",
                "en": "Gallery Betoni"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnw7kjo5e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny4wgytm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?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: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,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494375,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-27T13:12:54.713133Z",
                    "last_modified_time": "2025-03-27T13:12:54.713153Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/695c201a-6d2a-4d72-9e7b-73fa5f7a59b3.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Ilkka Kemppinen ja kirjan Verta ja lunta kansikuva",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494375/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T12:47:49.305635Z",
            "last_modified_time": "2026-01-05T12:47:49.305653Z",
            "date_published": "2026-01-05T12:44:00Z",
            "start_time": "2026-02-05T15:00:00Z",
            "end_time": "2026-02-05T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Ilkka Kemppinen kertoo kirjastaan Lunta ja verta.",
                "sv": "Ilkka Kemppinen berättar om sin bok Lunta ja verta på finska.",
                "en": "Ilkka Kemppinen talks about his book Lunta ja verta in Finnish."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Ilkka Kemppinen on espoolaistunut ikuinen karjalaispoika. Hän on pohjattoman innostunut suomen kielestä, sen sanojen käännöksistä, väännöksistä ja muunnoksista. Hän pelkää, että 2200-luvulla kukaan ei enää puhu, kirjoita tai lue suomea!</p><p>Lunta ja verta on kertomus Suomen sisällissodasta nuoren rautjärveläisen talollisen pojan Paavon näkökulmasta. Paavo ystävystyy tätinsä luona Tainionkoskella työläistaustaisiin sisaruksiin Eeroon ja Saimiin. Ilmapiiri on kuitenkin kiristynyt Tainionkoskella, eikä orastava ihastus Saimiin ehdi edes leimahtaa liekkeihin, kun poikaa jo epäillään omituisesta käyttäytymisestä ja hän saa tuta punaisten vihan nahoissaan. </p><p>Tainionkosken tapahtumien seurauksena Eero löytää&nbsp;vanhan tuttunsa Paavon &nbsp;rintaman ”väärältä” puolelta ja joutuu vaikean päätöksen eteen.&nbsp;</p>",
                "sv": "<p>Ilkka Kemppinen berättar om sin bok Lunta ja verta på finska.</p>",
                "en": "<p>Ilkka Kemppinen talks about his book Lunta ja verta in Finnish.</p>"
            },
            "name": {
                "fi": "Kirjailijavieraana Ilkka Kemppinen",
                "sv": "Författaren Ilkka Kemppinen",
                "en": "Author Ilkka Kemppinen"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wgytm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny4wgzoe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whbnu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494376,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-01-05T12:42:46.693088Z",
                    "last_modified_time": "2026-01-05T12:42:46.693105Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6a0f2969-d169-490e-a9f9-aa12be8216ec.png",
                    "name": "",
                    "cropping": "105,0,371,266",
                    "photographer_name": "",
                    "alt_text": "Lapset askartelevat pöydän ääressä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494376/?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-01-05T12:46:50.402969Z",
            "last_modified_time": "2026-01-05T12:46:50.402987Z",
            "date_published": null,
            "start_time": "2026-05-27T12:30:00Z",
            "end_time": "2026-05-27T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Askarrellaan ja taiteillaan yhdessä. ",
                "sv": "Låt oss pyssla och skapa konst tillsammans. ",
                "en": "Let’s craft and make art together. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan joka viikko yhdessä Ison Omenan kirjaston pajaan. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa materiaalit.&nbsp;</p><p>Pienet lapset yhdessä oman aikuisen kanssa.&nbsp;</p><p><br></p><p>Tervetuloa!&nbsp;</p>",
                "sv": "<p>Kom&nbsp;och&nbsp;pyssla&nbsp;varje&nbsp;vecka&nbsp;i&nbsp;verkstaden&nbsp;på&nbsp;Ison&nbsp;Omenas&nbsp;bibliotek.&nbsp;Varje&nbsp;verkstadsaftermiddag&nbsp;har&nbsp;ett&nbsp;eget&nbsp;tema.&nbsp;Biblioteket&nbsp;står&nbsp;för&nbsp;materialet.&nbsp;</p><p>Små&nbsp;barn&nbsp;tillsammans&nbsp;med&nbsp;sin&nbsp;egen&nbsp;vuxen.&nbsp;</p><p><br></p><p>Välkommen!&nbsp;</p>",
                "en": "<p>Come&nbsp;and&nbsp;craft&nbsp;every&nbsp;week&nbsp;in&nbsp;the&nbsp;workshop at Iso Omena Library.&nbsp;Each&nbsp;workshop&nbsp;afternoon&nbsp;has&nbsp;its&nbsp;own&nbsp;theme.&nbsp;The&nbsp;library&nbsp;provides&nbsp;all&nbsp;materials.&nbsp;</p><p>Small&nbsp;children&nbsp;together&nbsp;with&nbsp;your&nbsp;grown&nbsp;up.&nbsp;</p><p><br></p><p>Welcome!&nbsp;</p>"
            },
            "name": {
                "fi": "Pajailtapäivä Ison Omenan kirjastossa",
                "sv": "Verkstadsaftermiddag på Ison Omenas bibliotek ",
                "en": "Workshop afternoon at Iso Omena Library "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja-verkstäder",
                "en": "Makerspace"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wgzoe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny4wgz4e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whbnu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494376,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-01-05T12:42:46.693088Z",
                    "last_modified_time": "2026-01-05T12:42:46.693105Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6a0f2969-d169-490e-a9f9-aa12be8216ec.png",
                    "name": "",
                    "cropping": "105,0,371,266",
                    "photographer_name": "",
                    "alt_text": "Lapset askartelevat pöydän ääressä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494376/?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-01-05T12:46:50.227679Z",
            "last_modified_time": "2026-01-05T12:46:50.227697Z",
            "date_published": null,
            "start_time": "2026-05-20T12:30:00Z",
            "end_time": "2026-05-20T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Askarrellaan ja taiteillaan yhdessä. ",
                "sv": "Låt oss pyssla och skapa konst tillsammans. ",
                "en": "Let’s craft and make art together. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan joka viikko yhdessä Ison Omenan kirjaston pajaan. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa materiaalit.&nbsp;</p><p>Pienet lapset yhdessä oman aikuisen kanssa.&nbsp;</p><p><br></p><p>Tervetuloa!&nbsp;</p>",
                "sv": "<p>Kom&nbsp;och&nbsp;pyssla&nbsp;varje&nbsp;vecka&nbsp;i&nbsp;verkstaden&nbsp;på&nbsp;Ison&nbsp;Omenas&nbsp;bibliotek.&nbsp;Varje&nbsp;verkstadsaftermiddag&nbsp;har&nbsp;ett&nbsp;eget&nbsp;tema.&nbsp;Biblioteket&nbsp;står&nbsp;för&nbsp;materialet.&nbsp;</p><p>Små&nbsp;barn&nbsp;tillsammans&nbsp;med&nbsp;sin&nbsp;egen&nbsp;vuxen.&nbsp;</p><p><br></p><p>Välkommen!&nbsp;</p>",
                "en": "<p>Come&nbsp;and&nbsp;craft&nbsp;every&nbsp;week&nbsp;in&nbsp;the&nbsp;workshop at Iso Omena Library.&nbsp;Each&nbsp;workshop&nbsp;afternoon&nbsp;has&nbsp;its&nbsp;own&nbsp;theme.&nbsp;The&nbsp;library&nbsp;provides&nbsp;all&nbsp;materials.&nbsp;</p><p>Small&nbsp;children&nbsp;together&nbsp;with&nbsp;your&nbsp;grown&nbsp;up.&nbsp;</p><p><br></p><p>Welcome!&nbsp;</p>"
            },
            "name": {
                "fi": "Pajailtapäivä Ison Omenan kirjastossa",
                "sv": "Verkstadsaftermiddag på Ison Omenas bibliotek ",
                "en": "Workshop afternoon at Iso Omena Library "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja-verkstäder",
                "en": "Makerspace"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wgz4e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny4wg2je",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whbnu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494376,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-01-05T12:42:46.693088Z",
                    "last_modified_time": "2026-01-05T12:42:46.693105Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6a0f2969-d169-490e-a9f9-aa12be8216ec.png",
                    "name": "",
                    "cropping": "105,0,371,266",
                    "photographer_name": "",
                    "alt_text": "Lapset askartelevat pöydän ääressä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494376/?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-01-05T12:46:50.069763Z",
            "last_modified_time": "2026-01-05T12:46:50.069781Z",
            "date_published": null,
            "start_time": "2026-05-13T12:30:00Z",
            "end_time": "2026-05-13T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Askarrellaan ja taiteillaan yhdessä. ",
                "sv": "Låt oss pyssla och skapa konst tillsammans. ",
                "en": "Let’s craft and make art together. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan joka viikko yhdessä Ison Omenan kirjaston pajaan. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa materiaalit.&nbsp;</p><p>Pienet lapset yhdessä oman aikuisen kanssa.&nbsp;</p><p><br></p><p>Tervetuloa!&nbsp;</p>",
                "sv": "<p>Kom&nbsp;och&nbsp;pyssla&nbsp;varje&nbsp;vecka&nbsp;i&nbsp;verkstaden&nbsp;på&nbsp;Ison&nbsp;Omenas&nbsp;bibliotek.&nbsp;Varje&nbsp;verkstadsaftermiddag&nbsp;har&nbsp;ett&nbsp;eget&nbsp;tema.&nbsp;Biblioteket&nbsp;står&nbsp;för&nbsp;materialet.&nbsp;</p><p>Små&nbsp;barn&nbsp;tillsammans&nbsp;med&nbsp;sin&nbsp;egen&nbsp;vuxen.&nbsp;</p><p><br></p><p>Välkommen!&nbsp;</p>",
                "en": "<p>Come&nbsp;and&nbsp;craft&nbsp;every&nbsp;week&nbsp;in&nbsp;the&nbsp;workshop at Iso Omena Library.&nbsp;Each&nbsp;workshop&nbsp;afternoon&nbsp;has&nbsp;its&nbsp;own&nbsp;theme.&nbsp;The&nbsp;library&nbsp;provides&nbsp;all&nbsp;materials.&nbsp;</p><p>Small&nbsp;children&nbsp;together&nbsp;with&nbsp;your&nbsp;grown&nbsp;up.&nbsp;</p><p><br></p><p>Welcome!&nbsp;</p>"
            },
            "name": {
                "fi": "Pajailtapäivä Ison Omenan kirjastossa",
                "sv": "Verkstadsaftermiddag på Ison Omenas bibliotek ",
                "en": "Workshop afternoon at Iso Omena Library "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja-verkstäder",
                "en": "Makerspace"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg2je/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny4wg2v4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whbnu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494376,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-01-05T12:42:46.693088Z",
                    "last_modified_time": "2026-01-05T12:42:46.693105Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6a0f2969-d169-490e-a9f9-aa12be8216ec.png",
                    "name": "",
                    "cropping": "105,0,371,266",
                    "photographer_name": "",
                    "alt_text": "Lapset askartelevat pöydän ääressä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494376/?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-01-05T12:46:49.908891Z",
            "last_modified_time": "2026-01-05T12:46:49.908909Z",
            "date_published": null,
            "start_time": "2026-05-06T12:30:00Z",
            "end_time": "2026-05-06T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Askarrellaan ja taiteillaan yhdessä. ",
                "sv": "Låt oss pyssla och skapa konst tillsammans. ",
                "en": "Let’s craft and make art together. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan joka viikko yhdessä Ison Omenan kirjaston pajaan. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa materiaalit.&nbsp;</p><p>Pienet lapset yhdessä oman aikuisen kanssa.&nbsp;</p><p><br></p><p>Tervetuloa!&nbsp;</p>",
                "sv": "<p>Kom&nbsp;och&nbsp;pyssla&nbsp;varje&nbsp;vecka&nbsp;i&nbsp;verkstaden&nbsp;på&nbsp;Ison&nbsp;Omenas&nbsp;bibliotek.&nbsp;Varje&nbsp;verkstadsaftermiddag&nbsp;har&nbsp;ett&nbsp;eget&nbsp;tema.&nbsp;Biblioteket&nbsp;står&nbsp;för&nbsp;materialet.&nbsp;</p><p>Små&nbsp;barn&nbsp;tillsammans&nbsp;med&nbsp;sin&nbsp;egen&nbsp;vuxen.&nbsp;</p><p><br></p><p>Välkommen!&nbsp;</p>",
                "en": "<p>Come&nbsp;and&nbsp;craft&nbsp;every&nbsp;week&nbsp;in&nbsp;the&nbsp;workshop at Iso Omena Library.&nbsp;Each&nbsp;workshop&nbsp;afternoon&nbsp;has&nbsp;its&nbsp;own&nbsp;theme.&nbsp;The&nbsp;library&nbsp;provides&nbsp;all&nbsp;materials.&nbsp;</p><p>Small&nbsp;children&nbsp;together&nbsp;with&nbsp;your&nbsp;grown&nbsp;up.&nbsp;</p><p><br></p><p>Welcome!&nbsp;</p>"
            },
            "name": {
                "fi": "Pajailtapäivä Ison Omenan kirjastossa",
                "sv": "Verkstadsaftermiddag på Ison Omenas bibliotek ",
                "en": "Workshop afternoon at Iso Omena Library "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja-verkstäder",
                "en": "Makerspace"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg2v4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny4wg3em",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whbnu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494376,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-01-05T12:42:46.693088Z",
                    "last_modified_time": "2026-01-05T12:42:46.693105Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6a0f2969-d169-490e-a9f9-aa12be8216ec.png",
                    "name": "",
                    "cropping": "105,0,371,266",
                    "photographer_name": "",
                    "alt_text": "Lapset askartelevat pöydän ääressä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494376/?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-01-05T12:46:49.758283Z",
            "last_modified_time": "2026-01-05T12:46:49.758301Z",
            "date_published": null,
            "start_time": "2026-04-29T12:30:00Z",
            "end_time": "2026-04-29T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Askarrellaan ja taiteillaan yhdessä. ",
                "sv": "Låt oss pyssla och skapa konst tillsammans. ",
                "en": "Let’s craft and make art together. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan joka viikko yhdessä Ison Omenan kirjaston pajaan. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa materiaalit.&nbsp;</p><p>Pienet lapset yhdessä oman aikuisen kanssa.&nbsp;</p><p><br></p><p>Tervetuloa!&nbsp;</p>",
                "sv": "<p>Kom&nbsp;och&nbsp;pyssla&nbsp;varje&nbsp;vecka&nbsp;i&nbsp;verkstaden&nbsp;på&nbsp;Ison&nbsp;Omenas&nbsp;bibliotek.&nbsp;Varje&nbsp;verkstadsaftermiddag&nbsp;har&nbsp;ett&nbsp;eget&nbsp;tema.&nbsp;Biblioteket&nbsp;står&nbsp;för&nbsp;materialet.&nbsp;</p><p>Små&nbsp;barn&nbsp;tillsammans&nbsp;med&nbsp;sin&nbsp;egen&nbsp;vuxen.&nbsp;</p><p><br></p><p>Välkommen!&nbsp;</p>",
                "en": "<p>Come&nbsp;and&nbsp;craft&nbsp;every&nbsp;week&nbsp;in&nbsp;the&nbsp;workshop at Iso Omena Library.&nbsp;Each&nbsp;workshop&nbsp;afternoon&nbsp;has&nbsp;its&nbsp;own&nbsp;theme.&nbsp;The&nbsp;library&nbsp;provides&nbsp;all&nbsp;materials.&nbsp;</p><p>Small&nbsp;children&nbsp;together&nbsp;with&nbsp;your&nbsp;grown&nbsp;up.&nbsp;</p><p><br></p><p>Welcome!&nbsp;</p>"
            },
            "name": {
                "fi": "Pajailtapäivä Ison Omenan kirjastossa",
                "sv": "Verkstadsaftermiddag på Ison Omenas bibliotek ",
                "en": "Workshop afternoon at Iso Omena Library "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja-verkstäder",
                "en": "Makerspace"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg3em/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny4wg3sq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whbnu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494376,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-01-05T12:42:46.693088Z",
                    "last_modified_time": "2026-01-05T12:42:46.693105Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6a0f2969-d169-490e-a9f9-aa12be8216ec.png",
                    "name": "",
                    "cropping": "105,0,371,266",
                    "photographer_name": "",
                    "alt_text": "Lapset askartelevat pöydän ääressä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494376/?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-01-05T12:46:49.609801Z",
            "last_modified_time": "2026-01-05T12:46:49.609818Z",
            "date_published": null,
            "start_time": "2026-04-22T12:30:00Z",
            "end_time": "2026-04-22T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Askarrellaan ja taiteillaan yhdessä. ",
                "sv": "Låt oss pyssla och skapa konst tillsammans. ",
                "en": "Let’s craft and make art together. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan joka viikko yhdessä Ison Omenan kirjaston pajaan. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa materiaalit.&nbsp;</p><p>Pienet lapset yhdessä oman aikuisen kanssa.&nbsp;</p><p><br></p><p>Tervetuloa!&nbsp;</p>",
                "sv": "<p>Kom&nbsp;och&nbsp;pyssla&nbsp;varje&nbsp;vecka&nbsp;i&nbsp;verkstaden&nbsp;på&nbsp;Ison&nbsp;Omenas&nbsp;bibliotek.&nbsp;Varje&nbsp;verkstadsaftermiddag&nbsp;har&nbsp;ett&nbsp;eget&nbsp;tema.&nbsp;Biblioteket&nbsp;står&nbsp;för&nbsp;materialet.&nbsp;</p><p>Små&nbsp;barn&nbsp;tillsammans&nbsp;med&nbsp;sin&nbsp;egen&nbsp;vuxen.&nbsp;</p><p><br></p><p>Välkommen!&nbsp;</p>",
                "en": "<p>Come&nbsp;and&nbsp;craft&nbsp;every&nbsp;week&nbsp;in&nbsp;the&nbsp;workshop at Iso Omena Library.&nbsp;Each&nbsp;workshop&nbsp;afternoon&nbsp;has&nbsp;its&nbsp;own&nbsp;theme.&nbsp;The&nbsp;library&nbsp;provides&nbsp;all&nbsp;materials.&nbsp;</p><p>Small&nbsp;children&nbsp;together&nbsp;with&nbsp;your&nbsp;grown&nbsp;up.&nbsp;</p><p><br></p><p>Welcome!&nbsp;</p>"
            },
            "name": {
                "fi": "Pajailtapäivä Ison Omenan kirjastossa",
                "sv": "Verkstadsaftermiddag på Ison Omenas bibliotek ",
                "en": "Workshop afternoon at Iso Omena Library "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja-verkstäder",
                "en": "Makerspace"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg3sq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agny4wg4bm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?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/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4whbnu/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494376,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-01-05T12:42:46.693088Z",
                    "last_modified_time": "2026-01-05T12:42:46.693105Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6a0f2969-d169-490e-a9f9-aa12be8216ec.png",
                    "name": "",
                    "cropping": "105,0,371,266",
                    "photographer_name": "",
                    "alt_text": "Lapset askartelevat pöydän ääressä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494376/?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-01-05T12:46:49.459013Z",
            "last_modified_time": "2026-01-05T12:46:49.459030Z",
            "date_published": null,
            "start_time": "2026-04-15T12:30:00Z",
            "end_time": "2026-04-15T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Askarrellaan ja taiteillaan yhdessä. ",
                "sv": "Låt oss pyssla och skapa konst tillsammans. ",
                "en": "Let’s craft and make art together. "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan joka viikko yhdessä Ison Omenan kirjaston pajaan. Jokaisessa pajailtapäivässä on eri teema. Kirjasto tarjoaa materiaalit.&nbsp;</p><p>Pienet lapset yhdessä oman aikuisen kanssa.&nbsp;</p><p><br></p><p>Tervetuloa!&nbsp;</p>",
                "sv": "<p>Kom&nbsp;och&nbsp;pyssla&nbsp;varje&nbsp;vecka&nbsp;i&nbsp;verkstaden&nbsp;på&nbsp;Ison&nbsp;Omenas&nbsp;bibliotek.&nbsp;Varje&nbsp;verkstadsaftermiddag&nbsp;har&nbsp;ett&nbsp;eget&nbsp;tema.&nbsp;Biblioteket&nbsp;står&nbsp;för&nbsp;materialet.&nbsp;</p><p>Små&nbsp;barn&nbsp;tillsammans&nbsp;med&nbsp;sin&nbsp;egen&nbsp;vuxen.&nbsp;</p><p><br></p><p>Välkommen!&nbsp;</p>",
                "en": "<p>Come&nbsp;and&nbsp;craft&nbsp;every&nbsp;week&nbsp;in&nbsp;the&nbsp;workshop at Iso Omena Library.&nbsp;Each&nbsp;workshop&nbsp;afternoon&nbsp;has&nbsp;its&nbsp;own&nbsp;theme.&nbsp;The&nbsp;library&nbsp;provides&nbsp;all&nbsp;materials.&nbsp;</p><p>Small&nbsp;children&nbsp;together&nbsp;with&nbsp;your&nbsp;grown&nbsp;up.&nbsp;</p><p><br></p><p>Welcome!&nbsp;</p>"
            },
            "name": {
                "fi": "Pajailtapäivä Ison Omenan kirjastossa",
                "sv": "Verkstadsaftermiddag på Ison Omenas bibliotek ",
                "en": "Workshop afternoon at Iso Omena Library "
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja-verkstäder",
                "en": "Makerspace"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny4wg4bm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}