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&include=location%2Ckeywords&page=154
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 32780,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=155",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=153"
    },
    "data": [
        {
            "id": "espoo_le:agnzrjjvze",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15395",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:16.199535Z",
                "last_modified_time": "2024-04-09T05:09:28.197140Z",
                "custom_data": null,
                "email": "kirjasto.omena@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02230",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1939,
                "image": 7942,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.740192,
                        60.160072
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 7723"
                },
                "street_address": {
                    "fi": "Suomenlahdentie 1",
                    "sv": "Finnviksvägen 1",
                    "en": "Suomenlahdentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834"
                },
                "description": null,
                "name": {
                    "fi": "Ison Omenan kirjasto",
                    "sv": "Iso Omena bibliotek",
                    "en": "Iso Omena Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66by",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.052436Z",
                    "last_modified_time": "2023-12-13T11:20:12.052454Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1532,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Matinkylä",
                        "sv": "Mattby",
                        "en": "Matinkylä"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ru",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.179708Z",
                    "last_modified_time": "2023-12-13T11:20:12.179727Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1100,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Olari",
                        "sv": "Olars",
                        "en": "Olari"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz675q",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.530825Z",
                    "last_modified_time": "2023-12-13T11:20:12.530842Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 889,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Niittykumpu",
                        "sv": "Ängskulla",
                        "en": "Niittykumpu"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11727",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.526740Z",
                    "last_modified_time": "2024-02-06T13:24:10.745704Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 900,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lukupiirit",
                        "sv": "Bokcirklar",
                        "en": "Book clubs",
                        "ru": "Литературные кружки"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11733",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.739009Z",
                    "last_modified_time": "2024-02-06T13:24:07.909651Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3118,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kielikahvilat ja keskusteluryhmät",
                        "sv": "Språkcafeér och diskussionsgrupper",
                        "en": "Language Cafés and discussion groups",
                        "ru": "Языковые кафе и дискуссионные клубы"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p556",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "språk (språkvetenskap)",
                        "kielet",
                        "kieli (kielitiede)",
                        "språk (typer)",
                        "språket"
                    ],
                    "created_time": "2023-08-16T05:19:47.449652Z",
                    "last_modified_time": "2023-08-16T05:19:47.449670Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3855,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kieli ja kielet",
                        "sv": "språk",
                        "en": "languages"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjwjq/?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": 1494393,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-07T12:55:19.468439Z",
                    "last_modified_time": "2026-01-07T12:55:19.468455Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/131815e1-1596-4de0-9259-c6c3e5a9f2f1.png",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Keltaisella taustalla kuvattu graafisesti ihmisiä pöydän ympärillä puhumassa innokkaasti keskenään ja teksti English book club",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494393/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-07T13:11:57.320952Z",
            "last_modified_time": "2026-01-07T13:11:57.320969Z",
            "date_published": null,
            "start_time": "2026-01-29T16:00:00Z",
            "end_time": "2026-01-29T17: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": "Kevään sarjamme teemana on \"Muurit elämässämme\"",
                "sv": "Temat för vårens serie är \"Våra livs väggar.\"",
                "en": "Our theme for this spring series is \"The Walls of Our Lives.\" "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kevään sarjamme teemana on \"Muurit elämässämme\"</p><p>Näiden viiden kuukauden aikana tutkimme rajoja, jotka muovaavat meitä. Ne voivat olla historian fyysisiä muureja, avioliiton rajoja, luonnon vuodenaikojen asettamia esteitä tai omien muistojen näkymättömiä muureja. Lukiessamme pohdimme, miten nämä “muurit” eivät vain ympäröi meitä. Ne muuttavat meitä ajan myötä – ehkä jopa niin, että niistä tulee osa “DNA:tamme” ja sitä perintöä, jonka jätämme jälkeemme.</p><p>Keskustelu ja kirjat ovat englanninkielisiä. </p><p><br></p><p><br></p><p> January:  A Winter Book by Tove Jansson</p><p> Walls: Isolation &amp; Memory</p><p><br></p><p> February:  Dept. of Speculation by Jenny Offill</p><p> Walls: Identity &amp; Intimacy</p><p><br></p><p>March The Old Man and the Sea by Ernest Hemingway</p><p>Walls:  Endurance &amp; Nature</p><p><br></p><p>April: Time Shelter by Georgi Gospodinov</p><p>Walls:  The Trap of the Past</p><p><br></p><p>May: The Fall of the Berlin Wall: The Revolutionary Legacy of 1989 by Jeffrey A. Engel</p><p> Walls: Legacy &amp; Borders</p><p><br></p><p>  </p><p><br></p><p><br></p><p><br></p>",
                "sv": "<p>Temat för vårens serie är \"Våra livs väggar.\"</p><p>Under dessa fem månader utforskar vi de gränser som formar oss. Det kan vara historiens fysiska väggar, hemmets väggar i ett äktenskap, naturens årstidsväggar eller de osynliga väggarna i våra egna minnen. När vi läser funderar vi över hur dessa “väggar” inte bara omger oss. De förändrar oss så småningom – kanske till och med så att de blir en del av vårt eget “DNA” och det arv vi lämnar efter oss.</p><p>Vi diskutera på engelska. </p><p><br></p><p><br></p><p><br></p><p> January:  A Winter Book by Tove Jansson</p><p> Walls: Isolation &amp; Memory</p><p><br></p><p> February:  Dept. of Speculation by Jenny Offill</p><p> Walls: Identity &amp; Intimacy</p><p><br></p><p>March The Old Man and the Sea by Ernest Hemingway</p><p>Walls:  Endurance &amp; Nature</p><p><br></p><p>April: Time Shelter by Georgi Gospodinov</p><p>Walls:  The Trap of the Past</p><p><br></p><p>May: The Fall of the Berlin Wall: The Revolutionary Legacy of 1989 by Jeffrey A. Engel</p><p> Walls: Legacy &amp; Borders</p>",
                "en": "<p>Our theme for this spring series is \"The Walls of Our Lives.\" </p><p>Throughout these five months, we will explore the boundaries that shape us. Whether they are the physical walls of history, the domestic walls of a marriage, the seasonal walls of nature, or the invisible walls of our own memories. As we read, we consider how these \"walls\" don't just surround us. They eventually change us, perhaps even becoming part of our very \"DNA\" and the legacy we leave behind.</p><p><br></p><p><br></p><p><br></p><p> January:  A Winter Book by Tove Jansson</p><p> Walls: Isolation &amp; Memory</p><p><br></p><p> February:  Dept. of Speculation by Jenny Offill</p><p> Walls: Identity &amp; Intimacy</p><p><br></p><p>March The Old Man and the Sea by Ernest Hemingway</p><p>Walls:  Endurance &amp; Nature</p><p><br></p><p>April: Time Shelter by Georgi Gospodinov</p><p>Walls:  The Trap of the Past</p><p><br></p><p>May: The Fall of the Berlin Wall: The Revolutionary Legacy of 1989 by Jeffrey A. Engel</p><p> Walls: Legacy &amp; Borders</p><p><br></p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Englanninkielinen lukupiiri",
                "sv": "Bokcirkel på engelska",
                "en": "English Book Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Aalto",
                "sv": "Aalto",
                "en": "Aalto"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjvze/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjjwjq",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15395",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:16.199535Z",
                "last_modified_time": "2024-04-09T05:09:28.197140Z",
                "custom_data": null,
                "email": "kirjasto.omena@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02230",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1939,
                "image": 7942,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.740192,
                        60.160072
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 7723"
                },
                "street_address": {
                    "fi": "Suomenlahdentie 1",
                    "sv": "Finnviksvägen 1",
                    "en": "Suomenlahdentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834"
                },
                "description": null,
                "name": {
                    "fi": "Ison Omenan kirjasto",
                    "sv": "Iso Omena bibliotek",
                    "en": "Iso Omena Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66by",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.052436Z",
                    "last_modified_time": "2023-12-13T11:20:12.052454Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1532,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Matinkylä",
                        "sv": "Mattby",
                        "en": "Matinkylä"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ru",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.179708Z",
                    "last_modified_time": "2023-12-13T11:20:12.179727Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1100,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Olari",
                        "sv": "Olars",
                        "en": "Olari"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz675q",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.530825Z",
                    "last_modified_time": "2023-12-13T11:20:12.530842Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 889,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Niittykumpu",
                        "sv": "Ängskulla",
                        "en": "Niittykumpu"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11727",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.526740Z",
                    "last_modified_time": "2024-02-06T13:24:10.745704Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 900,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lukupiirit",
                        "sv": "Bokcirklar",
                        "en": "Book clubs",
                        "ru": "Литературные кружки"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11733",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.739009Z",
                    "last_modified_time": "2024-02-06T13:24:07.909651Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3118,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kielikahvilat ja keskusteluryhmät",
                        "sv": "Språkcafeér och diskussionsgrupper",
                        "en": "Language Cafés and discussion groups",
                        "ru": "Языковые кафе и дискуссионные клубы"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p556",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "språk (språkvetenskap)",
                        "kielet",
                        "kieli (kielitiede)",
                        "språk (typer)",
                        "språket"
                    ],
                    "created_time": "2023-08-16T05:19:47.449652Z",
                    "last_modified_time": "2023-08-16T05:19:47.449670Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3855,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kieli ja kielet",
                        "sv": "språk",
                        "en": "languages"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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:agnzrjjs4u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjtya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjuiu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjuym/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjvjq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjvze/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494393,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-07T12:55:19.468439Z",
                    "last_modified_time": "2026-01-07T12:55:19.468455Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/131815e1-1596-4de0-9259-c6c3e5a9f2f1.png",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Keltaisella taustalla kuvattu graafisesti ihmisiä pöydän ympärillä puhumassa innokkaasti keskenään ja teksti English book club",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494393/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-07T13:11:56.342974Z",
            "last_modified_time": "2026-01-07T13:11:56.342993Z",
            "date_published": null,
            "start_time": "2026-01-29T16:00:00Z",
            "end_time": "2026-06-25T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kevään sarjamme teemana on \"Muurit elämässämme\"",
                "sv": "Temat för vårens serie är \"Våra livs väggar.\"",
                "en": "Our theme for this spring series is \"The Walls of Our Lives.\" "
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kevään sarjamme teemana on \"Muurit elämässämme\"</p><p>Näiden viiden kuukauden aikana tutkimme rajoja, jotka muovaavat meitä. Ne voivat olla historian fyysisiä muureja, avioliiton rajoja, luonnon vuodenaikojen asettamia esteitä tai omien muistojen näkymättömiä muureja. Lukiessamme pohdimme, miten nämä “muurit” eivät vain ympäröi meitä. Ne muuttavat meitä ajan myötä – ehkä jopa niin, että niistä tulee osa “DNA:tamme” ja sitä perintöä, jonka jätämme jälkeemme.</p><p>Keskustelu ja kirjat ovat englanninkielisiä. </p><p><br></p><p><br></p><p> January:  A Winter Book by Tove Jansson</p><p> Walls: Isolation &amp; Memory</p><p><br></p><p> February:  Dept. of Speculation by Jenny Offill</p><p> Walls: Identity &amp; Intimacy</p><p><br></p><p>March The Old Man and the Sea by Ernest Hemingway</p><p>Walls:  Endurance &amp; Nature</p><p><br></p><p>April: Time Shelter by Georgi Gospodinov</p><p>Walls:  The Trap of the Past</p><p><br></p><p>May: The Fall of the Berlin Wall: The Revolutionary Legacy of 1989 by Jeffrey A. Engel</p><p> Walls: Legacy &amp; Borders</p><p><br></p><p>  </p><p><br></p><p><br></p><p><br></p>",
                "sv": "<p>Temat för vårens serie är \"Våra livs väggar.\"</p><p>Under dessa fem månader utforskar vi de gränser som formar oss. Det kan vara historiens fysiska väggar, hemmets väggar i ett äktenskap, naturens årstidsväggar eller de osynliga väggarna i våra egna minnen. När vi läser funderar vi över hur dessa “väggar” inte bara omger oss. De förändrar oss så småningom – kanske till och med så att de blir en del av vårt eget “DNA” och det arv vi lämnar efter oss.</p><p>Vi diskutera på engelska. </p><p><br></p><p><br></p><p><br></p><p> January:  A Winter Book by Tove Jansson</p><p> Walls: Isolation &amp; Memory</p><p><br></p><p> February:  Dept. of Speculation by Jenny Offill</p><p> Walls: Identity &amp; Intimacy</p><p><br></p><p>March The Old Man and the Sea by Ernest Hemingway</p><p>Walls:  Endurance &amp; Nature</p><p><br></p><p>April: Time Shelter by Georgi Gospodinov</p><p>Walls:  The Trap of the Past</p><p><br></p><p>May: The Fall of the Berlin Wall: The Revolutionary Legacy of 1989 by Jeffrey A. Engel</p><p> Walls: Legacy &amp; Borders</p>",
                "en": "<p>Our theme for this spring series is \"The Walls of Our Lives.\" </p><p>Throughout these five months, we will explore the boundaries that shape us. Whether they are the physical walls of history, the domestic walls of a marriage, the seasonal walls of nature, or the invisible walls of our own memories. As we read, we consider how these \"walls\" don't just surround us. They eventually change us, perhaps even becoming part of our very \"DNA\" and the legacy we leave behind.</p><p><br></p><p><br></p><p><br></p><p> January:  A Winter Book by Tove Jansson</p><p> Walls: Isolation &amp; Memory</p><p><br></p><p> February:  Dept. of Speculation by Jenny Offill</p><p> Walls: Identity &amp; Intimacy</p><p><br></p><p>March The Old Man and the Sea by Ernest Hemingway</p><p>Walls:  Endurance &amp; Nature</p><p><br></p><p>April: Time Shelter by Georgi Gospodinov</p><p>Walls:  The Trap of the Past</p><p><br></p><p>May: The Fall of the Berlin Wall: The Revolutionary Legacy of 1989 by Jeffrey A. Engel</p><p> Walls: Legacy &amp; Borders</p><p><br></p><p>#helloespoo</p>"
            },
            "name": {
                "fi": "Englanninkielinen lukupiiri",
                "sv": "Bokcirkel på engelska",
                "en": "English Book Club"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Aalto",
                "sv": "Aalto",
                "en": "Aalto"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjwjq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnsznyz7q",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:15417",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:19.044131Z",
                "last_modified_time": "2025-01-31T06:09:29.808662Z",
                "custom_data": null,
                "email": "sellonkirjasto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02600",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 4952,
                "image": 180919,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.80934,
                        60.217506
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 7603"
                },
                "street_address": {
                    "fi": "Leppävaarankatu 9",
                    "sv": "Albergagatan 9",
                    "en": "Leppävaarankatu 9"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925"
                },
                "description": null,
                "name": {
                    "fi": "Sellon kirjasto",
                    "sv": "Sellobiblioteket",
                    "en": "Sello Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66oi",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.151726Z",
                    "last_modified_time": "2023-12-13T11:20:12.151743Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3529,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Leppävaara",
                        "sv": "Alberga",
                        "en": "Leppävaara"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11727",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:43.526740Z",
                    "last_modified_time": "2024-02-06T13:24:10.745704Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 900,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lukupiirit",
                        "sv": "Bokcirklar",
                        "en": "Book clubs",
                        "ru": "Литературные кружки"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnszny2r4/?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": 1494237,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-12-17T13:54:32.267272Z",
                    "last_modified_time": "2025-12-17T13:54:32.267289Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/cbd32e27-485a-4820-8c61-4a0fb8b42bd5.jpg",
                    "name": "",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "Elina Kulmala",
                    "alt_text": "Kuvassa lukupiirin kirjoja: Asioita jotka saavat sydämen lyömään nopeammin - Kankimäki, Mia, Leijapoika - Hosseini, Khaled, Veronica Francon syntinen työ - Parkkinen, Meri, Pachinko-kuulat - Dusapin, Èlisa Shua, Lehmä synnyttää yöllä - Statovci, Pajtim",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494237/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-17T14:05:02.884401Z",
            "last_modified_time": "2026-01-07T12:46:35.127750Z",
            "date_published": null,
            "start_time": "2026-01-21T12:00:00Z",
            "end_time": "2026-01-21T13: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": "Tervetuloa Sellon kirjaston lukupiiriin!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa Sellon kirjaston lukupiiriin!</p><p>&nbsp;</p><p>Kokoonnumme kuukausittain keskustelemaan kirjoista; niiden hahmoista, juonista ja teemoista. Lukupiiri pidetään kerran kuussa keskiviikkoisin Ilmari-työhuoneessa ja kirjalistan sekä päivämäärät löydät ilmoituksen lopusta.</p><p>&nbsp;</p><p>21.1. Klo 14:00–15:30 Asioita jotka saavat sydämen lyömään nopeammin - Kankimäki, Mia</p><p>18.2. Klo 14:00–15:30 Leijapoika - Hosseini, Khaled</p><p>18.3. Klo 14:00–15:30 Veronica Francon syntinen työ - Parkkinen, Meri</p><p>29.4. Klo 14:00–15:30 Pachinko-kuulat - Dusapin, Èlisa Shua</p><p>27.5. Klo 14:00–15:30 Lehmä synnyttää yöllä - Statovci, Pajtim</p>"
            },
            "name": {
                "fi": "Sellon lukupiiri"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kokoushuone Ilmari"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsznyz7q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjjxh4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:64122",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:23:13.536899Z",
                "last_modified_time": "2025-12-15T10:10:05.529953Z",
                "custom_data": null,
                "email": "hiirisuon.asukaspuisto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02970",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 17,
                "image": 10342,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.738466,
                        60.30256
                    ]
                },
                "telephone": {
                    "fi": "+358 43 825 4192"
                },
                "street_address": {
                    "fi": "Pohjoisentie 1",
                    "sv": "Norrmarksvägen 1",
                    "en": "Pohjoisentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": null,
                "description": {
                    "fi": "Hiirisuon asukaspuisto sijaitsee Pohjois-Espoossa Kalajärvellä. Se on kohtaamispaikka alle kouluikäisille lapsille ja heitä kotona hoitaville aikuisille. Asukaspuisto on myös pienen omatoimisen koululaisen vapaa-ajanviettopaikka, jossa oleskelu perustuu vanhemman ja lapsen väliseen sopimukseen. Puistossa voi aamupäivisin tavata muita perheitä ja jakaa arjen asioita vanhempien sekä henkilökunnan kanssa. Lapset voivat leikkiä yhdessä toisten lasten kanssa. Asukaspuiston toiminta on maksutonta. Toimintamme perustuu vapaalle mukavalle yhdessäololle ja puistossa on mahdollisuus kokeilla yhdessä lapsen kanssa kädentaitoja, musiikkia, liikuntaa jne. Toiminnan sisältöön saa esittää toiveita ja niiden toteutukseen pääsee mukaan. Lämpimästi tervetuloa meille leikkimään ja tapaamaan muita lapsia ja aikuisia. Jokainen päivä on hyvä päivä puistossa vierailuun!",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/hiirisuon-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/hiirisuon-asukaspuisto"
                },
                "name": {
                    "fi": "Hiirisuon asukaspuisto",
                    "sv": "Mössenkärrs invånarpark",
                    "en": "Hiirisuo residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66dy",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.069264Z",
                    "last_modified_time": "2023-12-13T11:20:12.069291Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 169,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kalajärvi",
                        "sv": "Kalajärvi",
                        "en": "Kalajärvi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67rm",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.433142Z",
                    "last_modified_time": "2023-12-13T11:20:12.433163Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 113,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Lahnus",
                        "sv": "Lahnus",
                        "en": "Lahnus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67ya",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.485958Z",
                    "last_modified_time": "2023-12-13T11:20:12.485999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 130,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Luukki",
                        "sv": "Luk",
                        "en": "Luukki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj2oi/?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": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-07T12:25:45.436371Z",
            "last_modified_time": "2026-01-07T12:25:45.436390Z",
            "date_published": null,
            "start_time": "2026-05-11T10:00:00Z",
            "end_time": "2026-05-11T11:15: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 kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle viitenä maanantaina klo 13:00 - 14:15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.00 - 14.15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:00 - 14:15.</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>"
            },
            "name": {
                "fi": "Välkky Hiirisuon asukaspuistossa",
                "sv": "Välkky på rutten",
                "en": "Välkky on the route"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjxh4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjjx7a",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:64122",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:23:13.536899Z",
                "last_modified_time": "2025-12-15T10:10:05.529953Z",
                "custom_data": null,
                "email": "hiirisuon.asukaspuisto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02970",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 17,
                "image": 10342,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.738466,
                        60.30256
                    ]
                },
                "telephone": {
                    "fi": "+358 43 825 4192"
                },
                "street_address": {
                    "fi": "Pohjoisentie 1",
                    "sv": "Norrmarksvägen 1",
                    "en": "Pohjoisentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": null,
                "description": {
                    "fi": "Hiirisuon asukaspuisto sijaitsee Pohjois-Espoossa Kalajärvellä. Se on kohtaamispaikka alle kouluikäisille lapsille ja heitä kotona hoitaville aikuisille. Asukaspuisto on myös pienen omatoimisen koululaisen vapaa-ajanviettopaikka, jossa oleskelu perustuu vanhemman ja lapsen väliseen sopimukseen. Puistossa voi aamupäivisin tavata muita perheitä ja jakaa arjen asioita vanhempien sekä henkilökunnan kanssa. Lapset voivat leikkiä yhdessä toisten lasten kanssa. Asukaspuiston toiminta on maksutonta. Toimintamme perustuu vapaalle mukavalle yhdessäololle ja puistossa on mahdollisuus kokeilla yhdessä lapsen kanssa kädentaitoja, musiikkia, liikuntaa jne. Toiminnan sisältöön saa esittää toiveita ja niiden toteutukseen pääsee mukaan. Lämpimästi tervetuloa meille leikkimään ja tapaamaan muita lapsia ja aikuisia. Jokainen päivä on hyvä päivä puistossa vierailuun!",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/hiirisuon-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/hiirisuon-asukaspuisto"
                },
                "name": {
                    "fi": "Hiirisuon asukaspuisto",
                    "sv": "Mössenkärrs invånarpark",
                    "en": "Hiirisuo residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66dy",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.069264Z",
                    "last_modified_time": "2023-12-13T11:20:12.069291Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 169,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kalajärvi",
                        "sv": "Kalajärvi",
                        "en": "Kalajärvi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67rm",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.433142Z",
                    "last_modified_time": "2023-12-13T11:20:12.433163Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 113,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Lahnus",
                        "sv": "Lahnus",
                        "en": "Lahnus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67ya",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.485958Z",
                    "last_modified_time": "2023-12-13T11:20:12.485999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 130,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Luukki",
                        "sv": "Luk",
                        "en": "Luukki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj2oi/?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": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-07T12:25:44.982873Z",
            "last_modified_time": "2026-01-07T12:25:44.982891Z",
            "date_published": null,
            "start_time": "2026-04-13T10:00:00Z",
            "end_time": "2026-04-13T11:15: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 kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle viitenä maanantaina klo 13:00 - 14:15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.00 - 14.15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:00 - 14:15.</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>"
            },
            "name": {
                "fi": "Välkky Hiirisuon asukaspuistossa",
                "sv": "Välkky på rutten",
                "en": "Välkky on the route"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjx7a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjjysi",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:64122",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:23:13.536899Z",
                "last_modified_time": "2025-12-15T10:10:05.529953Z",
                "custom_data": null,
                "email": "hiirisuon.asukaspuisto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02970",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 17,
                "image": 10342,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.738466,
                        60.30256
                    ]
                },
                "telephone": {
                    "fi": "+358 43 825 4192"
                },
                "street_address": {
                    "fi": "Pohjoisentie 1",
                    "sv": "Norrmarksvägen 1",
                    "en": "Pohjoisentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": null,
                "description": {
                    "fi": "Hiirisuon asukaspuisto sijaitsee Pohjois-Espoossa Kalajärvellä. Se on kohtaamispaikka alle kouluikäisille lapsille ja heitä kotona hoitaville aikuisille. Asukaspuisto on myös pienen omatoimisen koululaisen vapaa-ajanviettopaikka, jossa oleskelu perustuu vanhemman ja lapsen väliseen sopimukseen. Puistossa voi aamupäivisin tavata muita perheitä ja jakaa arjen asioita vanhempien sekä henkilökunnan kanssa. Lapset voivat leikkiä yhdessä toisten lasten kanssa. Asukaspuiston toiminta on maksutonta. Toimintamme perustuu vapaalle mukavalle yhdessäololle ja puistossa on mahdollisuus kokeilla yhdessä lapsen kanssa kädentaitoja, musiikkia, liikuntaa jne. Toiminnan sisältöön saa esittää toiveita ja niiden toteutukseen pääsee mukaan. Lämpimästi tervetuloa meille leikkimään ja tapaamaan muita lapsia ja aikuisia. Jokainen päivä on hyvä päivä puistossa vierailuun!",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/hiirisuon-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/hiirisuon-asukaspuisto"
                },
                "name": {
                    "fi": "Hiirisuon asukaspuisto",
                    "sv": "Mössenkärrs invånarpark",
                    "en": "Hiirisuo residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66dy",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.069264Z",
                    "last_modified_time": "2023-12-13T11:20:12.069291Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 169,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kalajärvi",
                        "sv": "Kalajärvi",
                        "en": "Kalajärvi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67rm",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.433142Z",
                    "last_modified_time": "2023-12-13T11:20:12.433163Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 113,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Lahnus",
                        "sv": "Lahnus",
                        "en": "Lahnus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67ya",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.485958Z",
                    "last_modified_time": "2023-12-13T11:20:12.485999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 130,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Luukki",
                        "sv": "Luk",
                        "en": "Luukki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj2oi/?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": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-07T12:25:44.801041Z",
            "last_modified_time": "2026-01-07T12:25:44.801076Z",
            "date_published": null,
            "start_time": "2026-03-09T11:00:00Z",
            "end_time": "2026-03-09T12:15: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 kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle viitenä maanantaina klo 13:00 - 14:15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.00 - 14.15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:00 - 14:15.</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>"
            },
            "name": {
                "fi": "Välkky Hiirisuon asukaspuistossa",
                "sv": "Välkky på rutten",
                "en": "Välkky on the route"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjysi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjjzh4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:64122",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:23:13.536899Z",
                "last_modified_time": "2025-12-15T10:10:05.529953Z",
                "custom_data": null,
                "email": "hiirisuon.asukaspuisto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02970",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 17,
                "image": 10342,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.738466,
                        60.30256
                    ]
                },
                "telephone": {
                    "fi": "+358 43 825 4192"
                },
                "street_address": {
                    "fi": "Pohjoisentie 1",
                    "sv": "Norrmarksvägen 1",
                    "en": "Pohjoisentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": null,
                "description": {
                    "fi": "Hiirisuon asukaspuisto sijaitsee Pohjois-Espoossa Kalajärvellä. Se on kohtaamispaikka alle kouluikäisille lapsille ja heitä kotona hoitaville aikuisille. Asukaspuisto on myös pienen omatoimisen koululaisen vapaa-ajanviettopaikka, jossa oleskelu perustuu vanhemman ja lapsen väliseen sopimukseen. Puistossa voi aamupäivisin tavata muita perheitä ja jakaa arjen asioita vanhempien sekä henkilökunnan kanssa. Lapset voivat leikkiä yhdessä toisten lasten kanssa. Asukaspuiston toiminta on maksutonta. Toimintamme perustuu vapaalle mukavalle yhdessäololle ja puistossa on mahdollisuus kokeilla yhdessä lapsen kanssa kädentaitoja, musiikkia, liikuntaa jne. Toiminnan sisältöön saa esittää toiveita ja niiden toteutukseen pääsee mukaan. Lämpimästi tervetuloa meille leikkimään ja tapaamaan muita lapsia ja aikuisia. Jokainen päivä on hyvä päivä puistossa vierailuun!",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/hiirisuon-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/hiirisuon-asukaspuisto"
                },
                "name": {
                    "fi": "Hiirisuon asukaspuisto",
                    "sv": "Mössenkärrs invånarpark",
                    "en": "Hiirisuo residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66dy",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.069264Z",
                    "last_modified_time": "2023-12-13T11:20:12.069291Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 169,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kalajärvi",
                        "sv": "Kalajärvi",
                        "en": "Kalajärvi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67rm",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.433142Z",
                    "last_modified_time": "2023-12-13T11:20:12.433163Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 113,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Lahnus",
                        "sv": "Lahnus",
                        "en": "Lahnus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67ya",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.485958Z",
                    "last_modified_time": "2023-12-13T11:20:12.485999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 130,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Luukki",
                        "sv": "Luk",
                        "en": "Luukki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj2oi/?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": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-07T12:25:44.577780Z",
            "last_modified_time": "2026-01-07T12:25:44.577800Z",
            "date_published": null,
            "start_time": "2026-02-09T11:00:00Z",
            "end_time": "2026-02-09T12:15: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 kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle viitenä maanantaina klo 13:00 - 14:15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.00 - 14.15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:00 - 14:15.</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>"
            },
            "name": {
                "fi": "Välkky Hiirisuon asukaspuistossa",
                "sv": "Välkky på rutten",
                "en": "Välkky on the route"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjzh4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjjz24",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:64122",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:23:13.536899Z",
                "last_modified_time": "2025-12-15T10:10:05.529953Z",
                "custom_data": null,
                "email": "hiirisuon.asukaspuisto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02970",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 17,
                "image": 10342,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.738466,
                        60.30256
                    ]
                },
                "telephone": {
                    "fi": "+358 43 825 4192"
                },
                "street_address": {
                    "fi": "Pohjoisentie 1",
                    "sv": "Norrmarksvägen 1",
                    "en": "Pohjoisentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": null,
                "description": {
                    "fi": "Hiirisuon asukaspuisto sijaitsee Pohjois-Espoossa Kalajärvellä. Se on kohtaamispaikka alle kouluikäisille lapsille ja heitä kotona hoitaville aikuisille. Asukaspuisto on myös pienen omatoimisen koululaisen vapaa-ajanviettopaikka, jossa oleskelu perustuu vanhemman ja lapsen väliseen sopimukseen. Puistossa voi aamupäivisin tavata muita perheitä ja jakaa arjen asioita vanhempien sekä henkilökunnan kanssa. Lapset voivat leikkiä yhdessä toisten lasten kanssa. Asukaspuiston toiminta on maksutonta. Toimintamme perustuu vapaalle mukavalle yhdessäololle ja puistossa on mahdollisuus kokeilla yhdessä lapsen kanssa kädentaitoja, musiikkia, liikuntaa jne. Toiminnan sisältöön saa esittää toiveita ja niiden toteutukseen pääsee mukaan. Lämpimästi tervetuloa meille leikkimään ja tapaamaan muita lapsia ja aikuisia. Jokainen päivä on hyvä päivä puistossa vierailuun!",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/hiirisuon-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/hiirisuon-asukaspuisto"
                },
                "name": {
                    "fi": "Hiirisuon asukaspuisto",
                    "sv": "Mössenkärrs invånarpark",
                    "en": "Hiirisuo residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66dy",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.069264Z",
                    "last_modified_time": "2023-12-13T11:20:12.069291Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 169,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kalajärvi",
                        "sv": "Kalajärvi",
                        "en": "Kalajärvi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67rm",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.433142Z",
                    "last_modified_time": "2023-12-13T11:20:12.433163Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 113,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Lahnus",
                        "sv": "Lahnus",
                        "en": "Lahnus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67ya",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.485958Z",
                    "last_modified_time": "2023-12-13T11:20:12.485999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 130,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Luukki",
                        "sv": "Luk",
                        "en": "Luukki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj2oi/?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": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-07T12:25:44.050837Z",
            "last_modified_time": "2026-01-07T12:25:44.050856Z",
            "date_published": null,
            "start_time": "2026-01-12T11:00:00Z",
            "end_time": "2026-01-12T12:15: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 kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle viitenä maanantaina klo 13:00 - 14:15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.00 - 14.15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:00 - 14:15.</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>"
            },
            "name": {
                "fi": "Välkky Hiirisuon asukaspuistossa",
                "sv": "Välkky på rutten",
                "en": "Välkky on the route"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjz24/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjj2oi",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:64122",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T16:23:13.536899Z",
                "last_modified_time": "2025-12-15T10:10:05.529953Z",
                "custom_data": null,
                "email": "hiirisuon.asukaspuisto@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02970",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 17,
                "image": 10342,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.738466,
                        60.30256
                    ]
                },
                "telephone": {
                    "fi": "+358 43 825 4192"
                },
                "street_address": {
                    "fi": "Pohjoisentie 1",
                    "sv": "Norrmarksvägen 1",
                    "en": "Pohjoisentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": null,
                "description": {
                    "fi": "Hiirisuon asukaspuisto sijaitsee Pohjois-Espoossa Kalajärvellä. Se on kohtaamispaikka alle kouluikäisille lapsille ja heitä kotona hoitaville aikuisille. Asukaspuisto on myös pienen omatoimisen koululaisen vapaa-ajanviettopaikka, jossa oleskelu perustuu vanhemman ja lapsen väliseen sopimukseen. Puistossa voi aamupäivisin tavata muita perheitä ja jakaa arjen asioita vanhempien sekä henkilökunnan kanssa. Lapset voivat leikkiä yhdessä toisten lasten kanssa. Asukaspuiston toiminta on maksutonta. Toimintamme perustuu vapaalle mukavalle yhdessäololle ja puistossa on mahdollisuus kokeilla yhdessä lapsen kanssa kädentaitoja, musiikkia, liikuntaa jne. Toiminnan sisältöön saa esittää toiveita ja niiden toteutukseen pääsee mukaan. Lämpimästi tervetuloa meille leikkimään ja tapaamaan muita lapsia ja aikuisia. Jokainen päivä on hyvä päivä puistossa vierailuun!",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/hiirisuon-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/hiirisuon-asukaspuisto"
                },
                "name": {
                    "fi": "Hiirisuon asukaspuisto",
                    "sv": "Mössenkärrs invånarpark",
                    "en": "Hiirisuo residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66dy",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.069264Z",
                    "last_modified_time": "2023-12-13T11:20:12.069291Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 169,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kalajärvi",
                        "sv": "Kalajärvi",
                        "en": "Kalajärvi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67rm",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.433142Z",
                    "last_modified_time": "2023-12-13T11:20:12.433163Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 113,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Lahnus",
                        "sv": "Lahnus",
                        "en": "Lahnus"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67ya",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.485958Z",
                    "last_modified_time": "2023-12-13T11:20:12.485999Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 130,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Luukki",
                        "sv": "Luk",
                        "en": "Luukki"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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:agnzrjjxh4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjx7a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjysi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjzh4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjz24/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-07T12:25:42.568663Z",
            "last_modified_time": "2026-01-07T12:25:42.568681Z",
            "date_published": null,
            "start_time": "2026-01-12T11:00:00Z",
            "end_time": "2026-05-11T11:15: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": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle viitenä maanantaina klo 13:00 - 14:15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.00 - 14.15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>",
                "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:00 - 14:15.</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>"
            },
            "name": {
                "fi": "Välkky Hiirisuon asukaspuistossa",
                "sv": "Välkky på rutten",
                "en": "Välkky on the route"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj2oi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjj3a4",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:20324",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:15:50.098327Z",
                "last_modified_time": "2025-03-20T11:09:35.768253Z",
                "custom_data": null,
                "email": "asukaspuisto.karakallio@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02620",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 15,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.764357,
                        60.229877
                    ]
                },
                "telephone": {
                    "fi": "+358 46 877 1279"
                },
                "street_address": {
                    "fi": "Kotkatie 10",
                    "sv": "Örnvägen 10",
                    "en": "Kotkatie 10"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": null,
                "description": {
                    "fi": "Karakallion asukaspuisto on kohtaamispaikka alle kouluikäisille lapsille ja heitä kotona hoitaville vanhemmille. Asukaspuistossa voi aamupäivisin tavata muita perheitä ja jakaa arjen asioita muiden vanhempien sekä henkilökunnan kanssa. Lapset voivat leikkiä yhdessä toisten lasten kanssa. Toiminta on maksutonta, eikä edellytä ennakkoilmoittautumista. Toiminta perustuu vapaalle mukavalle yhdessäololle. Puisto tarjoaa mahdollisuuden sekä omaehtoiseen että ohjattuun toimintaan. Torstaisin ja perjantaisin puiston sisätilat ovat kerholaisten käytössä klo 8:30-11:30. Kerhot noudattavat koulun lukuvuotta ja loma-aikoja. Iltapäivisin puiston sisätilat on varattu koululaisille. Asukaspuisto on omatoimisen koululaisen vapaa-ajan viettopaikka, jossa oleskelu perustuu vanhemman ja lapsen väliseen sopimukseen. Koululaisesta tulee täyttää yhteystietolomake. Pienillä koululaisilla on mahdollisuus kaupungin maksulliseen välipalaan. Puistossa voi syödä myös omia eväitä. Lapset on vakuutettuja tapaturman varalta puiston toiminta-aikana. Puiston piha-alue on vapaasti käytettävissä myös iltaisin ja viikonloppuisin. Alle kouluikäiset ovat asukaspuistossa aina oman aikuisen kanssa. Sisätilojen käyttöajat kouluvuoden aikana: ma-ke klo 8.00-13.00 avoin kaikille, to-pe 8.30-11.30 kerho, to-pe klo 11.30-13.00 avoin kaikille, ma-pe klo 13.00-16.00 vain koululaiset. Wc-tilat, eteisvälikkö (viileä) ja piha-alue ovat joka arkipäivä kaikkien käytettävissä. Koulujen loma-aikana: puiston sisätilat kaikkien käytettävissä klo 8.00-15.30.",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/karakallion-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/karakallion-asukaspuisto"
                },
                "name": {
                    "fi": "Karakallion asukaspuisto",
                    "sv": "Karabackas invånarpark",
                    "en": "Karakallio residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz67ku",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.379012Z",
                    "last_modified_time": "2023-12-13T11:20:12.379033Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 41,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Karakallio",
                        "sv": "Karabacka",
                        "en": "Karakallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj6bm/?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": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-07T12:23:09.185188Z",
            "last_modified_time": "2026-01-07T12:23:09.185207Z",
            "date_published": null,
            "start_time": "2026-05-15T10:00:00Z",
            "end_time": "2026-05-15T11:15: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 kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Karakallion asukaspuistolle viitenä perjantaina klo 13 - 14:15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "sv": "<p>Välkky kör till Karakallios invånarpark! En gång i månaden kl. 13.00 - 14.15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "en": "<p>Välkky arrives at the Karakallio residents' park! Once a month at 13:00 - 14:15.</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>"
            },
            "name": {
                "fi": "Välkky Karakallion asukaspuistossa",
                "sv": "Välkky på rutten",
                "en": "Välkky on the route"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj3a4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjj3vy",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:20324",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:15:50.098327Z",
                "last_modified_time": "2025-03-20T11:09:35.768253Z",
                "custom_data": null,
                "email": "asukaspuisto.karakallio@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02620",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 15,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.764357,
                        60.229877
                    ]
                },
                "telephone": {
                    "fi": "+358 46 877 1279"
                },
                "street_address": {
                    "fi": "Kotkatie 10",
                    "sv": "Örnvägen 10",
                    "en": "Kotkatie 10"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": null,
                "description": {
                    "fi": "Karakallion asukaspuisto on kohtaamispaikka alle kouluikäisille lapsille ja heitä kotona hoitaville vanhemmille. Asukaspuistossa voi aamupäivisin tavata muita perheitä ja jakaa arjen asioita muiden vanhempien sekä henkilökunnan kanssa. Lapset voivat leikkiä yhdessä toisten lasten kanssa. Toiminta on maksutonta, eikä edellytä ennakkoilmoittautumista. Toiminta perustuu vapaalle mukavalle yhdessäololle. Puisto tarjoaa mahdollisuuden sekä omaehtoiseen että ohjattuun toimintaan. Torstaisin ja perjantaisin puiston sisätilat ovat kerholaisten käytössä klo 8:30-11:30. Kerhot noudattavat koulun lukuvuotta ja loma-aikoja. Iltapäivisin puiston sisätilat on varattu koululaisille. Asukaspuisto on omatoimisen koululaisen vapaa-ajan viettopaikka, jossa oleskelu perustuu vanhemman ja lapsen väliseen sopimukseen. Koululaisesta tulee täyttää yhteystietolomake. Pienillä koululaisilla on mahdollisuus kaupungin maksulliseen välipalaan. Puistossa voi syödä myös omia eväitä. Lapset on vakuutettuja tapaturman varalta puiston toiminta-aikana. Puiston piha-alue on vapaasti käytettävissä myös iltaisin ja viikonloppuisin. Alle kouluikäiset ovat asukaspuistossa aina oman aikuisen kanssa. Sisätilojen käyttöajat kouluvuoden aikana: ma-ke klo 8.00-13.00 avoin kaikille, to-pe 8.30-11.30 kerho, to-pe klo 11.30-13.00 avoin kaikille, ma-pe klo 13.00-16.00 vain koululaiset. Wc-tilat, eteisvälikkö (viileä) ja piha-alue ovat joka arkipäivä kaikkien käytettävissä. Koulujen loma-aikana: puiston sisätilat kaikkien käytettävissä klo 8.00-15.30.",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/karakallion-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/karakallion-asukaspuisto"
                },
                "name": {
                    "fi": "Karakallion asukaspuisto",
                    "sv": "Karabackas invånarpark",
                    "en": "Karakallio residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz67ku",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.379012Z",
                    "last_modified_time": "2023-12-13T11:20:12.379033Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 41,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Karakallio",
                        "sv": "Karabacka",
                        "en": "Karakallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj6bm/?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": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-07T12:23:09.006114Z",
            "last_modified_time": "2026-01-07T12:23:09.006133Z",
            "date_published": null,
            "start_time": "2026-04-17T10:00:00Z",
            "end_time": "2026-04-17T11:15: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 kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Karakallion asukaspuistolle viitenä perjantaina klo 13 - 14:15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "sv": "<p>Välkky kör till Karakallios invånarpark! En gång i månaden kl. 13.00 - 14.15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "en": "<p>Välkky arrives at the Karakallio residents' park! Once a month at 13:00 - 14:15.</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>"
            },
            "name": {
                "fi": "Välkky Karakallion asukaspuistossa",
                "sv": "Välkky på rutten",
                "en": "Välkky on the route"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj3vy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjj4im",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:20324",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:15:50.098327Z",
                "last_modified_time": "2025-03-20T11:09:35.768253Z",
                "custom_data": null,
                "email": "asukaspuisto.karakallio@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02620",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 15,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.764357,
                        60.229877
                    ]
                },
                "telephone": {
                    "fi": "+358 46 877 1279"
                },
                "street_address": {
                    "fi": "Kotkatie 10",
                    "sv": "Örnvägen 10",
                    "en": "Kotkatie 10"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": null,
                "description": {
                    "fi": "Karakallion asukaspuisto on kohtaamispaikka alle kouluikäisille lapsille ja heitä kotona hoitaville vanhemmille. Asukaspuistossa voi aamupäivisin tavata muita perheitä ja jakaa arjen asioita muiden vanhempien sekä henkilökunnan kanssa. Lapset voivat leikkiä yhdessä toisten lasten kanssa. Toiminta on maksutonta, eikä edellytä ennakkoilmoittautumista. Toiminta perustuu vapaalle mukavalle yhdessäololle. Puisto tarjoaa mahdollisuuden sekä omaehtoiseen että ohjattuun toimintaan. Torstaisin ja perjantaisin puiston sisätilat ovat kerholaisten käytössä klo 8:30-11:30. Kerhot noudattavat koulun lukuvuotta ja loma-aikoja. Iltapäivisin puiston sisätilat on varattu koululaisille. Asukaspuisto on omatoimisen koululaisen vapaa-ajan viettopaikka, jossa oleskelu perustuu vanhemman ja lapsen väliseen sopimukseen. Koululaisesta tulee täyttää yhteystietolomake. Pienillä koululaisilla on mahdollisuus kaupungin maksulliseen välipalaan. Puistossa voi syödä myös omia eväitä. Lapset on vakuutettuja tapaturman varalta puiston toiminta-aikana. Puiston piha-alue on vapaasti käytettävissä myös iltaisin ja viikonloppuisin. Alle kouluikäiset ovat asukaspuistossa aina oman aikuisen kanssa. Sisätilojen käyttöajat kouluvuoden aikana: ma-ke klo 8.00-13.00 avoin kaikille, to-pe 8.30-11.30 kerho, to-pe klo 11.30-13.00 avoin kaikille, ma-pe klo 13.00-16.00 vain koululaiset. Wc-tilat, eteisvälikkö (viileä) ja piha-alue ovat joka arkipäivä kaikkien käytettävissä. Koulujen loma-aikana: puiston sisätilat kaikkien käytettävissä klo 8.00-15.30.",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/karakallion-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/karakallion-asukaspuisto"
                },
                "name": {
                    "fi": "Karakallion asukaspuisto",
                    "sv": "Karabackas invånarpark",
                    "en": "Karakallio residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz67ku",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.379012Z",
                    "last_modified_time": "2023-12-13T11:20:12.379033Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 41,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Karakallio",
                        "sv": "Karabacka",
                        "en": "Karakallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj6bm/?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": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-07T12:23:08.848975Z",
            "last_modified_time": "2026-01-07T12:23:08.849078Z",
            "date_published": null,
            "start_time": "2026-03-06T11:00:00Z",
            "end_time": "2026-03-06T12:15: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 kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Karakallion asukaspuistolle viitenä perjantaina klo 13 - 14:15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "sv": "<p>Välkky kör till Karakallios invånarpark! En gång i månaden kl. 13.00 - 14.15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "en": "<p>Välkky arrives at the Karakallio residents' park! Once a month at 13:00 - 14:15.</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>"
            },
            "name": {
                "fi": "Välkky Karakallion asukaspuistossa",
                "sv": "Välkky på rutten",
                "en": "Välkky on the route"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj4im/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjj43e",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:20324",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:15:50.098327Z",
                "last_modified_time": "2025-03-20T11:09:35.768253Z",
                "custom_data": null,
                "email": "asukaspuisto.karakallio@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02620",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 15,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.764357,
                        60.229877
                    ]
                },
                "telephone": {
                    "fi": "+358 46 877 1279"
                },
                "street_address": {
                    "fi": "Kotkatie 10",
                    "sv": "Örnvägen 10",
                    "en": "Kotkatie 10"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": null,
                "description": {
                    "fi": "Karakallion asukaspuisto on kohtaamispaikka alle kouluikäisille lapsille ja heitä kotona hoitaville vanhemmille. Asukaspuistossa voi aamupäivisin tavata muita perheitä ja jakaa arjen asioita muiden vanhempien sekä henkilökunnan kanssa. Lapset voivat leikkiä yhdessä toisten lasten kanssa. Toiminta on maksutonta, eikä edellytä ennakkoilmoittautumista. Toiminta perustuu vapaalle mukavalle yhdessäololle. Puisto tarjoaa mahdollisuuden sekä omaehtoiseen että ohjattuun toimintaan. Torstaisin ja perjantaisin puiston sisätilat ovat kerholaisten käytössä klo 8:30-11:30. Kerhot noudattavat koulun lukuvuotta ja loma-aikoja. Iltapäivisin puiston sisätilat on varattu koululaisille. Asukaspuisto on omatoimisen koululaisen vapaa-ajan viettopaikka, jossa oleskelu perustuu vanhemman ja lapsen väliseen sopimukseen. Koululaisesta tulee täyttää yhteystietolomake. Pienillä koululaisilla on mahdollisuus kaupungin maksulliseen välipalaan. Puistossa voi syödä myös omia eväitä. Lapset on vakuutettuja tapaturman varalta puiston toiminta-aikana. Puiston piha-alue on vapaasti käytettävissä myös iltaisin ja viikonloppuisin. Alle kouluikäiset ovat asukaspuistossa aina oman aikuisen kanssa. Sisätilojen käyttöajat kouluvuoden aikana: ma-ke klo 8.00-13.00 avoin kaikille, to-pe 8.30-11.30 kerho, to-pe klo 11.30-13.00 avoin kaikille, ma-pe klo 13.00-16.00 vain koululaiset. Wc-tilat, eteisvälikkö (viileä) ja piha-alue ovat joka arkipäivä kaikkien käytettävissä. Koulujen loma-aikana: puiston sisätilat kaikkien käytettävissä klo 8.00-15.30.",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/karakallion-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/karakallion-asukaspuisto"
                },
                "name": {
                    "fi": "Karakallion asukaspuisto",
                    "sv": "Karabackas invånarpark",
                    "en": "Karakallio residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz67ku",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.379012Z",
                    "last_modified_time": "2023-12-13T11:20:12.379033Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 41,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Karakallio",
                        "sv": "Karabacka",
                        "en": "Karakallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj6bm/?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": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-07T12:23:08.666390Z",
            "last_modified_time": "2026-01-07T12:23:08.666407Z",
            "date_published": null,
            "start_time": "2026-02-06T11:00:00Z",
            "end_time": "2026-02-06T12:15: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 kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Karakallion asukaspuistolle viitenä perjantaina klo 13 - 14:15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "sv": "<p>Välkky kör till Karakallios invånarpark! En gång i månaden kl. 13.00 - 14.15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "en": "<p>Välkky arrives at the Karakallio residents' park! Once a month at 13:00 - 14:15.</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>"
            },
            "name": {
                "fi": "Välkky Karakallion asukaspuistossa",
                "sv": "Välkky på rutten",
                "en": "Välkky on the route"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj43e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjj5oq",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:20324",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:15:50.098327Z",
                "last_modified_time": "2025-03-20T11:09:35.768253Z",
                "custom_data": null,
                "email": "asukaspuisto.karakallio@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02620",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 15,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.764357,
                        60.229877
                    ]
                },
                "telephone": {
                    "fi": "+358 46 877 1279"
                },
                "street_address": {
                    "fi": "Kotkatie 10",
                    "sv": "Örnvägen 10",
                    "en": "Kotkatie 10"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": null,
                "description": {
                    "fi": "Karakallion asukaspuisto on kohtaamispaikka alle kouluikäisille lapsille ja heitä kotona hoitaville vanhemmille. Asukaspuistossa voi aamupäivisin tavata muita perheitä ja jakaa arjen asioita muiden vanhempien sekä henkilökunnan kanssa. Lapset voivat leikkiä yhdessä toisten lasten kanssa. Toiminta on maksutonta, eikä edellytä ennakkoilmoittautumista. Toiminta perustuu vapaalle mukavalle yhdessäololle. Puisto tarjoaa mahdollisuuden sekä omaehtoiseen että ohjattuun toimintaan. Torstaisin ja perjantaisin puiston sisätilat ovat kerholaisten käytössä klo 8:30-11:30. Kerhot noudattavat koulun lukuvuotta ja loma-aikoja. Iltapäivisin puiston sisätilat on varattu koululaisille. Asukaspuisto on omatoimisen koululaisen vapaa-ajan viettopaikka, jossa oleskelu perustuu vanhemman ja lapsen väliseen sopimukseen. Koululaisesta tulee täyttää yhteystietolomake. Pienillä koululaisilla on mahdollisuus kaupungin maksulliseen välipalaan. Puistossa voi syödä myös omia eväitä. Lapset on vakuutettuja tapaturman varalta puiston toiminta-aikana. Puiston piha-alue on vapaasti käytettävissä myös iltaisin ja viikonloppuisin. Alle kouluikäiset ovat asukaspuistossa aina oman aikuisen kanssa. Sisätilojen käyttöajat kouluvuoden aikana: ma-ke klo 8.00-13.00 avoin kaikille, to-pe 8.30-11.30 kerho, to-pe klo 11.30-13.00 avoin kaikille, ma-pe klo 13.00-16.00 vain koululaiset. Wc-tilat, eteisvälikkö (viileä) ja piha-alue ovat joka arkipäivä kaikkien käytettävissä. Koulujen loma-aikana: puiston sisätilat kaikkien käytettävissä klo 8.00-15.30.",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/karakallion-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/karakallion-asukaspuisto"
                },
                "name": {
                    "fi": "Karakallion asukaspuisto",
                    "sv": "Karabackas invånarpark",
                    "en": "Karakallio residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz67ku",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.379012Z",
                    "last_modified_time": "2023-12-13T11:20:12.379033Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 41,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Karakallio",
                        "sv": "Karabacka",
                        "en": "Karakallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj6bm/?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": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-07T12:23:08.508848Z",
            "last_modified_time": "2026-01-07T12:23:08.508869Z",
            "date_published": null,
            "start_time": "2026-01-09T11:00:00Z",
            "end_time": "2026-01-09T12:15: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 kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Karakallion asukaspuistolle viitenä perjantaina klo 13 - 14:15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "sv": "<p>Välkky kör till Karakallios invånarpark! En gång i månaden kl. 13.00 - 14.15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "en": "<p>Välkky arrives at the Karakallio residents' park! Once a month at 13:00 - 14:15.</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>"
            },
            "name": {
                "fi": "Välkky Karakallion asukaspuistossa",
                "sv": "Välkky på rutten",
                "en": "Välkky on the route"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj5oq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnzrjj6bm",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:20324",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:15:50.098327Z",
                "last_modified_time": "2025-03-20T11:09:35.768253Z",
                "custom_data": null,
                "email": "asukaspuisto.karakallio@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02620",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 15,
                "image": null,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.764357,
                        60.229877
                    ]
                },
                "telephone": {
                    "fi": "+358 46 877 1279"
                },
                "street_address": {
                    "fi": "Kotkatie 10",
                    "sv": "Örnvägen 10",
                    "en": "Kotkatie 10"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": null,
                "description": {
                    "fi": "Karakallion asukaspuisto on kohtaamispaikka alle kouluikäisille lapsille ja heitä kotona hoitaville vanhemmille. Asukaspuistossa voi aamupäivisin tavata muita perheitä ja jakaa arjen asioita muiden vanhempien sekä henkilökunnan kanssa. Lapset voivat leikkiä yhdessä toisten lasten kanssa. Toiminta on maksutonta, eikä edellytä ennakkoilmoittautumista. Toiminta perustuu vapaalle mukavalle yhdessäololle. Puisto tarjoaa mahdollisuuden sekä omaehtoiseen että ohjattuun toimintaan. Torstaisin ja perjantaisin puiston sisätilat ovat kerholaisten käytössä klo 8:30-11:30. Kerhot noudattavat koulun lukuvuotta ja loma-aikoja. Iltapäivisin puiston sisätilat on varattu koululaisille. Asukaspuisto on omatoimisen koululaisen vapaa-ajan viettopaikka, jossa oleskelu perustuu vanhemman ja lapsen väliseen sopimukseen. Koululaisesta tulee täyttää yhteystietolomake. Pienillä koululaisilla on mahdollisuus kaupungin maksulliseen välipalaan. Puistossa voi syödä myös omia eväitä. Lapset on vakuutettuja tapaturman varalta puiston toiminta-aikana. Puiston piha-alue on vapaasti käytettävissä myös iltaisin ja viikonloppuisin. Alle kouluikäiset ovat asukaspuistossa aina oman aikuisen kanssa. Sisätilojen käyttöajat kouluvuoden aikana: ma-ke klo 8.00-13.00 avoin kaikille, to-pe 8.30-11.30 kerho, to-pe klo 11.30-13.00 avoin kaikille, ma-pe klo 13.00-16.00 vain koululaiset. Wc-tilat, eteisvälikkö (viileä) ja piha-alue ovat joka arkipäivä kaikkien käytettävissä. Koulujen loma-aikana: puiston sisätilat kaikkien käytettävissä klo 8.00-15.30.",
                    "sv": "Verksamheten ordas huvudsakligen på finska. Läs mera på finska: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/karakallion-asukaspuisto",
                    "en": "The activities are mainly conducted in Finnish. Read more in Finnish: https://www.espoo.fi/fi/kasvatus-ja-opetus/varhaiskasvatus/asukaspuistot/karakallion-asukaspuisto"
                },
                "name": {
                    "fi": "Karakallion asukaspuisto",
                    "sv": "Karabackas invånarpark",
                    "en": "Karakallio residents' park"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz67ku",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.379012Z",
                    "last_modified_time": "2023-12-13T11:20:12.379033Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 41,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Karakallio",
                        "sv": "Karabacka",
                        "en": "Karakallio"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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:agnzrjj3a4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj3vy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj4im/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj43e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj5oq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490099,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-13T12:13:56.085264Z",
                    "last_modified_time": "2025-08-13T12:42:13.026623Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Joni Luumi",
                    "alt_text": "Kirjastoauto Välkky ilta-auringossa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-07T12:23:07.300657Z",
            "last_modified_time": "2026-01-07T12:23:07.300674Z",
            "date_published": null,
            "start_time": "2026-01-09T11:00:00Z",
            "end_time": "2026-05-15T11:15: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": "Tule kurkkaamaan, mitä Välkystä löytyy!",
                "sv": "Kom och se vad Välkky har att erbjuda!",
                "en": "Come and see what Välkky has to offer!"
            },
            "info_url": {
                "fi": "http://espoo.fi/kirjastoauto",
                "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky",
                "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky"
            },
            "description": {
                "fi": "<p>Kirjastoauto Välkky saapuu Karakallion asukaspuistolle viitenä perjantaina klo 13 - 14:15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "sv": "<p>Välkky kör till Karakallios invånarpark! En gång i månaden kl. 13.00 - 14.15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>",
                "en": "<p>Välkky arrives at the Karakallio residents' park! Once a month at 13:00 - 14:15.</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>"
            },
            "name": {
                "fi": "Välkky Karakallion asukaspuistossa",
                "sv": "Välkky på rutten",
                "en": "Välkky on the route"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Välkky",
                "sv": "Välkky",
                "en": "Välkky"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj6bm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67749",
            "has_user_editable_resources": false,
            "location": {
                "id": "tprek:7254",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kampinmalmi",
                            "sv": "Kampmalmen"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.860628Z",
                "last_modified_time": "2025-03-27T09:09:26.669262Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 865,
                "image": 414653,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.93472,
                        60.167854
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 37185"
                },
                "street_address": {
                    "fi": "Annankatu 30",
                    "sv": "Annegatan 30",
                    "en": "Annankatu 30"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.annantalo.fi/",
                    "sv": "https://www.annantalo.fi/sv/framsidan",
                    "en": "https://www.annantalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.",
                    "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.",
                    "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture."
                },
                "name": {
                    "fi": "Annantalo",
                    "sv": "Annegården",
                    "en": "Annantalo Arts Centre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:105",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:58.060968Z",
                    "last_modified_time": "2024-02-06T13:19:14.616316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1321,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Lastentapahtumat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:46",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.650020Z",
                    "last_modified_time": "2024-02-06T13:19:14.062702Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 714,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Annantalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1177,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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": "tprek:15311",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:05.278840Z",
                "last_modified_time": "2024-04-09T05:09:27.677777Z",
                "custom_data": null,
                "email": "kirjasto.tapiola@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1742,
                "image": 7887,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.804646,
                        60.178085
                    ]
                },
                "telephone": {
                    "fi": "+358 50 428 9392"
                },
                "street_address": {
                    "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2",
                    "sv": "Kulturplatsen 2",
                    "en": "Kulttuuriaukio 2"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84850",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84850",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84850"
                },
                "description": null,
                "name": {
                    "fi": "Tapiolan kirjasto",
                    "sv": "Hagalunds bibliotek",
                    "en": "Tapiola Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz65fm",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.825528Z",
                    "last_modified_time": "2023-12-13T11:20:11.825556Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1356,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapiola",
                        "sv": "Hagalund",
                        "en": "Tapiola"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66aa",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.038364Z",
                    "last_modified_time": "2023-12-13T11:20:12.038383Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 601,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Otaniemi",
                        "sv": "Otnäs",
                        "en": "Otaniemi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67zy",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.499844Z",
                    "last_modified_time": "2023-12-13T11:20:12.499862Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 388,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Mankkaa",
                        "sv": "Mankans",
                        "en": "Mankkaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz7acu",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.571131Z",
                    "last_modified_time": "2023-12-13T11:20:12.571155Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 644,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Pohjois-Tapiola",
                        "sv": "Norra Hagalund",
                        "en": "Pohjois-Tapiola"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz7ane",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.654416Z",
                    "last_modified_time": "2023-12-13T11:20:12.654432Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 642,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Westend",
                        "sv": "Westend",
                        "en": "Westend"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p10727",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kansalaisaktivismi",
                        "kansalaisosallistuminen",
                        "kansalaisten osallistuminen",
                        "medborgaraktivism",
                        "medborgardeltagande",
                        "engagemang",
                        "medborgarinflytande"
                    ],
                    "created_time": "2023-08-16T05:18:07.639076Z",
                    "last_modified_time": "2023-08-16T05:18:07.639094Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1714,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "osallistuminen",
                        "sv": "deltagande",
                        "en": "participation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2625",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "näyttämötaide",
                        "scenkonst",
                        "dramatic art",
                        "theater",
                        "puheteatteri",
                        "teatteri (taiteet)",
                        "talteater",
                        "teater (konstarter)"
                    ],
                    "created_time": "2023-08-16T05:19:44.444648Z",
                    "last_modified_time": "2023-08-16T05:19:44.444666Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1942,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "teatteritaide",
                        "sv": "teaterkonst",
                        "en": "theatre (art forms)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p3917",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "turismi"
                    ],
                    "created_time": "2023-08-16T05:19:47.018835Z",
                    "last_modified_time": "2023-08-16T05:19:47.018858Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 35,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "matkailu",
                        "sv": "turism",
                        "en": "tourism"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4934",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "muséer"
                    ],
                    "created_time": "2023-08-16T05:19:42.193109Z",
                    "last_modified_time": "2023-08-16T05:19:42.193125Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 34,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "museot",
                        "sv": "museer",
                        "en": "museums"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4934/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p5121",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:37.715031Z",
                    "last_modified_time": "2023-08-16T05:19:37.715048Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 777,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "näyttelyt",
                        "sv": "utställningar",
                        "en": "exhibitions"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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": "tprek:15395",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:16.199535Z",
                "last_modified_time": "2024-04-09T05:09:28.197140Z",
                "custom_data": null,
                "email": "kirjasto.omena@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02230",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1939,
                "image": 7942,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.740192,
                        60.160072
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 7723"
                },
                "street_address": {
                    "fi": "Suomenlahdentie 1",
                    "sv": "Finnviksvägen 1",
                    "en": "Suomenlahdentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834"
                },
                "description": null,
                "name": {
                    "fi": "Ison Omenan kirjasto",
                    "sv": "Iso Omena bibliotek",
                    "en": "Iso Omena Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz66by",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.052436Z",
                    "last_modified_time": "2023-12-13T11:20:12.052454Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1532,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Matinkylä",
                        "sv": "Mattby",
                        "en": "Matinkylä"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ky",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.123308Z",
                    "last_modified_time": "2023-12-13T11:20:12.123326Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2428,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Soukka",
                        "sv": "Sökö",
                        "en": "Soukka"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ru",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.179708Z",
                    "last_modified_time": "2023-12-13T11:20:12.179727Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1100,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Olari",
                        "sv": "Olars",
                        "en": "Olari"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz675q",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.530825Z",
                    "last_modified_time": "2023-12-13T11:20:12.530842Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 889,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Niittykumpu",
                        "sv": "Ängskulla",
                        "en": "Niittykumpu"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11406",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "lukutekniikka",
                        "lästeknik",
                        "läsande"
                    ],
                    "created_time": "2023-08-16T05:19:26.950628Z",
                    "last_modified_time": "2023-08-16T05:19:26.950647Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2295,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lukeminen",
                        "sv": "läsning",
                        "en": "reading"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1650",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "förskolepedagogik",
                        "småbarnsfostran"
                    ],
                    "created_time": "2023-08-16T05:18:50.644854Z",
                    "last_modified_time": "2023-08-16T05:18:50.644872Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 136,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "varhaiskasvatus",
                        "sv": "småbarnspedagogik",
                        "en": "early childhood education and care"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2149",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "opastaminen",
                        "opastukset",
                        "vägledning"
                    ],
                    "created_time": "2023-08-16T05:13:22.316826Z",
                    "last_modified_time": "2023-08-16T05:13:22.316842Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3818,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opastus",
                        "sv": "guidning",
                        "en": "guidance"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2630",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "subject teaching",
                        "aineenopetus",
                        "aineopetus",
                        "ämnesundervisning",
                        "instruction",
                        "teaching",
                        "opettaminen"
                    ],
                    "created_time": "2023-08-16T05:19:46.234579Z",
                    "last_modified_time": "2023-08-16T05:19:46.234597Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1529,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "opetus",
                        "sv": "undervisning",
                        "en": "teaching and instruction"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p8113",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "maailmankirjallisuus",
                        "världslitteratur"
                    ],
                    "created_time": "2023-08-16T05:19:49.026380Z",
                    "last_modified_time": "2023-08-16T05:19:49.026398Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4029,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjallisuus",
                        "sv": "litteratur",
                        "en": "literature"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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": "tprek:7254",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki",
                        "municipality": null,
                        "name": {
                            "fi": "Helsinki",
                            "sv": "Helsingfors"
                        }
                    },
                    {
                        "type": "district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kampinmalmi",
                            "sv": "Kampmalmen"
                        }
                    },
                    {
                        "type": "sub_district",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    },
                    {
                        "type": "neighborhood",
                        "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi",
                        "municipality": "Helsinki",
                        "name": {
                            "fi": "Kamppi",
                            "sv": "Kampen"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:12:15.860628Z",
                "last_modified_time": "2025-03-27T09:09:26.669262Z",
                "custom_data": null,
                "email": null,
                "contact_type": null,
                "address_region": null,
                "postal_code": "00100",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 865,
                "image": 414653,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.93472,
                        60.167854
                    ]
                },
                "telephone": {
                    "fi": "+358 9 310 37185"
                },
                "street_address": {
                    "fi": "Annankatu 30",
                    "sv": "Annegatan 30",
                    "en": "Annankatu 30"
                },
                "address_locality": {
                    "fi": "Helsinki",
                    "sv": "Helsingfors",
                    "en": "Helsinki"
                },
                "info_url": {
                    "fi": "https://www.annantalo.fi/",
                    "sv": "https://www.annantalo.fi/sv/framsidan",
                    "en": "https://www.annantalo.fi/en/frontpage"
                },
                "description": {
                    "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.",
                    "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.",
                    "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture."
                },
                "name": {
                    "fi": "Annantalo",
                    "sv": "Annegården",
                    "en": "Annantalo Arts Centre"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "kulke:46",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.650020Z",
                    "last_modified_time": "2024-02-06T13:19:14.062702Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 714,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Annantalo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:53",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.753801Z",
                    "last_modified_time": "2024-02-06T13:19:14.219309Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5995,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Suomi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:54",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.766769Z",
                    "last_modified_time": "2024-02-06T13:19:14.242089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 4850,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Ruotsi"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:55",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:57.780228Z",
                    "last_modified_time": "2024-02-06T13:19:14.263522Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 5054,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Englanti"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:596",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:13:59.781294Z",
                    "last_modified_time": "2024-02-06T13:19:16.916968Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 326,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Muu"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:671",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.262159Z",
                    "last_modified_time": "2024-02-06T13:19:17.577085Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 2,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Normaali"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:671/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:732",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.451857Z",
                    "last_modified_time": "2024-02-06T13:19:17.859046Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1177,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Työpajat"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "kulke:748",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-09-07T14:14:00.557100Z",
                    "last_modified_time": "2024-02-06T13:19:18.013135Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": false,
                    "n_events": 4,
                    "image": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "replaced_by": null,
                    "name": {
                        "fi": "Seikkailutaide"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:748/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p39924",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "workshops for youth",
                        "nuorten työpajatoiminta",
                        "työpajat (työtoiminta)",
                        "ungdomsverkstadsverksamhet",
                        "verkstäder (arbetsverksamhet)",
                        "workshops for the unemployed",
                        "youth workshops"
                    ],
                    "created_time": "2023-08-16T05:14:24.972589Z",
                    "last_modified_time": "2023-09-02T04:40:32.318089Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1141,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "työpajatoiminta",
                        "sv": "verkstadsverksamhet",
                        "en": "workshops (social inclusion)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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": "tprek:15395",
                "has_user_editable_resources": false,
                "data_source": "tprek",
                "publisher": "ahjo:u021800",
                "divisions": [
                    {
                        "type": "muni",
                        "ocd_id": "ocd-division/country:fi/kunta:espoo",
                        "municipality": null,
                        "name": {
                            "fi": "Espoo",
                            "sv": "Esbo"
                        }
                    }
                ],
                "created_time": "2023-08-15T08:14:16.199535Z",
                "last_modified_time": "2024-04-09T05:09:28.197140Z",
                "custom_data": null,
                "email": "kirjasto.omena@espoo.fi",
                "contact_type": null,
                "address_region": null,
                "postal_code": "02230",
                "post_office_box_num": null,
                "address_country": null,
                "deleted": false,
                "has_upcoming_events": true,
                "n_events": 1939,
                "image": 7942,
                "parent": null,
                "replaced_by": null,
                "position": {
                    "type": "Point",
                    "coordinates": [
                        24.740192,
                        60.160072
                    ]
                },
                "telephone": {
                    "fi": "+358 9 8165 7723"
                },
                "street_address": {
                    "fi": "Suomenlahdentie 1",
                    "sv": "Finnviksvägen 1",
                    "en": "Suomenlahdentie 1"
                },
                "address_locality": {
                    "fi": "Espoo",
                    "sv": "Esbo",
                    "en": "Espoo"
                },
                "info_url": {
                    "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834",
                    "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834"
                },
                "description": null,
                "name": {
                    "fi": "Ison Omenan kirjasto",
                    "sv": "Iso Omena bibliotek",
                    "en": "Iso Omena Library"
                },
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api",
                "@context": "http://schema.org",
                "@type": "Place"
            },
            "keywords": [
                {
                    "id": "espoo_le:agggfz65fm",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:11.825528Z",
                    "last_modified_time": "2023-12-13T11:20:11.825556Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1356,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Tapiola",
                        "sv": "Hagalund",
                        "en": "Tapiola"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66by",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.052436Z",
                    "last_modified_time": "2023-12-13T11:20:12.052454Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1532,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Matinkylä",
                        "sv": "Mattby",
                        "en": "Matinkylä"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66mq",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.137750Z",
                    "last_modified_time": "2023-12-13T11:20:12.137771Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3078,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Finnoo",
                        "sv": "Finno",
                        "en": "Finnoo"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz66ru",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.179708Z",
                    "last_modified_time": "2023-12-13T11:20:12.179727Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1100,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Olari",
                        "sv": "Olars",
                        "en": "Olari"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz675q",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.530825Z",
                    "last_modified_time": "2023-12-13T11:20:12.530842Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 889,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Niittykumpu",
                        "sv": "Ängskulla",
                        "en": "Niittykumpu"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "espoo_le:agggfz67i4",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-12-13T11:20:12.364884Z",
                    "last_modified_time": "2023-12-13T11:20:12.364908Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 2667,
                    "image": null,
                    "data_source": "espoo_le",
                    "publisher": null,
                    "replaced_by": null,
                    "name": {
                        "fi": "Kaitaa",
                        "sv": "Kaitans",
                        "en": "Kaitaa"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "helmet:11733",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-15T08:19:44.739009Z",
                    "last_modified_time": "2024-02-06T13:24:07.909651Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 3118,
                    "image": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "replaced_by": null,
                    "name": {
                        "fi": "Kielikahvilat ja keskusteluryhmät",
                        "sv": "Språkcafeér och diskussionsgrupper",
                        "en": "Language Cafés and discussion groups",
                        "ru": "Языковые кафе и дискуссионные клубы"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p10727",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "kansalaisaktivismi",
                        "kansalaisosallistuminen",
                        "kansalaisten osallistuminen",
                        "medborgaraktivism",
                        "medborgardeltagande",
                        "engagemang",
                        "medborgarinflytande"
                    ],
                    "created_time": "2023-08-16T05:18:07.639076Z",
                    "last_modified_time": "2023-08-16T05:18:07.639094Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1714,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "osallistuminen",
                        "sv": "deltagande",
                        "en": "participation"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p11617",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "nuoriso",
                        "unga"
                    ],
                    "created_time": "2023-08-16T05:18:48.983343Z",
                    "last_modified_time": "2023-08-16T05:18:48.983373Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 9506,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "nuoret",
                        "sv": "ungdomar",
                        "en": "young people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p1947",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "prosperity",
                        "welfare (well-being)",
                        "välfärd"
                    ],
                    "created_time": "2023-08-16T05:19:38.138600Z",
                    "last_modified_time": "2026-01-10T04:42:05.285206Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 1966,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "hyvinvointi",
                        "sv": "välmående",
                        "en": "well-being"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2433",
                    "has_user_editable_resources": false,
                    "alt_labels": [
                        "ikä-ihmiset",
                        "ikäihmiset",
                        "gamlingar",
                        "elderly",
                        "old people",
                        "older adults",
                        "senior citizens",
                        "iäkkäät",
                        "seniorit",
                        "vanhukset",
                        "gamla",
                        "seniorer",
                        "äldre människor",
                        "äldre personer",
                        "åldringar"
                    ],
                    "created_time": "2023-08-16T05:17:43.642288Z",
                    "last_modified_time": "2023-08-16T05:17:43.642316Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 19274,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "ikääntyneet",
                        "sv": "äldre",
                        "en": "older people"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p2787",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.135734Z",
                    "last_modified_time": "2023-08-16T05:19:44.135775Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 11943,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kirjastot",
                        "sv": "bibliotek",
                        "en": "libraries"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p360",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:44.191631Z",
                    "last_modified_time": "2023-08-16T05:19:44.191650Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 7188,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "kulttuuritapahtumat",
                        "sv": "kulturevenemang",
                        "en": "cultural events"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                },
                {
                    "id": "yso:p4354",
                    "has_user_editable_resources": false,
                    "alt_labels": [],
                    "created_time": "2023-08-16T05:19:41.188656Z",
                    "last_modified_time": "2023-08-16T05:19:41.188674Z",
                    "aggregate": false,
                    "deprecated": false,
                    "has_upcoming_events": true,
                    "n_events": 13453,
                    "image": null,
                    "data_source": "yso",
                    "publisher": "hy:kansalliskirjasto",
                    "replaced_by": null,
                    "name": {
                        "fi": "lapset (ikäryhmät)",
                        "sv": "barn (åldersgrupper)",
                        "en": "children (age groups)"
                    },
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api",
                    "@context": "http://schema.org",
                    "@type": "Keyword"
                }
            ],
            "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"
        }
    ]
}