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

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 24464,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=4",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=2"
    },
    "data": [
        {
            "id": "espoo_le:agmyxr7qjq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7rki/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490241,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-20T12:30:46.474635Z",
                    "last_modified_time": "2025-05-20T12:30:46.474651Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/aa41a782-a291-4ee4-8a37-c010dae34d59.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "elokuvaliput ja popcornia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490241/?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-09-27T14:43:57.568985Z",
            "last_modified_time": "2025-09-27T14:43:57.569003Z",
            "date_published": null,
            "start_time": "2025-10-17T14:00:00Z",
            "end_time": "2025-10-17T16: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,
            "name": {
                "fi": "Lasten perjantaileffa",
                "sv": "Fredagsfilm för barn",
                "en": "Children's Friday movie"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä!</p><p>Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina osallistujat saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p>",
                "sv": "<p>På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!</p><p>Den första fredagen i månaden visar vi alltid en åldersanpassad film (S). Övriga fredagar kan deltagare välja en film från S- och K7-utbudet.</p>",
                "en": "<p>On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!</p><p>On the first Friday of the month, we always show an age-appropriate film (S). On other Fridays, participants can choose a film from the S and K7 selection.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!",
                "sv": "På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!",
                "en": "On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7qjq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyxr7qv4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7rki/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490241,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-20T12:30:46.474635Z",
                    "last_modified_time": "2025-05-20T12:30:46.474651Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/aa41a782-a291-4ee4-8a37-c010dae34d59.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "elokuvaliput ja popcornia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490241/?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-09-27T14:43:57.462606Z",
            "last_modified_time": "2025-09-27T14:43:57.462624Z",
            "date_published": null,
            "start_time": "2025-10-10T14:00:00Z",
            "end_time": "2025-10-10T16: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,
            "name": {
                "fi": "Lasten perjantaileffa",
                "sv": "Fredagsfilm för barn",
                "en": "Children's Friday movie"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä!</p><p>Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina osallistujat saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p>",
                "sv": "<p>På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!</p><p>Den första fredagen i månaden visar vi alltid en åldersanpassad film (S). Övriga fredagar kan deltagare välja en film från S- och K7-utbudet.</p>",
                "en": "<p>On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!</p><p>On the first Friday of the month, we always show an age-appropriate film (S). On other Fridays, participants can choose a film from the S and K7 selection.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!",
                "sv": "På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!",
                "en": "On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7qv4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyxr7q74",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7rki/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490241,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-20T12:30:46.474635Z",
                    "last_modified_time": "2025-05-20T12:30:46.474651Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/aa41a782-a291-4ee4-8a37-c010dae34d59.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "elokuvaliput ja popcornia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490241/?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-09-27T14:43:57.355251Z",
            "last_modified_time": "2025-09-27T14:43:57.355270Z",
            "date_published": null,
            "start_time": "2025-10-03T14:00:00Z",
            "end_time": "2025-10-03T16: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,
            "name": {
                "fi": "Lasten perjantaileffa",
                "sv": "Fredagsfilm för barn",
                "en": "Children's Friday movie"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä!</p><p>Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina osallistujat saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p>",
                "sv": "<p>På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!</p><p>Den första fredagen i månaden visar vi alltid en åldersanpassad film (S). Övriga fredagar kan deltagare välja en film från S- och K7-utbudet.</p>",
                "en": "<p>On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!</p><p>On the first Friday of the month, we always show an age-appropriate film (S). On other Fridays, participants can choose a film from the S and K7 selection.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!",
                "sv": "På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!",
                "en": "On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7q74/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyxr7rki",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7gj4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7g6y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7hki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7hva/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7iaa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7ijy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7iue/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7i6m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7ji4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7jti/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7j5y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7kiq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7ktm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7k6i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7liu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7lue/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7l7u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7mky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7mvy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7naa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7nki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7nvu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7oai/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7oky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7ovm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7pae/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7pki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7puq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7p6q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7qjq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7qv4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7q74/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490241,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-20T12:30:46.474635Z",
                    "last_modified_time": "2025-05-20T12:30:46.474651Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/aa41a782-a291-4ee4-8a37-c010dae34d59.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "elokuvaliput ja popcornia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490241/?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-09-27T14:43:54.298827Z",
            "last_modified_time": "2025-09-27T14:43:54.298846Z",
            "date_published": null,
            "start_time": "2025-10-03T14:00:00Z",
            "end_time": "2026-05-29T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten perjantaileffa",
                "sv": "Fredagsfilm för barn",
                "en": "Children's Friday movie"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä!</p><p>Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina osallistujat saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p>",
                "sv": "<p>På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!</p><p>Den första fredagen i månaden visar vi alltid en åldersanpassad film (S). Övriga fredagar kan deltagare välja en film från S- och K7-utbudet.</p>",
                "en": "<p>On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!</p><p>On the first Friday of the month, we always show an age-appropriate film (S). On other Fridays, participants can choose a film from the S and K7 selection.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!",
                "sv": "På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!",
                "en": "On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7rki/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyxr7rue",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490241,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-20T12:30:46.474635Z",
                    "last_modified_time": "2025-05-20T12:30:46.474651Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/aa41a782-a291-4ee4-8a37-c010dae34d59.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "elokuvaliput ja popcornia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490241/?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-09-27T14:21:58.565163Z",
            "last_modified_time": "2025-09-27T14:21:58.565180Z",
            "date_published": null,
            "start_time": "2025-10-17T14:00:00Z",
            "end_time": "2025-10-17T16: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,
            "name": {
                "fi": "SYYSLOMA: Lasten perjantaileffa",
                "sv": "HÖSTLOV: Fredagsfilm för barn",
                "en": "FALL VACATION: Children's Friday movie"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä!</p><p>Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina osallistujat saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p>",
                "sv": "<p>På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!</p><p>Den första fredagen i månaden visar vi alltid en åldersanpassad film (S). Övriga fredagar kan deltagare välja en film från S- och K7-utbudet.</p>",
                "en": "<p>On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!</p><p>On the first Friday of the month, we always show an age-appropriate film (S). On other Fridays, participants can choose a film from the S and K7 selection.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!",
                "sv": "På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!",
                "en": "On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxr7rue/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyxehh2a",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490101,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-05T07:23:52.622754Z",
                    "last_modified_time": "2024-01-05T07:23:52.622775Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Tyyne.png",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Tummanruskea kiharakarvainen koira laiturilla.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490101/?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-09-27T14:11:36.493848Z",
            "last_modified_time": "2025-09-27T14:11:36.493866Z",
            "date_published": null,
            "start_time": "2025-10-16T15:00:00Z",
            "end_time": "2025-10-16T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "SYYSLOMA: Lukukoira Tyyne",
                "sv": "HÖSTLOV: Läshund Tyyne",
                "en": "FALL VACATION: Reading Dog Tyyne "
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Lukukoira Tyyne odottaa innolla lukijoita Tapiolan kirjastoon.</p><p>to 18.9.</p><p>to 16.10.</p><p>to 13.11.</p><p>to 11.12.</p><p>Klo 18-19:00.</p><p>Tervetuloa!</p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Läshund Tyyne ser fram emot läsare på Tapiola biblioteket kl. 18-19.</p><ul><li>to 18.9.</li><li>to 16.10.</li><li>to 13.11.</li><li>to 11.12.</li></ul><p>Välkommen!</p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Reading DogTyyne is eagerly awaiting readers at Tapiola Library from 6pm to 7pm.</p><ul><li>to 18.9.</li><li>to 16.10.</li><li>to 13.11.</li><li>to 11.12.</li></ul><p>Welcome!</p><p><br></p><p>#HelloEspoo</p>"
            },
            "location_extra_info": {
                "fi": "Lastenosasto",
                "sv": "Barnavdelningen",
                "en": "Children’s Department"
            },
            "provider": null,
            "short_description": {
                "fi": "Lukukoira Tyyne odottaa innolla lukijoita Tapiolan kirjastoon klo 18-19.",
                "sv": "Läshund Tyyne ser fram emot läsare på Tapiola biblioteket kl. 18-19.",
                "en": "Reading DogTyyne is eagerly awaiting readers at Tapiola Library from 18:00 to 19:00."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxehh2a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyxehiwe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490100,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-15T06:27:10.622012Z",
                    "last_modified_time": "2025-08-15T06:27:10.622025Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/1f9791c7-3c63-4189-8fd7-d464a6754307.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Askartelutarvikkeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490100/?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-09-27T14:08:49.402331Z",
            "last_modified_time": "2025-09-27T14:08:49.402351Z",
            "date_published": null,
            "start_time": "2025-10-16T13:00:00Z",
            "end_time": "2025-10-16T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "SYYSLOMA: Askartelupaja",
                "sv": "HÖSTLOV: Pysselverkstad",
                "en": "FALL VACATION: Craft Workshop"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Kaikenikäiset ovat tervetulleita mukaan iloiseen askarteluun Tapiolan kirjastoon!</p><p>Askartelupajat järjestetään kirjaston pajassa vaihtuvin teemoin joka toinen torstai.</p><p>Osa askartelupajoista (18.9., 2.10., 16.10.) järjestetään yhteistyössä Familia ry:n kanssa.</p><p><br></p><p>#helloespoo</p>",
                "sv": "<p>Välkommen på en trevlig pysselstund på Hagalunds bibliotek.</p>",
                "en": "<p>Welcome to join in the cheerful crafting at Tapiola Library!</p><p><br></p><p>Some of the workshops (18.9., 2.10.,16.10.) are organized in cooperation with Familia ry.&nbsp;</p><p><br></p><p><br></p><p>#helloespoo</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kaikenikäiset ovat tervetulleita mukaan iloiseen askarteluun Tapiolan kirjastoon! ",
                "sv": "Välkommen på en trevlig pysselstund på Hagalunds bibliotek. ",
                "en": "Welcome to join in the cheerful crafting at Tapiola Library!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxehiwe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyxehjci",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490875,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-23T12:26:44.153180Z",
                    "last_modified_time": "2025-09-23T12:26:44.153196Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/4605a0a8-515e-48aa-aa3c-ad64067ba618.png",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "tyttöjä julisteen kanssa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490875/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-09-27T14:06:40.675841Z",
            "last_modified_time": "2025-09-27T14:06:40.675859Z",
            "date_published": null,
            "start_time": "2025-10-16T11:00:00Z",
            "end_time": "2025-10-16T12: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,
            "name": {
                "fi": "SYYSLOMA: Tyttöryhmä",
                "sv": "HÖSTLOV: Flickklubb",
                "en": "FALL VACATION: Girls´ group"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään aikaa yhdessä tyttöjen kesken!</p><p>Tyttöjen omassa ryhmässä pelataan, askarrellaan, leivotaan, lakataan kynsiä ja pidetään hauskaa osallistujien toiveet huomioiden. Tapahtuma on suunnattu alakouluikäisille.</p><p>Tyttöryhmää ohjaavat tutut työntekijät Tapiolan kirjastosta ja Espoon Tyttöjen Talolta. Ryhmässä noudatetaan turvallisemman tilan periaatteita.</p><p>Puhumme suomea ja englantia</p><p>#tytöt #Tyttöjentalo #Helmet #HelloEspoo</p>",
                "sv": "<p>Välkommen att spendera tid tillsammans som tjejer!</p><p>Flickklubben är en plats för lekar, pyssel, bakning, nagellackning och att ha roligt enligt deltagarnas önskemål. Evenemanget riktar sig till barn i lågstadieåldern.</p><p>Flickklubben leds av bekant personal från Hagalunds biblioteket och Esbo flickhus. Klubben följer principerna för tryggare utrymmen.</p><p><br></p><p>#tytöt #Tyttöjentalo #Helmet #HelloEspoo</p>",
                "en": "<p>Welcome to spend time together between girls!</p><p>Girls' group is a place for games, crafts, baking, nail polishing and having fun according to the wishes of the participants. The event is aimed at primary school children.</p><p>The girls' group is guided by familiar staff from the Tapiola Library and the Espoo Tyttöjen talo. The group will follow the principles of safer space.</p><p>We speak Finnish and English.</p><p><br></p><p>#tytöt #Tyttöjentalo #Helmet #HelloEspoo</p>"
            },
            "location_extra_info": {
                "fi": "Heikki",
                "sv": "Heikki",
                "en": "Heikki"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa viettämään aikaa yhdessä tyttöjen kesken!",
                "sv": "Välkommen att spendera tid tillsammans som tjejer!",
                "en": "Welcome to spend time together between girls!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxehjci/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyxehjoa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490242,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-06-23T11:11:05.611748Z",
                    "last_modified_time": "2025-06-23T11:11:05.611761Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/05212453-a248-4571-87de-d4abf2aa4c6c.jpg",
                    "cropping": "262,0,938,675",
                    "photographer_name": "",
                    "alt_text": "kissa syksyisessä maisemassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490242/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-09-27T14:03:50.182211Z",
            "last_modified_time": "2025-09-27T14:03:50.182229Z",
            "date_published": null,
            "start_time": "2025-10-15T15:00:00Z",
            "end_time": "2025-10-15T16: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,
            "name": {
                "fi": "SYYSLOMA: Soturikissaklubi",
                "sv": "HÖSTLOV: Warriorsklubben",
                "en": "FALL VACATION: Warriors Cat Club"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tapiolan kirjaston lasten ja nuorten oma Soturikissaklubi kokoontuu kirjaston nuortentilassa.</p><p>Mukaan ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa tai mitä kulloinkin yhdessä keksitään!</p><p><br></p><p>Kokoonnumme joka toinen keskiviikko klo 18-19.30.</p>",
                "sv": "<p>Warriorsklubben för barn och unga på Hagalunds bibliotek träffas på bibliotekets ungdomsavdelning.</p><p>Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans!</p><p>Observera att evenemanget hålls på finska.</p>",
                "en": "<p>Tapiola Library's Warrior Cat Club for children and young people gathers in the library's youth space.</p><p>All fans of the Warriors Cat books are welcome to join. Expect casual get-togethers, crafting, quizzes, or whatever we come up with together!</p><p>Please note that the event is conducted in Finnish.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Soturikissaklubiin ovat tervetulleita kaikki Soturikissa-kirjojen ystävät. Luvassa rentoa yhdessäoloa, askartelua, tietovisaa ja paljon muuta!",
                "sv": "Alla Warriorsälskare är välkomna med. Vi bjuder på avslappnat häng, pyssel, frågesport och vad vi nu hittar på tillsammans! ",
                "en": "All friends of the Warriors Cat books are welcome to the Club. Expect relaxed socializing, crafting, quizzes, or whatever we come up with together!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxehjoa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyxehj24",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?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": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490240,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-06-23T11:52:30.988823Z",
                    "last_modified_time": "2025-06-23T11:52:30.988850Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/9ae914a0-429c-4e23-ba07-f78025a775f1.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "puu ja perhosia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490240/?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-09-27T14:01:02.220333Z",
            "last_modified_time": "2025-09-27T14:01:02.220352Z",
            "date_published": null,
            "start_time": "2025-10-15T07:00:00Z",
            "end_time": "2025-10-15T07: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,
            "name": {
                "fi": "SYYSLOMA: Avoin satuhetki",
                "sv": "HÖSTLOV: Öppen sagostund",
                "en": "FALL VACATION: Open Storytime"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa avoimeen satuhetkeen Tapiolan kirjastoon. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p>",
                "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>",
                "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>"
            },
            "location_extra_info": {
                "fi": "Nuortentila",
                "sv": "Nuortentila",
                "en": "Nuortentila"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.",
                "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.",
                "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyxehj24/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66784",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1285540,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-18T08:14:18.385681Z",
                    "last_modified_time": "2025-07-18T08:14:18.385700Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775398.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1285540/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-18T08:14:18.200025Z",
            "last_modified_time": "2025-09-26T14:13:28.733107Z",
            "date_published": null,
            "start_time": "2025-10-17",
            "end_time": "2025-11-02",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Helga Stentzel: Clothesline Creatures",
                "sv": "Helga Stentzel: Clothesline Creatures",
                "en": "Helga Stentzel: Clothesline Creatures"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/383D00F904ED0F9C1C950064C15C888F/Helga_Stentzel_Clothesline_Creatures",
                "sv": "http://www.stoa.fi/sv/evenemang/event/383D00F904ED0F9C1C950064C15C888F/Helga_Stentzel_Clothesline_Creatures",
                "en": "http://www.stoa.fi/en/events/event/383D00F904ED0F9C1C950064C15C888F/Helga_Stentzel_Clothesline_Creatures"
            },
            "description": {
                "fi": "<p>Tervetuloa Clothesline Creatures -näyttelyn maailmaan – ilahduttava kohtaaminen, jossa näkemämme eläimet eivät ole peräisin luonnosta, vaan pyykkikorista.</p><p>Leikkisässä ja mielikuvituksellisessa näyttelyssä taiteilija Helga Stentzel tuo Suomeen rakastetut Clothesline Animals -hahmonsa, jotka muuttavat tavallisen pyykin persoonallisten eläinten paraatiksi. Pyykkipoikasarvinen lehmä, pikkuhousuista ja hupparista luotu ovela kettu ja uljas hevonen, joka kohottaa ylpeänä haalarista tehtyä päätään – jokainen olento koostuu ainoastaan pyykkinarulle ripustetuista tavallisista vaatteista, jotka Helgan tarkka silmä ja tarinankerrontataito tuovat eloon.</p><p>Teokset hämärtävät taiteen ja arjen rajaa ja kohottavat tavanomaisen ihmeelliseksi. Lämmöllään ja kekseliäisyydellään Clothesline Creatures kutsuu yleisön löytämään ilon, joka syntyy maailman näkemisestä uudella tavalla – kun hupparista tulee kärsä, hihat venyvät jaloiksi ja pieni auringonsäde muuttaa arkisen maagiseksi.</p><p>Helgan maailmanlaajuisesti riemua herättäneet luomukset kertovat mielikuvituksen voimasta, lapsenomaisesta ihmettelystä ja sen kauneudesta, kun pysähtyy huomaamaan pienet yksityiskohdat.<br>Tule tapaamaan yläpuolella riippuvia eläimiä – voi olla, ettet koskaan enää katso pyykkiä samalla tavalla.</p><p>Helga Stentzel on Venäjällä syntynyt ja Lontoossa asuva kuvataiteilija, joka tunnetaan mielikuvituksellisista ja sydäntä lämmittävistä, taiteen, leikin ja arjen rajoja hämärtävistä teoksistaan. Valokuvauksen, veistosten ja installaatioiden yhtymäkohdassa hän muuttaa tavalliset tavarat – erityisesti pyykin – hauskoiksi hahmoiksi, jotka herättävät iloa ja uteliaisuutta.</p><p>Helga on valmistunut Central Saint Martins -korkeakoulusta. Hän aloitti luovan matkansa mainonnan parissa ennen astumista omalle taiteilijapolulleen, jossa sekoittuvat huumori, tarinankerronta ja äärimmäisen tarkka ammattitaito. Hän on saavuttanut maailmanlaajuisen seuraajakunnan ja laajaa tunnustusta arvostetulla Clothesline Creatures -sarjallaan, joka koostuu pyykeistä tehdyistä eläimistä.</p><p>Helgan teokset ovat olleet esillä kansainvälisesti Kiinasta Saksaan ja Yhdysvaltoihin, ja ne hurmaavat edelleen kaikenikäiset katselijat. Vuonna 2023 hänet nimettiin naisvalokuvaajia esiin tuovalle Hasselblad Heroines -listalle ja vuonna 2024 hän voitti NordArtin yleisöpalkinnon. Galleriatöidensä lisäksi Helga panostaa saavutettavaan ja osallistavaan julkiseen taiteeseen: yksi hänen viimeaikaisista yhteistöistään on Portmanteau-sirkusryhmän lastenteatterituotanto, joka tuo pyykkieläimet eloon teatterin lavalla.</p><p>Helgan Instagram-tilillä on yli 360 000 seuraajaa, ja siitä on tullut eläväinen alusta uusien pyykkiolentojen julkaisulle, katsauksille taiteilijan työhön ja hänen vakaalle uskolleen arjen taianomaisiin hetkiin.</p>",
                "sv": "<p>Välkommen till Clothesline Creatures – ett härligt möte med djur, inte från det vilda, utan ur tvättkorgen.</p><p>I denna lekfulla och fantasifulla utställning tar konstnären Helga Stentzel med sig sina älskade klädstrecksdjur till Finland och förvandlar anspråkslös tvätt till en parad av karaktärsfulla bestar. En ko med klädnypor som horn, en slug räv gjord av ett par trosor och en luvtröja, och en ädel häst med ett huvud av mysoverall som nickar stolt i vinden – varje varelse består helt av vardagskläder, upphängda på ett klädstreck och väckta till liv genom Helgas skarpa öga och känsla för berättande.</p><p>Dessa verk suddar ut gränsen mellan konst och vardagsliv, och gör det ordinära extraordinärt. Med värme och kvickhet uppmanar Clothesline Creatures besökare att återupptäcka glädjen i att se världen på nytt – där en luvtröja blir en nos, ärmar sträcks ut till ben och en gnutta solsken förvandlar det vardagliga till magi.<br>Helga, som hyllats över hela världen för sina glädjefyllda skapelser, talar om fantasins kraft, barndomens förundran och skönheten i att sakta ner och lägga märke till de små sakerna.<br>Kom och träffa djuren som hänger ovanför våra huvuden – du kanske aldrig ser på tvätt på samma sätt igen!</p><p>Helga Stentzel är en bildkonstnär, född i Ryssland och numera baserad i London, känd för sina fantasifulla och hjärtevärmande skapelser som suddar ut gränsen mellan konst, lek och vardagsliv. När hon arbetar med fotografi, skulptur och installationer förvandlar hon vanliga hushållsföremål – särskilt tvätt – till oförutsägbara karaktärer som väcker glädje och nyfikenhet.</p><p>Helga, som tog examen från Central Saint Martins, började sin kreativa resa inom reklambranschen innan hon skapade en distinkt konstnärlig väg som blandar humor, berättande och exceptionellt hantverk. Hennes hyllade serie Clothesline Creatures – med djur gjorda av hushållstvätt – har gett henne en hängiven global följarskara och brett erkännande.</p><p>Helgas verk har ställts ut internationellt, från Kina till Tyskland och USA, och fortsätter att beröra publik i alla åldrar. År 2023 utsågs hon till Hasselblad Heroine och 2024 fick hon People’s Choice Award på NordArt. Vid sidan av sitt galleriarbete är Helga engagerad i offentlig konst som är tillgänglig och inkluderande, med nyligen genomförda samarbeten som inkluderar en barnteaterproduktion med Company Portmanteau som väcker hennes klädstrecksdjur till liv på scenen.</p><p>Hennes Instagramkonto har över 360 000 följare och det har blivit en livfull plattform för att dela nya varelser, ge glimtar från bakom kulisserna och för hennes bestående tro på vardagens magi.</p>",
                "en": "<p>Welcome to Clothesline Creatures—a delightful encounter with animals not from the wild, but from the laundry basket.</p><p>In this playful and imaginative exhibition, artist Helga Stentzel brings her beloved Clothesline Animals to Finland, transforming humble laundry into a parade of characterful beasts. A cow with pegs for horns, a sly fox fashioned from a pair of knickers and a hoodie, and a noble horse whose onesie head nods proudly in the wind—each creature is composed entirely of everyday clothing, pegged on a line and brought to life through Helga’s keen eye and sense of storytelling.</p><p>These works blur the line between art and domestic life, elevating the ordinary into the extraordinary. With warmth and wit, Clothesline Creatures invites visitors to rediscover the joy of seeing the world afresh—where a hoodie becomes a snout, sleeves stretch into legs, and a bit of sunshine turns the mundane into magic.</p><p>Celebrated across the globe for her joyful creations, Helga’s work speaks to the power of imagination, childhood wonder, and the beauty of slowing down to notice the small things.<br>Come meet the animals hanging out above our heads—you may never look at laundry the same way again.</p><p>Helga Stentzel is a Russian-born, London-based visual artist known for her imaginative and heartwarming creations that blur the line between art, play, and everyday life. Working across photography, sculpture, and installation, she transforms ordinary household objects—particularly laundry—into whimsical characters that spark joy and curiosity.</p><p>A graduate of Central Saint Martins, Helga began her creative journey in advertising before forging a distinctive artistic path that blends humour, storytelling, and exceptional craftsmanship. Her acclaimed Clothesline Creatures series—featuring animals made from household laundry—has earned her a devoted global following and widespread recognition.</p><p>Helga's work has been exhibited internationally, from China to Germany to the United States, and continues to resonate with audiences of all ages. In 2023, she was named a Hasselblad Heroine, and in 2024, she received the People’s Choice Award at NordArt. Alongside her gallery practice, Helga is committed to public art that is accessible and inclusive, with recent collaborations including a children’s theatre production with Company Portmanteau that brings her clothesline animals to life on stage.</p><p>Her Instagram account, followed by over 360,000 people, has become a vibrant platform for sharing new creatures, behind-the-scenes glimpses, and her enduring belief in the magic of the everyday.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa Clothesline Creatures -näyttelyn maailmaan – ilahduttava kohtaaminen, jossa näkemämme eläimet eivät ole peräisin luonnosta, vaan pyykkikorista.",
                "sv": "Välkommen till Clothesline Creatures – ett härligt möte med djur, inte från det vilda, utan ur tvättkorgen.",
                "en": "Welcome to Clothesline Creatures—a delightful encounter with animals not from the wild, but from the laundry basket."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66784/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66392",
            "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: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/kulke:758/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1170714,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T09:12:37.275269Z",
                    "last_modified_time": "2025-07-03T09:12:37.275283Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774010.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1170714/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-03T09:12:37.194119Z",
            "last_modified_time": "2025-09-26T14:13:27.327912Z",
            "date_published": null,
            "start_time": "2025-10-14T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jässäri-leffa: Legend of Ochi – Valtuusto 150v",
                "sv": "Jässäri-leffa: Legend of Ochi – Valtuusto 150v",
                "en": "Jässäri-leffa: Legend of Ochi – Valtuusto 150v"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/019F4A9139B0B885B116BCEFF8ADC742/Jassari-leffa_Legend_of_Ochi",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/019F4A9139B0B885B116BCEFF8ADC742/Jassari-leffa_Legend_of_Ochi",
                "en": "http://www.malmitalo.fi/en/events/event/019F4A9139B0B885B116BCEFF8ADC742/Jassari-leffa_Legend_of_Ochi"
            },
            "description": {
                "fi": "<p>The Legend of Ochi on lumoava fantasiaelokuva ennakkoluuloja rikkovasta ystävyydestä nuoren tytön ja pelätyn olennon Ochin välillä.</p><p>The Legend of Ochi on lumoava fantasiaelokuva ennakkoluuloja rikkovasta ystävyydestä nuoren tytön ja pelätyn olennon, ochin, välillä.</p><p>Kaukaisessa kylässä nuori Yuri on koko elämänsä ajan oppinut pelkäämään pimeyttä ja metsän varjoissa vaanivia petoja – ocheja. Mutta kun haavoittunut ochin poikanen eksyy laumastaan, Yuri ei voi kääntää sille selkäänsä. Hän päättää uhmata kyläläisten varoituksia ja isänsä kieltoja ja lähtee vaaralliselle matkalle palauttaakseen olennon kotiinsa – vaikka se saattaisi muuttaa kaiken, mihin hän on koskaan uskonut.</p><p>Elokuvan pääosissa nähdään nuori Helena Zengel Yurina, hänen isänään Maxina Willem Dafoe, erakoituneena äitinä Emily Watson sekä Finn Wolfhard.</p><p>Kesto: 1 tunti 36 min<br>Kieli englanti, tekstitys suomi<br>Ikäraja: 12</p><p>Elokuvanäytös on suunnattu ainoastaan yli 12-vuotiaille nuorille, joilla on Jässäri-kortti.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20296572/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>The Legend of Ochi är en förtrollande fantasyfilm om den fördomsfria vänskapen mellan en ung flicka och den fruktade varelsen Ochi.</p><p>I den avlägsna byn där unga Yuri bor har hon i hela sitt liv lärt sig att frukta mörkret och de odjur som lurar i skogens skuggor – ochis. Men när en skadad Ochi-unge tappar bort sig från sin flock kan Yuri inte vända den ryggen. Hon bestämmer sig för att trotsa bybornas varningar och sin fars förbud och ger sig ut på en farlig resa för att föra tillbaka varelsen till sitt hem – även om det kan förändra allt hon någonsin har trott på.</p><p>I huvudrollerna ses den unga Helena Zengel Yurina, hennes far Maxina Willem Dafoe, hennes Emily Watson som blivit enstöring, samt Finn Wolfhard.</p><p>Längd: 1 timme 36 minuter<br>Åldersgräns: 12</p><p>Filmvisningen riktar sig endast till ungdomar över 12 år som har Jässari-kortet.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20296572/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>The Legend of Ochi is a captivating fantasy film about an unconventional friendship between a young girl and a feared creature known as an ochi.</p><p>In a remote village, young Yuri has spent her whole life learning to fear the darkness and the predators lurking in the forest shadows – the ochis. But when a wounded baby ochi gets separated from its pack, Yuri cannot turn her back on it. She decides to defy the villagers' warnings and her father's orders, embarking on a dangerous journey to return the creature to its home – even if it changes everything she has ever believed.</p><p>The film stars young Helena Zengel as Yuri, Willem Dafoe as her father Max, Emily Watson as her reclusive mother and Finn Wolfhard.</p><p>Duration: 1 hour 36 min<br>Age limit: 12</p><p>The screening is only intended for young people over 12 years of age who have a Jässäri card.</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kaupunki-nuorisolippu-malmitalo-20296572/?affiliate=FSF\">HERE</a></u></p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "The Legend of Ochi on lumoava fantasiaelokuva ennakkoluuloja rikkovasta ystävyydestä nuoren tytön ja pelätyn olennon Ochin välillä.",
                "sv": "The Legend of Ochi är en förtrollande fantasyfilm om den fördomsfria vänskapen mellan en ung flicka och den fruktade varelsen Ochi.",
                "en": "The Legend of Ochi is a captivating fantasy film about an unconventional friendship between a young girl and a feared creature known as an ochi."
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66392/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66091",
            "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:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1170715,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T09:12:38.272379Z",
                    "last_modified_time": "2025-07-03T09:12:38.272392Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771462.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1170715/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-03T09:12:38.195214Z",
            "last_modified_time": "2025-09-26T14:13:24.821956Z",
            "date_published": null,
            "start_time": "2025-10-09T06:00:00Z",
            "end_time": "2025-10-09T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Seniorien palvelutori – löydä oma tapasi liikkua – Puhujana Pirkko Mannola",
                "sv": "Seniorernas servicetorg – Hitta ditt sätt att röra på dig! – Talare: Pirkko Mannola",
                "en": "Palvelutori senior service event at Cultural Centre Malmitalo on 9 October – find your way to move! – Speaker: Pirkko Mannola"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FF1BEDC5A3BB2866294A2F22E1E6FD24/Seniorien_palvelutori_loyda_oma_tapasi_liikkua",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/FF1BEDC5A3BB2866294A2F22E1E6FD24/Seniorernas_servicetorg_Hitta_ditt_satt_att_rora_pa_dig_",
                "en": "http://www.malmitalo.fi/en/events/event/FF1BEDC5A3BB2866294A2F22E1E6FD24/Palvelutori_senior_service_event_at_Cultural_Centre_Malmitalo_on_9_October_find_your_way_to_move_"
            },
            "description": {
                "fi": "<p>Tule tutustumaan alueen moninaisiin senioriystävällisiin liikuntamahdollisuuksiin, kohtaamaan ja tekemään!</p><p>Viime vuonna suursuosion saavuttanut Seniorien palvelutori järjestetään taas Malmitalossa torstaina 9.10. klo 9–14.</p><p>Tänä vuonna tapahtumassa on puhumassa ikiliikkuja <b>Pirkko Mannola!</b></p><p>Maksuton palvelutori tarjoaa kohtaamisia, mielekästä tekemistä ja tietoa vapaa-ajan mahdollisuuksista Malmin alueella. <br>Alueen yhdistykset ja toimijat esittelevät palveluitaan, pääset kysymään ja kokeilemaan. Tule mukaan ja tuo kaverisikin!</p><p><b>Inspiroivaa ohjelmaa mm.:</b> <br>•\tPirkko Mannolan puheenvuoro (kuulemaan mahtuu 200 henkilöä) <br>•\tDJ Börjen SenioriDisco <br>•\tSenioriKarate <br>•\tLuento: Aivoterveys ja tasapaino <br>•\tLiikuntahetkiä ja lajikokeiluja <br>•\tFlower Rescue -kukkatyöpaja <br>•\tVinkkejä liikkumiseen ja tekemistä Malmin alueella <br>•\tIdeoita arkeen, juttuseuraa ja kavereita <br>•\tKahvitarjoilu 300 ensimmäiselle  <br>•\tEsittelypisteitä – pääset kysymään ja kokeilemaan! <br> <br><b>Aikataulu</b> <br>Malmitalon parvella 400 ensimmäiselle kävijälle kahvitarjoilu.</p><p><b>Malmisali</b><br>9.15–10.00 Luento: Aivoterveys ja tasapaino (Matti Vartiainen)<br>10.00–10.40 DJ Börjen SenioriDisco<br>10.40–10.50 Hyvinvoiva Helsinki – sivuston esittely<br>10.50–11.20 Tietoisku: Lisää voimaa vuosiin (Ikäinstituutti)<br>12.00–13.00 Pirkko Mannolan puheenvuoro (kuulemaan mahtuu 200 henkilöä)<br>13.00–14.00 DJ Börjen SenioriDisco</p><p><b>Tanssisali</b><br>9.00–9.30 Tanssiopetusta (Kaija Räty​)<br>9.30–10 Asahi (Tapanilan erä ry​​)<br>10–10.15 Kehonhuolto (Alueliikunta​)<br>10.15–11.30 Tasapainojumppa (HNMKY​)<br>11.30–11.45 Tanssiopetusta (Kaija Räty​)<br>11.45–12.00 Seniorikarate (Tapanilan EräKarate​)<br>12.15–13.30​ Kokeillaan uusia liikkeitä (Ikäinstituutti​)<br>13.30–13.45 Seniorikarate (Tapanilan EräKarate)</p><p><b>Työväenopiston tilat</b><br>9.00–14.00 Märkätila: Heijastintyöpaja <br>12.00–14.00 Maalausluokka: Flower Rescue -kukkatyöpaja (niin kauan kuin materiaaleja riittää)<br>13.00–13.45 Puhelimen käytön niksit /Työväen digiopastus<br> <br>Yhteistyössä Helsingin kaupungin liikuntapalvelut, Helsingin Vapaaehtoistoiminta, Syystien palvelukeskus, Seniori-info, Yhteisötalo Malmi, Digituki, Urheiluhallit oy, Malmin uimahalli, Jade-yhteisö, Vanhustyön keskusliitto, Koillis-Helsingin lähimmäistyö, Milja Ry, Senioreiden salaisuudet-hanke, Etsivä vanhustyö, Suvanto Ry, Työväenopisto, Käpyrinne, Tapanilan EräKarate, Helsingin NMKY, Ikäinstituutti, Helsinki Missio, Sydänliitto, Malmin Varustamo, Vanhusten turva, Pääkaupunkiseudun omaishoitajat ja Suomen Monikulttuurinen Liikuntaliitto ry .</p><p>Vapaa pääsy!</p><p>Tapahtuma on osittain rahoitettu Euroopan unionin kertaluonteisesta elpymisvälineestä (NextGenerationEU).</p>",
                "sv": "<p>Det kostnadsfria servicetorget erbjuder möten, meningsfulla aktiviteter och information om fritidsmöjligheter i Malmområdet. Föreningar och aktörer i området presenterar sina tjänster och du kan ställa frågor och pröva på. Kom och ta med en vän!</p><p>Seniorernas servicetorg torsdagen den 9 oktober kl. 10–14 <br>Malms kulturhus, Nedre Malms torg 1<br>Fritt inträde!<br>Inspirerande program:<br>•\tTal av Pirkko Mannola<br>(plats för 200 personer)<br>•\tDJ Börjes SeniorDisco<br>•\tSeniorKarate<br>•\tFöreläsning: Hjärnhälsa och balans<br>•\tMotionsstunder och grenförsök<br>•\tBlomsterverkstad Flower Rescue<br>•\tTips för motion och aktiviteter i Malmområdet<br>•\tIdéer för vardagen, någon att prata med och kompisar<br>•\tKaffeservering för de första 300 <br>•\tPresentationspunkter – du kan ställa frågor och pröva på!</p><p><b>Tidtabell</b><br>På Malmitalos balkong serveras kaffe för de 400 första besökarna.</p><p><b>Malmsalen</b><br>9.15–10.00 Föreläsning: Hjärnhälsa och balans (Matti Vartiainen)<br>10.00–10.40 DJ Börjes SeniorDisco<br>10.40–10.50 Presentation av webbplatsen ”Välmående Helsingfors”<br>10.50–11.20 Informationsinslag: Mer styrka för de kommande åren (Äldreinstitutet)<br>12.00–13.00 Tal av Pirkko Mannola (plats för 200 personer)<br>13.00–14.00 DJ Börjes SeniorDisco</p><p><b>Danssal</b><br>9.00–9.30 Dansundervisning (Kaija Räty)<br>9.30–10.00 Asahi (Tapanilan Erä förening)<br>10.00–10.15 Kroppsvård (Områdesmotion)<br>10.15–11.30 Balansgympa (Helsingfors KFUM)<br>11.30–11.45 Dansundervisning (Kaija Räty)<br>11.45–12.00 SeniorKarate (Tapanilan Erä Karate)<br>12.15–13.30 Vi prövar på nya rörelser (Äldreinstitutet)<br>13.30–13.45 SeniorKarate (Tapanilan Erä Karate)</p><p><b>Arbetarinstitutets lokaler</b><br>9.00–14.00 Handarbetsklass: Reflexverkstad (Våtrum)<br>12.00–14.00 Målningsklass: Blomsterverkstad Flower Rescue (så länge material finns)<br>13.00–13.45 Tips för användning av mobiltelefonen (Digital handledning, Arbetarinstitutet)</p><p>I samarbete Helsingfors stads idrottstjänster, Helsingfors frivilligverksamhet, Höstvägens servicecentral, Seniorinfo, Gemenskapshuset Malm, Digitalt stöd, Urheiluhallit Oy, Malms simhall, Jade yhteisö ry, Centralförbundet för De Gamlas Väl, Koillis-Helsingin lähimmäistyö Milja Ry, Projektet Senioreiden salaisuudet, Uppsökande äldrearbete Suvanto ry, Arbetarinstitutet, digitalt stöd, Käpyrinne ry, Tapanilan Erän Karate, Helsingin NMKY, Äldreinstitutet, Helsingfors Mission, Hjärtförbundet, Varustamo-livsrummet i Malm, Vanhusten Turva sr,Pääkaupunkiseudun omaishoitajat ry och Suomen Monikulttuurinen Liikuntaliitto ry.</p><p>Evenemanget är delvis finansierat genom Europeiska unionens engångsinstrument för återhämtning (NextGenerationEU).</p>",
                "en": "<p>The free-of-charge Palvelutori senior service event offers encounters, meaningful activities and information about recreational opportunities in the Malmi area. Local associations and operators will be showcasing their services, and you can ask questions and try things out. Come along to the event and bring your friends, too!</p><p>Palvelutori senior service event on Thursday 9 October from 10:00 to 14:00 <br>Cultural Centre Malmitalo, Ala-Malmin tori 1<br>Free entry!<br>An inspiring programme:<br>•\tSpeech by Pirkko Mannola<br>(capacity 200 people)<br>•\tDJ Börje’s SeniorDisco<br>•\tSeniorKarate<br>•\tLecture: Brain health and balance<br>•\tExercise sessions and introductions to different sports<br>•\tFlower Rescue flower workshop<br>•\tTips for physical activities and other things to do in the Malmi area<br>•\tIdeas for everyday life, people to talk to and friends to make<br>•\tCoffee service for the first 300 participants <br>•\tPresentation stands – ask questions and try things out!</p><p><b>Timetable</b><br>On the balcony, coffee is available for max. 400 people in total.</p><p><b>Malmi Hall</b><br>9:15–10:00 Lecture: Brain health and balance (Matti Vartiainen)<br>10:00–10:40 DJ Börje’s SeniorDisco<br>10:40–10:50 Presentation of the “Wellbeing Helsinki” website<br>10:50–11:20 Presentation: More strength for the years ahead (Age Institute)<br>12:00–13:00 Speech by Pirkko Mannola (capacity 200 people)<br>13:00–14:00 DJ Börje’s SeniorDisco</p><p><b>Dance Hall</b><br>9:00–9:30 Dance class (Kaija Räty)<br>9:30–10:00 Asahi (Tapanilan Erä Association)<br>10:00–10:15 Body care (Regional sports services)<br>10:15–11:30 Balance exercises (Helsinki YMCA)<br>11:30–11:45 Dance class (Kaija Räty)<br>11:45–12:00 Senior karate (Tapanilan EräKarate)<br>12:15–13:30 Trying out new exercises (Age Institute)<br>13:30–13:45 Senior karate (Tapanilan EräKarate)</p><p><b>Adult Education Centre Facilities</b><br>9:00–14:00 Wet room: Reflector workshop <br>12:00–14:00 Painting classroom: Flower Rescue flower workshop (while materials last)<br>13:00–13:45 Tips for using your phone (Digital guidance, Adult Education Centre)</p><p>In cooperation with City of Helsinki Sports and Recreation services, Volunteer Helsinki, Syystie Service Centre, Senior Info, Community house Malmi, Digital support, Urheiluhallit oy, Malmi Swimming Hall, Jade community, The Finnish Association for the Welfare of Older People, Koillis-Helsingin lähimmäistyö Milja Ry, Senioreiden salaisuudet project, Outreach work for the elderly Suvanto Ry, Adult education centre, digital support, Käpyrinne, Tapanilan EräKarate, Helsinki YMCA, Age Institute, HelsinkiMissio, Finnish Heart Association, Malmi Varustamo, Vanhusten turva, The Association of Carers in Helsinki and Vantaa and Finnish Multicultural Sports Federation.</p><p>The event is partly funded by the European Union’s one-off recovery instrument (NextGenerationEU).</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tule tutustumaan alueen moninaisiin senioriystävällisiin liikuntamahdollisuuksiin, kohtaamaan ja tekemään!",
                "sv": "Det kostnadsfria servicetorget erbjuder möten, meningsfulla aktiviteter och information om fritidsmöjligheter i Malmområdet. Föreningar och aktörer i området presenterar sina tjänster och du kan ställa frågor och pröva på. Kom och ta med en vän!",
                "en": "The free-of-charge Palvelutori senior service event offers encounters, meaningful activities and information about recreational opportunities in the Malmi area. Local associations and operators will be showcasing their services, and you can ask questions and try things out. Come along to the event and bring your friends, too!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66091/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmymncrbe",
            "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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490926,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T12:25:42.614143Z",
                    "last_modified_time": "2025-09-26T12:25:42.614167Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/b69ff06d-f6af-4e2d-8cbf-e11a225cca72.png",
                    "cropping": "0,68,336,404",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on Diwali lyhty",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490926/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-26T12:26:14.405276Z",
            "last_modified_time": "2025-09-26T12:26:14.405296Z",
            "date_published": null,
            "start_time": "2025-10-04T11:00:00Z",
            "end_time": "2025-10-04T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Diwali askartelua",
                "en": "Diwali lantern making and Diya Painting workshop "
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Diwali koristeiden askartelua. Tule askartelemaan Salonkiin la 4.10. klo 14-17.&nbsp;&nbsp;Tapahtuma on englanninkielinen ja kaikille avoin ja maksuton!</p><p>Tervetuloa!</p>",
                "en": "<p>Diwali lantern making and Diya Painting workshop in multifunction room Salonki 4.10. from 14-17. The event is in English, open to everyone, and free of charge!</p><p>Welcome!</p><p>Deepavali, the Hindu \"Festival of Lights,\"&nbsp;symbolizes the triumph of good over evil, celebrated by lighting lamps and candles, decorating homes with rangoli and lights, sharing sweets and gifts, and gathering with loved ones for a bright and joyous occasion.&nbsp;</p>"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "short_description": {
                "fi": "Diwali koristeiden askartelua. Tule askartelemaan Salonkiin la 4.10. klo 14-17. ",
                "en": "Diwali lantern making and Diya Painting workshop . Create. Decorate and celebrate! In multifunction room Salonki 4.10. from 14-17. Welcome!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmymncrbe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7jhe4",
            "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:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:32.599773Z",
            "last_modified_time": "2025-09-26T11:49:32.599792Z",
            "date_published": null,
            "start_time": "2025-12-09T08:00:00Z",
            "end_time": "2025-12-09T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jhe4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7jhxe",
            "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:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:32.451697Z",
            "last_modified_time": "2025-09-26T11:49:32.451716Z",
            "date_published": null,
            "start_time": "2025-12-02T08:00:00Z",
            "end_time": "2025-12-02T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jhxe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7jibe",
            "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:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:32.303285Z",
            "last_modified_time": "2025-09-26T11:49:32.303305Z",
            "date_published": null,
            "start_time": "2025-11-25T08:00:00Z",
            "end_time": "2025-11-25T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jibe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7jiki",
            "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:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:32.163824Z",
            "last_modified_time": "2025-09-26T11:49:32.163845Z",
            "date_published": null,
            "start_time": "2025-11-18T08:00:00Z",
            "end_time": "2025-11-18T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jiki/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7jium",
            "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:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:32.016273Z",
            "last_modified_time": "2025-09-26T11:49:32.016292Z",
            "date_published": null,
            "start_time": "2025-11-11T08:00:00Z",
            "end_time": "2025-11-11T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jium/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7ji5u",
            "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:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:31.865851Z",
            "last_modified_time": "2025-09-26T11:49:31.865870Z",
            "date_published": null,
            "start_time": "2025-11-04T08:00:00Z",
            "end_time": "2025-11-04T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7ji5u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}