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&keyword=yso%3Ap4354&page=69
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 7054,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=70",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=68"
    },
    "data": [
        {
            "id": "espoo_le:agm7fr5324",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr56vq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491121,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-10-17T14:27:20.273288Z",
                    "last_modified_time": "2025-10-17T14:27:20.273303Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/558523d5-82a0-44ad-978f-d012f4cee3a5.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Opetuksen kerho",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491121/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-17T14:51:47.030913Z",
            "last_modified_time": "2025-10-17T14:55:16.477088Z",
            "date_published": null,
            "start_time": "2025-10-31T15:00:00Z",
            "end_time": "2025-10-31T17: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,
            "provider": null,
            "short_description": {
                "fi": "\nTervetuloa arabiankieliseen kerhoon oppimaan, askartelemaan ja saamaan tukea koulunkäyntiin!\n",
                "en": "Welcome in a club in Arabic to learn, craft and to get support in your studies! "
            },
            "description": {
                "fi": "<p>Tervetuloa arabiankieliseen kerhoon oppimaan, askartelemaan ja saamaan tukea koulunkäyntiin!</p><p>&nbsp;</p><p>Kerho on suunnattu arabian kielen taitoisille kouluikäisille lapsille ja nuorille. Vetäjänä vapaaehtoinen opettaja.</p><p>&nbsp;</p><p>Kerho järjestetään joka&nbsp;perjantai klo 17-19. Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p>#Hello Espoo</p><p>&nbsp;</p>",
                "en": "<p>Welcome to Arabic learning club, where you could enjoy learning Arabic language, and doing different activities like craft and getting support in your studies!</p><p>&nbsp;</p><p>The club is aimed for school. No pre-registration. Welcome!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "ARABIANKIELINEN OPETUSKERHO LAPSILLE JA NUORILLE  ",
                "en": "EDUCATIONAL CLUB FOR CHILDREN AND YOUTH IN ARABIC"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr5324/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66830",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1434091,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-07T15:14:19.615377Z",
                    "last_modified_time": "2025-08-07T15:14:19.615392Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774943.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1434091/?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-08-07T15:14:19.489668Z",
            "last_modified_time": "2025-10-17T13:13:23.516860Z",
            "date_published": null,
            "start_time": "2025-11-20T08: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,
            "provider": null,
            "short_description": {
                "fi": "Itä-Helsingin musiikkiopisto tarjoaa tarinallisen joulukonsertin päiväkotiyleisölle ja koululaisille."
            },
            "description": {
                "fi": "<p>Itä-Helsingin musiikkiopisto tarjoaa tarinallisen joulukonsertin päiväkotiyleisölle ja koululaisille.</p><p>Itä-Helsingin musiikkiopisto (IHMO) on musiikin taiteen perusopetusta laajan oppimäärän mukaan antava oppilaitos, jonka juuret ovat länsimaisessa taidemusiikissa.</p><p>Klo 10:00 Konsertti päiväkotiyleisölle<br>Klo 11:30 Konsertti koululaisille</p><p>Rakastamme musiikkia ja tarjoamme monenlaisen musiikin tekemisen mahdollisuuksia. Tehtävämme on luoda iloa ja hyvinvointia niin, että tulevaisuudessa musiikki kuuluu kaikille. Lue lisää ihmo.fi</p><p>Vapaa pääsy</p><p>Ryhmille ennakkoilmoittautuminen osoitteessa https://kultus.hel.fi/fi</p>"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/284662684E70607AFA48D02B25A0EF31/Lastenkulttuuria_jokaiselle_Tarinallinen_konsertti_jouluisissa_tunnelmissa",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/284662684E70607AFA48D02B25A0EF31/Tarinallinen_konsertti_jouluisissa_tunnelmissa",
                "en": "http://www.vuotalo.fi/en/events/event/284662684E70607AFA48D02B25A0EF31/Tarinallinen_konsertti_jouluisissa_tunnelmissa"
            },
            "name": {
                "fi": "Lastenkulttuuria jokaiselle! Tarinallinen konsertti jouluisissa tunnelmissa",
                "sv": "Tarinallinen konsertti jouluisissa tunnelmissa",
                "en": "Tarinallinen konsertti jouluisissa tunnelmissa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66830/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm62m6irm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-16T12:37:32.068022Z",
            "last_modified_time": "2025-10-17T09:53:52.463149Z",
            "date_published": null,
            "start_time": "2025-11-03T14:00:00Z",
            "end_time": "2025-11-03T16: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,
            "provider": null,
            "short_description": {
                "fi": "Peliviikon biljarditurnaus Ison Omenan kirjastossa alle 12-vuotiaille.",
                "sv": "Spelveckans biljardturnering på Iso Omena bibliotek för barn under 12 år.",
                "en": "Game Week billiards tournament at Iso Omena Library for children under 12."
            },
            "description": {
                "fi": "<p>Biljarditurnaus alle 12-vuotiaille kirjaston Vox-tilassa. Ilmoittautuminen turnaukseen paikan päällä.</p>",
                "sv": "<p>Biljardturnering för under 12-åringar i bibliotekets Vox-utrymme. Anmälan till turneringen sker på plats.</p>",
                "en": "<p>Billiards tournament for children under 12 in the library’s Vox space. Registration for the tournament takes place on site.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Peliviikko: Biljarditurnaus alle 12-vuotiaille",
                "sv": "Spelvecka: Biljardturnering för barn under 12 år",
                "en": "Game Week: Billiards Tournament for Children Under 12"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Vox",
                "sv": "Vox",
                "en": "Vox"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm62m6irm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm7dnihoq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-17T09:51:40.669923Z",
            "last_modified_time": "2025-10-17T09:51:40.669941Z",
            "date_published": null,
            "start_time": "2025-11-03T12:30:00Z",
            "end_time": "2025-11-09T15: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,
            "provider": null,
            "short_description": {
                "fi": "Peliviikon Seal Splash -hyljepeliturnaus Ison Omenan kirjastossa. ",
                "sv": "Spelveckans Seal Splash – sälspelturnering i biblioteket Iso Omena.",
                "en": "Game Week's Seal Splash – Seal Game Tournament at the Iso Omena Library."
            },
            "description": {
                "fi": "<p>Osallistu peliviikon huikeaan Seal Splash -hyljepeliturnaukseen kirjaston Vox tilassa. Peliä pelataan tietokoneella selaimessa. Parhaan pelaajan yhteystiedot ilmoitetaan luvalla Kansalliselle audiovisuaaliselle instituutille. Suomen kolmelle parhaalle pelaajalle on luvassa huikeita pelipalkintoja!</p><p><br></p>",
                "sv": "<p>Delta i Spelveckans fantastiska Seal Splash – sälspelturnering i bibliotekets Vox-utrymme. Spelet spelas på datorn i webbläsaren. Kontaktuppgifterna för den bästa spelaren kommer att delas med Finlands nationella audiovisuella institut med tillstånd. De tre bästa spelarna i Finland får fantastiska spelpriser!</p>",
                "en": "<p>Join the amazing Seal Splash – Seal Game Tournament during Game Week in the library’s Vox space. The game is played on a computer in a web browser. The contact details of the top player will be shared with the National Audiovisual Institute with permission. The top three players in Finland will receive amazing gaming prizes!</p>"
            },
            "info_url": {
                "fi": "https://www.peliviikko.fi/",
                "sv": "https://www.peliviikko.fi/",
                "en": "https://www.peliviikko.fi/"
            },
            "name": {
                "fi": "Peliviikko: Seal Splash -hyljepeliturnaus",
                "sv": "Spelveckan: Seal Splash – sälspelturnering",
                "en": "Game Week: Seal Splash – Seal Game Tournament"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Vox",
                "sv": "Vox",
                "en": "Vox"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7dnihoq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66404",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/lastenteatteriloihu/",
                        "sv": "https://www.lippu.fi/artist/lastenteatteriloihu/",
                        "en": "https://www.lippu.fi/artist/lastenteatteriloihu/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490998,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-03T10:13:19.894255Z",
                    "last_modified_time": "2025-10-03T10:13:19.894268Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774080.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490998/?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-10-03T10:13:19.769728Z",
            "last_modified_time": "2025-10-17T08:13:45.731487Z",
            "date_published": null,
            "start_time": "2025-10-25T12: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,
            "provider": null,
            "short_description": {
                "fi": "Lastenteatteri Loihun seikkailunäytelmässä ratkaistaan arvoitusta ullakolla.",
                "sv": "Barnteatern Loihus äventyrsspel löser ett mysterium på vinden.",
                "en": "Lastenteatteri Loihu's adventure play about solving a mystery in the attic."
            },
            "description": {
                "fi": "<p>Lastenteatteri Loihun seikkailunäytelmässä ratkaistaan arvoitusta ullakolla.</p><p>Kytysen sisarukset ovat löytäneet talonsa ullakolta Kyldemar-sedän ikivanhan seikkailunhalua herättävän kirjeen. Repaleinen kirje on vuosikymmenten aikana selvästi kokenut kovia, mutta erotettavissa ovat vielä kirjeen viimeiset arvoitukselliset sanat: ”… ja niin löysin aarteen kirjastosta. Rakauvella Kyltemaar”.</p><p>Kyldemar-sedän kirjeen sisältö alkaa kaikua sisarusten harmaissa aivosoluissa ja yhdessä he päättävät löytää suuren aarteen.</p><p>Kesto: n. 40 min</p>",
                "sv": "<p>Barnteatern Loihus äventyrsspel löser ett mysterium på vinden.</p><p>Syskonen Kytynen har hittat ett gammalt brev från sin farbror Kyldemar på vinden i sitt hus, ett brev som väcker äventyrslusten. Det slitna brevet har uppenbarligen gått igenom en tuff period under årtiondena, men de sista gåtfulla orden i brevet går fortfarande att urskilja: \"... och så hittade jag en skatt i biblioteket. Kära hälsningar Kyltemaar\".</p><p>Innehållet i farbror Kyldemars brev börjar eka i syskonens grå hjärnceller och tillsammans bestämmer de sig för att hitta den stora skatten.</p><p>Längd: ca 40 minuter</p>",
                "en": "<p>Lastenteatteri Loihu's adventure play about solving a mystery in the attic.</p><p>The Kytynen siblings have found an ancient letter from their Uncle Kyldemar in the attic of their house, a letter that sparks the spirit of adventure. The tattered letter has clearly been through a lot over the decades, but the last enigmatic words of the letter are still discernible: \"... and so I found a treasure in the library. With love, Kyltemaar\".</p><p>The content of Uncle Kyldemar's letter begins to resonate in the siblings' grey brain cells, and, together, they decide to find the great treasure.</p><p>Duration: approx. 40 min</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C0BD4CF077B13448271AF24B7CF960D9/Lastenteatteri_Loihu_Kyldemar-sedan_kirje_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C0BD4CF077B13448271AF24B7CF960D9/Lastenteatteri_Loihu_Kyldemar-sedan_kirje_",
                "en": "http://www.malmitalo.fi/en/events/event/C0BD4CF077B13448271AF24B7CF960D9/Lastenteatteri_Loihu_Kyldemar-sedan_kirje_"
            },
            "name": {
                "fi": "Lastenteatteri Loihu: Kyldemar-sedän kirje",
                "sv": "Lastenteatteri Loihu: Kyldemar-sedän kirje",
                "en": "Lastenteatteri Loihu: Kyldemar-sedän kirje"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66404/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67083",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490948,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-30T09:13:50.733927Z",
                    "last_modified_time": "2025-09-30T09:13:50.733941Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777792.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490948/?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-09-30T09:13:50.609426Z",
            "last_modified_time": "2025-10-17T07:13:52.066128Z",
            "date_published": null,
            "start_time": "2025-11-15T10: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,
            "provider": null,
            "short_description": {
                "fi": "Hopi hopi! Kaikki lapset ja lapsenmieliset ovat lämpimästi tervetulleita Kanneltalon Lasten lauantaihin.",
                "sv": "Hopi hopi. Alla barn och barnasinnade är varmt välkomna till Barnens lördag på Gamlasgården.",
                "en": "Chop chop! All children and like-minded adults are warmly welcome to Kanneltalo’s Children's Saturday."
            },
            "description": {
                "fi": "<p>Hopi hopi! Kaikki lapset ja lapsenmieliset ovat lämpimästi tervetulleita Kanneltalon Lasten lauantaihin.</p><p>Klovni Marttakin on kutsuttu mukaan vapaapäivän viettoon! Maksutonta ohjelmaa ja tekemistä löydät galleriasta ja kirjastosta.</p><p>AULA</p><p>klo 12-15 Klovni Martta (Taina Mäki-Iso) on tosi innoissaan, koska hänet on kutsuttu Lasten lauantai -tapahtumaan! Marttaa kyllä vähän ihmetyttää, miten lapsen voi tunnistaa. Mikä oikein tekee lapsesta lapsen? Ja voiko aikuisessa - tai robotissa - olla lasta tai lapsenmieltä? Martan voi tavata joko hänen ihmettelytoimipisteellään tai kiertelemässä lasten seassa tapahtumapaikalla.</p><p>GALLERIA</p><p>klo 12-14 Työpajassa askarrellaan ennennäkemättömiä robotteja kuvakirjataiteilija Linda Bondestamin kanssa. Käytämme erilaisia kiehtovia materiaaleja näiden persoonallisten tyyppien valmistamiseen.<br>klo 12-15 Linda Bondestamin näyttely: Hopi hopi – toivoa paremmasta maailmasta  <br>Linda Bondestam: Hopi hopi - toivoa paremmasta maailmasta<br> <br>KIRJASTO<br>klo 12.30-13 Satutuokio (Rotunda) <br>klo 13.30-15 Bee botit matkaavat ympäri maailmaa -koodausleikkituokio (Rotunda)<br>klo 12-15 Legotyöpaja: Tulevaisuuden kaupunki (Tempo)<br> <br>KONSERTTISALI<br>klo 14-14.40 Pikku Papun Orkesteri & Liisa Kallio (kieli suomi, liput 6 € myynnissä Lippu.fi)<br>Pikku Papu Orkesteri & Liisa Kallio</p><p>Aula, galleria, kirjasto (vapaa pääsy)<br>Konsertti maksullinen</p>",
                "sv": "<p>Hopi hopi. Alla barn och barnasinnade är varmt välkomna till Barnens lördag på Gamlasgården.</p><p>Clownen Martta har också bjudits in för att delta i firandet! Kostnadsfritt program och upplevelser hittar du på galleriet och i biblioteket.</p><p>AULAN</p><p>12–15 Clownen Martta (Taina Mäki-Iso) är mycket glad över att ha fått en inbjudan till evenemanget Barnens lördag! Men Martta funderar nog lite på hur man kan känna igen ett barn. Vad är det egentligen som gör ett barn till ett barn? Och kan en vuxen – eller en robot – vara ett barn eller ha ett barnasinne? Du kan träffa Marta antingen vid hennes funderingsställe eller när hon vandrar runt i lokalen bland barnen.</p><p>GALLERIET</p><p>kl. 12–14 En verkstad där du får göra helt nya robotar tillsammans med illustratören Linda Bondestam. Vi använder en mängd olika fascinerande material för att skapa dessa personliga typer.<br>kl. 12–15 Linda Bondestams utställning: Hopi hopi - med hopp om en bättre värld<br>Linda Bondestam: Hopi hopi - med hopp om en bättre värld</p><p>BIBLIOTEKET<br>kl. 12.30–13.00 Sagostund (Rotundan)<br>kl. 13.30–15 Bee botarna reser runt i världen, kodningslekstund (Rotunda)<br>12-15 Legoverkstad: Framtidens stad (Tempo)</p><p>KONSERTSALEN<br>kl. 14-14.40 Pikku Papun Orkesteri & Liisa Kallio (på finska, biljetter 6 € till salu på Lippu.fi)<br>Pikku Papu Orkesteri & Liisa Kallio</p><p>Aulan, galleriet, biblioteket (gratis inträde)<br>Avgiftsbelagd konsert</p>",
                "en": "<p>Chop chop! All children and like-minded adults are warmly welcome to Kanneltalo’s Children's Saturday.</p><p>Clown Martta has also been invited to join the fun! Be sure to also visit the gallery and library for a variety of free-of-charge activities.</p><p>LOBBY</p><p>12.00–15.00 Clown Martta (Taina Mäki-Iso) is very excited to have been invited to the Children's Saturday event! But Martta is a little puzzled as to how you can identify a child. What exactly makes a child a child? And can an adult – or a robot – be like a child or have a childlike mind? You can meet Martta either at her wonder station or walking around the venue among the children.</p><p>GALLERY</p><p>12.00–14.00 Workshop for making never-before-seen robots with illustrator Linda Bondestam. We will be using a variety of fascinating materials to create these distinctive guys.<br>12.00–15.00 Linda Bondestam's exhibition: Chop chop – Hope for a Better World<br>Linda Bondestam: Chop chop – Hope for a Better World</p><p>LIBRARY<br>12.30–13.00 Story time (Rotunda)<br>13.30–15.00 Bee bots travel around the world - coding play session (Rotunda)<br>12.00–15.00 Lego workshop: City of the future (Tempo)</p><p>CONCERT HALL<br>14.00–14.40 Pikku Papun Orkesteri & Liisa Kallio (language: Finnish, tickets €6 available at Lippu.fi)<br>Pikku Papu Orkesteri & Liisa Kallio</p><p>Lobby, gallery, library (free entry)<br>The concert is subject to a charge.</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/13B29EF9119C3229B66CD0D08CD4BFF4/Lasten_lauantai",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/13B29EF9119C3229B66CD0D08CD4BFF4/Barnens_lordag",
                "en": "http://www.kanneltalo.fi/en/events/event/13B29EF9119C3229B66CD0D08CD4BFF4/Children_s_Saturday"
            },
            "name": {
                "fi": "Lasten lauantai",
                "sv": "Barnens lördag",
                "en": "Children’s Saturday"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67083/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66523",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/greta-tuotanto-saiturin-joulu/",
                        "sv": "https://www.lippu.fi/artist/greta-tuotanto-saiturin-joulu/",
                        "en": "https://www.lippu.fi/artist/greta-tuotanto-saiturin-joulu/"
                    },
                    "price": {
                        "fi": "99 € (perhelippu) / 29,50€ / 24,50€",
                        "sv": "99 € (perhelippu) / 29,50€ / 24,50€",
                        "en": "99 € (perhelippu) / 29,50€ / 24,50€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491063,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-09T11:14:34.470555Z",
                    "last_modified_time": "2025-10-09T11:14:34.470578Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774891.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491063/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-10-09T11:14:34.317065Z",
            "last_modified_time": "2025-10-16T16:13:55.075052Z",
            "date_published": null,
            "start_time": "2025-12-11T16: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,
            "provider": null,
            "short_description": {
                "fi": "Saiturin joulu on hurmaava jouluesitys sinulle, joka rakastat musiikkia, hersyvää naurua ja Charles Dickensin tarinoiden maailmaa!",
                "sv": "En julsaga är en underbar julföreställning för dig som älskar musik, härligt skratt och Charles Dickens berättelser!",
                "en": "A Christmas Carol is a charming holiday season show for anyone who loves music, hearty laughter and the world of Charles Dickens' stories!"
            },
            "description": {
                "fi": "<p>Saiturin joulu on hurmaava jouluesitys sinulle, joka rakastat musiikkia, hersyvää naurua ja Charles Dickensin tarinoiden maailmaa!</p><p>Englantilaisen Spymonkey-teatterin taiteellinen johtaja Toby Park teki paluunsa Suomeen ohjaamalla näyttämölle musiikillisen iloittelun yhdestä brittiläisen kulttuurin tunnetusta helmestä. Kekseliäs ja hulvaton esitys kiteyttää joulun ja ihmisyyden sanoman yhdistäen teatteria, fyysistä komediaa sekä musiikkia.</p><p>Näyttämöllä taituroivat Fabulous Bäckström Brothers -tuotannoista tutut Jouni ja Petri Bäckström sekä Reetta Ristimäki, jotka ovat saaneet rinnalleen upeaäänisen ja hurmaavan laulaja-näyttelijä Emmi Hatjasalon. Tätä Greta Tuotannon esitystä muistellaan lämmöllä vielä tulevinakin jouluina.</p><p>Tapahtuman kesto: 1 tunti 40 min (sis. väliaika)</p><p>TYÖRYHMÄ<br>Esiintyjät: Jouni Bäckström, Petri Bäckström, Reetta Ristimäki, Emmi Hatjasalo<br>Alkuperäisteoksen dramatisointi: Reetta Ristimäki<br>Osakäsikirjoitus: Jouni Bäckström<br>Musiikkidramaturgia: Jouni Bäckström ja työryhmä<br>Sävellys ja sovitus: mm. Jouni Bäckström, Markus Fagerudd, Jukka Nykänen<br>Ohjaus: Toby Park<br>Apulaisohjaaja: Tommi Bäckström<br>Pukusuunnittelu: Marja Uusitalo<br>Valosuunnittelu: Tuittu Teivainen<br>Äänisuunnittelu: Max Marshall<br>Alkuperäisteos: Charles Dickensin Saiturin joulu<br>Ikäsuositus: Yli 7-vuotiaille<br>Esityskieli: suomi<br>Tuotanto: Greta Tuotanto</p><p>Esityksen ensi-ilta toteutettiin 5.11.2021 Greta Tuotannon, Fabulous Bäckström Brothersin ja Musiikkiteatteri Kapsäkin yhteistuotantona.</p><p>“Dickens-klassikko viihdyttää ja soi moniäänisenä. Taidokasta musisointia kuuntelee mielellään ja parhaimmillaan moniäänisinä soivat musiikkinumerot onnistuvat myös koskettamaan.” <br>– Demokraatti</p><p>“Vuoden lopun yksi onnistuneimpia joulutunnelmaan virittäjiä.” <br>– Teatteri & Tanssi + Sirkus -lehti</p><p>“Tarinan ympärille rakennetun joululaulujen potpurin vauhdissa on ilo olla.” <br>– Hanna Helavuori</p><p>“Saiturin joulun magiikka lumoaa. Saamme kokea esityksen, jossa on tarjolla kaunista, moniäänistä musiikkia, hersyvää naurua ja dickensiläisen tarinan maagista maailmaa.”<br>– Risto Kolanen</p>",
                "sv": "<p>En julsaga är en underbar julföreställning för dig som älskar musik, härligt skratt och Charles Dickens berättelser!</p><p>Toby Park, den konstnärliga ledaren för den engelska Spymonkey-teatern, återvände till Finland genom att regissera en känd brittisk kulturpärla till en musikfylld glädjestund på scenen. Den uppfinningsrika och skrattlockande föreställningen sammanfattar julens och mänsklighetens budskap och förenar teater, fysisk komedi och musik.</p><p>På scenen ser vi Fabulous Bäckström Brothers Jouni och Petri Bäckström samt Reetta Ristimäki, som får sällskap av den underbara och charmiga sångerskan och skådespelaren Emmi Hatjasalo. Greta Tuotantos föreställning kommer att minnas med värme även kommande julhelger.</p><p>Evenemangets längd: 1 h 40 min (inkl. paus)</p><p>ARBETSGRUPP<br>På scenen: Jouni Bäckström, Petri Bäckström, Reetta Ristimäki, Emmi Hatjasalo<br>Dramatisering av originalverket: Reetta Ristimäki<br>Delmanus: Jouni Bäckström<br>Musikdramaturgi: Jouni Bäckström och arbetsgruppen<br>Komposition och arrangemang: bl.a. Jouni Bäckström, Markus Fagerudd, Jukka Nykänen<br>Regi: Toby Park<br>Assisterande regissör: Tommi Bäckström<br>Kostym: Marja Uusitalo<br>Ljusdesign: Tuittu Teivainen<br>Ljuddesign: Max Marshall<br>Originalverk: Charles Dickens En julsaga<br>Åldersrekommendation: Över 7 år<br>Föreställningens språk: finska<br>Produktion: Greta Tuotanto<br>Föreställningen hade premiär 5.11.2021 som en samproduktion mellan Greta Tuotanto, Fabulous Bäckström Brothers och musikteatern Kapsäki.</p><p>“Dickensklassikern underhåller och ljuder flerstämmigt. Man lyssnar gärna till det konstfulla musicerandet och musiknumren som ljuder flerstämmigt som bäst lyckas även beröra.” <br>– Demokraatti</p><p>“En av de bästa höjarna av julstämningen i slutet av året.” <br>– Tidningen Teatteri & Tanssi + Sirkus</p><p>“Det är en glädje att känna farten av julsångspotpurriet som byggts upp kring berättelsen.” <br>– Hanna Helavuori</p><p>“En julsaga förtjuser med sin magi. Vi för uppleva en föreställning som erbjuder vacker, flerstämmig musik, bullrande skratt och den magiska världen som Dickens skapat.”<br>– Risto Kolanen</p>",
                "en": "<p>A Christmas Carol is a charming holiday season show for anyone who loves music, hearty laughter and the world of Charles Dickens' stories!</p><p>A Christmas Carol is a charming holiday season show for anyone who loves music, hearty laughter and the world of Charles Dickens' stories!</p><p>Toby Park, artistic director of the English Spymonkey Theatre, made his return to Finland by directing a musical celebration inspired by a beloved classic of British culture. This inventive and hilarious performance captures the spirit of Christmas and the essence of humanity by blending theatre, physical comedy and music.</p><p>On stage are Jouni and Petri Bäckström, familiar from Fabulous Bäckström Brothers productions, and Reetta Ristimäki, joined by the wonderfully talented and charming singer-actress Emmi Hatjasalo. This Greta Productions performance will be warmly remembered for many Christmases to come.</p><p>Event duration: 1 hour 40 minutes (incl. intermission)</p><p>CREATIVE TEAM<br>Performers: Jouni Bäckström, Petri Bäckström, Reetta Ristimäki and Emmi Hatjasalo<br>Dramatisation of the original work: Reetta Ristimäki<br>Co-scriptwriting: Jouni Bäckström<br>Music dramaturgy: Jouni Bäckström and the creative team<br>Composition and arrangement: e.g. Jouni Bäckström, Markus Fagerudd and Jukka Nykänen<br>Directed by: Toby Park<br>Assistant Director: Tommi Bäckström<br>Costume design: Marja Uusitalo<br>Light design: Tuittu Teivainen<br>Sound design: Max Marshall<br>Original work: A Christmas Carol by Charles Dickens<br>Recommended age: For persons aged 7 and above<br>Performance language: Finnish<br>Production: Greta Productions<br>The premiere took place on 5 November 2021 as a co-production between Greta Productions, Fabulous Bäckström Brothers and Music Theatre Kapsäkki.</p><p>\"A Dickens classic that genuinely entertains and resonates. The skilful musicianship is a pleasure to listen to, and at its best, the multilayered musical numbers truly touch the heart.\" <br>– Demokraatti</p><p>\"One of the best mood-setters for the end-of-year holiday spirit.\" <br>– Teatteri & Tanssi + Sirkus magazine</p><p>\"What a joy to be swept up in the lively medley of Christmas songs built around the story.\" <br>– Hanna Helavuori</p><p>\"The magic of A Christmas Carol is enchanting. It is a show filled with beautiful, multilayered music, hearty laughter and the magical world of a Dickensian tale.\"<br>– Risto Kolanen</p>"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/BB9199CBF079FA16E8DCAF624FF72965/Greta_Tuotanto_Saiturin_joulu",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/BB9199CBF079FA16E8DCAF624FF72965/Greta_Tuotanto_Saiturin_joulu",
                "en": "http://www.kanneltalo.fi/en/events/event/BB9199CBF079FA16E8DCAF624FF72965/Greta_Tuotanto_Saiturin_joulu"
            },
            "name": {
                "fi": "Greta Tuotanto: Saiturin joulu",
                "sv": "Greta Tuotanto: Saiturin joulu – En julsaga",
                "en": "Greta Tuotanto: Saiturin joulu – A Christmas Carol"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66523/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67073",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490881,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-24T07:13:25.461694Z",
                    "last_modified_time": "2025-09-24T07:13:25.461706Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772440.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490881/?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-09-24T07:13:25.339744Z",
            "last_modified_time": "2025-10-16T12:14:13.687996Z",
            "date_published": null,
            "start_time": "2025-12-17T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Astrid Lindgrenin joulutarinoita vie katsojansa seikkailulle Astrid Lindgrenin rakastetuimpien hahmojen matkassa ja luo joulutunnelmaa kaikenikäisille.",
                "sv": "Astrid Lindgrens julberättelser tar dig med på ett äventyr tillsammans med Astrid Lindgrens mest älskade karaktärer och skapar julstämning för alla åldrar.",
                "en": "Christmas with Astrid Lindgren takes you on an adventure with some of Astrid Lindgren's most beloved characters, creating a Christmas atmosphere for all ages."
            },
            "description": {
                "fi": "<p>Astrid Lindgrenin joulutarinoita vie katsojansa seikkailulle Astrid Lindgrenin rakastetuimpien hahmojen matkassa ja luo joulutunnelmaa kaikenikäisille.</p><p>Qvisten Animationin uutuus sopii mainiosti pienimpien ensielokuvaksi. Elokuvassa on neljä animaatiotarinaa, jotka käkikellon Kello-käki näyttää joulua odottaville lapsille. Tapaamme Vaahteramäen Eemelin, Pekka Peukaloisen, ketun ja tontun sekä Taina Tomeran. Elokuva vie seikkailuun Astrid Lindgrenin tarinoiden maailmaan ja luo joulutunnelmaa niin nuorille kuin vanhoillekin. Elokuva on dubattu suomeksi ja tekstitetty ruotsiksi.</p><p>Ensi-ilta: 05.12.2024<br>Ikäraja: Sallittu<br>Pituus: 52 min.<br>Kieli: suomi<br>Tekstitys: ruotsi</p><p>Ryhmille pakollinen ilmoittautuminen osoitteessa: kultus.hel.fi</p>",
                "sv": "<p>Astrid Lindgrens julberättelser tar dig med på ett äventyr tillsammans med Astrid Lindgrens mest älskade karaktärer och skapar julstämning för alla åldrar.</p><p>Den här nya filmen från Qvisten Animation är perfekt som första film för de minsta. Filmen innehåller fyra animerade berättelser som gökurets gök visar för barn som väntar på julen. Vi får träffa Emil i Lönneberga, Nils Karlsson Pyssling, Tomten och Räven samt Kajsa Kavat. Filmen för tittarna ut på ett äventyr i Astrid Lindgrens sagovärld och skapar julstämning för både stora och små. Filmen är dubbad på finska och textad på svenska.</p><p>Premiär: 05.12.2024<br>Åldersgräns: Tillåten<br>Längd: 52 min.<br>Språk: finska<br>Textning: svenska</p><p>Obligatorisk registrering för grupper på: kultus.hel.fi</p>",
                "en": "<p>Christmas with Astrid Lindgren takes you on an adventure with some of Astrid Lindgren's most beloved characters, creating a Christmas atmosphere for all ages.</p><p>This new film from Qvisten Animation is a perfect first film for small children. The film features four animated stories that the cuckoo in the cuckoo clock shows to children waiting for Christmas. These stories introduce us to Emil, Simon Small, Brenda Brave and Tomten and the Fox. The film takes you on an adventure in the world of Astrid Lindgren's stories, creating a Christmas atmosphere for both young and older viewers. The film is dubbed in Finnish and subtitled in Swedish.</p><p>Premiere: 15 December 2024<br>Age limit: suitable for all ages<br>Duration: 52 min<br>Language: Finnish<br>Subtitles: Swedish</p><p>Mandatory registration for groups at kultus.hel.fi</p>"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C3EB5719A980CC49EB11DDCD23E02D11/Astrid_Lindgrenin_joulutarinoita",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C3EB5719A980CC49EB11DDCD23E02D11/Astrid_Lindgrenin_joulutarinoita",
                "en": "http://www.vuotalo.fi/en/events/event/C3EB5719A980CC49EB11DDCD23E02D11/Astrid_Lindgrenin_joulutarinoita"
            },
            "name": {
                "fi": "Astrid Lindgrenin joulutarinoita – Jouluinen skidikino",
                "sv": "Astrid Lindgrenin joulutarinoita – Jouluinen skidikino",
                "en": "Astrid Lindgrenin joulutarinoita – Jouluinen skidikino"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67073/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm7biulfq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-16T10:40:28.440803Z",
            "last_modified_time": "2025-10-16T10:40:28.440822Z",
            "date_published": "2025-10-17T05:00:00Z",
            "start_time": "2025-10-31T13:00:00Z",
            "end_time": "2025-10-31T15: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,
            "provider": null,
            "short_description": {
                "fi": "Ison Omenan kirjaston halloween pakohuone lapsille ja nuorille.",
                "sv": "Halloween-escape room för barn och unga på Iso Omena bibliotek.",
                "en": "Iso Omena library's halloween escaperoom for children and youth. "
            },
            "description": {
                "fi": "<p>Lapsille ja nuorille suunnattu Halloween-teemainen pakohuone kirjaston VOX tilassa klo 15-17. Pakohuoneeseen voi tulla yksin tai yhdessä kavereiden kanssa!</p>",
                "sv": "<p>Ett Halloween-tematiskt escape room för barn och unga i bibliotekets VOX-utrymme kl. 15–17. Du kan komma till escape roomet ensam eller tillsammans med vänner!</p>",
                "en": "<p>A Halloween-themed escape room for children and youth in the library’s VOX space from 3 to 5 p.m. You can come to the escape room alone or with friends!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Halloween pakohuone",
                "sv": "Halloween Escape room",
                "en": "Halloween Escape room"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "VOX",
                "sv": "VOX",
                "en": "VOX"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7biulfq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2z5ibi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5avy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5bgq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22bfuy/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-11T11:17:23.868946Z",
            "last_modified_time": "2025-10-16T10:31:53.281949Z",
            "date_published": null,
            "start_time": "2025-08-14T13:00:00Z",
            "end_time": "2025-12-11T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Tule oppimaan ja pelaamaan Ligrettoa.",
                "sv": "Kom och lär dig och spela Ligretto.",
                "en": "Come learn and play the Ligretto."
            },
            "description": {
                "fi": "<p>Haluatko pelata Ligrettoa?</p><p>Tai haluatko oppia pelaamaan Ligrettoa? Ligretto on hauska korttipeli, josta vauhtia ja jännitystä ei puutu.</p><p>Tule pelaamaan Ligrettoa torstaisin klo 16-18 Entressen kirjaston pajaan Ligrettokerhoon!</p>",
                "sv": "<p>Vill du spela Ligretto?</p><p>Eller vill du lära dig spela Ligretto? Ligretto är ett roligt kortspel som är fullt av fart och spänning.</p><p>Kom och spela Ligretto på torsdagar klockan 16-18 på Ligrettoklubben på Entressebiblioteket!</p>",
                "en": "<p>Do you want to play Ligretto?</p><p>Or do you want to learn how to play Ligretto? Ligretto is a fun card game that is full of speed and excitement.</p><p>Come play Ligretto on Thursdays from 4-6pm at the Ligretto Club at the Entresse Library!</p>"
            },
            "info_url": null,
            "name": {
                "fi": "PERUTTU: Ligretto-kerho ",
                "sv": "AVBRUTEN: Ligrettoklubben",
                "en": "CANCELLED: Ligretto Club"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z5ibi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm6nrbagu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrbcau/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491099,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-15T06:28:46.622009Z",
                    "last_modified_time": "2026-03-11T08:47:16.359204Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/aa8fb267-f840-4582-9896-6e420a631013.jpg",
                    "name": "",
                    "cropping": "0,0,480,480",
                    "photographer_name": "Kissojen omistaja Jaana",
                    "alt_text": "lukukissat Marvin ja Lenni poseeraavat valjaat päällä lastenkirjojen kanssa sohvalla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491099/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-10-15T06:31:48.927528Z",
            "last_modified_time": "2025-10-15T08:34:11.251609Z",
            "date_published": null,
            "start_time": "2025-10-25T10:00:00Z",
            "end_time": "2025-10-25T11: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,
            "provider": null,
            "short_description": {
                "fi": "Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 25.10., 22.11. ja 13.12. klo 13-14.30",
                "en": "Marvin and Lenni will be listening patiently on Saturdays, October 25, November 22, and December 13, from 1:00 p.m. to 2:30 p.m."
            },
            "description": {
                "fi": "Entressen kirjastolla pääsee nyt lukemaan myös kissoille!<p><strong>Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 25.10., 22.11. ja 13.12. klo 13-14.30</strong></p><p>Voit varata oman rauhallisen lukuhetken, jos lukeminen tuntuu hankalalta tai jännittää. Voit tulla harjoittelemaan Marvinin ja Lennin kanssa myös jos haluat harjoitella kieltä. Kissoille voi lukea millä kielellä tahansa.</p><p><br></p><p><br></p><p>Lukulemmikki</p><p>#HelloEspoo</p>",
                "en": "The Entressen Library now offers reading sessions for cats!<p><strong>Marvin and Lenni will be listening patiently on Saturdays, October 25, November 22, and December 13, from 1:00 p.m. to 2:30 p.m.</strong></p><p>You can book your own reading time if reading feels difficult or makes you nervous. You can also come and practice with Marvin and Lenni if you want to practice the language. You can read to cats in any language.</p><p><br></p><p>#HelloEspoo</p>"
            },
            "info_url": {
                "fi": "https://suomenkarvakaverit.fi/",
                "en": "https://suomenkarvakaverit.fi/"
            },
            "name": {
                "fi": "Lukukissat Marvin ja Lenni tavattavissa",
                "en": "Reading cats Marvin and Lenni available for a meeting"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lastenosasto",
                "en": "children's section"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrbagu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm6nrba74",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrbcau/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491099,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-15T06:28:46.622009Z",
                    "last_modified_time": "2026-03-11T08:47:16.359204Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/aa8fb267-f840-4582-9896-6e420a631013.jpg",
                    "name": "",
                    "cropping": "0,0,480,480",
                    "photographer_name": "Kissojen omistaja Jaana",
                    "alt_text": "lukukissat Marvin ja Lenni poseeraavat valjaat päällä lastenkirjojen kanssa sohvalla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491099/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-10-15T06:31:49.060300Z",
            "last_modified_time": "2025-10-15T08:34:11.203298Z",
            "date_published": null,
            "start_time": "2025-11-22T11:00:00Z",
            "end_time": "2025-11-22T12: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,
            "provider": null,
            "short_description": {
                "fi": "Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 25.10., 22.11. ja 13.12. klo 13-14.30",
                "en": "Marvin and Lenni will be listening patiently on Saturdays, October 25, November 22, and December 13, from 1:00 p.m. to 2:30 p.m."
            },
            "description": {
                "fi": "Entressen kirjastolla pääsee nyt lukemaan myös kissoille!<p><strong>Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 25.10., 22.11. ja 13.12. klo 13-14.30</strong></p><p>Voit varata oman rauhallisen lukuhetken, jos lukeminen tuntuu hankalalta tai jännittää. Voit tulla harjoittelemaan Marvinin ja Lennin kanssa myös jos haluat harjoitella kieltä. Kissoille voi lukea millä kielellä tahansa.</p><p><br></p><p><br></p><p>Lukulemmikki</p><p>#HelloEspoo</p>",
                "en": "The Entressen Library now offers reading sessions for cats!<p><strong>Marvin and Lenni will be listening patiently on Saturdays, October 25, November 22, and December 13, from 1:00 p.m. to 2:30 p.m.</strong></p><p>You can book your own reading time if reading feels difficult or makes you nervous. You can also come and practice with Marvin and Lenni if you want to practice the language. You can read to cats in any language.</p><p><br></p><p>#HelloEspoo</p>"
            },
            "info_url": {
                "fi": "https://suomenkarvakaverit.fi/",
                "en": "https://suomenkarvakaverit.fi/"
            },
            "name": {
                "fi": "Lukukissat Marvin ja Lenni tavattavissa",
                "en": "Reading cats Marvin and Lenni available for a meeting"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Lastenosasto",
                "en": "children's section"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrba74/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66851",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1482100,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-14T08:14:18.592580Z",
                    "last_modified_time": "2025-08-14T08:14:18.592599Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775735.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1482100/?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-08-14T08:14:18.485457Z",
            "last_modified_time": "2025-10-14T13:13:47.981461Z",
            "date_published": null,
            "start_time": "2025-10-15T10: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,
            "provider": null,
            "short_description": {
                "fi": "Iki-ihana Naapurini Totoro!",
                "sv": "Den underbara Min Granne Totoro!",
                "en": "The adorable My Neighbor Totoro!"
            },
            "description": {
                "fi": "<p>Iki-ihana Naapurini Totoro!</p><p>Totoron nostalginen, 1930-luvun Showaan, Japaniin sijoittuva luonnonläheinen maailma ja tarina uuteen taloon muuttavista siskoksista sekä viereisessä metsässä elävistä maagisista karvaturreista sisältää useita Miyazakin tuotannon kantavia teemoja.</p><p>Ikäraja: S<br>Kesto: 1 t 26 min <br>Kieli: suomi<br>Tekstitys: ruotsi</p><p>Vapaa pääsy. Paikkoja rajoitetusti.</p><p>Elokuva esitetään Annantalon auditoriossa.</p>",
                "sv": "<p>Den underbara Min Granne Totoro!</p><p>Totoros nostalgiska, naturnära värld från 1930-talets Showa i Japan och berättelsen om systrarna som flyttar in i ett nytt hus samt de magiska varelserna som lever i den närliggande skogen innehåller flera centrala teman i Miyazakis produktion.</p><p>Åldersgräns: Tillåten för alla åldrar<br>Längd: 1 h 26 min. <br>Språk: finska<br>Textning: svenska</p><p>Fritt inträde. Begränsat antal platser tillgängliga.</p>",
                "en": "<p>The adorable My Neighbor Totoro!</p><p>The nostalgic world of Totoro, set in the 1930s Shōwa era Japan, and the story of the sisters who move into a new house and the magical furballs that live in the nearby forest, contains many of the themes that have been central to Miyazaki's work.</p><p>Age rating: G<br>Duration: 1 h 26 min <br>Language: Finnish<br>Subtitles: Swedish</p><p>Free entry. Limited availability.</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/76B0814531C09E212295D931BF55894C/Lomakino_Naapurini_Totoro_S_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/76B0814531C09E212295D931BF55894C/Lomakino_Min_Granne_Totoro_S_",
                "en": "http://www.annantalo.fi/en/events/event/76B0814531C09E212295D931BF55894C/Holiday_cinema_Naapurini_Totoro_S_"
            },
            "name": {
                "fi": "Lomakino: Naapurini Totoro (S)",
                "sv": "Lomakino: Min Granne Totoro (S)",
                "en": "Holiday cinema: Naapurini Totoro (S)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66851/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm6fz2wfa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-10-14T12:19:33.027774Z",
            "last_modified_time": "2025-10-14T12:21:04.130661Z",
            "date_published": null,
            "start_time": "2025-10-19T10:00:00Z",
            "end_time": "2025-10-19T11: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,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa mukaan Family Encounters-perhetapahtumaan sunnuntaina 19.10. klo 13-14",
                "en": "Come and join us at the Family Encounters family event in Hindi and english on sunday 19.10. from 13-14"
            },
            "description": {
                "fi": "<p>Liity mukaan family Encounters-perhetapahtumaan, jossa juhlistetaan hindin kielen kauneutta ja jaetaan nostalgisia rytmejä. Tapahtuman järjestää Bihar Jharkhand Finland -yhteisö osana Family Encounters -projektia yhteistyössä Kulttuurikeskus Ninho ry:n, Lippulaiva-kirjaston ja Moniheli ry:n kanssa.</p><p><br></p><p>Liity vauvojen, pikkulasten vanhempien ja raskaana olevien äitien joukkoon ja tutustu hindin kieleen, rytmeihin ja yhteishenkeen!</p><p><br></p><p>Luvassa:</p><ul><li>Perheille sopivia aktiviteetteja hindiksi</li><li>Suosikki kehtolauluja ja tarinoita</li><li>Hymyjä, lauluja ja yhteisiä muistoja</li><li>Hauskanpitoa ja oppimista</li></ul><p>Ilmoittaudu mukaan täällä: <a href=\"https://forms.gle/UCk2LNzsgTNj1GjF7\">https://forms.gle/UCk2LNzsgTNj1GjF7</a></p>",
                "en": "<p>Another proud moment for the Bihar Jharkhand Finland community as we come together to promote the Hindi language — this time, especially for toddlers and their families.</p><p>About the event -</p><p>Join us for a family-friendly afternoon for toddlers/young ones celebrating the beauty of Hindi Language and sharing the piece of nostalgic rhytms, Brought to you by Bihar Jharkhand Finland community, as part of the Family Encounters Project, in collaboration with Kulttuurikeskus Ninho ry. , Lippulaiva Library and Funded by Moniheli ry .</p><p>Join babies, parents with toddlers, pregnant moms, and explore Hindi language, rhythms, and share togetherness!</p><p><br></p><p>What’s in store:</p><ul><li>Family-friendly activities in Hindi</li><li>Our favourite childhood lullabies and stories</li><li>Smiles, songs, and shared memories</li><li>A beautiful blend of fun, learning, and reconnecting with our roots</li></ul><p><br></p><p>Fill out the form to register -</p><p><a href=\"https://forms.gle/UCk2LNzsgTNj1GjF7 Thanks Archana Pandey\">https://forms.gle/UCk2LNzsgTNj1GjF7 </a></p><p>Thanks Archana Pandey</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Family encounters-perhetapahtuma englanniksi & hindiksi",
                "en": "Family encounters - A celebration of Hindi language, lullabies & togetherness"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki",
                "en": "Salonki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6fz2wfa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwdovi2m",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46348/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/EspoonKirjastoautot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/espoonkirjastoautot",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-19T10:50:04.301604Z",
            "last_modified_time": "2025-10-14T09:37:03.211186Z",
            "date_published": "2025-09-19T10:46:00Z",
            "start_time": "2025-10-17T10:00:00Z",
            "end_time": "2025-10-17T11: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,
            "provider": null,
            "short_description": {
                "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!",
                "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!",
                "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! "
            },
            "description": {
                "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025.&nbsp;</p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!&nbsp;</p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>",
                "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "info_url": {
                "fi": "http://www.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"
            },
            "name": {
                "fi": "Syysdösä Välkky Leppävaaran Angry Birds -puistossa",
                "sv": "Syysdösä Välkky: Angry Birds-parken i Alberga",
                "en": "Syysdösä Välkky: Angry Birds Park in Leppävaara"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky",
                "sv": "Esbos bok- och kultur bus Välkky",
                "en": "Espoos' book and culture bus Välkky"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovi2m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwdovjz4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/osoite:m%C3%A4enalus_2_espoo/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/EspoonKirjastoautot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/espoonkirjastoautot",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-19T10:46:32.725904Z",
            "last_modified_time": "2025-10-14T09:36:02.964914Z",
            "date_published": "2025-09-19T10:42:00Z",
            "start_time": "2025-10-15T10:00:00Z",
            "end_time": "2025-10-15T11: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,
            "provider": null,
            "short_description": {
                "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!",
                "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!",
                "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! "
            },
            "description": {
                "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025.&nbsp;</p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!&nbsp;</p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>",
                "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "info_url": {
                "fi": "http://www.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"
            },
            "name": {
                "fi": "Syysdösä Välkky Lakisto / Rinnekoti",
                "sv": "Syysdösä Välkky: Lakisto / Rinnekoti",
                "en": "Syysdösä Välkky: Lakisto / Rinnekoti"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky",
                "sv": "Esbos bok- och kultur bus Välkky",
                "en": "Espoos' book and culture bus Välkky"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovjz4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmwdovkm4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74810/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/EspoonKirjastoautot/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/espoonkirjastoautot",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-19T10:42:35.927654Z",
            "last_modified_time": "2025-10-14T09:34:00.956193Z",
            "date_published": "2025-09-19T10:41:00Z",
            "start_time": "2025-10-14T10:00:00Z",
            "end_time": "2025-10-14T11: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,
            "provider": null,
            "short_description": {
                "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!",
                "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!",
                "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! "
            },
            "description": {
                "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025.&nbsp;</p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!&nbsp;</p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>",
                "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>",
                "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>"
            },
            "info_url": {
                "fi": "http://www.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"
            },
            "name": {
                "fi": "Syysdösä Välkky Syvänsalmenpuiston leikkipaikalla",
                "sv": "Syysdösä Välkky: Djupsundsparken lekplats",
                "en": "Syysdösä Välkky: Syvänsalmi Park Playground"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky",
                "sv": "Esbos bok- och kultur bus Välkky",
                "en": "Espoos' book and culture bus Välkky"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovkm4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67133",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491087,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-14T09:14:00.860304Z",
                    "last_modified_time": "2025-10-14T09:14:00.860321Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778129.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491087/?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-10-14T09:14:00.698917Z",
            "last_modified_time": "2025-10-14T09:14:01.070314Z",
            "date_published": null,
            "start_time": "2025-10-31T15: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,
            "provider": null,
            "short_description": {
                "fi": "Malmisalissa tanssitaan ja pidetään hauskaa hurjan jännittävässä Halloween-tunnelmassa pyhäinpäivän aattona!",
                "en": "Join us for dancing and having fun in a thrilling spooky Halloween atmosphere during All Saints’ Day!"
            },
            "description": {
                "fi": "<p>Malmisalissa tanssitaan ja pidetään hauskaa hurjan jännittävässä Halloween-tunnelmassa pyhäinpäivän aattona!</p><p>DJ Elviksen äiti laittaa musiikin soimaan ja huolehtii, että tanssilattialla riittää jorattavaa. Kello 17–18 diskoilu sopii 1.–3.-luokkalaisille ja kello 18.30–19.30 disko soveltuu parhaiten 4.–6.-luokkalaisille.<br> <br>Tapahtuman aikana voit myös käydä taikamaalari Hertta-Bertan luona ottamassa hienon Halloween-teemaisen kasvomaalauksen ja mukana on myös muuta pientä puuhaa, joka sopii illan hirviömäisen kivaan tunnelmaan.<br> <br>Ikäsuositus: klo 17–19 noin 7–9-vuotiaille ja klo 18–20 noin 9–12-vuotiaille</p>",
                "en": "<p>Join us for dancing and having fun in a thrilling spooky Halloween atmosphere during All Saints’ Day!</p><p>DJ Elviksen äiti will be spinning the tunes and keeping the dance floor lively all evening. From 17:00 to 18:00, the disco is best suited for 1st–3rd graders, and from 18:30 to 19:30, the sets are tailored for 4th–6th graders.<br>During the event, you can also visit the magic painter Hertta-Bertta for a brilliant Halloween-themed face painting, and there’ll be other small activities to match the delightfully monstrous mood of the evening.</p><p>Recommended ages: 17–19 for around 7–9-year-olds, and 18–20 for around 9–12-year-olds.</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C14853FB345C5A45A1A7EE937F0C5771/Lasten_Halloween_disko",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C14853FB345C5A45A1A7EE937F0C5771/Lasten_Halloween_disko",
                "en": "http://www.malmitalo.fi/en/events/event/C14853FB345C5A45A1A7EE937F0C5771/Children_s_Halloween_Disco"
            },
            "name": {
                "fi": "Lasten Halloween disko",
                "sv": "Lasten Halloween disko",
                "en": "Children’s Halloween Disco"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67133/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66403",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490524,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-26T12:14:05.350370Z",
                    "last_modified_time": "2025-08-26T12:14:05.350386Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774072.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490524/?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-08-26T12:14:05.228888Z",
            "last_modified_time": "2025-10-14T09:13:56.825203Z",
            "date_published": null,
            "start_time": "2025-10-16T12: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,
            "provider": null,
            "short_description": {
                "fi": "Yleisön pyynnöstä Malmitalossa nähdään elokuva Inside Out - mielen sopukoissa 2!",
                "sv": "På begäran av allmänheten ses filmen Insidan ut 2 på Malms kulturhus!",
                "en": "By popular demand, Malmitalo presents the movie Inside Out 2!"
            },
            "description": {
                "fi": "<p>Yleisön pyynnöstä Malmitalossa nähdään elokuva Inside Out - mielen sopukoissa 2!</p><p>Teinityttö Rileyn päämajassaan käynnistyy suuri romutusurakka, jolla tehdään tilaa odottamattomalle yllätykselle: uusille tunteille! Ilo, Suru, Kiukku, Pelko ja Inho, jotka ovat pitkään pyörittäneet Rileyn mieltä hyvällä menestyksellä, eivät tiedä, mitä pitäisi ajatella, kun kuvioihin ilmestyvät Ahdistus, Kateus, Ennui ja Nolous.</p><p>Elokuvassa käsitellään tunnetiloja 13-vuotiaan Rileyn näkökulmasta ja niiden aiheuttamia isoja muutoksia, niin sisäisiä kuin ulkoisiakin. Kun mikään ei huvita ja vanhemmat ovat tyhmiä eivätkä ymmärrä mitään. Kun haluaisi vielä “pikaisesti” mennä syliin, mutta samalla haluaa olla iso ja itsenäinen.</p><p>Yksinäisyyden tunne, kelpaamattomuuden tunne, pelko siitä, että kukaan ei välitä. Ei ainakaan kukaan sellainen, johon haluaisi tehdä vaikutuksen. Tunteita, jotka varmasti jokainen on joskus kohdallaan kokenut. (Lähde: Koulukino)</p><p>Disneyn ja Pixarin elokuvan Inside Out - mielen sopukoissa 2 on ohjannut Kelsey Mann ja tuottanut Mark Nielsen.</p><p>Kesto: 1 tunti 37 min<br>Ikäsuositus: yli 7-vuotiaille<br>Kieli: puhuttu suomeksi, ei tekstitystä</p>",
                "sv": "<p>På begäran av allmänheten ses filmen Insidan ut 2 på Malms kulturhus!</p><p>I tonårsflickan Rileys huvudkvarter pågår en stor skrotning för att ge plats åt en oväntad överraskning: nya känslor! Glädje, Vemod, Ilska, Rädsla och Avsky som länge har drivit Rileys huvud med god framgång, vet inte vad man ska tänka när Ängsla, Pinsamhet, Avund och Ennui dyker upp.</p><p>I filmen behandlas känslorna ur den 13-åriga Rileys perspektiv och de stora förändringar som dessa orsakar, såväl på insidan som på utsidan. När inget lockar och föräldrarna är dumma och inte förstår. När man ännu ”snabbt” vill sitta i famnen, men samtidigt vill man vara stor och självständigt.</p><p>Känslan av ensamhet, att man inte duger, rädslan för att ingen bryr sig. Åtminstone ingen sådan som man vill imponera på. Känslor som säkert alla någon gång har upplevt. (Källa: Koulukino)</p><p>Disneys och Pixars film Insidan ut 2 har regisserats av Kelsey Mann och producerats av Mark Nielsen.</p><p>Längd: 1 h 37 min.<br>Åldersrekommendation: barn över 7 år<br>Språk: finsk dubbat</p>",
                "en": "<p>By popular demand, Malmitalo presents the movie Inside Out 2!</p><p>In teenager Riley's headquarters, a massive cleanup operation begins to make room for an unexpected surprise: new emotions! Joy, Sadness, Anger, Fear and Disgust, who have long managed Riley's mind quite successfully, are baffled when Anxiety, Envy, Ennui and Shame show up.</p><p>The film explores the emotional world from 13-year-old Riley's perspective and the big changes these feelings bring, both inside and out. When nothing's fun anymore, parents seem clueless and cannot understand anything. When you want to be held \"just briefly\" but, at the same time, to be big and independent.</p><p>Feelings of loneliness, not fitting in and fear that no one cares. At least no one you want to impress. Emotions everyone must have faced at some point. (Source: Koulukino)</p><p>Disney and Pixar's Inside Out 2 is directed by Kelsey Mann and produced by Mark Nielsen.</p><p>Duration: 1 hour 37 min<br>Recommended age: 7 and older<br>Language: dubbed in Finnish, no subtitles</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/900086A494B4E5FB7407972A5E37A733/Syyslomaleffa_Inside_Out_2",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/900086A494B4E5FB7407972A5E37A733/Syyslomaleffa_Insidan_ut_2_7_",
                "en": "http://www.malmitalo.fi/en/events/event/900086A494B4E5FB7407972A5E37A733/Syyslomaleffa_Inside_Out_2_7_"
            },
            "name": {
                "fi": "Syyslomaleffa: Inside Out 2",
                "sv": "Syyslomaleffa: Insidan ut 2 (7)",
                "en": "Syyslomaleffa: Inside Out 2 (7+)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66403/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66402",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490523,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-26T12:14:04.789745Z",
                    "last_modified_time": "2025-08-26T12:14:04.789768Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774071.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490523/?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-08-26T12:14:04.606169Z",
            "last_modified_time": "2025-10-14T09:13:56.611931Z",
            "date_published": null,
            "start_time": "2025-10-16T10: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,
            "provider": null,
            "short_description": {
                "fi": "Yleisön pyynnöstä Malmitalossa nähdään elokuva Inside Out - mielen sopukoissa 2!",
                "sv": "På begäran av allmänheten ses filmen Insidan ut 2 på Malms kulturhus!",
                "en": "By popular demand, Malmitalo presents the movie Inside Out 2!"
            },
            "description": {
                "fi": "<p>Yleisön pyynnöstä Malmitalossa nähdään elokuva Inside Out - mielen sopukoissa 2!</p><p>Teinityttö Rileyn päämajassaan käynnistyy suuri romutusurakka, jolla tehdään tilaa odottamattomalle yllätykselle: uusille tunteille! Ilo, Suru, Kiukku, Pelko ja Inho, jotka ovat pitkään pyörittäneet Rileyn mieltä hyvällä menestyksellä, eivät tiedä, mitä pitäisi ajatella, kun kuvioihin ilmestyvät Ahdistus, Kateus, Ennui ja Nolous.</p><p>Elokuvassa käsitellään tunnetiloja 13-vuotiaan Rileyn näkökulmasta ja niiden aiheuttamia isoja muutoksia, niin sisäisiä kuin ulkoisiakin. Kun mikään ei huvita ja vanhemmat ovat tyhmiä eivätkä ymmärrä mitään. Kun haluaisi vielä “pikaisesti” mennä syliin, mutta samalla haluaa olla iso ja itsenäinen.</p><p>Yksinäisyyden tunne, kelpaamattomuuden tunne, pelko siitä, että kukaan ei välitä. Ei ainakaan kukaan sellainen, johon haluaisi tehdä vaikutuksen. Tunteita, jotka varmasti jokainen on joskus kohdallaan kokenut. (Lähde: Koulukino)</p><p>Disneyn ja Pixarin elokuvan Inside Out - mielen sopukoissa 2 on ohjannut Kelsey Mann ja tuottanut Mark Nielsen.</p><p>Kesto: 1 tunti 37 min<br>Ikäsuositus: yli 7-vuotiaille<br>Kieli: puhuttu suomeksi, ei tekstitystä</p>",
                "sv": "<p>På begäran av allmänheten ses filmen Insidan ut 2 på Malms kulturhus!</p><p>I tonårsflickan Rileys huvudkvarter pågår en stor skrotning för att ge plats åt en oväntad överraskning: nya känslor! Glädje, Vemod, Ilska, Rädsla och Avsky som länge har drivit Rileys huvud med god framgång, vet inte vad man ska tänka när Ängsla, Pinsamhet, Avund och Ennui dyker upp.</p><p>I filmen behandlas känslorna ur den 13-åriga Rileys perspektiv och de stora förändringar som dessa orsakar, såväl på insidan som på utsidan. När inget lockar och föräldrarna är dumma och inte förstår. När man ännu ”snabbt” vill sitta i famnen, men samtidigt vill man vara stor och självständigt.</p><p>Känslan av ensamhet, att man inte duger, rädslan för att ingen bryr sig. Åtminstone ingen sådan som man vill imponera på. Känslor som säkert alla någon gång har upplevt. (Källa: Koulukino)</p><p>Disneys och Pixars film Insidan ut 2 har regisserats av Kelsey Mann och producerats av Mark Nielsen.</p><p>Längd: 1 h 37 min.<br>Åldersrekommendation: barn över 7 år<br>Språk: dubbad på finska</p>",
                "en": "<p>By popular demand, Malmitalo presents the movie Inside Out 2!</p><p>In teenager Riley's headquarters, a massive cleanup operation begins to make room for an unexpected surprise: new emotions! Joy, Sadness, Anger, Fear and Disgust, who have long managed Riley's mind quite successfully, are baffled when Anxiety, Envy, Ennui and Shame show up.</p><p>The film explores the emotional world from 13-year-old Riley's perspective and the big changes these feelings bring, both inside and out. When nothing's fun anymore, parents seem clueless and cannot understand anything. When you want to be held \"just briefly\" but, at the same time, to be big and independent.</p><p>Feelings of loneliness, not fitting in and fear that no one cares. At least no one you want to impress. Emotions everyone must have faced at some point. (Source: Koulukino)</p><p>Disney and Pixar's Inside Out 2 is directed by Kelsey Mann and produced by Mark Nielsen.</p><p>Duration: 1 hour 37 min<br>Recommended age: 7 and older<br>Language: Finnish dubbed</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1FADD621D160D69BB9A4DBDF7B5D8382/Syyslomaleffa_Inside_Out_2",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1FADD621D160D69BB9A4DBDF7B5D8382/Syyslomaleffa_Insidan_ut_2_7_",
                "en": "http://www.malmitalo.fi/en/events/event/1FADD621D160D69BB9A4DBDF7B5D8382/Syyslomaleffa_Inside_Out_2_7_"
            },
            "name": {
                "fi": "Syyslomaleffa: Inside Out 2",
                "sv": "Syyslomaleffa: Insidan ut 2 (7)",
                "en": "Syyslomaleffa: Inside Out 2 (7+)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66402/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}