Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 34484,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=22&registration__remaining_attendee_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=20&registration__remaining_attendee_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:69342",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/teatteri-mukamas-metsan-arvoitus-malmitalo-21706040/",
                        "sv": "https://www.lippu.fi/event/teatteri-mukamas-metsan-arvoitus-malmitalo-21706040/",
                        "en": "https://www.lippu.fi/event/teatteri-mukamas-metsan-arvoitus-malmitalo-21706040/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385095,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-12T08:14:16.596376Z",
                    "last_modified_time": "2026-06-12T08:14:16.596390Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794015.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385095/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-12T08:14:16.523129Z",
            "last_modified_time": "2026-06-12T08:14:16.725606Z",
            "date_published": null,
            "start_time": "2026-10-22T15: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": "Teatteri Mukamas: Metsän arvoitus",
                "sv": "Teatteri Mukamas: Metsän arvoitus",
                "en": "Teatteri Mukamas: Metsän arvoitus"
            },
            "short_description": {
                "fi": "Metsäiseen seikkailuun meidät johdattaa elävä musiikki ja Anna-Liisa Tarvaisen hurmaavat nuket. Tervetuloa kokemaan metsän ihmeitä."
            },
            "description": {
                "fi": "<p>Metsäiseen seikkailuun meidät johdattaa elävä musiikki ja Anna-Liisa Tarvaisen hurmaavat nuket. Tervetuloa kokemaan metsän ihmeitä.</p><p><i>Kuuletko puiden huminaa,<br>lintujen laulua lempeää.<br>Rits, räts, oksa räsähtää ja orava paikalle hypähtää.<br>Kun metsässä oot, niin tiedäthän sen, ei tarvitse olla yksikseen.</p><p>Maasta löytyy kartta kumma,<br>mikä ihme se voikaan olla?<br>Ystävä tietenkin auttaa saattaa, kun pulma on sulla.</i></p><p>Kesto: noin 35 min<br>Ikäsuositus: yli 3-vuotiaille</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A9464B754486E8308C7F9072032802B7/Teatteri_Mukamas_Metsan_arvoitus",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A9464B754486E8308C7F9072032802B7/Teatteri_Mukamas_Metsan_arvoitus",
                "en": "http://www.malmitalo.fi/en/events/event/A9464B754486E8308C7F9072032802B7/Teatteri_Mukamas_Metsan_arvoitus"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69342/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69360",
            "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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385094,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-12T08:14:15.752778Z",
                    "last_modified_time": "2026-06-12T08:14:15.752795Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794012.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385094/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-06-12T08:14:15.645332Z",
            "last_modified_time": "2026-06-12T08:14:15.980493Z",
            "date_published": null,
            "start_time": "2026-10-16T15:00:00Z",
            "end_time": "2026-10-16T19: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": "Nuorten ruotsinlaiva goes Malmitalo",
                "sv": "Nuorten ruotsinlaiva goes Malmitalo",
                "en": "Nuorten ruotsinlaiva goes Malmitalo"
            },
            "short_description": {
                "fi": "Tule mukaan, kun Malmitalo muuttuu ruotsinlaivaksi! Syyslomaviikon elämystapahtuma 13–17-vuotiaille nuorille."
            },
            "description": {
                "fi": "<p>Tule mukaan, kun Malmitalo muuttuu ruotsinlaivaksi! Syyslomaviikon elämystapahtuma 13–17-vuotiaille nuorille.</p><p>Luvassa risteilyohjelmaa, disko ja nuorten toivoma artisti!</p><p>Check-in ennen laivaan astumista: osallistuminen edellyttää digijässärin. <u><a href=\"https://jassari.hel.fi\">Lue lisää ja rekisteröidy Jässärin käyttäjäksi: jassari.hel.fi.</a></u></p><p>Tapahtuman tuottaa Malmin nuorisotyöyksikkö ja Malmitalo.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D306AE39D7DF87CCE54B640F621688D1/Nuorten_ruotsinlaiva_goes_Malmitalo",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D306AE39D7DF87CCE54B640F621688D1/Nuorten_ruotsinlaiva_goes_Malmitalo",
                "en": "http://www.malmitalo.fi/en/events/event/D306AE39D7DF87CCE54B640F621688D1/Nuorten_ruotsinlaiva_goes_Malmitalo"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69360/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68344",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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: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:669/?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:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385051,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-10T09:14:00.630960Z",
                    "last_modified_time": "2026-06-10T09:14:00.630975Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787746.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385051/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-10T09:14:00.535843Z",
            "last_modified_time": "2026-06-12T08:14:11.280767Z",
            "date_published": null,
            "start_time": "2026-08-28T13:00:00Z",
            "end_time": "2026-08-28T14: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": "Utopiapedagogiikkaa: professori Antti Rajalan ja väitöskirjatutkija Aki Saariahon luento – Metsän suojassa",
                "sv": "Utopiapedagogiikkaa: professori Antti Rajalan ja väitöskirjatutkija Aki Saariahon luento",
                "en": "Utopiapedagogiikkaa: professori Antti Rajalan ja väitöskirjatutkija Aki Saariahon luento"
            },
            "short_description": {
                "fi": "Luento esittelee utopiapedagogiikan historiaa, taustaa ja keskeisiä ajatuksia professori Antti Rajalan johdolla."
            },
            "description": {
                "fi": "<p>Luento esittelee utopiapedagogiikan historiaa, taustaa ja keskeisiä ajatuksia professori Antti Rajalan johdolla.</p><p>Lisäksi väitöskirjatutkija Aki Saariaho kuvaa, miten utopiapedagogiikkaa on sovellettu käytännössä lukio-opetuksessa. <br> <br>Utopian ydin on toisin oleminen. Siinä on kyse hyvinvoinnin ja hyvän elämän ehtojen ja merkityksen tutkimisesta. Luennolla tarkastellaan konkreettisten utopioiden pedagogiikkaa: miten opetus voi tukea nuorten yhteiskunnallista toimijuutta ja auttaa heitä vaikuttamaan lähiyhteisöissään, yhteiskunnassa ja globaalisti. Esimerkkinä esitellään Otaniemen lukiossa toteutettu opetuskokeilu, jossa lukiolaiset hyödynsivät tekoälyä ja visioivat vaihtoehtoisia tulevaisuuksia Suomelle. Kaikissa opiskelijoiden utopiamalleissa on metsä jollain tavalla osallisena.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/112CB9FD9F8B482D87D6845EE4B65F7B/Utopiapedagogiikkaa_professori_Antti_Rajalan_ja_vaitoskirjatutkija_Aki_Saariahon_luento",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/112CB9FD9F8B482D87D6845EE4B65F7B/Utopiapedagogiikkaa_professori_Antti_Rajalan_ja_vaitoskirjatutkija_Aki_Saariahon_luento",
                "en": "http://www.kanneltalo.fi/en/events/event/112CB9FD9F8B482D87D6845EE4B65F7B/Utopiapedagogiikkaa_professori_Antti_Rajalan_ja_vaitoskirjatutkija_Aki_Saariahon_luento"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68344/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69211",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/sofra-trio-lumira-vuotalo-21777793/",
                        "sv": "https://www.lippu.fi/event/sofra-trio-lumira-vuotalo-21777793/",
                        "en": "https://www.lippu.fi/event/sofra-trio-lumira-vuotalo-21777793/"
                    },
                    "price": {
                        "fi": "10 € / 8 €",
                        "sv": "10 € / 8 €",
                        "en": "10 € / 8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384924,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-03T06:13:42.226849Z",
                    "last_modified_time": "2026-06-03T06:13:42.226865Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792325.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-02T11:13:38.189925Z",
            "last_modified_time": "2026-06-12T07:14:05.776964Z",
            "date_published": null,
            "start_time": "2026-10-03T15: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": "Sofra Trio & Lumira – Nomads Festival Vuotalossa",
                "sv": "Sofra Trio & Lumira – Nomads Festival på Nordhuset",
                "en": "Sofra Trio & Lumira – Nomads Festival at Vuosaari House"
            },
            "short_description": {
                "fi": "Musiikilliset maailmat ja kaksi yhtyettä kohtaavat yhteisten juurien, äänien ja taiteellisen vision kautta.",
                "en": "An evening of shared musical worlds, where two ensembles meet through common roots, voices and artistic vision."
            },
            "description": {
                "fi": "<p>Musiikilliset maailmat ja kaksi yhtyettä kohtaavat yhteisten juurien, äänien ja taiteellisen vision kautta.</p><p>Konsertissa kohtaavat Sofra Trio ja Lumira. Näitä kokoonpanoja yhdistävät samat ydinmuusikot, mutta ne kehittyvät kohti omia, omaleimaisia äänimaailmojaan.</p><p><b>Sofra Trio</b><br>Melisa Yıldırım, Merve Abdurrahmani ja Hadi Hrekes luovat musiikillisen sofran eli yhteisen pöydän, jossa Syyrian, Turkin ja Balkanin perinteet kohtaavat. Perinteisestä kappalevalikoimasta sekä omista sävellyksistä ammentava musiikki kutoo yhteen muistot, muuttoliikkeen ja nykyajan ilmaisun eläväksi, kehittyväksi vuoropuheluksi.</p><p><b>Lumira: debyyttikonsertti</b><br>Lumirassa Merve Abdurrahmani ja Melisa Yıldırım saavat seurakseen Aki Rissanen uuteen yhtyeeseen, joka tutkii empatiaa, yhteisöllisyyttä ja konfliktialueiden elämän tunne-elämää. Yhdistämällä suomalaisia, balkanilaisia ja turkkilaisia musiikkiperinteitä Lumira liikkuu omien sävellysten ja kansanlaulujen, erityisesti kehtolaulujen ja lastenlaulujen, välillä ja välittää muistojen, menetyksen ja huolenpitoa koskevia teemoja sukupolvelta toiselle.</p><p>Nimi Lumira heijastaa projektin ydintä: lumi (valo, pohjoisen hiljaisuus) ja mira (rauha monissa kielissä). Musiikin kautta yhtye kutsuu kuulijat pohtimaan, tuntemaan ja löytämään uudelleen yhteyden kriisistä kärsivien lasten usein kuulumattomiin ääniin.</p><p>Yhdessä nämä kaksi esitystä muodostavat jatkuvan musiikillisen matkan – yhteisestä pöydästä sisäiseen maisemaan – jossa samat taiteilijat avaavat erilaisia ovia ääniin, tarinoihin ja kuunteluun.</p><p>Klubi-ilta, A-oikeudet, Café Pokkari huolehtii tarjoilusta, ovet avataan klo 17.30.<br>Konsertin kesto: noin 130 min., sisältäen väliajan.<br>Liput à 10 / 8 € @ Lippu.fi tai lippuautomaatilta ovelta.</p>",
                "sv": "<p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30.</p><p>Konsertens längd: ca. 130 min. inkl. paus.<br>Biljetter à 10 / 8 € via Lippu.fi eller från biljettautomaten vid dörren.</p>",
                "en": "<p>An evening of shared musical worlds, where two ensembles meet through common roots, voices and artistic vision.</p><p>The concert brings together Sofra Trio and Lumira. Two formations connected through the same core musicians, yet unfolding in distinct sonic directions.</p><p><b>Sofra Trio</b><br>Melisa Yıldırım, Merve Abdurrahmani and Hadi Hrekes create a musical sofra; a shared table where traditions from Syria, Türkiye and the Balkans meet. Drawing from both traditional repertoire and original compositions, their music weaves together memory, migration and contemporary expression into a living, evolving dialogue.</p><p><b>Lumira: debut concert</b><br>With Lumira, Merve Abdurrahmani and Melisa Yıldırım are joined by Aki Rissanen in a new ensemble exploring empathy, community and the emotional realities of life in conflict zones. Blending Finnish, Balkan and Turkish musical traditions Lumira moves between original compositions and folk songs, especially lullabies and songs for children, carrying themes of memory, loss and care across generations.</p><p>The name Lumira reflects the project’s essence: lumi (snow, light, stillness of the North) and mira (peace in many languages). Through music, the ensemble invites listeners to reflect, to feel, and to reconnect with the often unheard voices of children affected by crisis.</p><p>Together, these two performances form a continuous musical journey – from shared table to inner landscape – where the same artists open different doors into sound, story and listening.</p><p>Club night, refreshments by Café Pokkari, starting from 5:30 PM.<br>Duration: approximately 2 h 10 min, including intermission.<br>Tickets à 10 / 8 € @ Lippu.fi, or from the ticket machine at the door.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C507CCB060FDB51A64799F7E8B92C439/Sofra_Trio_Lumira",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C507CCB060FDB51A64799F7E8B92C439/Sofra_Trio_Lumira",
                "en": "http://www.vuotalo.fi/en/events/event/C507CCB060FDB51A64799F7E8B92C439/Sofra_Trio_Lumira"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69211/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68713",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1994114,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-06T10:14:10.696083Z",
                    "last_modified_time": "2026-05-06T10:14:10.696174Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786208.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1994114/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-05-06T10:14:10.328417Z",
            "last_modified_time": "2026-06-12T07:13:52.966942Z",
            "date_published": null,
            "start_time": "2026-06-12T06:30:00Z",
            "end_time": "2026-06-12T18: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": "Helsinki-päivä Annantalossa",
                "sv": "Helsingforsdagen på Annegården",
                "en": "Helsinki Day at Annantalo"
            },
            "short_description": {
                "fi": "Annantalon Helsinki-päivä tarjoaa musiikkia, teatteria ja taidetta koko perheelle aamusta iltaan.",
                "sv": "Helsingforsdagen på Annegården bjuder på musik, teater och konst för hela familjen från morgon till kväll.",
                "en": "Helsinki Day at Annantalo offers music, theatre and art for the whole family from dawn till dusk."
            },
            "description": {
                "fi": "<p>Annantalon Helsinki-päivä tarjoaa musiikkia, teatteria ja taidetta koko perheelle aamusta iltaan.</p><p>Tervetuloa viettämään koko perheen Helsinki päivää Annantaloon! Luvassa on musiikkia, teatteria, taidepajoja ja yhdessäoloa aamusta iltaan. Kaikkiin tapahtumiin on vapaa pääsy.</p><p>HUOM. Sateen vuoksi kaikki A.-lavan ohjelma sisällä Annansalissa</p><p><b>Aikataulu</b><br>klo 9.30 & 10.45 Päistikka -orkesterin konsertti (A.-lava / sateella Annansali)<br>klo 10–15 Avoin taidepaja: Elävä Helsinki (etupiha / sateella sisällä)<br>klo 12–12.30 Piknikkonsertti: Valtuutetut- duo (A.-lava)<br>klo 15.30 & 18.00 Stella Polaris: Maaginen matka<br>klo 19–21 Downtown Open Mic (A.-lava)</p><p><b>Päistikka-orkesterin konsertti<br>klo 9.30 ja klo 10.45, Annantalon A.-lava</b><br>(Sateella Annansalissa, jolloin paikka kannattaa varata ennakkoon)<br>Päistikka-orkesterin riemukkaassa konsertissa syöksytään seikkailuihin ja mielikuvituksen maailmaan. On aika tanssia robottidiskossa tai ryhtyä hirviöhippaan! Musiikin ja tarinoiden täyttämä show kutsuu myös yleisön mukaan osallistumaan.</p><p>Esiintyjät:<br>Tuukka Martiskainen, laulu, ukulele, samplet<br>Elina Vehkaoja, laulu, koskettimet<br>Erno Kettunen – kitara, trumpetti<br>Juhani Saari – basso</p><p>Kesto: 30 min<br>Ikäsuositus: 1+<br>Kieli: suomi<br>Paikkavaraukset (jos sade yllättää): annantalo.fi, 12.5. klo 8 alkaen</p><p><b>Avoin taidepaja: Elävä Helsinki<br>klo 10–15 — Annantalon etupiha</b><br>(Sateella sisätiloissa)<br>Mikä se siellä vipeltää, sukkelasti sujahtaa? Työpajassa tutkitaan Annantalon lähiluontoa, kurkistetaan vaikka kiven alle. Havainnoidaan pienistä pienintä ja vähän isompaakin.<br>Eliökunnan manifestin innoittamana maalataan ihmeellisillä luonnon väreillä. Manifestiin voi tutustua Annantalon aulassa.<br>Suurennuslasi matkaan ja pensseli käteen!<br>Ohjaajat: Marjut Maristo ja Heli Niska<br>Maksuton ja avoin kaikenikäisille.</p><p><b>Piknikkonsertti: Valtuutetut -duo<br>klo 12–12.30, A.-lava</b><br>Helsingin kaupunginvaltuutetut Nora Grotenfelt ja Antti Vuorela esittävät lastenlauluja ruotsiksi ja suomeksi. Luvassa on tarinoita, nostalgiaa ja hyväntuulista yhteisöllisyyttä.<br>Omat eväät ja piknikviltit mukaan!</p><p><b>Stella Polaris: Maaginen matka<br>klo 15.30 ja klo 18.00</b><br>Stella Polariksen improvisoidussa koko perheen näytelmässä lapset pääsevät vaikuttamaan tarinan kulkuun ja hahmoihin. Näyttelijät, muusikko ja valosuunnittelija loihtivat esityksen yleisön ehdotusten pohjalta – jokainen kerta on täysin uudenlainen.<br>Tulkaa mukaan ihmettelemään, kuinka kokonainen näytelmä syntyy silmien edessä täynnä yllätyksiä, hauskuutta ja hulvattomia käänteitä!<br>Ikäsuositus: 6+<br>Kesto: noin 45 min<br>Kieli: suomi<br>Paikkavaraukset: annantalo.fi, 12.6.2026 klo 8 alkaen</p><p><b>Downtown Open Mic<br>klo 19–21, A.-lava</b><br>Downtown Open Mic tapahtuu Annantalon A-lavalla Helsinki-päivänä 12.6. klo19–21! Tervetuloa esiintymään ja nauttimaan lämpimästä tunnelmasta juontajan Pyry Aallon kanssa. Lavalta löytyy mikit, kosketinsoittimet ja kytkentä kitaralle. Meillä on myös paikan päällä DJ, joka voi soittaa taustanauhoja. Voit hakea esiintyjäksi ennakkoon. Esiintyjien ilmoittautumiset aukeavat toukokuun lopulla.</p><p><a href=\"https://forms.gle/jMahogwYyFdxrd7L9\"><u>Ilmoittaudu Open Mic -esiintyjäksi tästä!</a></u></p><p>Nähdään Annantalolla!</p>",
                "sv": "<p>Helsingforsdagen på Annegården bjuder på musik, teater och konst för hela familjen från morgon till kväll.</p><p>Välkommen till Annegården för att fira Helsingforsdagen med hela familjen! Det blir musik, teater, konstverkstäder och samvaro från morgon till kväll. Alla evenemang har fritt inträde.</p><p><b>Tidtabell</b><br>kl. 9.30 & 10.45 Konsert med orkestern Päistikka (A-scenen/vid regn i Annesalen)<br>kl. 10–15 Öppen konstverkstad: Ett levande Helsingfors (gården på framsidan/vid regn inomhus)<br>kl. 12–12.30 Picknickkonsert: Duon Valtuutetut (A-scenen)<br>kl. 15.30 & 18.00 Stella Polaris: Maaginen matka<br>kl. 19–21 Downtown Open Mic (A-scenen)</p><p><b>Konsert med orkestern Päistikka<br>kl. 9.30 och kl. 10.45, Annegårdens A-scen</b><br>(Om det regnar, inne i Annesalen, så boka gärna plats i förväg)<br>I Päistikka-orkesterns glada konsert dyker vi ner i äventyrens och fantasins värld. Det är dags att dansa robotdisco eller leka monstertafatt! Den här showen, fylld av musik och berättelser, bjuder också in publiken att vara med.</p><p>På scenen:<br>Tuukka Martiskainen – sång, ukulele, samples<br>Elina Vehkaoja – sång, keyboard<br>Erno Kettunen – kitara, trumpetti<br>Juhani Saari – basso<br>Längd: 30 minuter<br>Åldersrekommendation: 1+<br>Språk: finska<br>Platsbokningar (om det regnar): annantalo.fi, från 12.6 kl. 8</p><p><b>Öppen konstverkstad: Ett levande Helsingfors<br>kl. 10–15, Gården framför Annegården</b><br>(Inomhus vid regn)<br>Vad är det som snabbt ilar förbi? I verkstaden utforskar vi naturen i närheten av Annegården, till exempel genom att titta under stenar. Vi upptäcker de minsta av de minsta och även sådana som är lite större.<br>Vi målar med fantastiska naturfärger och med inspiration från organismernas manifest. Du kan ta del av manifestet i Annegårdens entré.<br>Ta med dig ett förstoringsglas och en pensel!<br>Ledare: Marjut Maristo och Heli Niska<br>Kostnadsfritt och öppet för alla åldrar.</p><p><b>Picknickkonsert: Duon Valtuutetut<br>kl. 12–12.30, A-scenen</b><br>Nora Grotenfelt och Antti Vuorela från Helsingfors stadsfullmäktige framför barnvisor på finska och svenska.. Det utlovas berättelser, nostalgi och god stämning.<br>Ta med egen matsäck och picknickfilt!</p><p><b>Stella Polaris Maaginen matka (en magisk resa)<br>kl. 15.30 och kl. 18.00</b><br>I improvisationsduon Stella Polaris föreställning för hela familjen får barnen påverka berättelsen och karaktärerna. Skådespelarna, musikern och ljusdesignern trollar fram en föreställning utifrån publikens förslag – och den blir helt ny varje gång.<br>Kom med och förundras över hur en hel föreställning full av överraskningar, skoj och fantastiska vändningar skapas framför dina ögon!<br>Åldersrekommendation: 6+<br>Längd: cirka 45 min.<br>Språk: finska<br>Platsbokning i Annesalen: annantalo.fi, från 12.6.2026 kl. 8</p><p><b>Downtown Open Mic<br>kl. 19–21, A-scenen</b><br>Downtown Open Mic ordnas på Annegårdens A-scen på Helsingforsdagen 12.6 kl. 19–21! Välkommen att uppträda och njuta av den varma stämningen med programledaren Pyry Aalto. På scenen finns mikrofoner, keyboard och en anslutning för gitarr. Vi har också en DJ på plats, som kan spela bakgrundsmusik. <br>Du kan ansöka om att få uppträda i förväg. Anmälningarna för uppträdanden öppnar i slutet av maj på annantalo.fi.</p><p><a href=\"https://forms.gle/jMahogwYyFdxrd7L9\"><u>Open Mic anmälningsblankett (på finska)</a></u></p><p>Vi ses på Annegården!</p>",
                "en": "<p>Helsinki Day at Annantalo offers music, theatre and art for the whole family from dawn till dusk.</p><p>Welcome to Annantalo to celebrate Helsinki Day with the whole family! There will be music, theatre, art workshops and socialising from dawn till dusk. Entry to all of the events is free of charge.</p><p><b>Schedule</b><br>9.30 & 10.45 Päistikka orchestra concert (A stage / Annansali if it rains)<br>10.00–15.00 Open art workshop: Elävä Helsinki (Living Helsinki) (front yard / inside if it rains)<br>12.00–12.30 Picnic concert: The Valtuutetut duo (A stage)<br>15.30 & 18.00 Stella Polaris: Maaginen matka (‘A magical journey’)<br>19.00–21.00 Downtown Open Mic (A stage)</p><p><b>Concert by the Päistikka orchestra 9.30 and 10.45, Annantalo A stage</b><br>(If it rains, the concert will be held in Annansali; book in advance to avoid disappointment)<br>In this exhilarating concert, the audience will plunge into a world of adventure and imagination. It's time to dance in a robot disco or chase monsters! Filled with music and stories, the show also invites the audience to get involved.</p><p>Performers:<br>Tuukka Martiskainen – vocals, ukulele, samples<br>Elina Vehkaoja – vocals, keyboards<br>Erno Kettunen – kitara, trumpetti<br>Juhani Saari – basso</p><p>Duration: 30 min<br>Recommended age: 1+<br>Language: Finnish<br>Reservations (in case of rain): annantalo.fi, 12 June from 8.00 onwards</p><p><b>Open art workshop: Elävä Helsinki (‘Living Helsinki’)<br>10.00–15.00, Annantalo front yard</b><br>(Indoors if it rains)<br>What's that dashing there, shooting around? The workshop explores the nature around Annantalo, even peering under rocks. We will observe the smallest of the small and take a look at bigger things.<br>Inspired by the Eliökuntalaisten manifesti (‘A Manifesto for the Living World’), we paint in the wondrous colours of nature. You can read the manifesto in the Annantalo lobby.<br>Bring a magnifying glass and grab a paintbrush!<br>Instructors: Marjut Maristo and Heli Niska<br>Free of charge and open to all ages.</p><p><b>Picnic concert: Valtuutetut duo<br>12.00–12.30, A stage</b><br>Helsinki City Councillors Nora Grotenfelt and Antti Vuorela perform Children songs fin Finnsh and Swedish. There will be stories, nostalgia and good-humoured community spirit.<br>Bring your own picnic and blankets!</p><p><b>Stella Polaris: Maaginen matka (‘A magical journey’)<br>15.30 and 18.00</b><br>In Stella Polaris' improvised play for the whole family, children get to influence the story and the characters. The actors, musician and lighting designer will create the show based on suggestions from the audience – the performance will be different every time.<br>Come along and see a whole play unfold before your eyes, full of surprises, fun and hilarious twists and turns!<br>Recommended age: 6+<br>Duration: approximately 45 min<br>Language: Finnish<br>Seat reservations for Annansali: annantalo.fi, 12 June 2026 from 8.00 onwards</p><p><b>Downtown Open Mic<br>19.00–21.00, A stage</b><br>Downtown Open Mic takes place at Annantalo's A stage on Helsinki Day 12 June at 19.00–21.00! Come and enjoy the warm atmosphere with host Pyry Aalto. On stage you'll find mics, keyboards and a plug for the guitar. The event will also have an on-site DJ who can play backing tracks. <br>You can apply to be a performer in advance. Registrations for performers will open at the end of May on annantalo.fi.</p><p><a href=\"https://forms.gle/jMahogwYyFdxrd7L9\"><u>Open Mic registration form (in Finnish)</a></u></p><p>See you at Annantalo!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3974A7009DB309C2C7AFACFB09839CCB/Helsinki-paiva_Annantalossa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/3974A7009DB309C2C7AFACFB09839CCB/Helsingforsdagen_pa_Annegarden",
                "en": "http://www.annantalo.fi/en/events/event/3974A7009DB309C2C7AFACFB09839CCB/Helsinki_Day_at_Annantalo"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68713/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69229",
            "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: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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385093,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-12T06:13:49.332145Z",
                    "last_modified_time": "2026-06-12T06:13:49.332168Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793542.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385093/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-12T06:13:49.176161Z",
            "last_modified_time": "2026-06-12T06:13:49.542982Z",
            "date_published": null,
            "start_time": "2026-06-05",
            "end_time": "2026-07-26",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "MINUN METSÄNI",
                "sv": "MINUN METSÄNI",
                "en": "MINUN METSÄNI"
            },
            "short_description": null,
            "description": {
                "fi": "<p>Helsingin Taiteilijaseuran ja Tampereen Taiteilijaseuran Ekologisen taiteen työpajat -yhteistyöhankkeen teoksia Malmitalon galleriassa.</p><p>Työpajat järjestettiin 9.–10.5.2026 Helsingin Taiteilijaseuran Kurssikeskuksen tiloissa Kaapelitehtaalla.  Tyopajojen ideoijina ja ohjaajina toimivat kuvataiteilija Satu Kalliokuusi, joka on ollut mukana Koneen Säätiön Metsän puolella rahoituksella tuotetussa Sentient Forest hankkeessa ja kuvataiteilija Terhi Ekebom.</p><p>Työpajojen taustana ja teosten inspiraation lähteenä on käytetty Koneen Säätiön julkaisemaa Metsien tulevaisuustarinat 2025 -materiaalia, joka pohjautuu Metsän puolella -aloitteen ja DialogiAkatemian koordinoiman Suuren Metsädialogipäivän keskusteluihin ja niistä toimitettujen kirjausten analyysiin. Työpajoissa valmistettiin luonnonkasveista ekologisia kasvimusteita, joilla maalattiin teemaan liittyviä teoksia, sekä valmistettiin zine-taiteilijakirjoja. Osa teoksista on valmistunut taiteilijoiden omilla työhuoneilla työpajaviikonlopun jälkeen.</p><p>Näyttelyssä nähdään teoksia seuraavilta taiteilijoilta: Milja Hakkarainen, Helena Hartman, Sanna Härkönen, Katri Ikävalko, Merja Isomaa-James, Anna-Leena Kinnunen, Jaana Kirjonen, Jenni Koivurova, Jaana Kortelainen, Tiina Kymäläinen, Heta Laitakari, Carla Lundell, Hilkka Luosa, Pia Männikkö, Noora Palmu, Pilvi Pääkkönen, Terhi Sallinen, Merja Salonen Di Giorgio, Saara Sillanpää, Maija Toropainen.</p><p>Näyttelyn avajaisia vietetään 4.6.2026 klo 17 lähtien. Näyttely on osa <u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/BC7E23145ED3EE112007BDC5171F83A3/Vimma__Dragsvik_ja_luovaa_tekemist__kaikille\">Malmin tapahtumakesän avajaisia</u></a>.</p><p>Lämpimästi tervetuloa!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6BD98625DA6A3B9D9C84765D36B43774/MINUN_METSANI",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6BD98625DA6A3B9D9C84765D36B43774/MINUN_METSANI",
                "en": "http://www.malmitalo.fi/en/events/event/6BD98625DA6A3B9D9C84765D36B43774/MINUN_METSANI"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69229/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpg4hdwzm",
            "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: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:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2384777,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-28T09:41:59.933883Z",
                    "last_modified_time": "2026-05-28T09:41:59.933903Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/6f55fdb5-cc83-4551-a2dc-52428708b87d.jpg",
                    "name": "",
                    "cropping": "182,0,897,714",
                    "photographer_name": "",
                    "alt_text": "Kuvassa lukee Oivan piilo ja siinä on Oivan piilo-kirjan kuvitus lapsia, joka kurkistaa verhojen välistä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384777/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-05-28T09:52:15.285574Z",
            "last_modified_time": "2026-06-11T12:29:55.721158Z",
            "date_published": null,
            "start_time": "2026-06-16T14:00:00Z",
            "end_time": "2026-06-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": "Oivan piilo-lastenkirjan julkkarit",
                "sv": "Lanseringsevenemanget för barnboken ”Oivan piilo” (evenemanget hålls på finska)",
                "en": "The launch event for Oivan piilo childrens book (the event is in finnish)"
            },
            "short_description": {
                "fi": "Tervetuloa Lippulaivan kirjaston monitoimitila Salonkiin tiistaina 16.6.2026 klo 17-18 Oivan piilon pariin! ",
                "sv": "Kom till Lippulaiva-bibliotekets samlingslokal, Salonki, tisdagen den 16 juni kl. 17.00–18.00 för lanseringsfesten för barnboken ”Oivan piilo”! ",
                "en": "Join us at the Lippulaiva Library’s multipurpose space, Salonki, on Tuesday, June 16, from 5:00 to 6:00 p.m. for “Oivan piilo”children sbook launch party! "
            },
            "description": {
                "fi": "<p>Tervetuloa Lippulaivan kirjastoon tiistaina 16.6.2026 klo 17-18 Oivan piilon pariin! Maja syntyy värikkäistä Länsi-Afrikan kankaista ja tarjolla on lukuhetken, sinttien värityksen ja leikin ohella mehukestit.</p><p>Kirjan on kirjoittanut Katri Tapola ja sen on kuvittanut Karoliina Pertamo.</p>",
                "sv": "<p>Välkommen till Lippulaiva-biblioteket tisdagen den 16 juni 2026, kl. 17.00–18.00, för ett evenemang med temat boken ”Oivan piilo”! Lekstugan är gjord av färgglada västafrikanska tyger, och vi bjuder på sagostund, målarbilder och lekar, samt juice.</p><p>Boken är skriven av Katri Tapola och illustrerad av Karoliina Pertamo.</p>",
                "en": "<p>Welcome to the Lippulaiva Library on Tuesday, June 16, 2026, from 5:00 to 6:00 p.m. for Oivan piilo book themed event! The playhouse is made from colorful West African fabrics, and we’ll have story time, coloring, and games, as well as juice.</p><p>The book is written by Katri Tapola and illustrated by Karoliina Pertamo.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg4hdwzm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplnw3o6a",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2385091,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-06-11T12:13:52.777962Z",
                    "last_modified_time": "2026-06-11T12:14:45.422858Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/697236f0-2d8a-464e-92fe-f97c0d03fe76.png",
                    "name": "Laura Partti: The Fear of Being Seen",
                    "cropping": "136,0,864,727",
                    "photographer_name": "",
                    "alt_text": "Laura Partti: Mieleni maisemia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385091/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-11T12:25:04.145664Z",
            "last_modified_time": "2026-06-11T12:25:04.145680Z",
            "date_published": "2026-06-11T12:11:00Z",
            "start_time": "2026-06-28T07:00:00Z",
            "end_time": "2026-07-24T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Laura Partti: Mieleni maisemat (taidenäyttely)",
                "sv": "Laura Partti: Mieleni maisemat (landskap i mitt sinne; konstutställning)",
                "en": "Laura Partti: Landscapes of the Mind (art exhibition)"
            },
            "short_description": {
                "fi": "Surrealistisia akryyli- ja öljyvärimaalauksia.",
                "sv": "Surrealistiska akryl- och oljemålningar.",
                "en": "Surrealist acrylic and oil paintings."
            },
            "description": {
                "fi": "<p><strong>Laura Partti</strong> maalaa surrealistisia akryyli- ja öljyvärimaalauksia, jotka käsittelevät tunteita, pelkoja ja mielen maisemia.&nbsp;Teoksissa esiintyy usein myös kissoja. Kyseessä on taiteilijan ensimmäinen soolotaidenäyttely. </p><p>Näyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p>",
                "sv": "<p><strong>Laura Partti</strong>s surrealistiska akryl- och oljemålningar handlar om känslor, rädslor och inre landskap. Katter förekommer också ofta i verken. Det här är konstnärens första soloutställning.&nbsp;</p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p>",
                "en": "<p><strong>Laura Partti</strong>’s surrealist acrylic and oil paintings explore emotions, fears, and the landscapes of the mind. Cats also frequently appear in her works. This is the artist’s first solo exhibition.&nbsp;</p><p>The exhibition can be seen during the library opening hours. Welcome!</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Galleria Betoni",
                "sv": "Galleri Betoni",
                "en": "Gallery Betoni"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnw3o6a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplnjbr7a",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbswe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbtey/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbttm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbucq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbuq4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbvaq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbvpe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbv64/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbwoq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbw6q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbxny/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbx74/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbyse/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbzb4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbzra/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbz7m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjb2ny/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjb25a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjb3ku/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490477,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-01-09T09:24:36.937708Z",
                    "last_modified_time": "2025-12-15T11:38:11.637956Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a7182e5c-6cf7-46de-8640-6cc66b279d47.png",
                    "name": "",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "nuoret metroasemalla istumassa penkillä sylikkäin, heillä on hymy herkässä!",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-11T12:13:29.151793Z",
            "last_modified_time": "2026-06-11T12:15:54.904785Z",
            "date_published": null,
            "start_time": "2026-08-18T13:00:00Z",
            "end_time": "2026-12-15T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Luovat - nuorten luovan kirjoittamisen piiri",
                "sv": "Luovat - kreativ skrivcirkel för ungdomar",
                "en": "Luovat - creative writing circle for young people"
            },
            "short_description": {
                "fi": "Luovat - nuorten luovan kirjoittamisen piiri tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00.",
                "sv": "Kreativt skrivande för ungdomar på tisdagar på Jukeboksi i Entresse biblioteket kl. 16–17.",
                "en": "Creative writing club for young people on Tuesdays at the Jukeboksi in the Entresse Library from 4 to 5 p.m."
            },
            "description": {
                "fi": "<p>Tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.</p><p>Tule kokeilemaan sanataidetta. Ryhmässä saa kirjoittaa, piirtää ja jutella mukavassa porukassa.</p><p>Kaikki ovat tervetulleita ryhmään!</p>",
                "sv": "<p>Tisdagar på Entresse Biblioteks Jukeboksi från kl. 16 till 17.</p><p>Kom och prova på ordkonsten. I gruppen kan du skriva, rita och prata i en trevlig atmosfär.</p><p>Alla är välkomna att delta i gruppen!</p>",
                "en": "<p>Tuesdays at the Entresse Library Jukeboksi from 4 to 5 p.m.</p><p>Come and try your hand at creative writing. The group offers a chance to write, draw, and chat in a friendly atmosphere.</p><p>Everyone is welcome to join the group!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "location_extra_info": {
                "fi": "Jukeboksi",
                "sv": "Jukeboksi",
                "en": "Jukeboksi"
            },
            "provider": {
                "fi": "Entressen kirjasto",
                "sv": "Entresse biblioteket",
                "en": "Entresse Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbr7a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69331",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:754/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p19906/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38277/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi//artist/iltarivierallaolavipaavolaisenkanssa/ilta-rivieralla-olavi-paavolaisen-kanssa-4152688/",
                        "sv": "https://www.lippu.fi//artist/iltarivierallaolavipaavolaisenkanssa/ilta-rivieralla-olavi-paavolaisen-kanssa-4152688/",
                        "en": "https://www.lippu.fi//artist/iltarivierallaolavipaavolaisenkanssa/ilta-rivieralla-olavi-paavolaisen-kanssa-4152688/"
                    },
                    "price": {
                        "fi": "24,80 / 20 €",
                        "sv": "24,80 / 20 €",
                        "en": "24,80 / 20 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385089,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-11T12:14:06.714945Z",
                    "last_modified_time": "2026-06-11T12:14:06.714961Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793957.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385089/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-11T12:14:06.572263Z",
            "last_modified_time": "2026-06-11T12:14:06.917633Z",
            "date_published": null,
            "start_time": "2026-11-10T16: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": "Greta tuotanto: Ilta Rivieralla Olavi Paavolaisen kanssa",
                "sv": "Greta tuotanto: Ilta Rivieralla Olavi Paavolaisen kanssa",
                "en": "Greta tuotanto: Ilta Rivieralla Olavi Paavolaisen kanssa"
            },
            "short_description": {
                "fi": "Ilta Rivieralla Olavi Paavolaisen kanssa vie katsojat Välimeren lämpöön yhdistäen runoutta, musiikkia, draamallisia kohtauksia ja kulttuurihistoriaa."
            },
            "description": {
                "fi": "<p>Ilta Rivieralla Olavi Paavolaisen kanssa vie katsojat Välimeren lämpöön yhdistäen runoutta, musiikkia, draamallisia kohtauksia ja kulttuurihistoriaa.</p><p>Kertoja (<b>Anna Kortelainen</b>) johdattaa yleisön tarinaan. Esityksessä koetaan Olavi Paavolaisen (<b>Joel Mäkinen</b>) lennokkaat kirjeet ja hurmioituneet runot, joita elävöittävät tarinat ja lumoava ranskalainen musiikki. Draamallisia kohtauksia on rakennettu fiktiivisen pensionaatin pitäjän (<b>Reetta Ristimäki</b>) ja Paavolaisen välille.</p><p>Musiikki on koottu vuosisadan alun taidemusiikista ja aikakauden hittibiiseistä (mm. Poulenc, Debussy, Fauré, Maurice Chevalier). Joel Mäkinen on säveltänyt lisäksi musiikkia Paavolaisen runoihin.</p><p>Nuori dandy Paavolainen matkusti Nizzaan 1927. Hän lähetti ystävilleen vuoroin rehvakkaita, vuoroin rehellisiä kirjeitä ja jahtasi väkevää tunnetta nykyajasta. Matkalla syntyivät Nykyaikaa etsimässä -teoksen esseet. Paavolainen löysi nykyajan kirpeän suloisen ihanuuden Ranskan Rivieralta.</p><p>Työryhmä: <br>Käsikirjoitus, kuvasuunnittelu, kertoja: Anna Kortelainen <br>Olavi Paavolainen: Joel Mäkinen <br>Madame Notorjeva: Reetta Ristimäki <br>Puvut: Riitta Röpelinen <br>Visualisointi: Elle Mikkola <br>Ompelija: Sarita Vepsäläinen <br>Visualisoinnin toteutus: Aniisia Kronidova <br>Kuvakäsittely: Elle Mikkola, Veera Paija</p><p>gretatuotanto.fi/iltarivieralla <br>Kesto: noin 1 t 10 min, ei väliaikaa.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/26F3B806F2DADC2A57635D6A6D5D736A/Greta_tuotanto_Ilta_Rivieralla_Olavi_Paavolaisen_kanssa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/26F3B806F2DADC2A57635D6A6D5D736A/Greta_tuotanto_Ilta_Rivieralla_Olavi_Paavolaisen_kanssa",
                "en": "http://www.kanneltalo.fi/en/events/event/26F3B806F2DADC2A57635D6A6D5D736A/Greta_tuotanto_Ilta_Rivieralla_Olavi_Paavolaisen_kanssa"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69331/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplnjbswe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbr7a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490477,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-01-09T09:24:36.937708Z",
                    "last_modified_time": "2025-12-15T11:38:11.637956Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a7182e5c-6cf7-46de-8640-6cc66b279d47.png",
                    "name": "",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "nuoret metroasemalla istumassa penkillä sylikkäin, heillä on hymy herkässä!",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-11T12:13:33.134423Z",
            "last_modified_time": "2026-06-11T12:13:33.134438Z",
            "date_published": null,
            "start_time": "2026-12-15T14:00:00Z",
            "end_time": "2026-12-15T15: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": "Luovat - nuorten luovan kirjoittamisen piiri",
                "sv": "Luovat - kreativ skrivcirkel för ungdomar",
                "en": "Luovat - creative writing circle for young people"
            },
            "short_description": {
                "fi": "Luovat - nuorten luovan kirjoittamisen piiri tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00.",
                "sv": "Kreativt skrivande för ungdomar på tisdagar på Jukeboksi i Entresse biblioteket kl. 16–17.",
                "en": "Creative writing club for young people on Tuesdays at the Jukeboksi in the Entresse Library from 4 to 5 p.m."
            },
            "description": {
                "fi": "<p>Tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.</p><p>Tule kokeilemaan sanataidetta. Ryhmässä saa kirjoittaa, piirtää ja jutella mukavassa porukassa.</p><p>Kaikki ovat tervetulleita ryhmään!</p>",
                "sv": "<p>Tisdagar på Entresse Biblioteks Jukeboksi från kl. 16 till 17.</p><p>Kom och prova på ordkonsten. I gruppen kan du skriva, rita och prata i en trevlig atmosfär.</p><p>Alla är välkomna att delta i gruppen!</p><p><br></p>",
                "en": "<p>Tuesdays at the Entresse Library Jukeboksi from 4 to 5 p.m.</p><p>Come and try your hand at creative writing. The group offers a chance to write, draw, and chat in a friendly atmosphere.</p><p>Everyone is welcome to join the group!</p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "location_extra_info": {
                "fi": "Jukeboksi",
                "sv": "Jukeboksi",
                "en": "Jukeboksi"
            },
            "provider": {
                "fi": "Entressen kirjasto",
                "sv": "Entresse biblioteket",
                "en": "Entresse Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbswe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplnjbtey",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbr7a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490477,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-01-09T09:24:36.937708Z",
                    "last_modified_time": "2025-12-15T11:38:11.637956Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a7182e5c-6cf7-46de-8640-6cc66b279d47.png",
                    "name": "",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "nuoret metroasemalla istumassa penkillä sylikkäin, heillä on hymy herkässä!",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-11T12:13:33.012458Z",
            "last_modified_time": "2026-06-11T12:13:33.012473Z",
            "date_published": null,
            "start_time": "2026-12-08T14:00:00Z",
            "end_time": "2026-12-08T15: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": "Luovat - nuorten luovan kirjoittamisen piiri",
                "sv": "Luovat - kreativ skrivcirkel för ungdomar",
                "en": "Luovat - creative writing circle for young people"
            },
            "short_description": {
                "fi": "Luovat - nuorten luovan kirjoittamisen piiri tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00.",
                "sv": "Kreativt skrivande för ungdomar på tisdagar på Jukeboksi i Entresse biblioteket kl. 16–17.",
                "en": "Creative writing club for young people on Tuesdays at the Jukeboksi in the Entresse Library from 4 to 5 p.m."
            },
            "description": {
                "fi": "<p>Tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.</p><p>Tule kokeilemaan sanataidetta. Ryhmässä saa kirjoittaa, piirtää ja jutella mukavassa porukassa.</p><p>Kaikki ovat tervetulleita ryhmään!</p>",
                "sv": "<p>Tisdagar på Entresse Biblioteks Jukeboksi från kl. 16 till 17.</p><p>Kom och prova på ordkonsten. I gruppen kan du skriva, rita och prata i en trevlig atmosfär.</p><p>Alla är välkomna att delta i gruppen!</p><p><br></p>",
                "en": "<p>Tuesdays at the Entresse Library Jukeboksi from 4 to 5 p.m.</p><p>Come and try your hand at creative writing. The group offers a chance to write, draw, and chat in a friendly atmosphere.</p><p>Everyone is welcome to join the group!</p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "location_extra_info": {
                "fi": "Jukeboksi",
                "sv": "Jukeboksi",
                "en": "Jukeboksi"
            },
            "provider": {
                "fi": "Entressen kirjasto",
                "sv": "Entresse biblioteket",
                "en": "Entresse Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbtey/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplnjbttm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbr7a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490477,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-01-09T09:24:36.937708Z",
                    "last_modified_time": "2025-12-15T11:38:11.637956Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a7182e5c-6cf7-46de-8640-6cc66b279d47.png",
                    "name": "",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "nuoret metroasemalla istumassa penkillä sylikkäin, heillä on hymy herkässä!",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-11T12:13:32.895547Z",
            "last_modified_time": "2026-06-11T12:13:32.895562Z",
            "date_published": null,
            "start_time": "2026-12-01T14:00:00Z",
            "end_time": "2026-12-01T15: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": "Luovat - nuorten luovan kirjoittamisen piiri",
                "sv": "Luovat - kreativ skrivcirkel för ungdomar",
                "en": "Luovat - creative writing circle for young people"
            },
            "short_description": {
                "fi": "Luovat - nuorten luovan kirjoittamisen piiri tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00.",
                "sv": "Kreativt skrivande för ungdomar på tisdagar på Jukeboksi i Entresse biblioteket kl. 16–17.",
                "en": "Creative writing club for young people on Tuesdays at the Jukeboksi in the Entresse Library from 4 to 5 p.m."
            },
            "description": {
                "fi": "<p>Tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.</p><p>Tule kokeilemaan sanataidetta. Ryhmässä saa kirjoittaa, piirtää ja jutella mukavassa porukassa.</p><p>Kaikki ovat tervetulleita ryhmään!</p>",
                "sv": "<p>Tisdagar på Entresse Biblioteks Jukeboksi från kl. 16 till 17.</p><p>Kom och prova på ordkonsten. I gruppen kan du skriva, rita och prata i en trevlig atmosfär.</p><p>Alla är välkomna att delta i gruppen!</p><p><br></p>",
                "en": "<p>Tuesdays at the Entresse Library Jukeboksi from 4 to 5 p.m.</p><p>Come and try your hand at creative writing. The group offers a chance to write, draw, and chat in a friendly atmosphere.</p><p>Everyone is welcome to join the group!</p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "location_extra_info": {
                "fi": "Jukeboksi",
                "sv": "Jukeboksi",
                "en": "Jukeboksi"
            },
            "provider": {
                "fi": "Entressen kirjasto",
                "sv": "Entresse biblioteket",
                "en": "Entresse Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbttm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplnjbucq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbr7a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490477,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-01-09T09:24:36.937708Z",
                    "last_modified_time": "2025-12-15T11:38:11.637956Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a7182e5c-6cf7-46de-8640-6cc66b279d47.png",
                    "name": "",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "nuoret metroasemalla istumassa penkillä sylikkäin, heillä on hymy herkässä!",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-11T12:13:32.782852Z",
            "last_modified_time": "2026-06-11T12:13:32.782868Z",
            "date_published": null,
            "start_time": "2026-11-24T14:00:00Z",
            "end_time": "2026-11-24T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Luovat - nuorten luovan kirjoittamisen piiri",
                "sv": "Luovat - kreativ skrivcirkel för ungdomar",
                "en": "Luovat - creative writing circle for young people"
            },
            "short_description": {
                "fi": "Luovat - nuorten luovan kirjoittamisen piiri tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00.",
                "sv": "Kreativt skrivande för ungdomar på tisdagar på Jukeboksi i Entresse biblioteket kl. 16–17.",
                "en": "Creative writing club for young people on Tuesdays at the Jukeboksi in the Entresse Library from 4 to 5 p.m."
            },
            "description": {
                "fi": "<p>Tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.</p><p>Tule kokeilemaan sanataidetta. Ryhmässä saa kirjoittaa, piirtää ja jutella mukavassa porukassa.</p><p>Kaikki ovat tervetulleita ryhmään!</p>",
                "sv": "<p>Tisdagar på Entresse Biblioteks Jukeboksi från kl. 16 till 17.</p><p>Kom och prova på ordkonsten. I gruppen kan du skriva, rita och prata i en trevlig atmosfär.</p><p>Alla är välkomna att delta i gruppen!</p><p><br></p>",
                "en": "<p>Tuesdays at the Entresse Library Jukeboksi from 4 to 5 p.m.</p><p>Come and try your hand at creative writing. The group offers a chance to write, draw, and chat in a friendly atmosphere.</p><p>Everyone is welcome to join the group!</p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "location_extra_info": {
                "fi": "Jukeboksi",
                "sv": "Jukeboksi",
                "en": "Jukeboksi"
            },
            "provider": {
                "fi": "Entressen kirjasto",
                "sv": "Entresse biblioteket",
                "en": "Entresse Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbucq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplnjbuq4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbr7a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490477,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-01-09T09:24:36.937708Z",
                    "last_modified_time": "2025-12-15T11:38:11.637956Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a7182e5c-6cf7-46de-8640-6cc66b279d47.png",
                    "name": "",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "nuoret metroasemalla istumassa penkillä sylikkäin, heillä on hymy herkässä!",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-11T12:13:32.661423Z",
            "last_modified_time": "2026-06-11T12:13:32.661440Z",
            "date_published": null,
            "start_time": "2026-11-17T14:00:00Z",
            "end_time": "2026-11-17T15: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": "Luovat - nuorten luovan kirjoittamisen piiri",
                "sv": "Luovat - kreativ skrivcirkel för ungdomar",
                "en": "Luovat - creative writing circle for young people"
            },
            "short_description": {
                "fi": "Luovat - nuorten luovan kirjoittamisen piiri tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00.",
                "sv": "Kreativt skrivande för ungdomar på tisdagar på Jukeboksi i Entresse biblioteket kl. 16–17.",
                "en": "Creative writing club for young people on Tuesdays at the Jukeboksi in the Entresse Library from 4 to 5 p.m."
            },
            "description": {
                "fi": "<p>Tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.</p><p>Tule kokeilemaan sanataidetta. Ryhmässä saa kirjoittaa, piirtää ja jutella mukavassa porukassa.</p><p>Kaikki ovat tervetulleita ryhmään!</p>",
                "sv": "<p>Tisdagar på Entresse Biblioteks Jukeboksi från kl. 16 till 17.</p><p>Kom och prova på ordkonsten. I gruppen kan du skriva, rita och prata i en trevlig atmosfär.</p><p>Alla är välkomna att delta i gruppen!</p><p><br></p>",
                "en": "<p>Tuesdays at the Entresse Library Jukeboksi from 4 to 5 p.m.</p><p>Come and try your hand at creative writing. The group offers a chance to write, draw, and chat in a friendly atmosphere.</p><p>Everyone is welcome to join the group!</p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "location_extra_info": {
                "fi": "Jukeboksi",
                "sv": "Jukeboksi",
                "en": "Jukeboksi"
            },
            "provider": {
                "fi": "Entressen kirjasto",
                "sv": "Entresse biblioteket",
                "en": "Entresse Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbuq4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplnjbvaq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbr7a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490477,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-01-09T09:24:36.937708Z",
                    "last_modified_time": "2025-12-15T11:38:11.637956Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a7182e5c-6cf7-46de-8640-6cc66b279d47.png",
                    "name": "",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "nuoret metroasemalla istumassa penkillä sylikkäin, heillä on hymy herkässä!",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-11T12:13:32.546643Z",
            "last_modified_time": "2026-06-11T12:13:32.546660Z",
            "date_published": null,
            "start_time": "2026-11-10T14:00:00Z",
            "end_time": "2026-11-10T15: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": "Luovat - nuorten luovan kirjoittamisen piiri",
                "sv": "Luovat - kreativ skrivcirkel för ungdomar",
                "en": "Luovat - creative writing circle for young people"
            },
            "short_description": {
                "fi": "Luovat - nuorten luovan kirjoittamisen piiri tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00.",
                "sv": "Kreativt skrivande för ungdomar på tisdagar på Jukeboksi i Entresse biblioteket kl. 16–17.",
                "en": "Creative writing club for young people on Tuesdays at the Jukeboksi in the Entresse Library from 4 to 5 p.m."
            },
            "description": {
                "fi": "<p>Tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.</p><p>Tule kokeilemaan sanataidetta. Ryhmässä saa kirjoittaa, piirtää ja jutella mukavassa porukassa.</p><p>Kaikki ovat tervetulleita ryhmään!</p>",
                "sv": "<p>Tisdagar på Entresse Biblioteks Jukeboksi från kl. 16 till 17.</p><p>Kom och prova på ordkonsten. I gruppen kan du skriva, rita och prata i en trevlig atmosfär.</p><p>Alla är välkomna att delta i gruppen!</p><p><br></p>",
                "en": "<p>Tuesdays at the Entresse Library Jukeboksi from 4 to 5 p.m.</p><p>Come and try your hand at creative writing. The group offers a chance to write, draw, and chat in a friendly atmosphere.</p><p>Everyone is welcome to join the group!</p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "location_extra_info": {
                "fi": "Jukeboksi",
                "sv": "Jukeboksi",
                "en": "Jukeboksi"
            },
            "provider": {
                "fi": "Entressen kirjasto",
                "sv": "Entresse biblioteket",
                "en": "Entresse Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbvaq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplnjbvpe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbr7a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490477,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-01-09T09:24:36.937708Z",
                    "last_modified_time": "2025-12-15T11:38:11.637956Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a7182e5c-6cf7-46de-8640-6cc66b279d47.png",
                    "name": "",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "nuoret metroasemalla istumassa penkillä sylikkäin, heillä on hymy herkässä!",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-11T12:13:32.437561Z",
            "last_modified_time": "2026-06-11T12:13:32.437577Z",
            "date_published": null,
            "start_time": "2026-11-03T14:00:00Z",
            "end_time": "2026-11-03T15: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": "Luovat - nuorten luovan kirjoittamisen piiri",
                "sv": "Luovat - kreativ skrivcirkel för ungdomar",
                "en": "Luovat - creative writing circle for young people"
            },
            "short_description": {
                "fi": "Luovat - nuorten luovan kirjoittamisen piiri tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00.",
                "sv": "Kreativt skrivande för ungdomar på tisdagar på Jukeboksi i Entresse biblioteket kl. 16–17.",
                "en": "Creative writing club for young people on Tuesdays at the Jukeboksi in the Entresse Library from 4 to 5 p.m."
            },
            "description": {
                "fi": "<p>Tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.</p><p>Tule kokeilemaan sanataidetta. Ryhmässä saa kirjoittaa, piirtää ja jutella mukavassa porukassa.</p><p>Kaikki ovat tervetulleita ryhmään!</p>",
                "sv": "<p>Tisdagar på Entresse Biblioteks Jukeboksi från kl. 16 till 17.</p><p>Kom och prova på ordkonsten. I gruppen kan du skriva, rita och prata i en trevlig atmosfär.</p><p>Alla är välkomna att delta i gruppen!</p><p><br></p>",
                "en": "<p>Tuesdays at the Entresse Library Jukeboksi from 4 to 5 p.m.</p><p>Come and try your hand at creative writing. The group offers a chance to write, draw, and chat in a friendly atmosphere.</p><p>Everyone is welcome to join the group!</p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "location_extra_info": {
                "fi": "Jukeboksi",
                "sv": "Jukeboksi",
                "en": "Jukeboksi"
            },
            "provider": {
                "fi": "Entressen kirjasto",
                "sv": "Entresse biblioteket",
                "en": "Entresse Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbvpe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplnjbv64",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbr7a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490477,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-01-09T09:24:36.937708Z",
                    "last_modified_time": "2025-12-15T11:38:11.637956Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a7182e5c-6cf7-46de-8640-6cc66b279d47.png",
                    "name": "",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "nuoret metroasemalla istumassa penkillä sylikkäin, heillä on hymy herkässä!",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-11T12:13:32.327528Z",
            "last_modified_time": "2026-06-11T12:13:32.327544Z",
            "date_published": null,
            "start_time": "2026-10-27T14:00:00Z",
            "end_time": "2026-10-27T15: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": "Luovat - nuorten luovan kirjoittamisen piiri",
                "sv": "Luovat - kreativ skrivcirkel för ungdomar",
                "en": "Luovat - creative writing circle for young people"
            },
            "short_description": {
                "fi": "Luovat - nuorten luovan kirjoittamisen piiri tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00.",
                "sv": "Kreativt skrivande för ungdomar på tisdagar på Jukeboksi i Entresse biblioteket kl. 16–17.",
                "en": "Creative writing club for young people on Tuesdays at the Jukeboksi in the Entresse Library from 4 to 5 p.m."
            },
            "description": {
                "fi": "<p>Tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.</p><p>Tule kokeilemaan sanataidetta. Ryhmässä saa kirjoittaa, piirtää ja jutella mukavassa porukassa.</p><p>Kaikki ovat tervetulleita ryhmään!</p>",
                "sv": "<p>Tisdagar på Entresse Biblioteks Jukeboksi från kl. 16 till 17.</p><p>Kom och prova på ordkonsten. I gruppen kan du skriva, rita och prata i en trevlig atmosfär.</p><p>Alla är välkomna att delta i gruppen!</p><p><br></p>",
                "en": "<p>Tuesdays at the Entresse Library Jukeboksi from 4 to 5 p.m.</p><p>Come and try your hand at creative writing. The group offers a chance to write, draw, and chat in a friendly atmosphere.</p><p>Everyone is welcome to join the group!</p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "location_extra_info": {
                "fi": "Jukeboksi",
                "sv": "Jukeboksi",
                "en": "Jukeboksi"
            },
            "provider": {
                "fi": "Entressen kirjasto",
                "sv": "Entresse biblioteket",
                "en": "Entresse Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbv64/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplnjbwoq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbr7a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490477,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-01-09T09:24:36.937708Z",
                    "last_modified_time": "2025-12-15T11:38:11.637956Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a7182e5c-6cf7-46de-8640-6cc66b279d47.png",
                    "name": "",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "nuoret metroasemalla istumassa penkillä sylikkäin, heillä on hymy herkässä!",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-11T12:13:32.215782Z",
            "last_modified_time": "2026-06-11T12:13:32.215800Z",
            "date_published": null,
            "start_time": "2026-10-20T13:00:00Z",
            "end_time": "2026-10-20T14: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": "Luovat - nuorten luovan kirjoittamisen piiri",
                "sv": "Luovat - kreativ skrivcirkel för ungdomar",
                "en": "Luovat - creative writing circle for young people"
            },
            "short_description": {
                "fi": "Luovat - nuorten luovan kirjoittamisen piiri tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00.",
                "sv": "Kreativt skrivande för ungdomar på tisdagar på Jukeboksi i Entresse biblioteket kl. 16–17.",
                "en": "Creative writing club for young people on Tuesdays at the Jukeboksi in the Entresse Library from 4 to 5 p.m."
            },
            "description": {
                "fi": "<p>Tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.</p><p>Tule kokeilemaan sanataidetta. Ryhmässä saa kirjoittaa, piirtää ja jutella mukavassa porukassa.</p><p>Kaikki ovat tervetulleita ryhmään!</p>",
                "sv": "<p>Tisdagar på Entresse Biblioteks Jukeboksi från kl. 16 till 17.</p><p>Kom och prova på ordkonsten. I gruppen kan du skriva, rita och prata i en trevlig atmosfär.</p><p>Alla är välkomna att delta i gruppen!</p><p><br></p>",
                "en": "<p>Tuesdays at the Entresse Library Jukeboksi from 4 to 5 p.m.</p><p>Come and try your hand at creative writing. The group offers a chance to write, draw, and chat in a friendly atmosphere.</p><p>Everyone is welcome to join the group!</p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "location_extra_info": {
                "fi": "Jukeboksi",
                "sv": "Jukeboksi",
                "en": "Jukeboksi"
            },
            "provider": {
                "fi": "Entressen kirjasto",
                "sv": "Entresse biblioteket",
                "en": "Entresse Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbwoq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agplnjbw6q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbr7a/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490477,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-01-09T09:24:36.937708Z",
                    "last_modified_time": "2025-12-15T11:38:11.637956Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a7182e5c-6cf7-46de-8640-6cc66b279d47.png",
                    "name": "",
                    "cropping": "76,0,864,788",
                    "photographer_name": "",
                    "alt_text": "nuoret metroasemalla istumassa penkillä sylikkäin, heillä on hymy herkässä!",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-11T12:13:32.098746Z",
            "last_modified_time": "2026-06-11T12:13:32.098763Z",
            "date_published": null,
            "start_time": "2026-10-13T13:00:00Z",
            "end_time": "2026-10-13T14: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": "Luovat - nuorten luovan kirjoittamisen piiri",
                "sv": "Luovat - kreativ skrivcirkel för ungdomar",
                "en": "Luovat - creative writing circle for young people"
            },
            "short_description": {
                "fi": "Luovat - nuorten luovan kirjoittamisen piiri tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00.",
                "sv": "Kreativt skrivande för ungdomar på tisdagar på Jukeboksi i Entresse biblioteket kl. 16–17.",
                "en": "Creative writing club for young people on Tuesdays at the Jukeboksi in the Entresse Library from 4 to 5 p.m."
            },
            "description": {
                "fi": "<p>Tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.</p><p>Tule kokeilemaan sanataidetta. Ryhmässä saa kirjoittaa, piirtää ja jutella mukavassa porukassa.</p><p>Kaikki ovat tervetulleita ryhmään!</p>",
                "sv": "<p>Tisdagar på Entresse Biblioteks Jukeboksi från kl. 16 till 17.</p><p>Kom och prova på ordkonsten. I gruppen kan du skriva, rita och prata i en trevlig atmosfär.</p><p>Alla är välkomna att delta i gruppen!</p><p><br></p>",
                "en": "<p>Tuesdays at the Entresse Library Jukeboksi from 4 to 5 p.m.</p><p>Come and try your hand at creative writing. The group offers a chance to write, draw, and chat in a friendly atmosphere.</p><p>Everyone is welcome to join the group!</p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "location_extra_info": {
                "fi": "Jukeboksi",
                "sv": "Jukeboksi",
                "en": "Jukeboksi"
            },
            "provider": {
                "fi": "Entressen kirjasto",
                "sv": "Entresse biblioteket",
                "en": "Entresse Library "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplnjbw6q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}