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&hide_recurring_children=true&page=48
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 22783,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=49",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=47"
    },
    "data": [
        {
            "id": "espoo_le:ago3kxluu4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@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": 1824226,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-22T12:38:01.348524Z",
                    "last_modified_time": "2026-04-22T12:38:01.348540Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/c2848b1d-760a-4181-8d3d-458fa473897b.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Piirroskuva MillaMallesta ja valokuba Sipa Pääkkösestä.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824226/?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-04-22T12:38:53.276331Z",
            "last_modified_time": "2026-04-22T12:38:53.276354Z",
            "date_published": null,
            "start_time": "2026-05-28T15:00:00Z",
            "end_time": "2026-05-28T15:45: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": "Milla-Malle ja taikamatto – musiikkipitoinen satutuokio lapsille",
                "sv": "Milla-Malle och den magiska mattan – ett musikfyllt sagostund för barn på finska",
                "en": "Milla-Malle and the magic carpet – a music-filled storytime for children in Finnish"
            },
            "short_description": {
                "fi": "Milla-Malle ja taikamatto – musiikkipitoinen satutuokio lapsille.",
                "sv": "Milla-Malle och den magiska mattan – ett musikfyllt sagostund för barn på finska.",
                "en": "Milla-Malle and the magic carpet – a music-filled storytime for children in Finnish."
            },
            "description": {
                "fi": "<p>Sellon kirjaston Jaminurkka 28. toukokuuta klo 18.</p><p>Milla-Mallen lelunallet Nökö ja Nössö virkkaavat yhtenä yönä taikamaton, jolla kolmikko lähtee seikkailemaan. Retki vie Afrikkaan saakka, jossa kohdataan kirahvi, norsu ja leijona. Afrikassa on myös pieni poika nimeltä Bobo, johon Milla-Malle tutustuu pienessä kylässä. Siellä lauletaan, tanssitaan ja syödään maukasta kasviskeittoa.</p><p>Tietokirjailija ja toimittaja Sirpa Pääkkösen kirjoittama satu Milla-Malle ja taikamatto ruokkii lasten mielikuvitusta, sillä sadussa kaikki on mahdollista. Matto lentää ja nallet ja eläimet osaavat puhua.&nbsp;Milla-Malle&nbsp;ja nallet kokevat erilaisia tunteita matkan aikana: rohkeutta, uteliaisuutta, läheisyyttä ja koti-ikävää. </p><p>Sadun kerrontaa elävöittää musiikki. Satuhetkessä on mukana laulajia Käpylän musiikkiopistossa toimivasta Mataleena-lauluryhmästä. </p><p>Satutuokio on samalla Milla-Malle ja taikamatto -äänikirjan julkaisutilaisuus. Satu ilmestyy äänikirjana, jonka julkaisee äänikirjakustantamo BookGarden.</p><p>Ikäsuositus yli 3-vuotialle. Vapaa pääsy.</p>",
                "sv": "<p>Milla-Malle och den magiska mattan – ett musikfyllt sagostund för barn på finska.</p>",
                "en": "<p>Milla-Malle and the magic carpet – a music-filled storytime for children in Finnish.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "sv": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3kxluu4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agofomcxci",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/9CXqXUfz4",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 1824102,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-15T11:16:37.284299Z",
                    "last_modified_time": "2026-04-15T11:16:37.284313Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/750e07b0-6101-4e7b-9fd6-5958df9fdd05.jpg",
                    "name": "Festareiden artistikuvat",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Festareiden artistikuvat",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824102/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-13T12:32:44.500368Z",
            "last_modified_time": "2026-04-22T12:31:57.379208Z",
            "date_published": null,
            "start_time": "2026-04-25T08:20:00Z",
            "end_time": "2026-04-25T14:20: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": "Sellon kirjaston Musafestarit VII",
                "sv": "Sellobibliotekets Musikfestival VII",
                "en": "Sello Library Music Festival VII"
            },
            "short_description": {
                "fi": "Sellon kirjastossa järjestetään Musafestarit lauantaina 25.4.2026. Artistit ovat nyt julkaistu!",
                "sv": "Sellobibliotek ordnar en musikfestival lördagen den 25.4.2026. Artisterna är nu presenterade!",
                "en": "Sello Library will host a Music Festival on Saturday 25.4.2026. The artists are now announced!"
            },
            "description": {
                "fi": "<p>Sellon kirjastossa järjestetään Musafestarit lauantaina 25.4.2026</p><p>&nbsp;</p><p>Musafestareiden ohjelma on nyt julkaistu! Ohjelmassa on uskomattoman hieno kattaus erilaisia esiintymisiä sooloesityksistä bändeihin. Luvassa on muun muassa klassista musiikkia, poppia, funkkia, instrumentaalista musiikkia, covereita ja omia kappaleita. Artisteihin voit tutustua alla olevan ohjelman avulla. Tule nauttimaan musiikista Sellon kirjaston lavalle lauantaina 25.4 klo 11.20 eteenpäin!</p><p><br></p><p><strong>11.20 Jasmin Skinnari</strong></p><ul><li>Jasmin Skinnari esittää säestäjän kanssa melodisia laulujaan. Ne kumpuavat elämän pienistä ilon hetkistä, murheista ja pohdinnoista.</li></ul><p><strong>11.40 Talvikki</strong></p><ul><li>Talvikin akustinen musiikki yhdistelee eri tyylilajeja ja rytmejä. Vaikuttajina ovat olleet mm. Alison Krauss, Susanne Vega ja Björk.</li></ul><p><strong>12.00 Sara Aurelia</strong></p><ul><li>Sara Aurelia kirjoittaa lauluja elämän eri vuodenajoista, varjoista ja kaiken voittavasta valosta. Hän esittää ja tuottaa musiikkinsa itse. Tyyleinä ovat progevaikutteinen folk ja 80-lukuvaikutteinen elektropop, joista jälkimmäistä kuullaan tällä kertaa Musafestareilla.</li></ul><p><strong>12.20 Ville</strong></p><ul><li>Olen soittanut viulua pian 25 vuotta. Ohjelmistoni koostuu pääsääntöisesti suomalaisesta kansanmusiikista, mutta joukossa on kappaleita myös ulkomailta. Ulkomaiset kappaleet ovat suurimmaksi osaksi Venäjältä, mutta joukossa on kappaleita myös mm. Ruotsista, Norjasta, Tanskasta, Virosta, Irlannista, Kreikasta, Yhdysvalloista ja Kanadasta. Kaikki kappaleet ovat perinteisiä kappaleita. Olen suorittanut Pronssisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2004 ja Hopeisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2007.</li></ul><p>&nbsp;</p><p><strong>12.40 Pauli Haro</strong></p><ul><li>Pauli on pian 9-vuotias. Hän soittaa kitaraa ja laulaa. Ohjelmistossa mm. näppäilykappaleita artisteilta J. Karjalainen, Red Hot Chili Peppers ja AC/DC</li></ul><p>&nbsp;</p><p><strong>13.00 Yehor Tereshchenko</strong></p><ul><li>A solo vocal performance featuring a blend of classical and contemporary styles, performed in English, Ukrainian, and Italian. The program emphasizes emotional depth, vocal expression, and musical storytelling.</li></ul><p>&nbsp;</p><p><strong>13.20 Lasten Kuoro “Lava”(3-8v)</strong></p><ul><li>Lasten kuoro esittää kappaleet “Kevät on tulossa” ja ”Kukat”</li></ul><p>&nbsp;</p><p><strong>13.40 Kuoro ”Sielulaulu”</strong></p><ul><li>Kuoro laulaa kappaleet ”Enkeli” ja ”You belong to me”</li></ul><p>&nbsp;</p><p><strong>14.00 Galitskaia Daria Katerina Runtso</strong></p><ul><li>Esitämme teoksen Rybnikov “Viimeinen runo”</li></ul><p><strong>14.20 Le Song Choir</strong></p><ul><li>We are a community choir based in Espoo with Chinese roots. We perform Chinese and international choral songs, sharing music that adds a touch of cultural variety and enjoyment for the people of Espoo.<strong> </strong></li></ul><p><br></p><p><strong>14.40 Katja Petrova </strong></p><ul><li>I play classic piano songs: Beethoven “Virus” and Virginio Aiello ”Van Gogh”&nbsp;</li></ul><p><br></p><p><strong>15.00 tauko / break</strong></p><p><br></p><p><strong>15.20 Matias Raveila, tenori Niko Kontinen, piano</strong></p><ul><li>Matias Raveila on esiintynyt oopperalaulajana noin 15 vuotta Suomessa ja ulkomailla. Hän on valmistunut musiikin maisteriksi vuonna 2018 Sibelius-Akatemian oopperakoulutuksesta. Raveila palasi hiljattain Tanskan kansallisoopperan produktiosta päättäen koko vuoden kestäneen ooppera- ja sinfoniakiertueen Euroopassa. Nyt hän valmistautuu esityksiin Suomen kansallisoopperassa. Niko Kontinen on opiskellut piano pääaineenaan Metropoliassa. Hän opettaa pianonsoittoa ja keikkailee säännöllisesti useissa eri kokoonpanoissa. Matias ja Niko ovat vuosien ajan esiintyneet yhdessä eri tapahtumissa ja konserteissa. Tänä keväänä he esittävät Die schöne Müllerin -laulusarjaa eri konserttisaleissa. Raveila on tulkinnut monia Schubertin lauluja ja laulusarjoja sekä muuta keskeistä lied-repertuaaria eri säveltäjiltä.</li></ul><p><strong>15.40 Nina Camilla</strong></p><ul><li>Singer-songwriter Nina Camilla started to write songs six years ago as a means of processing emotions during a life crisis. She learned to play the ukulele in order to create harmonies for her melodies. Today her life is more stable but music remains an essential part of her being.</li></ul><p><strong>16.00 Between Two Springs</strong></p><ul><li>Soitamme niiden artistien musiikkia, joita itse rakastamme: cover-versioita Radioheadin, Musen, RHCP:n, Nirvanan ja muiden kappaleista.</li></ul><p><br></p><p><strong>16.20 Emperor Noco</strong></p><ul><li>Noco aka Emperor Noco is a solo artist blending Afrotrap, drill, and melodic rap with spiritually rooted lyricism, known as Spiritstyle. His performances combine music, storytelling, and symbolic expression, creating an atmosphere that feels both energetic and reflective. The set includes original music performed over instrumentals, with a focus on message, rhythm, and connection with the audience. The performance carries elements of identity, faith, and real-life perspective, delivered through a unique mix of English, Swahili, and creative wordplay.</li></ul><p>&nbsp;</p><p><strong>16.40 Innection</strong></p><ul><li>Music style: Jazz, pop music Band performers: Rongwei Ma, Wentao Xie, Wenyan Yang, Yuyang Liu, Chen Zeng The music blends pop and jazz styles, creating a warm and relaxed atmosphere.</li></ul><p><strong>17.00 Kalusian </strong></p><ul><li>So basically we will be doing my own song with a group dancers and band.&nbsp;</li></ul>",
                "sv": "<p>Sellobibliotek ordnar en musikfestival lördagen den 25.4.2026</p><p>&nbsp;</p><p>Musikfestivalens line-up är nu publicerad! Programmet innehåller en otrolig mängd uppträdanden, allt från soloakter till band. Det blir klassisk musik, pop, funk, instrumentalmusik, covers och originallåtar. Kolla in artisterna i programmet nedan. Kom och njut av musiken på Sellobibliotekets stage lördagen den 25.4 från kl. 11.20!</p><p>(översatt av DeepL)</p><p><br></p><p><strong>11.20 Jasmin Skinnari</strong></p><ul><li>Jasmin Skinnari esittää säestäjän kanssa melodisia laulujaan. Ne kumpuavat elämän pienistä ilon hetkistä, murheista ja pohdinnoista.</li></ul><p><strong>11.40 Talvikki</strong></p><ul><li>Talvikin akustinen musiikki yhdistelee eri tyylilajeja ja rytmejä. Vaikuttajina ovat olleet mm. Alison Krauss, Susanne Vega ja Björk.</li></ul><p><strong>12.00 Sara Aurelia</strong></p><ul><li>Sara Aurelia kirjoittaa lauluja elämän eri vuodenajoista, varjoista ja kaiken voittavasta valosta. Hän esittää ja tuottaa musiikkinsa itse. Tyyleinä ovat progevaikutteinen folk ja 80-lukuvaikutteinen elektropop, joista jälkimmäistä kuullaan tällä kertaa Musafestareilla.</li></ul><p><strong>12.20 Ville</strong></p><ul><li>Olen soittanut viulua pian 25 vuotta. Ohjelmistoni koostuu pääsääntöisesti suomalaisesta kansanmusiikista, mutta joukossa on kappaleita myös ulkomailta. Ulkomaiset kappaleet ovat suurimmaksi osaksi Venäjältä, mutta joukossa on kappaleita myös mm. Ruotsista, Norjasta, Tanskasta, Virosta, Irlannista, Kreikasta, Yhdysvalloista ja Kanadasta. Kaikki kappaleet ovat perinteisiä kappaleita. Olen suorittanut Pronssisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2004 ja Hopeisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2007.</li></ul><p>&nbsp;</p><p><strong>12.40 Pauli Haro</strong></p><ul><li>Pauli on pian 9-vuotias. Hän soittaa kitaraa ja laulaa. Ohjelmistossa mm. näppäilykappaleita artisteilta J. Karjalainen, Red Hot Chili Peppers ja AC/DC</li></ul><p>&nbsp;</p><p><strong>13.00 Yehor Tereshchenko</strong></p><ul><li>A solo vocal performance featuring a blend of classical and contemporary styles, performed in English, Ukrainian, and Italian. The program emphasizes emotional depth, vocal expression, and musical storytelling.</li></ul><p>&nbsp;</p><p><strong>13.20 Lasten Kuoro “Lava”(3-8v)</strong></p><ul><li>Lasten kuoro esittää kappaleet “Kevät on tulossa” ja ”Kukat”</li></ul><p>&nbsp;</p><p><strong>13.40 Kuoro ”Sielulaulu”</strong></p><ul><li>Kuoro laulaa kappaleet ”Enkeli” ja ”You belong to me”</li></ul><p>&nbsp;</p><p><strong>14.00 Galitskaia Daria Katerina Runtso</strong></p><ul><li>Esitämme teoksen Rybnikov “Viimeinen runo”</li></ul><p><strong>14.20 Le Song Choir</strong></p><ul><li>We are a community choir based in Espoo with Chinese roots. We perform Chinese and international choral songs, sharing music that adds a touch of cultural variety and enjoyment for the people of Espoo.</li></ul><p><br></p><p><strong>14.40 Katja Petrova </strong></p><ul><li>I play classic piano songs: Beethoven “Virus” and Virginio Aiello ”Van Gogh”&nbsp;</li></ul><p><br></p><p><strong>15.00 tauko / break</strong></p><p><br></p><p><strong>15.20 Matias Raveila, tenori Niko Kontinen, piano</strong></p><ul><li>Matias Raveila on esiintynyt oopperalaulajana noin 15 vuotta Suomessa ja ulkomailla. Hän on valmistunut musiikin maisteriksi vuonna 2018 Sibelius-Akatemian oopperakoulutuksesta. Raveila palasi hiljattain Tanskan kansallisoopperan produktiosta päättäen koko vuoden kestäneen ooppera- ja sinfoniakiertueen Euroopassa. Nyt hän valmistautuu esityksiin Suomen kansallisoopperassa. Niko Kontinen on opiskellut piano pääaineenaan Metropoliassa. Hän opettaa pianonsoittoa ja keikkailee säännöllisesti useissa eri kokoonpanoissa. Matias ja Niko ovat vuosien ajan esiintyneet yhdessä eri tapahtumissa ja konserteissa. Tänä keväänä he esittävät Die schöne Müllerin -laulusarjaa eri konserttisaleissa. Raveila on tulkinnut monia Schubertin lauluja ja laulusarjoja sekä muuta keskeistä lied-repertuaaria eri säveltäjiltä.</li></ul><p><strong>15.40 Nina Camilla</strong></p><ul><li>Singer-songwriter Nina Camilla started to write songs six years ago as a means of processing emotions during a life crisis. She learned to play the ukulele in order to create harmonies for her melodies. Today her life is more stable but music remains an essential part of her being.</li></ul><p><strong>16.00 Between Two Springs</strong></p><ul><li>Soitamme niiden artistien musiikkia, joita itse rakastamme: cover-versioita Radioheadin, Musen, RHCP:n, Nirvanan ja muiden kappaleista.</li></ul><p><br></p><p><strong>16.20 Emperor Noco</strong></p><ul><li>Noco aka Emperor Noco is a solo artist blending Afrotrap, drill, and melodic rap with spiritually rooted lyricism, known as Spiritstyle. His performances combine music, storytelling, and symbolic expression, creating an atmosphere that feels both energetic and reflective. The set includes original music performed over instrumentals, with a focus on message, rhythm, and connection with the audience. The performance carries elements of identity, faith, and real-life perspective, delivered through a unique mix of English, Swahili, and creative wordplay.</li></ul><p>&nbsp;</p><p><strong>16.40 Innection</strong></p><ul><li>Music style: Jazz, pop music Band performers: Rongwei Ma, Wentao Xie, Wenyan Yang, Yuyang Liu, Chen Zeng The music blends pop and jazz styles, creating a warm and relaxed atmosphere.</li></ul><p><strong>17.00 Kalusian </strong></p><ul><li>So basically we will be doing my own song with a group dancers and band.&nbsp;</li></ul><p>#festival #musik #konsert</p>",
                "en": "<p>Sello Library will host a Music Festival on Saturday 25.4.2026</p><p>&nbsp;</p><p>The Music Festival line-up is now out! The programme features an incredible line-up of performances ranging from solo acts to bands. There will be classical music, pop, funk, instrumental music, covers and original songs. Check out the artists in the programme below. Come and enjoy the music on the Sello Library stage on Saturday 25.4 from 11.20!</p><p><br></p><p><strong>11.20 Jasmin Skinnari</strong></p><ul><li>Jasmin Skinnari esittää säestäjän kanssa melodisia laulujaan. Ne kumpuavat elämän pienistä ilon hetkistä, murheista ja pohdinnoista.</li></ul><p><strong>11.40 Talvikki</strong></p><ul><li>Talvikin akustinen musiikki yhdistelee eri tyylilajeja ja rytmejä. Vaikuttajina ovat olleet mm. Alison Krauss, Susanne Vega ja Björk.</li></ul><p><strong>12.00 Sara Aurelia</strong></p><ul><li>Sara Aurelia kirjoittaa lauluja elämän eri vuodenajoista, varjoista ja kaiken voittavasta valosta. Hän esittää ja tuottaa musiikkinsa itse. Tyyleinä ovat progevaikutteinen folk ja 80-lukuvaikutteinen elektropop, joista jälkimmäistä kuullaan tällä kertaa Musafestareilla.</li></ul><p><strong>12.20 Ville</strong></p><ul><li>Olen soittanut viulua pian 25 vuotta. Ohjelmistoni koostuu pääsääntöisesti suomalaisesta kansanmusiikista, mutta joukossa on kappaleita myös ulkomailta. Ulkomaiset kappaleet ovat suurimmaksi osaksi Venäjältä, mutta joukossa on kappaleita myös mm. Ruotsista, Norjasta, Tanskasta, Virosta, Irlannista, Kreikasta, Yhdysvalloista ja Kanadasta. Kaikki kappaleet ovat perinteisiä kappaleita. Olen suorittanut Pronssisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2004 ja Hopeisen pelimannimerkin Kaustisen kansanmusiikkijuhlilla vuonna 2007.</li></ul><p>&nbsp;</p><p><strong>12.40 Pauli Haro</strong></p><ul><li>Pauli on pian 9-vuotias. Hän soittaa kitaraa ja laulaa. Ohjelmistossa mm. näppäilykappaleita artisteilta J. Karjalainen, Red Hot Chili Peppers ja AC/DC</li></ul><p>&nbsp;</p><p><strong>13.00 Yehor Tereshchenko</strong></p><ul><li>A solo vocal performance featuring a blend of classical and contemporary styles, performed in English, Ukrainian, and Italian. The program emphasizes emotional depth, vocal expression, and musical storytelling.</li></ul><p>&nbsp;</p><p><strong>13.20 Lasten Kuoro “Lava”(3-8v)</strong></p><ul><li>Lasten kuoro esittää kappaleet “Kevät on tulossa” ja ”Kukat”</li></ul><p>&nbsp;</p><p><strong>13.40 Kuoro ”Sielulaulu”</strong></p><ul><li>Kuoro laulaa kappaleet ”Enkeli” ja ”You belong to me”</li></ul><p>&nbsp;</p><p><strong>14.00 Galitskaia Daria Katerina Runtso</strong></p><ul><li>Esitämme teoksen Rybnikov “Viimeinen runo”</li></ul><p><strong>14.20 Le Song Choir</strong></p><ul><li>We are a community choir based in Espoo with Chinese roots. We perform Chinese and international choral songs, sharing music that adds a touch of cultural variety and enjoyment for the people of Espoo.</li></ul><p><br></p><p><strong>14.40 Katja Petrova </strong></p><ul><li>I play classic piano songs: Beethoven “Virus” and Virginio Aiello ”Van Gogh”&nbsp;</li></ul><p><br></p><p><strong>15.00 tauko / break</strong></p><p><br></p><p><strong>15.20 Matias Raveila, tenori Niko Kontinen, piano</strong></p><ul><li>Matias Raveila on esiintynyt oopperalaulajana noin 15 vuotta Suomessa ja ulkomailla. Hän on valmistunut musiikin maisteriksi vuonna 2018 Sibelius-Akatemian oopperakoulutuksesta. Raveila palasi hiljattain Tanskan kansallisoopperan produktiosta päättäen koko vuoden kestäneen ooppera- ja sinfoniakiertueen Euroopassa. Nyt hän valmistautuu esityksiin Suomen kansallisoopperassa. Niko Kontinen on opiskellut piano pääaineenaan Metropoliassa. Hän opettaa pianonsoittoa ja keikkailee säännöllisesti useissa eri kokoonpanoissa. Matias ja Niko ovat vuosien ajan esiintyneet yhdessä eri tapahtumissa ja konserteissa. Tänä keväänä he esittävät Die schöne Müllerin -laulusarjaa eri konserttisaleissa. Raveila on tulkinnut monia Schubertin lauluja ja laulusarjoja sekä muuta keskeistä lied-repertuaaria eri säveltäjiltä.</li></ul><p><strong>15.40 Nina Camilla</strong></p><ul><li>Singer-songwriter Nina Camilla started to write songs six years ago as a means of processing emotions during a life crisis. She learned to play the ukulele in order to create harmonies for her melodies. Today her life is more stable but music remains an essential part of her being.</li></ul><p><strong>16.00 Between Two Springs</strong></p><ul><li>Soitamme niiden artistien musiikkia, joita itse rakastamme: cover-versioita Radioheadin, Musen, RHCP:n, Nirvanan ja muiden kappaleista.</li></ul><p><br></p><p><strong>16.20 Emperor Noco</strong></p><ul><li>Noco aka Emperor Noco is a solo artist blending Afrotrap, drill, and melodic rap with spiritually rooted lyricism, known as Spiritstyle. His performances combine music, storytelling, and symbolic expression, creating an atmosphere that feels both energetic and reflective. The set includes original music performed over instrumentals, with a focus on message, rhythm, and connection with the audience. The performance carries elements of identity, faith, and real-life perspective, delivered through a unique mix of English, Swahili, and creative wordplay.</li></ul><p>&nbsp;</p><p><strong>16.40 Innection</strong></p><ul><li>Music style: Jazz, pop music Band performers: Rongwei Ma, Wentao Xie, Wenyan Yang, Yuyang Liu, Chen Zeng The music blends pop and jazz styles, creating a warm and relaxed atmosphere.</li></ul><p><strong>17.00 Kalusian</strong></p><ul><li>So basically we will be doing my own song with a group dancers and band.&nbsp;</li></ul><p>&nbsp;</p><p>#music #festival #performance #live&nbsp;</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Lava",
                "sv": "scen Lava",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agofomcxci/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68485",
            "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/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": 1821525,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-16T13:13:11.427520Z",
                    "last_modified_time": "2026-04-16T13:13:11.427536Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786032.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821525/?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-04-16T13:13:11.218671Z",
            "last_modified_time": "2026-04-22T11:14:05.692121Z",
            "date_published": null,
            "start_time": "2026-06-16T07:30: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": "Annantalon Kesämuskarit",
                "sv": "Annegårdens sommarmusiklekis",
                "en": "Annantalo’s summertime music playschools"
            },
            "short_description": {
                "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.",
                "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen."
            },
            "description": {
                "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>",
                "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>",
                "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BC9D504186D8B631D8F39E7E4748646F/Annantalon_Kesamuskarit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/BC9D504186D8B631D8F39E7E4748646F/Annegardens_sommarmusiklekis",
                "en": "http://www.annantalo.fi/en/events/event/BC9D504186D8B631D8F39E7E4748646F/Annantalo_s_summertime_music_playschools"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68485/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68484",
            "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/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": 1821524,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-16T13:13:10.721163Z",
                    "last_modified_time": "2026-04-16T13:13:10.721179Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786031.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821524/?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-04-16T13:13:10.504689Z",
            "last_modified_time": "2026-04-22T11:14:05.378102Z",
            "date_published": null,
            "start_time": "2026-06-16T06:30: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": "Annantalon Kesämuskarit",
                "sv": "Annegårdens sommarmusiklekis",
                "en": "Annantalo’s summertime music playschools"
            },
            "short_description": {
                "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.",
                "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen."
            },
            "description": {
                "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>",
                "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>",
                "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2E4F078CB7D8BADCAB4AE61AE4AE1338/Annantalon_Kesamuskarit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/2E4F078CB7D8BADCAB4AE61AE4AE1338/Annegardens_sommarmusiklekis",
                "en": "http://www.annantalo.fi/en/events/event/2E4F078CB7D8BADCAB4AE61AE4AE1338/Annantalo_s_summertime_music_playschools"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68484/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68483",
            "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/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": 1821523,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-16T13:13:09.064115Z",
                    "last_modified_time": "2026-04-16T13:13:09.064130Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786029.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821523/?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-04-16T13:13:08.826942Z",
            "last_modified_time": "2026-04-22T11:14:03.877176Z",
            "date_published": null,
            "start_time": "2026-06-09T07:30: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": "Annantalon Kesämuskarit",
                "sv": "Annegårdens sommarmusiklekis",
                "en": "Annantalo’s summertime music playschools"
            },
            "short_description": {
                "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.",
                "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen."
            },
            "description": {
                "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>",
                "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>",
                "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/27AF1F9BBC1F58DCED930BCEA36AC50F/Annantalon_Kesamuskarit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/27AF1F9BBC1F58DCED930BCEA36AC50F/Annegardens_sommarmusiklekis",
                "en": "http://www.annantalo.fi/en/events/event/27AF1F9BBC1F58DCED930BCEA36AC50F/Annantalo_s_summertime_music_playschools"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68483/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68482",
            "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/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": 1821522,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-16T13:13:08.154349Z",
                    "last_modified_time": "2026-04-16T13:13:08.154370Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786028.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821522/?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-04-16T13:13:07.899025Z",
            "last_modified_time": "2026-04-22T11:14:03.583533Z",
            "date_published": null,
            "start_time": "2026-06-09T06:30: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": "Annantalon Kesämuskarit",
                "sv": "Annegårdens sommarmusiklekis",
                "en": "Annantalo’s summertime music playschools"
            },
            "short_description": {
                "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.",
                "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen."
            },
            "description": {
                "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>",
                "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>",
                "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/AAA722D2DB8DF40F96B4C6E1F4A80035/Annantalon_Kesamuskarit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/AAA722D2DB8DF40F96B4C6E1F4A80035/Annegardens_sommarmusiklekis",
                "en": "http://www.annantalo.fi/en/events/event/AAA722D2DB8DF40F96B4C6E1F4A80035/Annantalo_s_summertime_music_playschools"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68482/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68481",
            "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/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": 1821521,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-16T13:13:06.931394Z",
                    "last_modified_time": "2026-04-16T13:13:06.931409Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786024.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821521/?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-04-16T13:13:06.729849Z",
            "last_modified_time": "2026-04-22T11:14:02.275760Z",
            "date_published": null,
            "start_time": "2026-06-02T07:30: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": "Annantalon Kesämuskarit",
                "sv": "Annegårdens sommarmusiklekis",
                "en": "Annantalo’s summertime music playschools"
            },
            "short_description": {
                "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.",
                "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen."
            },
            "description": {
                "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>",
                "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>",
                "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8923CF1215AE5E8BE7BF0815A4F7733A/Annantalon_Kesamuskarit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/8923CF1215AE5E8BE7BF0815A4F7733A/Annegardens_sommarmusiklekis",
                "en": "http://www.annantalo.fi/en/events/event/8923CF1215AE5E8BE7BF0815A4F7733A/Annantalo_s_summertime_music_playschools"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68481/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68480",
            "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/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": 1821520,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-16T13:13:06.156812Z",
                    "last_modified_time": "2026-04-16T13:13:06.156827Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786023.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821520/?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-04-16T13:13:05.907660Z",
            "last_modified_time": "2026-04-22T11:14:01.843572Z",
            "date_published": null,
            "start_time": "2026-06-02T06:30: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": "Annantalon Kesämuskarit",
                "sv": "Annegårdens sommarmusiklekis",
                "en": "Annantalo’s summertime music playschools"
            },
            "short_description": {
                "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.",
                "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen."
            },
            "description": {
                "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>",
                "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>",
                "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2CC386A38644A1CEB7434516AC9592FE/Annantalon_Kesamuskarit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/2CC386A38644A1CEB7434516AC9592FE/Annegardens_sommarmusiklekis",
                "en": "http://www.annantalo.fi/en/events/event/2CC386A38644A1CEB7434516AC9592FE/Annantalo_s_summertime_music_playschools"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68480/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago3jabbvi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "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": 1824224,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-22T09:06:08.295700Z",
                    "last_modified_time": "2026-04-22T09:06:08.295715Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ca687ba5-3e2e-4823-b676-7373d551d008.jpeg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Espoon musiikkiopisto",
                    "alt_text": "Lapsia jousisoittiminen kanssa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824224/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-22T09:08:13.742739Z",
            "last_modified_time": "2026-04-22T09:08:13.742755Z",
            "date_published": "2026-04-22T09:05:00Z",
            "start_time": "2026-05-26T13:30:00Z",
            "end_time": "2026-05-26T14: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": "Espoon musiikkiopiston jousikvartetit ja viulusolistit"
            },
            "short_description": {
                "fi": "Kuulemme Bachin, Mozartin, Beethovenin, Paganinin ja Tsaikovskin musiikkia lasten ja nuorten esittämänä."
            },
            "description": {
                "fi": "<p>Espoon musiikkiopiston jousikvartetit ja viulusolistit esiintyvät kirjastossa.</p><p>Esiintyjät:</p><ul><li>Arco-kvartetti ja Nauru-kvartetti</li><li>Ea Kauppila ja Unna Angervo, viulu</li></ul><p>Kuulemme Bachin, Mozartin, Beethovenin, Paganinin ja Tsaikovskin musiikkia lasten ja nuorten esittämänä. Tilaisuus sopii kaikille, tervetuloa!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://emo.fi/"
            },
            "location_extra_info": {
                "fi": "Kaija"
            },
            "provider": {
                "fi": "Espoon musiikkiopisto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3jabbvi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67595",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/malmijazz-jimi-tenor-band-malmitalo-20930018/",
                        "sv": "https://www.lippu.fi/event/malmijazz-jimi-tenor-band-malmitalo-20930018/",
                        "en": "https://www.lippu.fi/event/malmijazz-jimi-tenor-band-malmitalo-20930018/"
                    },
                    "price": {
                        "fi": "15€/20€",
                        "sv": "15€/20€",
                        "en": "15€/20€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494103,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-05T10:12:54.343688Z",
                    "last_modified_time": "2025-12-05T10:12:54.343708Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781992.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494103/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-05T10:12:54.241230Z",
            "last_modified_time": "2026-04-22T08:13:46.405190Z",
            "date_published": null,
            "start_time": "2026-04-23T16: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": "Jimi Tenor Band – MalmiJazz",
                "sv": "Jimi Tenor Band – MalmiJazz",
                "en": "Jimi Tenor Band – MalmiJazz"
            },
            "short_description": {
                "fi": "Kansainvälisesti arvostetun Jimi Tenorin musiikki puikkelehtii sujuvasti kokeellisesta rockista ja jazzista aina psykedeeliseen souliin ja funkyyn asti.",
                "sv": "Den internationellt ansedda Jimi Tenors musik hoppar smidigt från experimentell rock och jazz fram till den psykedeliska soulen och funken.",
                "en": "The agile music of the internationally renowned Jimi Tenor weaves its way around experimental rock and jazz all the way to psychedelic soul and funk."
            },
            "description": {
                "fi": "<p>Kansainvälisesti arvostetun Jimi Tenorin musiikki puikkelehtii sujuvasti kokeellisesta rockista ja jazzista aina psykedeeliseen souliin ja funkyyn asti.</p><p>Jimi Tenor Band julkaisi taannoin ensimmäisen studioalbuminsa ”Selenites, Selenites!”. Levy äänitettiin pääosin Hampurissa keväällä 2025. Musiikillisesti ”Selenites, Selenites!” jatkaa afro-romanttis-kosmisella<br>linjalla.</p><p>Jimi Tenor Band on huippumuusikoista koostuva yhtye, jonka kokoonpano on seuraava:</p><p>Jimi Tenor – saksofoni, huilu, syntetisaattorit, laulu<br>Eeti Nieminen – rummut, perkussiot, laulu<br>Heikki Tuhkanen – pasuuna, tuuba, laulu<br>Lauri Kallio – kitara, basso, laulu</p><p>Kesto: 2 t, sis 20 min väliajan</p>",
                "sv": "<p>Den internationellt ansedda Jimi Tenors musik hoppar smidigt från experimentell rock och jazz fram till den psykedeliska soulen och funken.</p><p>Jimi Tenor Band är ett band med toppmusiker med följande sammansättning:<br>Jimi Tenor – saxofon, flöjt, syntetisator, sång<br>Eeti Nieminen – trummor, perkussion, sång <br>Heikki Tuhkanen – basun, tuba, sång <br>Lauri Kallio – gitarr, bas, sång</p>",
                "en": "<p>The agile music of the internationally renowned Jimi Tenor weaves its way around experimental rock and jazz all the way to psychedelic soul and funk.</p><p>Jimi Tenor Band consists of the following top musicians:<br>Jimi Tenor – saxophone, flute, synthesisers, vocals<br>Eeti Nieminen – drums, percussion, vocals <br>Heikki Tuhkanen – trombone, tuba, vocals <br>Lauri Kallio – guitar, bass, vocals</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_",
                "en": "http://www.malmitalo.fi/en/events/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67595/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:31738848-203e-f111-88b4-7ced8d4a0702",
            "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/yso:p1947/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:0a26df6b-128c-47a6-8137-e0b24c745ae4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=KATTO_Kattotapahtuma_alitapahtumat3466869281"
                    },
                    "price": {
                        "fi": "0"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "created_time": "2026-04-22T07:58:49.477568Z",
            "last_modified_time": "2026-04-22T07:58:49.477585Z",
            "date_published": "2026-04-22T07:53:10Z",
            "start_time": "2026-04-23T05:00:00Z",
            "end_time": "2026-04-24T05: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": 10,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "ALI 2 Kattotapahtuma + alitapahtumat"
            },
            "short_description": {
                "fi": "lyhyt kuvaus"
            },
            "description": {
                "fi": "<div><p>Pitkä kuvaus</p></div>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Tapahtuman järjestäjä"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:31738848-203e-f111-88b4-7ced8d4a0702/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:6ae14b44-203e-f111-88b4-70a8a57af1be",
            "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/yso:p1947/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:0a26df6b-128c-47a6-8137-e0b24c745ae4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=KATTO_Kattotapahtuma_alitapahtumat3466869280"
                    },
                    "price": {
                        "fi": "0"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "created_time": "2026-04-22T07:58:43.898495Z",
            "last_modified_time": "2026-04-22T07:58:43.898510Z",
            "date_published": "2026-04-22T07:53:03Z",
            "start_time": "2026-04-23T05:00:00Z",
            "end_time": "2026-04-24T05: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": 10,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "ALI 1 Kattotapahtuma + alitapahtumat"
            },
            "short_description": {
                "fi": "lyhyt kuvaus"
            },
            "description": {
                "fi": "<div><p>Pitkä kuvaus</p></div>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Tapahtuman järjestäjä"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6ae14b44-203e-f111-88b4-70a8a57af1be/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:0a26df6b-128c-47a6-8137-e0b24c745ae4",
            "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/yso:p1947/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=KATTO_Kattotapahtuma_alitapahtumat346686928"
                    },
                    "price": {
                        "fi": "0"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6ae14b44-203e-f111-88b4-70a8a57af1be/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:31738848-203e-f111-88b4-7ced8d4a0702/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "created_time": "2026-04-22T07:58:04.912274Z",
            "last_modified_time": "2026-04-22T07:58:04.912291Z",
            "date_published": "2026-04-22T07:52:51Z",
            "start_time": "2026-04-23T05:00:00Z",
            "end_time": "2026-04-24T05:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": 10,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "KATTO Kattotapahtuma + alitapahtumat"
            },
            "short_description": {
                "fi": "lyhyt kuvaus"
            },
            "description": {
                "fi": "<div><p>Pitkä kuvaus</p></div>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Tapahtuman järjestäjä"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:0a26df6b-128c-47a6-8137-e0b24c745ae4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago3isyvua",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1824223,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-22T07:46:42.686218Z",
                    "last_modified_time": "2026-04-22T07:46:57.996074Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e89abe4-6887-4c1c-a350-eabd4e4d6451.png",
                    "name": "",
                    "cropping": "295,0,1705,1410",
                    "photographer_name": "",
                    "alt_text": "Vaaleansinisellä pohjalla värikkäitä viirejä, kirja, sekä tekstit: \"Satuhetki\" ja \"Lastenkulttuurin juhlaviikko\"",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824223/?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-04-22T07:56:06.355656Z",
            "last_modified_time": "2026-04-22T07:56:06.355672Z",
            "date_published": null,
            "start_time": "2026-05-20T15:00:00Z",
            "end_time": "2026-05-20T21: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": "Satumainen satuhetki"
            },
            "short_description": {
                "fi": "Satuhetki Stagella"
            },
            "description": {
                "fi": "<p>Yhtenä päivänä viidakkoon ilmestyy herkullisen näköinen eksoottinen hedelmä, jota kaikki norsut haluavat maistaa. Mutta miten hedelmän saisi alas puusta? </p><p>Tule kuulemaan satua yhteistyön riemukkaasta voimasta Ison Omenan kirjaston Stagelle 20.5. klo 18. Satuhetki sopii kaikenikäisille, satu luetaan suomeksi. </p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3isyvua/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:a1e0b923-0b3e-f111-88b4-7ced8d4a0198",
            "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/yso:p1235/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:61e3343f-4613-4d4e-90d6-88fc65659661/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Kattotapahtuman_ja_alitapahtumien_julkaisu_Linked_Eventsiin2045592081"
                    },
                    "price": {
                        "fi": "0"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1824220,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-22T07:47:37.455730Z",
                    "last_modified_time": "2026-04-22T07:47:37.455751Z",
                    "url": "https://assets-eur.mkt.dynamics.com/f61dce5f-f37b-ef11-ac1e-000d3a69df77/digitalassets/images/d902d635-da99-f011-b4cc-0022489f36bc",
                    "name": "Helsinki-tunnus",
                    "cropping": "",
                    "photographer_name": "Helsingin kaupunki",
                    "alt_text": "Helsinki-tunnus",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824220/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "created_time": "2026-04-22T07:47:30.290316Z",
            "last_modified_time": "2026-04-22T07:47:38.719195Z",
            "date_published": "2026-04-22T05:21:46Z",
            "start_time": "2026-04-23T06:00:00Z",
            "end_time": "2026-04-23T07: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": 100,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kattotapahtuman ja alitapahtumien julkaisu Linked Eventsiin - Alitapahtuma 2"
            },
            "short_description": {
                "fi": "Lyhyt kuvaus"
            },
            "description": {
                "fi": "<div><p>Tapahtuman kuvaus</p></div>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Annansali"
            },
            "provider": {
                "fi": "Helsingin kaupunki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a1e0b923-0b3e-f111-88b4-7ced8d4a0198/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:61e3343f-4613-4d4e-90d6-88fc65659661",
            "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/yso:p1235/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Kattotapahtuman_ja_alitapahtumien_julkaisu_Linked_Eventsiin204559208"
                    },
                    "price": {
                        "fi": "0"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a1e0b923-0b3e-f111-88b4-7ced8d4a0198/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1824218,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-22T07:46:43.196409Z",
                    "last_modified_time": "2026-04-22T07:46:43.196455Z",
                    "url": "https://assets-eur.mkt.dynamics.com/f61dce5f-f37b-ef11-ac1e-000d3a69df77/digitalassets/images/d902d635-da99-f011-b4cc-0022489f36bc",
                    "name": "Helsinki-tunnus",
                    "cropping": "",
                    "photographer_name": "Helsingin kaupunki",
                    "alt_text": "Helsinki-tunnus",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824218/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "created_time": "2026-04-22T07:46:45.385012Z",
            "last_modified_time": "2026-04-22T07:46:45.385036Z",
            "date_published": "2026-04-22T05:21:23Z",
            "start_time": "2026-04-23T05:00:00Z",
            "end_time": "2026-04-23T07:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": 100,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kattotapahtuman ja alitapahtumien julkaisu Linked Eventsiin"
            },
            "short_description": {
                "fi": "Lyhyt kuvaus"
            },
            "description": {
                "fi": "<div><p>Tapahtuman kuvaus</p></div>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Annansali"
            },
            "provider": {
                "fi": "Helsingin kaupunki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:61e3343f-4613-4d4e-90d6-88fc65659661/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago3bjhexm",
            "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:agggfz66i4/?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:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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": 1824217,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-21T14:38:01.401296Z",
                    "last_modified_time": "2026-04-21T14:38:01.401401Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/637a7b87-95ed-428e-9c01-2ae9840b5b29.jpg",
                    "name": "Memories around coffee",
                    "cropping": "329,0,1916,1587",
                    "photographer_name": "Zeynep Sahin-Avci",
                    "alt_text": "Kahvipöytä, jolla erilaisia elementtejä. Herkkuja, kahvikuppeja ja lintuja.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824217/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-21T14:44:04.542543Z",
            "last_modified_time": "2026-04-21T14:44:04.542560Z",
            "date_published": "2016-04-21T14:55:00Z",
            "start_time": "2026-05-17T08:30:00Z",
            "end_time": "2026-05-30T09: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": "Muistoja kahvin ympäriltä",
                "sv": "Minnen kring kaffe",
                "en": "Memories around coffee"
            },
            "short_description": {
                "fi": "Huomasin kaipaavani kahvihetkiä perheeni ja läheisten ystävieni kanssa muutettuani kauas heistä. Maalasin, kunnes palaset loksahtivat paikoilleen orgaanisesti.",
                "sv": "Det började när jag märkte att jag saknade kaffestunder med familj och vänner efter att ha flyttat långt ifrån. Jag målade tills bitarna föll samman organiskt.",
                "en": "It began when I found myself missing coffee moments with family and close friends after moving far away. I painted until the pieces came together organically."
            },
            "description": {
                "fi": "<p>Olen työskennellyt tämän taidenäyttelyn parissa lähes vuoden. Se alkoi, kun huomasin kaipaavani kahvihetkiä perheeni ja läheisten ystävieni kanssa muutettuani kauas heistä. Maalasin yhden teoksen ja sitten tunsin, että voisin tehdä paremmin. Niinpä maalasin yhä uudelleen ja uudelleen, kunnes palaset loksahtivat paikoilleen orgaanisesti.</p>",
                "sv": "<p>Jag har arbetat med den här konstutställningen i nästan ett år. Det började när jag märkte att jag saknade kaffestunder med min familj och nära vänner efter att ha flyttat långt ifrån dem. Jag målade en komposition och kände sedan att jag kunde göra bättre. Så jag målade om och om igen, tills bitarna föll samman organiskt.</p>",
                "en": "<p>I have been working on this art exhibition for almost a year. It began when I found myself missing coffee moments with my family and close friends after moving far away from them. I painted one composition, then felt I could do better. So I painted again and again, until the pieces came together organically.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki rummet",
                "en": "Salonki room"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3bjhexm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago3a3s2oq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:61461/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?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:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-21T13:14:02.079943Z",
                    "last_modified_time": "2026-04-21T13:14:02.079960Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a923b739-6a1b-49d2-b020-c34774c83ba3.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "kuvassa muusikot Lauri Iljin ja Tiina Tuuri",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-21T13:32:18.980234Z",
            "last_modified_time": "2026-04-21T13:32:18.980251Z",
            "date_published": null,
            "start_time": "2026-05-04T15:00:00Z",
            "end_time": "2026-05-04T16: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": "Juhlat Kalajärven kirjastolla! ",
                "sv": "Fest på Kalajärvi biblioteket! ",
                "en": "Party at the Kalajärvi Library! "
            },
            "short_description": {
                "fi": "Tervetuloa juhlimaan kevättä ja omaa kirjastoa!",
                "sv": "Välkommen att fira våren och vårt bibliotek!",
                "en": "Welcome to celebrate spring and your library!"
            },
            "description": {
                "fi": "Juhlat kirjastolla!<p><strong>Ma 4.5. klo 18 | Kalajärven kirjasto</strong></p><p>Tervetuloa juhlimaan kevättä ja omaa kirjastoa!</p><p>Ohjelmassa:</p><p>• Kirjastossa toteutettavan uudistuksen julkistus</p><p>• Katse Espooseen -runokilpailun näyttelyn avaus</p><p>• Musiikkia: Duo Tiina ja Lauri</p><p>Tarjoilua 60 ensimmäiselle!</p><p><br></p><p><strong>Muusikot Tiina Tuuri ja Lauri Iljin esiintyvät! </strong>Duo Tiina ja Lauri<strong> </strong>on tunnelmallinen ja monipuolinen duo, jonka musiikissa yhdistyy tulkinta, herkkyys ja läsnäolo. Duo tuo musiikillaan Kalajärven kirjastoon tunnelman, joka jää jokaisen kuulijan mieleen.</p><p><br></p><p>Tervetuloa, tapahtuman järjestää kirjasto!</p>",
                "sv": "Fest på biblioteket!<p><strong>Mån 4 maj kl. 18 | Kalajärvi-biblioteket</strong></p><p><br></p><p>Välkommen att fira våren och vårt bibliotek!</p><p>På programmet:</p><p>• Presentation av bibliotekets kommande renovering</p><p>• Invigning av utställningen från poesitävlingen ”Katse Espooseen”</p><p>• Musik: Duo Tiina och Lauri</p><p><br></p><p>Förfriskningar till de 60 första!</p><p><strong>Musikerna Tiina Tuuri och Lauri Iljin uppträder! </strong>Duo Tiina och Lauri är en stämningsfull och mångsidig duo vars musik förenar tolkning, känslighet och närvaro. Med sin musik skapar duon en stämning i Kalajärvi-biblioteket som kommer att stanna kvar i minnet hos alla åhörare.&nbsp;</p><p>Välkommen, evenemanget arrangeras av biblioteket!&nbsp;</p>",
                "en": "Party at the library!<p><strong>Mon, May 4 at 6:00 p.m. | Kalajärvi Library</strong></p><p><br></p><p>Come celebrate spring and your library!</p><p>Program:</p><p>• Announcement of the library’s renovation</p><p>• Opening of the “Looking Toward Espoo” poetry contest exhibition</p><p>• Music: Duo Tiina and Lauri</p><p><br></p><p>Refreshments for the first 60 guests!</p><p><br></p><p><strong>Musicians Tiina Tuuri and Lauri Iljin will perform</strong>! Duo Tiina and Lauri is an atmospheric and versatile duo whose music combines interpretation, sensitivity, and presence. With their music, the duo brings an atmosphere to the Kalajärvi Library that will stay with every listener.&nbsp;</p><p><br></p><p>Welcome! This event is organized by the library!&nbsp;</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": {
                "fi": "kirjasto",
                "sv": "biblioteket",
                "en": "library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3a3s2oq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago3a3s3gu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?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:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-21T13:14:02.079943Z",
                    "last_modified_time": "2026-04-21T13:14:02.079960Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a923b739-6a1b-49d2-b020-c34774c83ba3.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "kuvassa muusikot Lauri Iljin ja Tiina Tuuri",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-21T13:22:52.290179Z",
            "last_modified_time": "2026-04-21T13:22:52.290196Z",
            "date_published": null,
            "start_time": "2026-05-04T15:00:00Z",
            "end_time": "2026-05-04T16: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": "Juhlat Kalajärven kirjastolla! ",
                "sv": "Fest på Kalajärvi biblioteket! ",
                "en": "Party at the Kalajärvi Library! "
            },
            "short_description": {
                "fi": "Tervetuloa juhlimaan kevättä ja omaa kirjastoa!",
                "sv": "Välkommen att fira våren och vårt bibliotek!",
                "en": "Welcome to celebrate spring and your library!"
            },
            "description": {
                "fi": "Juhlat kirjastolla!<p><strong>Ma 4.5. klo 18 | Kalajärven kirjasto</strong></p><p>Tervetuloa juhlimaan kevättä ja omaa kirjastoa!</p><p>Ohjelmassa:</p><p>• Kirjastossa toteutettavan uudistuksen julkistus</p><p>• Katse Espooseen -runokilpailun näyttelyn avaus</p><p>• Musiikkia: Duo Tiina ja Lauri</p><p>Tarjoilua 60 ensimmäiselle!</p><p><br></p><p><strong>Muusikot Tiina Tuuri ja Lauri Iljin esiintyvät! </strong>Duo Tiina ja Lauri<strong> </strong>on tunnelmallinen ja monipuolinen duo, jonka musiikissa yhdistyy tulkinta, herkkyys ja läsnäolo. Duo tuo musiikillaan Kalajärven kirjastoon tunnelman, joka jää jokaisen kuulijan mieleen. </p><p><br></p><p>Tervetuloa, tapahtuman järjestää kirjasto! </p>",
                "sv": "Fest på biblioteket!<p><strong>Mån 4 maj kl. 18 | Kalajärvi-biblioteket</strong></p><p><br></p><p>Välkommen att fira våren och vårt bibliotek!</p><p>På programmet:</p><p>• Presentation av bibliotekets kommande renovering</p><p>• Invigning av utställningen från poesitävlingen ”Katse Espooseen”</p><p>• Musik: Duo Tiina och Lauri</p><p><br></p><p>Förfriskningar till de 60 första!</p><p><strong>Musikerna Tiina Tuuri och Lauri Iljin uppträder! </strong>Duo Tiina och Lauri är en stämningsfull och mångsidig duo vars musik förenar tolkning, känslighet och närvaro. Med sin musik skapar duon en stämning i Kalajärvi-biblioteket som kommer att stanna kvar i minnet hos alla åhörare.&nbsp;</p><p>Välkommen, evenemanget arrangeras av biblioteket!&nbsp;</p>",
                "en": "Party at the library!<p><strong>Mon, May 4 at 6:00 p.m. | Kalajärvi Library</strong></p><p><br></p><p>Come celebrate spring and your library!</p><p>Program:</p><p>• Announcement of the library’s renovation</p><p>• Opening of the “Looking Toward Espoo” poetry contest exhibition</p><p>• Music: Duo Tiina and Lauri</p><p><br></p><p>Refreshments for the first 60 guests!</p><p><br></p><p><strong>Musicians Tiina Tuuri and Lauri Iljin will perform</strong>! Duo Tiina and Lauri is an atmospheric and versatile duo whose music combines interpretation, sensitivity, and presence. With their music, the duo brings an atmosphere to the Kalajärvi Library that will stay with every listener.&nbsp;</p><p><br></p><p>Welcome! This event is organized by the library!&nbsp;</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": {
                "fi": "kirjasto",
                "sv": "biblioteket",
                "en": "library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3a3s3gu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago3ans6xq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:27538/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "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": 1824215,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-05-22T13:32:39.433497Z",
                    "last_modified_time": "2024-05-22T13:32:39.433529Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Uke_Park_Jam02.jpg",
                    "name": "",
                    "cropping": "0,18,850,868",
                    "photographer_name": "",
                    "alt_text": "Ukulele puistojamit",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824215/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-21T12:54:53.058391Z",
            "last_modified_time": "2026-04-21T12:54:53.058407Z",
            "date_published": "2026-04-21T12:44:14.407000Z",
            "start_time": "2026-06-08T14:00:00Z",
            "end_time": "2026-06-08T15: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": "Ukulele puistojamit ",
                "en": "Ukulele Park Jam "
            },
            "short_description": {
                "fi": "Soitetaan ja lauletaan kesäisiä lauluja Silkkiniityn puistossa, Tapiolassa ",
                "en": "Let's begin the summer by playing and singing summer songs together  in Silkkiniitty Park, Tapiola."
            },
            "description": {
                "fi": "<p>Tervetuloa mukaan soittamaan kesäisiä lauluja ukulelella, tai kitaralla tai vain laulamaan Silkkiniityn puistoon, Tapiolaan. Tuokaa viltti istumista varten ja oma nuottiteline jos haluatte sitä käyttää. Nuotteja voi pitää myös viltin päällä. Nuotit annetaan jamien aikana. Vetäjinä musiikkipedagogit Sakari Heikka ja Lauri Iljin.</p><p>Sateisen sään sattuessa jamit pidetään Tapiolan kirjastossa. Mahdollisesta muutoksesta ilmoitetaan tässä ilmoituksessa tapahtumapäivänä klo 13. </p><p>#ukulele #ukulelejamit #kesä</p>",
                "en": "<p>Welcome to play summer songs on the ukulele or just sing together in Silkkiniitty Park, Tapiola. Bring a blanket to sit on and your own music stand if you want to use it. Sheet music can also be kept on top of a blanket. Led by music pedagogues Sakari Heikka and Lauri Iljin.</p><p>In case of rainy weather, the event will be held in Tapiola Library. The possible change will be announced here at 1 pm on the event day. </p><p>#ukulele #ukulelejam #summer</p><p><br></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3ans6xq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}