Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 7438,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=148",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=146"
    },
    "data": [
        {
            "id": "kulke:66285",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 721900,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-09T13:53:57.887483Z",
                    "last_modified_time": "2025-05-09T13:53:57.887500Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768372.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721900/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-05-09T13:53:57.772740Z",
            "last_modified_time": "2025-05-09T13:53:58.043194Z",
            "date_published": null,
            "start_time": "2025-05-17T09: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": "Metsäkone – Lastenkulttuurin juhlaviikko",
                "sv": "Metsäkone (Skogsmaskinen) – Barnkulturveckan",
                "en": "Metsäkone (Forest machine) – Children's Culture Week"
            },
            "short_description": {
                "fi": "Linnunrata-teatterikurssin 7-9-vuotiaat oppilaat ovat tehneet tämän esityksen.",
                "sv": "Det här uppträdandet har gjorts av 7–9-åriga elever från teaterkursen Linnunrata.",
                "en": "This performance was created by the 7–9-year-old students of the Linnunrata theatre course."
            },
            "description": {
                "fi": "<p>Linnunrata-teatterikurssin 7-9-vuotiaat oppilaat ovat tehneet tämän esityksen.</p><p>Metsäkone- esitys on syntynyt lasten idean pohjalta. Aihe on helsinkiläislapsille tuttu, lähimetsiä kaadetaan rakentamisen tieltä ja uutisissa metsäkoneet ajelevat raakkujen päältä. Oppilaat ovat itse saaneet valita toiveroolinsa, nämä yhdistelemällä syntyi tarina metsästä ja sen asukkaista.</p><p>Esitykset ti 13.5. klo 17.30 ja la 17.5. klo 12</p><p>Ohjaaja: Sari Tupamäki</p><p>Esityksiin on vapaa pääsy. Varaa paikat tällä lomakkeella:</p><p>https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Voit varata kerralla paikan useampaan esitykseen ja useammalle henkilölle.</p>",
                "sv": "<p>Det här uppträdandet har gjorts av 7–9-åriga elever från teaterkursen Linnunrata.</p><p>Föreställningen Skogsmaskinen bygger på en idé av barn. Ämnet är bekant för barn i Helsingfors, eftersom närliggande skogar huggs ner för att ge plats för byggnation och skogsmaskiner kör över kadavren i nyheterna.</p><p>Föreställningar tis 13.5 kl. 17.30 och lör 17.5 kl. 12</p><p>Regi: Sari Tupamäki</p><p>Det är fritt inträde till föreställningarna. Boka dina platser med detta formulär: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Du kan boka platser för flera föreställningar och för flera personer åt gången.</p>",
                "en": "<p>This performance was created by the 7–9-year-old students of the Linnunrata theatre course.</p><p>The Forest Machine performance is based on an idea by children. The topic is familiar to children in Helsinki, with nearby forests being cut down to make way for construction and forestry machines driving over the carcasses in the news.</p><p>Performances Tue 13.5. at 17.30 and Sat 17.5. at 12</p><p>Directed by Sari Tupamäki</p><p>Admission to the performances is free. Book your seats using this form: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>You can book seats for more than one performance and for more than one person at a time.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EF0CF9782593A3F0C5FC01A130A27279/Metsakone",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/EF0CF9782593A3F0C5FC01A130A27279/Metsakone_Skogsmaskinen_",
                "en": "http://www.annantalo.fi/en/events/event/EF0CF9782593A3F0C5FC01A130A27279/Metsakone_Forest_machine_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66285/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66290",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 721898,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-09T13:53:56.271004Z",
                    "last_modified_time": "2025-05-09T13:53:56.271022Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768365.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721898/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-05-09T13:53:56.150797Z",
            "last_modified_time": "2025-05-09T13:53:56.427790Z",
            "date_published": null,
            "start_time": "2025-05-15T14: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": "Sateen ropinaa, äänihäiriköitä ja omantunnon kolkutusta – Lastenkulttuurin juhlaviikko",
                "sv": "Sateen ropinaa, äänihäiriköitä ja omantunnon kolkutusta – Barnkulturveckan",
                "en": "Sateen ropinaa, äänihäiriköitä ja omantunnon kolkutusta – Children's Culture Week"
            },
            "short_description": {
                "fi": "Andromeda-teatterikurssin 10-12-vuotiaat oppilaat ovat tehneet tämän esityksen.",
                "sv": "Det här uppträdandet har gjorts av 10–12-åriga elever från teaterkursen Andromeda.",
                "en": "This performance was created by the 10–12-year-old students of the Andromeda theatre course."
            },
            "description": {
                "fi": "<p>Andromeda-teatterikurssin 10-12-vuotiaat oppilaat ovat tehneet tämän esityksen.</p><p>Mikä on lempiäänesi? Entä millainen ääni ärsyttää sinua? Millaisia ääneen liittyviä muistoja sinulla on? Esitys on syntynyt ääneen liittyvistä ajatuksista, muistoista ja keksityistä tilanteista.</p><p>Esitykset to 15.5. klo 17.30 ja su 18.5. klo 12</p><p>Ohjaaja: Karoliina Helminen</p><p>Esityksiin on vapaa pääsy. Varaa paikat tällä lomakkeella:</p><p>https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Voit varata kerralla paikan useampaan esitykseen ja useammalle henkilölle.</p>",
                "sv": "<p>Det här uppträdandet har gjorts av 10–12-åriga elever från teaterkursen Andromeda.</p><p>Vilken typ av ljud irriterar dig? Vad har du för ljudrelaterade minnen? Föreställningen föds ur tankar, minnen och fiktiva situationer som har med ljud att göra.</p><p>Föreställningar tors 15.5. kl. 17.30 och sön 18.5. kl. 12.00</p><p>Regi: Karoliina Helminen</p><p>Det är fritt inträde till föreställningarna. Boka dina platser med detta formulär: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Du kan boka platser för flera föreställningar och för flera personer åt gången.</p>",
                "en": "<p>This performance was created by the 10–12-year-old students of the Andromeda theatre course.</p><p>What kind of sound annoys you? What kind of sound-related memories do you have? The performance is born out of thoughts, memories and fictional situations related to sound.</p><p>Performances on Thu 15.5. at 17.30 and Sun 18.5. at 12.</p><p>Directed by Karoliina Helminen</p><p>Admission to the performances is free. Book your seats using this form: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>You can book seats for more than one performance and for more than one person at a time.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CF8276F9D49A2E21B5423338FA6D5F79/Sateen_ropinaa_aanihairikoita_ja_omantunnon_kolkutusta",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CF8276F9D49A2E21B5423338FA6D5F79/Sateen_ropinaa_aanihairikoita_ja_omantunnon_kolkutusta",
                "en": "http://www.annantalo.fi/en/events/event/CF8276F9D49A2E21B5423338FA6D5F79/Sateen_ropinaa_aanihairikoita_ja_omantunnon_kolkutusta"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66290/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66286",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 721896,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-09T13:53:55.072447Z",
                    "last_modified_time": "2025-05-09T13:53:55.072465Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768361.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721896/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-05-09T13:53:54.954895Z",
            "last_modified_time": "2025-05-09T13:53:55.231695Z",
            "date_published": null,
            "start_time": "2025-05-14T14: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": "Kulkijat – Lastenkulttuurin juhlaviikko",
                "sv": "Kulkijat (Resenärer) – Barnkulturveckan",
                "en": "Kulkijat (Travellers) – Children's Culture Week"
            },
            "short_description": {
                "fi": "Värisevät varpaat-tanssikurssin 7-17-vuotiaat oppilaat ovat tehneet tämän esityksen.",
                "sv": "Det här uppträdandet har gjorts av 7–17-åriga elever från danskursen Värisevät varpaat.",
                "en": "This performance was created by the 7–17-year-old students of the Värisevät varpaat dance course."
            },
            "description": {
                "fi": "<p>Värisevät varpaat-tanssikurssin 7-17-vuotiaat oppilaat ovat tehneet tämän esityksen.</p><p>Koko vuoden kuljimme eri paikoissa, kuljimme ajassa. Nyt kuljemme näyttämöllä. Ja kohta kuljemme taas eteenpäin. Näyttämöteoksen rinnalla syntyi kuvateos ”Kaiut ja kulkijat”. Se on nähtävissä Annantalon Gallerian näyttelyssä ”Huudetaanko?”.</p><p>Esitykset ke 14.5. klo 17.30 ja su 18.5. klo 13</p><p>Ohjaajat: Sanna Kuusisto ja Miila Vainio</p><p>Esityksiin on vapaa pääsy. Varaa paikat tällä lomakkeella:</p><p>https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Voit varata kerralla paikan useampaan esitykseen ja useammalle henkilölle.</p>",
                "sv": "<p>Det här uppträdandet har gjorts av 7–17-åriga elever från danskursen Värisevät varpaat.</p><p>Nu går vi på scenen. Och snart kommer vi att röra oss framåt igen. Parallellt med scenarbetet skapades det illustrerade verket ”Kaiut ja kulkijat”. Det kan ses i Annegårdens galleris utställning ”Huudetaanko?”.</p><p>Föreställningar ons 14.5 kl. 17.30 och sön 18.5 kl. 13.00</p><p>Regi: Sanna Kuusisto och Miila Vainio</p><p>Det är fritt inträde till föreställningarna. Boka dina platser med detta formulär: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Du kan boka platser för flera föreställningar och för flera personer åt gången.</p>",
                "en": "<p>This performance was created by the 7–17-year-old students of the Värisevät varpaat dance course.</p><p>Now we walk on stage. And soon we'll be moving forward again. Alongside the stage work, the illustrated work ‘Echoes and Travellers’ was created. It can be seen in the Annantalo Gallery's exhibition ‘Huudetaanko?’.</p><p>Performances Wed 14.5. at 17.30 and Sun 18.5. at 13</p><p>Directed by Sanna Kuusisto and Miila Vainio</p><p>Admission to the performances is free. Book your seats using this form: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>You can book seats for more than one performance and for more than one person at a time.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/283FD89EF288FD1C39F9E1C8C04E9DB7/Kulkijat",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/283FD89EF288FD1C39F9E1C8C04E9DB7/Kulkijat_Resenarer_",
                "en": "http://www.annantalo.fi/en/events/event/283FD89EF288FD1C39F9E1C8C04E9DB7/Kulkijat_Travellers_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66286/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65945",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 721895,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-09T13:53:54.307397Z",
                    "last_modified_time": "2025-05-09T13:53:54.307413Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768357.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721895/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-05-09T13:53:54.188153Z",
            "last_modified_time": "2025-05-09T13:53:54.464482Z",
            "date_published": null,
            "start_time": "2025-05-13T15: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": "Aikatasku – Lastenkulttuurin juhlaviikko",
                "sv": "Aikatasku (Tidsficka) – Barnkulturveckan",
                "en": "Aikatasku (Time pocket) – Children's Culture Week"
            },
            "short_description": {
                "fi": "Dancehearts-tanssikurssin 7-17-vuotiaat oppilaat ovat tehneet tämän esityksen.",
                "sv": "Det här uppträdandet har gjorts av eleverna i åldern 7–17 år från danskursen Dancehearts.",
                "en": "This performance was created by the 7–17-year-old students of the Dancehearts dance course."
            },
            "description": {
                "fi": "<p>Dancehearts-tanssikurssin 7-17-vuotiaat oppilaat ovat tehneet tämän esityksen.</p><p>Valo kulkee kykloopin silmän kautta ja antiikin Kreikan mytologinen aika vyöryy nykyajan yli kuin meren aalto rantahiekkaan. Onko jokin muuttunut, kun ajan aalto vetäytyy?</p><p>Kun valmistimme esitystä, tutkimme antiikin Kreikan mytologiaa ja nykyajan nuorten tunnelmia. Tanssimme yhdessä niiden innostamina. Valmiissa teoksessa on mukana nykyajan kulkijoita, antiikin jumalia, seireenejä ja muita tarunomaisia hahmoja.</p><p>Esitykset ti 13.5. klo 18.30 ja la 17.5. klo 13<br>Ohjaajat: Sanna Kuusisto ja Annika Sarvela</p><p>Maksuton, ilmoittautuminen vaaditaan. Varaa paikat esitykseen tästä: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Lastenkulttuurin juhlaviikolla kuuluvat lasten ja nuorten äänet.  Viikon aikana nähdään teatteri- ja tanssiesityksiä, joita Annantalon esittävien taiteiden kurssit ovat valmistaneet lukuvuoden aikana. Esitykset saavat ensi-iltansa juhlaviikolla.</p>",
                "sv": "<p>Det här uppträdandet har gjorts av eleverna i åldern 7–17 år från danskursen Dancehearts.</p><p>Dancehearts danskurs (7-17 år): Aikatasku - Tidsficka</p><p>Ljuset passerar genom cyklopens öga och den antika grekiska mytologiska tiden rullar över den moderna tiden som en våg på strandens sand. Har något förändrats när tidens våg drar sig tillbaka?</p><p>Vi utforskar mytologin i det antika Grekland och stämningen bland dagens unga. I verket möter vi nutida resenärer, antika gudar, sirener och andra mytiska figurer.</p><p>Föreställningar tis 13.5. kl. 18.30 och lör 17.5. kl. 13.00<br>Regi: Sanna Kuusisto och Annika Sarvela</p><p>Det är fritt inträde till föreställningarna. Boka dina platser med detta formulär: https://link.webropolsurveys.com/EP/07BDCAE600024310.</p><p>Du kan boka platser för flera föreställningar och för flera personer åt gången.</p><p>Det finns också separata endagsföreställningar för skolgrupper den 13-16 maj. Mer information: kultus.hel.fi</p><p>Lördagen den 17 maj, under den första pausen kl. 12.30, ordnas en guidad visning av elevutställningen ”Huudetaanko?” i Annegårdens galleri. Välkommen att följa med oss!</p>",
                "en": "<p>This performance was created by the 7–17-year-old students of the Dancehearts dance course.</p><p>Dancehearts dance class (7-17 year olds): Aikatasku - Time pocket</p><p>Light passes through the eye of the cyclops and ancient Greek mythological time rolls over modern times like a wave on the sand of the beach. Has something changed as the wave of time recedes?</p><p>We explore the mythology of ancient Greece and the mood of young people today. The work features modern-day travellers, ancient gods, sirens and other mythical characters.</p><p>Performances Tue 13.5. at 18.30 and Sat 17.5. at 13.00<br>Directed by Sanna Kuusisto and Annika Sarvela</p><p>Admission to the performances is free. Book your seats using this form: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>You can book seats for more than one performance and for more than one person at a time.</p><p>There are also separate performances for school groups on 13-16 May. Performances and registration via kultus.hel.fi.</p><p>On Saturday 17 May, during the first intermission at 12:30, a guided tour of the student work exhibition Huudetaanko? will take place in the Annantalo Gallery. Welcome to join us!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9E0B871EA3F0493A72AAF454A8DDC629/Aikatasku",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9E0B871EA3F0493A72AAF454A8DDC629/Aikatasku_Tidsficka_",
                "en": "http://www.annantalo.fi/en/events/event/9E0B871EA3F0493A72AAF454A8DDC629/Aikatasku_Time_pocket_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65945/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66284",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 721894,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-09T13:53:53.430212Z",
                    "last_modified_time": "2025-05-09T13:53:53.430230Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768358.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721894/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-05-09T13:53:53.305558Z",
            "last_modified_time": "2025-05-09T13:53:53.607759Z",
            "date_published": null,
            "start_time": "2025-05-13T14: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": "Metsäkone – Lastenkulttuurin juhlaviikko",
                "sv": "Metsäkone (Skogsmaskinen) – Barnkulturveckan",
                "en": "Metsäkone (Forest machine) – Children's Culture Week"
            },
            "short_description": {
                "fi": "Linnunrata-teatterikurssin 7-9-vuotiaat oppilaat ovat tehneet tämän esityksen.",
                "sv": "Det här uppträdandet har gjorts av 7–9-åriga elever från teaterkursen Linnunrata.",
                "en": "This performance was created by the 7–9-year-old students of the Linnunrata theatre course."
            },
            "description": {
                "fi": "<p>Linnunrata-teatterikurssin 7-9-vuotiaat oppilaat ovat tehneet tämän esityksen.</p><p>Metsäkone- esitys on syntynyt lasten idean pohjalta. Aihe on helsinkiläislapsille tuttu, lähimetsiä kaadetaan rakentamisen tieltä ja uutisissa metsäkoneet ajelevat raakkujen päältä. Oppilaat ovat itse saaneet valita toiveroolinsa, nämä yhdistelemällä syntyi tarina metsästä ja sen asukkaista.</p><p>Esitykset ti 13.5. klo 17.30 ja la 17.5. klo 12</p><p>Ohjaaja: Sari Tupamäki</p><p>Esityksiin on vapaa pääsy. Varaa paikat tällä lomakkeella:</p><p>https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Voit varata kerralla paikan useampaan esitykseen ja useammalle henkilölle.</p>",
                "sv": "<p>Det här uppträdandet har gjorts av 7–9-åriga elever från teaterkursen Linnunrata.</p><p>Föreställningen Skogsmaskinen bygger på en idé av barn. Ämnet är bekant för barn i Helsingfors, eftersom närliggande skogar huggs ner för att ge plats för byggnation och skogsmaskiner kör över kadavren i nyheterna.</p><p>Föreställningar tis 13.5 kl. 17.30 och lör 17.5 kl. 12</p><p>Regi: Sari Tupamäki</p><p>Det är fritt inträde till föreställningarna. Boka dina platser med detta formulär: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>Du kan boka platser för flera föreställningar och för flera personer åt gången.</p>",
                "en": "<p>This performance was created by the 7–9-year-old students of the Linnunrata theatre course.</p><p>The Forest Machine performance is based on an idea by children. The topic is familiar to children in Helsinki, with nearby forests being cut down to make way for construction and forestry machines driving over the carcasses in the news.</p><p>Performances Tue 13.5. at 17.30 and Sat 17.5. at 12</p><p>Directed by Sari Tupamäki</p><p>Admission to the performances is free. Book your seats using this form: https://link.webropolsurveys.com/EP/07BDCAE600024310</p><p>You can book seats for more than one performance and for more than one person at a time.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/ED384243B46DA7FE9F48CFEF119A1C85/Metsakone",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/ED384243B46DA7FE9F48CFEF119A1C85/Metsakone_Skogsmaskinen_",
                "en": "http://www.annantalo.fi/en/events/event/ED384243B46DA7FE9F48CFEF119A1C85/Metsakone_Forest_machine_"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66284/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65990",
            "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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@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": 498194,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-09T11:14:26.906488Z",
                    "last_modified_time": "2025-04-09T11:14:26.906508Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766209.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/498194/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-04-09T11:14:26.858018Z",
            "last_modified_time": "2025-05-09T13:53:52.797813Z",
            "date_published": null,
            "start_time": "2025-05-12",
            "end_time": "2025-05-16",
            "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": "Tuulen laulua ja sudenkorentojen surinaa – Lastenkulttuurin juhlaviikon työpajat päiväkotiryhmille!",
                "sv": "Tuulen laulua ja sudenkorentojen surinaa",
                "en": "Tuulen laulua ja sudenkorentojen surinaa"
            },
            "short_description": {
                "fi": "Tulkaa mukaan tekemään taidetta – tuodaan yhdessä tuulen humina ja sudenkorentojen surina Annantalon pihaan!",
                "sv": "Kom med och skapa konst – vi ska tillsammans ta vindens sus och trollsländors surr till Annegårdens gård!",
                "en": "Come make art with us – together, we will bring the hum of the wind and the buzzing of dragonflies to the yard of Annantalo!"
            },
            "description": {
                "fi": "<p>Tulkaa mukaan tekemään taidetta – tuodaan yhdessä tuulen humina ja sudenkorentojen surina Annantalon pihaan!</p><p>Keiju nimeltä Aura-Marina on saapunut mereltä! Hänen toiveenaan on tutustua Annantaloon ja alueen lapsiin, mutta jotain puuttuu… Pihalla kaikuvat vain liikenteen äänet, eikä keiju kuule rakastamaansa tuulen laulua. Voisivatko päiväkodin lapset auttaa häntä?</p><p>Lastenkulttuurin juhlaviikon kunniaksi Annantalo kutsuu päiväkotiryhmät mukaan taidetyöpajoihin, joissa syntyvät teokset jäävät elävöittämään Annantalon etupihaa. Teokset ovat osa Lastenkulttuurin juhlaviikon Äänessä! -viikonloppua 17.–18.5. ja ne ovat esillä 30.5. saakka.</p><p>Työpajojen ajankohdat:<br>ma 12.5. klo 9 ja 10.15<br>ti 13.5. klo 9 ja 10.15<br>ke 14.5. klo 9 ja 10.15<br>to 15.5. klo 9 ja 10.15<br>pe 16.5. klo 9 ja 10.15</p><p>Työpajan kesto: 1 tunti<br>Kieli: suomi</p><p>Työpajat on suunnattu 3–6-vuotiaiden varhaiskasvatusryhmille.</p><p>Ilmoita ryhmäsi mukaan Kultuksen kautta:<br>https://www.kultus.fi/fi/event/kultus:agk43goxye?text=lastenkulttuurin+juhla&returnPath=%2Fsearch</p><p>Työpajan ohjaaja tapaa ryhmän Annantalon 1. kerroksen aulassa. Saavuttehan paikalle hyvissä ajoin.</p><p>Työpajan päätteeksi lapset pääsevät yhdessä ohjaajan kanssa ripustamaan teokset etupihalle. Pukeuduttehan sään mukaisesti.</p><p><b>Tervetuloa juhlistamaan Lastenkulttuurin juhlaviikkoa Annantalolle!</b></p>",
                "sv": "<p>Kom med och skapa konst – vi ska tillsammans ta vindens sus och trollsländors surr till Annegårdens gård!</p><p>Älvan Aura-Marina har kommit från havet! Hon önskar att bekanta sig med Annegården och barnen i området, men något saknas... På gården hörs endast trafikens ljud, och älvan hör inte vindens sång som hon älskar. Kunde daghemsbarnen hjälpa henne?</p><p>För att fira barnkulturens jubileumsvecka bjuder Annegården in daghemsgrupper till konstverkstäder. Verken som skapas i verkstäderna lämnas på Annegårdens förgård för att liva upp den. Verken är en del av veckoslutet Äänessä! 17–18.5 under barnkulturens jubileumsvecka, och finns utställda fram till 30.5.</p><p>Tidpunkterna för verkstäderna:<br>mån. 12.5 kl. 9 och 10.15<br>tis. 13.5 kl. 9 och 10.15<br>ons. 14.5 kl. 9 och 10.15<br>tors. 15.5 kl. 9 och 10.15<br>fre. 16.5 kl. 9 och 10.15</p><p>Verkstadens längd: 1 timme <br>Språk: finska</p><p>Verkstäderna är avsedda för grupper med barn i åldern 3–6 år inom småbarnspedagogiken.</p><p>Anmäl din grupp via Kultus.<br>Verkstadens ledare möter gruppen i aulan på Annegårdens 1:a våning. Vänligen anländ i god tid.</p><p>I slutet av verkstaden får barnen tillsammans med ledaren hänga verken på gården. Klä er enligt vädret.</p><p><b>Välkommen att fira barnkulturens jubileumsvecka på Annegården!</b></p>",
                "en": "<p>Come make art with us – together, we will bring the hum of the wind and the buzzing of dragonflies to the yard of Annantalo!</p><p>A fairy named Aura-Marina has come from the sea! Her wish is to get to know Annantalo and the local children, but something is missing... The sound of traffic is the only thing echoing in the yard, and the fairy does not hear the song of the wind that she loves. Could the children of the daycare centre help her?</p><p>To celebrate Children’s Culture Week, Annantalo is inviting daycare centre groups to take part in art workshops to create works that will be used to enliven the front yard of Annantalo.</p><p>The works will be part of the Äänessä! (‘In Voice!’) weekend of <br>Children’s Culture Week on 17 and 18 May 2025 and kept on display until 30 May.</p><p>Workshop times:<br>Mon 12 May at 9.00 and 10.15<br>Tue 13 May at 9.00 and 10.15<br>Wed 14 May at 9.00 and 10.15<br>Thu 15 May at 9.00 and 10.15<br>Fri 16 May at 9.00 and 10.15</p><p>Workshop duration: 1 h <br>Language: Finnish</p><p>The workshops are intended for early childhood education groups aged 3–6.</p><p>Please sign up your group via Kultus.<br>The workshop instructor will meet the group in the first-floor lobby of Annantalo. Please arrive in good time.</p><p>At the end of the workshop, the children will get to hang up their works in the front yard together with the instructor. Please wear weather-appropriate clothing.</p><p><b>You are invited to come and celebrate Children’s Culture Week at Annantalo!</b></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5ACF00D7618FE4EB2B79EBFF78AB7CD6/Tuulen_laulua_ja_sudenkorentojen_surinaa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/5ACF00D7618FE4EB2B79EBFF78AB7CD6/Tuulen_laulua_ja_sudenkorentojen_surinaa",
                "en": "http://www.annantalo.fi/en/events/event/5ACF00D7618FE4EB2B79EBFF78AB7CD6/Tuulen_laulua_ja_sudenkorentojen_surinaa"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65990/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65237",
            "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:30/?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:p16197/?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": 380073,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-21T11:14:08.932512Z",
                    "last_modified_time": "2025-03-21T11:14:08.932526Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764256.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/380073/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-03-21T11:14:08.906514Z",
            "last_modified_time": "2025-05-09T13:53:52.046451Z",
            "date_published": null,
            "start_time": "2025-05-10T08:00:00Z",
            "end_time": "2025-05-10T11: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": "Annantalon taidelauantai: Äänikollaasi – Kaksikielinen työpaja suomeksi ja ruotsiksi",
                "sv": "Annegårdens konstlördag: Ljudcollage – Tvåspråkig verkstad på svenska och finska",
                "en": "Annantalo Art Saturday: Sound Collage"
            },
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "På Annegårdens konstlördag kan hela familjen skapa konst tillsammans.",
                "en": "At Annantalo Art Saturday, the whole family can spend their free time with art."
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b> Äänikollaasi – yhteinen taideteos sekatekniikalla </b> <br> <br>Tule luomaan yhdessä suurta, yhteisöllistä taideteosta koko perheen voimin! Työpajan teemana on ääni – voit maalata, piirtää, leikata ja liimata asioita, jotka pitävät ääntä. Voit myös kuvittaa sitä, miltä musiikki sinusta näyttää. Anna mielikuvituksen lentää ja anna äänen muuttua kuvaksi!</p><p>Työpajan ohjaavat Petra Kinnunen ja Erik Lindros Nylands Svenska Ungdomsförbundilta.</p><p>Työpaja on kaksikielinen: ohjaajat puhuvat ruotsia ja suomea. <br>Tarvittaessa ohjeistusta saa myös englanniksi ja kaikki ovat tervetulleita kielestä ja kielitaidosta riippumatta.</p><p>Osallistumiseen ei tarvita ennakkotaitoja. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton. <br> <br>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>På Annegårdens konstlördag kan hela familjen skapa konst tillsammans.</p><p><b>Ljudcollage – Ett gemensamt konstverk med blandteknik</b></p><p>Kom och skapa ett stort, gemensamt konstverk för hela familjen på Eriks och Petras konstverkstad! <br> <br>Låt fantasin flöda och låt ljudet bli till bild! Verkstadens tema är ljud – du kan måla, rita, klippa och klistra saker som låter. Eller så kan du också med en teckning illustrera hur musik ser ut för dig.  Allt material finns på plats.</p><p>Verkstaden leds av Petra Kinnunen och Erik Lindros från Nylands Svenska Ungdomsförbund.</p><p>Verkstaden är tvåspråkig: ledarna talar svenska och finska.<br>Vid behov kan instruktioner ges även på engelska. Alla är välkomna oavsett språk och språkkunskaper.</p><p>Inga förkunskaper krävs för att delta. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. <br> <br>Konstlördagen på Annegården är avgiftsfri.</p>",
                "en": "<p>At Annantalo Art Saturday, the whole family can spend their free time with art.</p><p><b> Sound Collage – A Collaborative Mixed Media Artwork\" </b></p><p>Come and create a large, collaborative artwork with the whole family! The theme of the workshop is sound – you can paint, draw, cut, and glue things that make noise, or illustrate what music looks like to you. Let your imagination soar and let sound turn into image! <br> <br>The workshop is led by Petra Kinnunen and Erik Lindros from Nylands Svenska Ungdomsförbund.</p><p>The workshop is bilingual: the instructors speak Swedish and Finnish.</p><p>If needed, instructions can also be given in English, and everyone is welcome regardless of language or language skills. <br> <br>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space.</p><p>The Annantalo Art Saturday is free of charge.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6A9E9F780A0682738CEE662E53EFC5D2/Annantalon_taidelauantai_Aanikollaasi",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/6A9E9F780A0682738CEE662E53EFC5D2/Annegardens_konstlordag_Ljudcollage",
                "en": "http://www.annantalo.fi/en/events/event/6A9E9F780A0682738CEE662E53EFC5D2/Annantalo_Art_Saturday_Sound_Collage"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65237/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:42afefb2-ae2c-f011-8c4e-000d3ab33a80",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?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:p10218/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16197/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?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:p181/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?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:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?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:p5164/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_youtube",
                    "link": "https://www.Youtube.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.Instagram.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_whatsapp",
                    "link": "https://www.Whatsapp.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_facebook",
                    "link": "https://www.Facebook.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_snapchat",
                    "link": "https://www.Snapchat.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_reddit",
                    "link": "https://www.Reddit.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_tumblr",
                    "link": "https://www.Tumblr.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://www.X.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_tiktok",
                    "link": "https://www.Tiktok.com",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=09052025_-_TLDG_-_174_-_Tapahtuman_julkaisu_ja_pivittminen_Linked_Eventsiin_v211758376032",
                        "sv": "https://www.hel.SWE",
                        "en": "https://www.hel.ENG",
                        "ru": "https://www.hel.RUS",
                        "zh_hans": "https://www.hel.CHI",
                        "ar": "https://www.hel.ARA"
                    },
                    "price": {
                        "fi": "12",
                        "sv": "12",
                        "en": "12",
                        "ru": "12",
                        "zh_hans": "12",
                        "ar": "12"
                    },
                    "description": {
                        "fi": "Additional information on price information - Finnish",
                        "sv": "Additional information on price information - Swedish",
                        "en": "Additional information on price information - English",
                        "ru": "Additional information on price information - Russian",
                        "zh_hans": "Additional information on price information - Chinese",
                        "ar": "Additional information on price information - Arabic"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 721865,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-09T09:31:00.707997Z",
                    "last_modified_time": "2025-05-09T09:31:00.708041Z",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9",
                    "name": "Kuvateksti",
                    "cropping": "",
                    "photographer_name": "Kuvaaja",
                    "alt_text": "Kuvan ALT-Teksti",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/721865/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [
                {
                    "name": "Video",
                    "url": "https://www.hel.fi",
                    "alt_text": "Videon ALT-Teksti"
                }
            ],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?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:p10218/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16197/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?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:p181/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?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:p3670/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?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:p5164/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api"
                }
            ],
            "created_time": "2025-05-09T08:32:21.737211Z",
            "last_modified_time": "2025-05-09T09:31:04.215104Z",
            "date_published": "2025-05-09T08:22:09Z",
            "start_time": "2025-06-30T05:00:00Z",
            "end_time": "2025-06-30T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 12,
            "audience_max_age": 55,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": 150,
            "minimum_attendee_capacity": 10,
            "enrolment_start_time": "2025-05-30T10:00:00+03:00",
            "enrolment_end_time": "2025-06-30T12:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "09.05.2025 - TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin v.2.1",
                "sv": "Swedish -TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin",
                "en": "English -TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin",
                "ru": "Russian -TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin",
                "zh_hans": "Chinese -TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin",
                "ar": "Arabic -TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin"
            },
            "short_description": {
                "fi": "Finnish - 09.05.2025 - TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin v.2.1",
                "sv": "Swedish - TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin v.2.1",
                "en": "English - TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin v.2.1",
                "ru": "Russian - TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin v.2.1",
                "zh_hans": "Chinese - TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin v.2.1",
                "ar": "Arabic - TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin v.2.1"
            },
            "description": {
                "fi": "09.05.2025 - TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin v.2.1 - muokattu - Ilmoittautumisen ajankohta",
                "sv": "<div><div>Swedish - 09.05.2025 - TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin v.2.1</div></div>",
                "en": "<div><div>English - 09.05.2025 - TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin v.2.1</div></div>",
                "ru": "<div><div>Russian - 09.05.2025 - TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin v.2.1</div></div>",
                "zh_hans": "<div><div>Chinese - 09.05.2025 - TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin v.2.1</div></div>",
                "ar": "<div><div>Arabic - 09.05.2025 - TLDG - 174 - Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin v.2.1</div></div>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.hel.fi",
                "sv": "https://www.hel.SWE",
                "en": "https://www.hel.ENG",
                "ru": "https://www.hel.RUS",
                "zh_hans": "https://www.hel.CHI",
                "ar": "https://www.hel.ARA"
            },
            "location_extra_info": {
                "fi": "Event Venue additional information - Finnish",
                "sv": "Event Venue additional information - Swedish",
                "en": "Event Venue additional information - English",
                "ru": "Event Venue additional information - Russian",
                "zh_hans": "Event Venue additional information - Chinese",
                "ar": "Event Venue additional information - Arabic"
            },
            "provider": {
                "fi": "Digia",
                "sv": "Digia Oyj",
                "en": "Digia Oyj",
                "ru": "Digia Oyj",
                "zh_hans": "Digia Oyj",
                "ar": "Digia Oyj"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:42afefb2-ae2c-f011-8c4e-000d3ab33a80/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22677a",
            "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:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227fae/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-05-09T08:53:10.618352Z",
            "last_modified_time": "2025-05-09T08:53:10.618396Z",
            "date_published": null,
            "start_time": "2025-06-06T12:00:00Z",
            "end_time": "2025-06-06T12: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": "Pride Sateenkaarisatuhetki",
                "sv": "Pride sagostund",
                "en": "Pride Story Hour"
            },
            "short_description": {
                "fi": "Sateenkaarisatuhetki klo 15-15.30",
                "sv": "Pride sagostund kl. 15-15.30",
                "en": "\nPride Story Hour at 15-15.30 o'clock."
            },
            "description": {
                "fi": "<p>Pride-kuukauden kunniaksi Lippulaivan kirjastossa järjestetään sateenkaarisatuhetki perjantaina 6.6. klo 15-15.30.</p><p>Espoon kaupunki on virallinen Working with Pride -kumppani, joka edistää yhdenvertaisuutta ja tasa-arvoa Helsinki Priden kanssa.</p>",
                "sv": "<p>För Pride månaden i Lippulaiva Bibliotek har en pride sagostund på fredag 6.6. i Satulaiva kl. 15-15.30. På finska.</p><p>Esbo stad är en officiell Working with Pride -partner som främjar jämlikhet med Helsinki Pride.</p>",
                "en": "<p>For Pride month, Lippulaiva library will host a pride story hour on friday 6.6. in Satulaiva from 3pm to 3.30pm. Story hour is in Finnish.</p><p>The City of Espoo is an official Working with Pride -partner, promoting equality and equity with Helsinki Pride.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Satulaiva",
                "sv": "Satulaiva",
                "en": "Satulaiva"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22677a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227ebq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "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": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-09T06:10:20.937902Z",
            "last_modified_time": "2025-05-09T06:10:20.937919Z",
            "date_published": null,
            "start_time": "2025-05-18T11:30:00Z",
            "end_time": "2025-05-18T14: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": "Lasten Espoo: Reittiseikkailu! -taidetyöpajat ",
                "en": "Children's Espoo: Route Adventure!-workshop"
            },
            "short_description": {
                "fi": "Tervetuloa taidetyöpajaan, jossa luomme yhdessä Espoota!",
                "en": "Welcome to the art workshop where we will create Espoo together!"
            },
            "description": {
                "fi": "<p>Tervetuloa taidetyöpajaan, jossa luomme yhdessä Espoota!</p><p>Tule mukaan suunnittelemaan, millainen kaupunki on hyvä lapsille. Työpajassa mietitään, miltä lähiympäristö ja erilaiset kulkureitit näyttävät lapsen näkökulmasta. Tutustutaan myös, miten Espoon asukkaat voivat vaikuttaa kaupunkisuunnitteluun.</p><p>Työpajassa lapset:</p><ul><li>harjoittelevat kartanlukua ja paikkojen merkitsemistä</li><li>tekevät näkyväksi omia tärkeitä reittejään</li><li>kertovat ajatuksiaan paperikollaasien ja piirtämisen avulla</li><li>kertovat, mitä toivovat Espoolta ja miltä kaupungissa asuminen tuntuu</li></ul><p>Työpajat on tarkoitettu 4–10-vuotiaille lapsille yhdessä aikuisen kanssa. Työpajojen ohjaajina ovat Espoon kuvataidekoulun opettajat. Tapahtuma on maksuton.</p><p>Työpajassa syntyneet ideat ja teokset esitellään Espoon päättäjille. Syksyllä 2025 pidetään myös näyttely Espoossa.</p><p><br></p><p><br></p><p>Tule mukaan tekemään Espoosta paikka, jossa on iloa ja seikkailuja!</p><p>Ilmoittaudu pajoihin sunnuntaina 18.5. Lippulaivan kirjastossa (Espoonlahdenkatu 8):</p><p>Paja 1 ukrainaksi ja suomeksi klo 14.30–16</p><p>Paja 2 englanniksi ja suomeksi klo 16.15–17.45</p><p>Ilmoittaudu pajaan täyttämällä lomake:&nbsp;<a href=\"https://forms.gle/5qXdrcrHwoWdT19N7&nbsp;\">https://forms.gle/5qXdrcrHwoWdT19N7&nbsp;</a></p><p>Espoon kuvataidekoulun Lasten Espoo -hanke on saanut Espoon kaupungin projektirahoituksen.</p>",
                "en": "<p>Welcome to the art workshop where we will create Espoo together!</p><p>Join us in designing a city that is great for children. In the workshop, we will think about what the local environment and different routes look like from a child's perspective. We will also learn how the residents of Espoo can influence urban planning.</p><p>In the workshop, children will:</p><ul><li>practice map reading and marking places</li><li>make their important routes visible</li><li>share their thoughts through paper collages and drawing</li><li>express what they hope for from Espoo and what it feels like to live in the city</li></ul><p>The workshops are intended for children aged 4–10, together with an adult. The workshops will be led by teachers from the Espoo School of Art. The event is free of charge.</p><p>The ideas and works created in the workshop will be presented to decision-makers in Espoo. An exhibition will also be held in Espoo in the fall of 2025.</p><p><br></p><p>Come join us in making Espoo a place full of joy and adventure!</p><p>Register for the workshops on Sunday, May 18th, at the Lippulaiva Library (Espoonlahdenkatu 8):</p><p>Workshop 1 in Ukrainian and Finnish from 14:30–16:00</p><p>Workshop 2 in English and Finnish from 16:15–17:45</p><p>Register for the workshop by filling out the form:&nbsp;<a href=\"https://forms.gle/5qXdrcrHwoWdT19N7&nbsp;\">https://forms.gle/5qXdrcrHwoWdT19N7&nbsp;</a></p><p>The Children's Espoo project at the Espoo School of Art has received project funding from the City of Espoo.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.espoonkuvis.fi/tapahtuma/lasten-espoo-reittiseikkailu-tyopajat-lippulaiva",
                "en": "https://www.espoonkuvis.fi/tapahtuma/lasten-espoo-reittiseikkailu-tyopajat-lippulaiva"
            },
            "location_extra_info": {
                "fi": "Kajuutta",
                "en": "Kajuutta"
            },
            "provider": {
                "fi": "Espoon kuvataidekoulu",
                "en": "Espoo School of Art"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227ebq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227fae",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/espoo_le:agggfz65ay/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api"
                },
                {
                    "@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:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@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: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:agggfz66oi/?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:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?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:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?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:agggfz67oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?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:agggfz67uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?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:agggfz67zy/?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/espoo_le:agggfz7acu/?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/espoo_le:agggfz7aju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?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/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vy3i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vzk4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22vzze/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22v2ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wqkq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk223eqy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225h7q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225ita/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2267by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2267oa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22677a/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-08T11:24:03.572731Z",
            "last_modified_time": "2025-05-08T11:48:14.871050Z",
            "date_published": "2025-05-08T11:28:00Z",
            "start_time": "2025-06-01T05:00:00Z",
            "end_time": "2025-06-30T17: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": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Pride-tapahtumia Espoon kirjastoissa",
                "sv": "Pride-evenemang på Esbo bibliotek!",
                "en": "Pride events at Espoo Libraries! "
            },
            "short_description": {
                "fi": "Espoon kaupunginkirjasto järjestää lukuisia Pride-tapahtumia kesäkuun aikana!",
                "sv": "Esbo stadsbibliotek arrangerar flera Pride-evenemang under juni! ",
                "en": "Espoo City Library is organizing several Pride events during June! "
            },
            "description": {
                "fi": "<p>Espoon kaupunki jatkaa työtään yhdenvertaisuuden, tasa-arvon ja moninaisuuden edistämiseksi yhtenä Helsinki Priden Working With Pride -kumppanina. Helsinki Pride on Suomen vaikuttavin ihmisoikeus- ja kulttuuritapahtuma, ja sen teema on tänä vuonna ylpeyttä ilman rajoja.</p><p>Espoon kaupunginkirjasto järjestää lukuisia Pride-tapahtumia kesäkuun aikana! Tapahtumia järjestetään seuraavissa kirjastoissa:</p><ul><li>Entressen kirjasto</li><li>Lippulaivan kirjasto</li><li>Ison Omenan kirjasto</li><li>Tapiolan kirjasto</li><li>Sellon kirjasto</li></ul>\nSateenkaarisatuhetket<ul><li><a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:agld46thj4\">Entressen kirjastossa</a></li><li><a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:aglic2mfrm\">Sellon kirjastossa</a></li><li>Tapiolan kirjastossa</li><li>Ison Omenan kirjastossa</li><li>Lippulaivan kirjastossa</li></ul>\nSateenkaariklubit<ul><li><a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:aglhxxd3fq\">Entressen kirjastossa</a></li><li><a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:aglhxxquoa\">Sellon kirjastossa</a></li></ul><p><br></p><p>Espoon kaupunki on Helsinki Priden Working With Pride -kumppani 2025.</p>",
                "sv": "<p>Esbo stad fortsätter sitt samarbete för att främja likabehandling, jämställdhet och mångfald som Working With Pride-partner med Helsinki Pride. Helsinki Pride är Finlands mest effektfulla evenemang för mänskliga rättigheter och kultur. I år är temat ‘Stolthet utan gränser’.</p><p>Esbo stadsbibliotek anordnar många Pride-evenemang under juni månad!</p><ul><li>Entressebiblioteket</li><li>Lippulaivabiblioteket</li><li>Iso Omena biblioteke</li><li>Hagalunds bibliotek</li><li>Sellobibliotek</li></ul><p>Esbo stad är Working with Pride-partner med Helsinki Pride 2025.</p>",
                "en": "<p>The City of Espoo continues its cooperation to promote equality, non-discrimination and diversity as one of Helsinki Pride’s Working with Pride partners. Helsinki Pride is the most influential cultural and human rights event in Finland, and this year’s theme is ‘Pride without borders’.</p><p>The Espoo City Library organizes numerous Pride events during June!</p><ul><li>Entresse Library</li><li>Lippulaiva Library</li><li>Iso Omena Library</li><li>Tapiola Library</li><li>Sello Library</li></ul><p>The City of Espoo is Helsinki Pride’s Working with Pride partner in 2025.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Espoon kirjastot",
                "sv": "Esbo bibliotek",
                "en": "Espoo Libraries"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227fae/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66239",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:p39492/?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": 715323,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-08T11:13:58.665569Z",
                    "last_modified_time": "2025-05-08T11:13:58.665588Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764956.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/715323/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-05-08T11:13:58.496967Z",
            "last_modified_time": "2025-05-08T11:13:58.883008Z",
            "date_published": null,
            "start_time": "2025-06-03T08:00:00Z",
            "end_time": "2025-06-03T13: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": "Punaiset laivat puistossa – Viking Line Espan lavalla",
                "sv": "Röda båtarna tar plats i parken – Viking Line på Espans estrad",
                "en": "Red ships rock the park – Viking Line on the Espan stage"
            },
            "short_description": {
                "fi": "Viking Line tuo meriloman tunnelman keskelle kaupunkia. Tule tutustumaan kesän ja vähän syksynkin risteilyohjelmaan sekä nauttimaan elävästä musiikista!",
                "sv": "Viking Line bjuder på känslan av sjösemester mitt i staden. Kom och upptäck sommarens och även en del av höstens kryssningsprogram och njut av levande musik.",
                "en": "Viking Line brings the magic of a sea holiday right to the heart of the city. Come and discover the summer and autumn cruise programmes while enjoying fantastic live music."
            },
            "description": {
                "fi": "<p>Viking Line tuo meriloman tunnelman keskelle kaupunkia. Tule tutustumaan kesän ja vähän syksynkin risteilyohjelmaan sekä nauttimaan elävästä musiikista!</p><p>Lapsia viihdyttää Aarne Alligaattori ja aikuisia Niko Ahvonen & Tilanteen Herrat. Ohjelmassa on myös Ville Vikingin tanssikoulu sekä Meet & Greet, jossa pääsee rutistamaan Itämeren rakastetuinta laivakissaa. Lisäksi saat matkavinkkejä Viroon, Ahvenanmaalle ja Ruotsiin sekä kuulet, mitä kivaa lapset voivat kesällä kokea laivojemme Adventure Island -seikkailusaarilla.</p><p>Aarne Alligaattori & Viidakkorumpu tarjoaa viidakon iloisinta ja tarttuvinta lastenmusiikkia. Lavalla nähdään ihastuttava Aarne sekä safariasuiset Tobbe ja Jocke. Tobbe laulaa ja Jocke soittaa kitaraa, kun taas Aarne hassuttelee ja soittaa viidakkorumpuja. Tämä intensiivinen ja ratkiriemukas esitys on suunnattu koko perheelle.</p><p>Suomalaisen musiikkimaailman keskiöön kiistatta lukeutuva Niko Ahvonen sekä amerikkalaisen juurimusiikin ytimistä rytminsä ammentava yhtyeensä Tilanteen Herrat saapuvat myös Espalle. He tuovat Viking Linen tapahtumapäivään taattua rytmimusiikillista iloa paitsi korvin kuultavaksi ja silmin nähtäväksi, myös tanssijalkoja kutkuttavalla tavalla. Kokoonpano luottaa soulin voimaan keikkasetin runkona luottava, mutta ammentaa paljosta muustakin juurimusiikista iloa. Ryhmän motto onkin: ”yritämme laittaa päivänpaistetta mahdollisesti vähän pimeämpäänkin päivään”! Tämä lupaa ja luo funkkyja ja rootseja musiikillisia valonsäteitä ympäristöönsä, missä ikinä Herrat kulkevatkin. Kannattaa siis suunnata kulku Tilanteen äärelle Espan puistoon!</p><p>Tervetuloa viettämään merellistä kesäpäivää kanssamme!</p><p><b>Tapahtuman aikataulu:</b></p><p><b>Klo 11.00 Tervetulosanat ja Aarne Alligaattori<br></b><br>Viking Linen tervetulotoivotusten jälkeen lavalle nousee koko perheen suosikki Aarne Alligaattori.</p><p><b>Klo 11.45 Ville Vikingin tanssikoulu</b><br>Iki-ihana Ville Viking opettaa kaikille nimikkokappaleidensa tanssiaskeleet. Tanssikoulun jälkeen meet & greet lavan vieressä – tule tapaamaan Villeä ja ottamaan yhteiskuvia.</p><p><b>Klo 12.00 Niko Ahvonen ja Tilanteen Herrat</b> viihdyttävät mukaansa tempaavilla rytmeillään.</p><p><b>Klo 12.45 Syksyn Teemaristeilyvinkit Viking Linelle</b><br>Haastattelussa Viking Linen Head of Special Cruises and Cruise Concepts Jaakko Ahti. Tule kuulemaan parhaat vinkit syksyn 2025 teemaristeilyistä.</p><p><b>Klo 13.00 Vinkit kesän matkakohteisiin Ruotsiin, Ahvenanmaalle ja Viroon</b><br>Paneelikeskustelu Viking Linen matkakohteista. Tule kuulemaan kohteiden edustajien parhaat vinkit kesälle 2025.</p><p><b>Klo 13.45 Ville Vikingin tanssikoulu</b><br>Ville Viking palaa lavalle tanssikoulun merkeissä. Tanssikoulun jälkeen meet & greet Villen kanssa lavan vieressä – älä missaa tilaisuutta päästä halimaan Itämeren rakastetuinta maskottia.</p><p><b>Klo 14.00 Niko Ahvonen ja Tilanteen Herrat </b><br>Niko Ahvonen ja Tilanteen Herrat palaavat lavalle. Tule nauttimaan herrojen mukaansatempaavista rytmeistä, ainutlaatuisesta soundista ja energisestä esiintymisestä.</p><p><b>Klo 14.45 Syksyn Teemaristeilyvinkit Viking Linelle</b><br>Päivän toinen haastattelu Jaakko Ahdin kanssa syksyn 2025 teemaristeilyistä.</p><p><b>Klo 15.00 Aarne Alligaattori viihdyttää koko perhettä</b><br>Aarne Alligaattori palaa lavalle viihdyttämään koko perhettä.</p><p><b>Klo 15.45 Ville Vikingin tanssikoulu</b><br>Päivän viimeinen tanssikoulu Ville Vikingin johdolla. Tanssikoulun jälkeen meet & greet ja Villen heippahalit lavan vieressä.</p>",
                "sv": "<p>Viking Line bjuder på känslan av sjösemester mitt i staden. Kom och upptäck sommarens och även en del av höstens kryssningsprogram och njut av levande musik.</p><p>Barnen har skoj med Arne Alligator och för de vuxna presenterar vi Niko Ahvonen & Tilanteen Herrat. I programmet ingår även Ville Vikings dansskola och Meet & Greet, där man får krama om Östersjöns mest älskade skeppskatt.</p><p>Vi tipsar om resor till Estland, Åland och Sverige och om alla de roliga äventyr som barnen kan uppleva i Adventure Island på våra fartyg i sommar.</p><p>Välkommen med på en saltstänkt sommardag tillsammans med oss!</p>",
                "en": "<p>Viking Line brings the magic of a sea holiday right to the heart of the city. Come and discover the summer and autumn cruise programmes while enjoying fantastic live music.</p><p>Kids will have a blast with Aarne Alligator, and adults can groove to the tunes of Niko Ahvonen & Tilanteen Herrat. And that's not all! Join Ville Viking's dance school and Meet & Greet, where you can hug the Baltic Sea's most beloved ship cat.</p><p>Get travel tips for Estonia, Åland, and Sweden, and hear about the exciting adventures awaiting children on the Adventure Islands on board this summer. Come spend a maritime summer day with us!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D0C9B529AF584266B1F0A8A5E09065B0/Punaiset_laivat_puistossa_Viking_Line_Espan_lavalla",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/D0C9B529AF584266B1F0A8A5E09065B0/Roda_batarna_tar_plats_i_parken_Viking_Line_pa_Espans_estrad_",
                "en": "http://www.espanlava.fi/en/events/event/D0C9B529AF584266B1F0A8A5E09065B0/Red_ships_rock_the_park_Viking_Line_on_the_Espan_stage"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66239/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227fqm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-05-05T10:54:12.833102Z",
            "last_modified_time": "2025-05-08T10:46:35.184825Z",
            "date_published": null,
            "start_time": "2025-05-18T08:30:00Z",
            "end_time": "2025-05-18T10: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": "Kirjastojen välisen FC 25-turnauksen Entressen karsinta"
            },
            "short_description": {
                "fi": "Kirjastojen välisen FC 25-turnauksen Entressen karsinta"
            },
            "description": {
                "fi": "<p>Espoon kirjastojen välisessä FC 25- turnauksessa otetaan selvää, ketkä ovat kirjastojen kovimmat pelaajat. </p><p>Turnauksessa on kaksi sarjaa, 7-11 -vuotiaat ja 12-20 -vuotiaat. </p><p><strong>Entressen kirjaston karsintapelit 7-11 -vuotiaille järjestetään nuortenososto Kibessä torstaina 18.5. klo 11:30-13. </strong></p><p>Ilmoittautuminen turnaukseen alkaa Kibessä 8.5. kello 16. </p><p>Varaudu todistamaan ikäsi kirjastokortilla. </p><p>Turnauksen finaalit pelataan Sellon kirjastossa 24.5. </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:agmk227fqm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227m4m",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227oyq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-08T09:40:32.095612Z",
            "last_modified_time": "2025-05-08T09:40:32.095630Z",
            "date_published": null,
            "start_time": "2025-06-07T10:00:00Z",
            "end_time": "2025-06-07T11: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": "Little Artists – Luova työpaja lapsille",
                "en": "Little Artists – Creative Workshop for Children"
            },
            "short_description": {
                "fi": "Tule mukaan Sellon kirjastoon hauskaan ja mielikuvitukselliseen työpajaan, jossa 3–6-vuotiaat lapset voivat tutkia luontoa taiteen keinoin!\n",
                "en": "Join us at Sello Library for a fun and imaginative workshop where children age 3-6  can explore nature through art!"
            },
            "description": {
                "fi": "<p>Tule mukaan Sellon kirjastoon hauskaan ja mielikuvitukselliseen työpajaan, jossa lapset voivat tutkia luontoa taiteen keinoin!</p><p> Little Artists -työpaja kutsuu 3–6-vuotiaat lapset kokeilemaan luovia aktiviteetteja, kuten kukkapainantaa kangaskasseihin.</p><p>Päivät: 31. toukokuuta ja 6. kesäkuuta</p><p> Ajat: klo 11:00–12:00 ja 13:00–14:00</p><p> Paikka: Sellon kirjasto, Espoo</p><p> Ikäryhmä: 3–6-vuotiaat</p><p> Maksuton – ei ennakkoilmoittautumista</p><p>Tämä aisteja aktivoiva ja innostava työpaja tukee mielikuvitusta, luovuutta ja yhdessä tekemistä. Kaikki materiaalit tarjotaan paikan päällä, ja työpaja toteutetaan turvallisessa ja kannustavassa ympäristössä.</p><p>Tervetuloa luomaan, leikkimään ja tutkimaan yhdessä!</p>",
                "en": "<p>Join us at Sello Library for a fun and imaginative workshop where children can explore nature through art!</p><p> The Little Artists workshop invites children aged 3–6 to try creative activities such as flower pounding on tote bags.</p><p>Dates: 31 May and 6 June</p><p> Times: 11:00–12:00 and 13:00–14:00</p><p> Location: Sello Library, Espoo</p><p> Age Group: 3–6 years</p><p> Free of charge – no registration required</p><p>This sensory-friendly and inspiring workshop supports imagination, creativity, and collaboration. All materials are provided, and the activities are guided in a safe and welcoming environment.</p><p>Welcome to create, play, and explore together!</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227m4m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227nle",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227oyq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-08T09:40:31.981418Z",
            "last_modified_time": "2025-05-08T09:40:31.981435Z",
            "date_published": null,
            "start_time": "2025-06-07T08:00:00Z",
            "end_time": "2025-06-07T09: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": "Little Artists – Luova työpaja lapsille",
                "en": "Little Artists – Creative Workshop for Children"
            },
            "short_description": {
                "fi": "Tule mukaan Sellon kirjastoon hauskaan ja mielikuvitukselliseen työpajaan, jossa 3–6-vuotiaat lapset voivat tutkia luontoa taiteen keinoin!\n",
                "en": "Join us at Sello Library for a fun and imaginative workshop where children age 3-6  can explore nature through art!"
            },
            "description": {
                "fi": "<p>Tule mukaan Sellon kirjastoon hauskaan ja mielikuvitukselliseen työpajaan, jossa lapset voivat tutkia luontoa taiteen keinoin!</p><p> Little Artists -työpaja kutsuu 3–6-vuotiaat lapset kokeilemaan luovia aktiviteetteja, kuten kukkapainantaa kangaskasseihin.</p><p>Päivät: 31. toukokuuta ja 6. kesäkuuta</p><p> Ajat: klo 11:00–12:00 ja 13:00–14:00</p><p> Paikka: Sellon kirjasto, Espoo</p><p> Ikäryhmä: 3–6-vuotiaat</p><p> Maksuton – ei ennakkoilmoittautumista</p><p>Tämä aisteja aktivoiva ja innostava työpaja tukee mielikuvitusta, luovuutta ja yhdessä tekemistä. Kaikki materiaalit tarjotaan paikan päällä, ja työpaja toteutetaan turvallisessa ja kannustavassa ympäristössä.</p><p>Tervetuloa luomaan, leikkimään ja tutkimaan yhdessä!</p>",
                "en": "<p>Join us at Sello Library for a fun and imaginative workshop where children can explore nature through art!</p><p> The Little Artists workshop invites children aged 3–6 to try creative activities such as flower pounding on tote bags.</p><p>Dates: 31 May and 6 June</p><p> Times: 11:00–12:00 and 13:00–14:00</p><p> Location: Sello Library, Espoo</p><p> Age Group: 3–6 years</p><p> Free of charge – no registration required</p><p>This sensory-friendly and inspiring workshop supports imagination, creativity, and collaboration. All materials are provided, and the activities are guided in a safe and welcoming environment.</p><p>Welcome to create, play, and explore together!</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227nle/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227n2a",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227oyq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-08T09:40:31.868755Z",
            "last_modified_time": "2025-05-08T09:40:31.868771Z",
            "date_published": null,
            "start_time": "2025-05-31T10:00:00Z",
            "end_time": "2025-05-31T11: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": "Little Artists – Luova työpaja lapsille",
                "en": "Little Artists – Creative Workshop for Children"
            },
            "short_description": {
                "fi": "Tule mukaan Sellon kirjastoon hauskaan ja mielikuvitukselliseen työpajaan, jossa 3–6-vuotiaat lapset voivat tutkia luontoa taiteen keinoin!\n",
                "en": "Join us at Sello Library for a fun and imaginative workshop where children age 3-6  can explore nature through art!"
            },
            "description": {
                "fi": "<p>Tule mukaan Sellon kirjastoon hauskaan ja mielikuvitukselliseen työpajaan, jossa lapset voivat tutkia luontoa taiteen keinoin!</p><p> Little Artists -työpaja kutsuu 3–6-vuotiaat lapset kokeilemaan luovia aktiviteetteja, kuten kukkapainantaa kangaskasseihin.</p><p>Päivät: 31. toukokuuta ja 6. kesäkuuta</p><p> Ajat: klo 11:00–12:00 ja 13:00–14:00</p><p> Paikka: Sellon kirjasto, Espoo</p><p> Ikäryhmä: 3–6-vuotiaat</p><p> Maksuton – ei ennakkoilmoittautumista</p><p>Tämä aisteja aktivoiva ja innostava työpaja tukee mielikuvitusta, luovuutta ja yhdessä tekemistä. Kaikki materiaalit tarjotaan paikan päällä, ja työpaja toteutetaan turvallisessa ja kannustavassa ympäristössä.</p><p>Tervetuloa luomaan, leikkimään ja tutkimaan yhdessä!</p>",
                "en": "<p>Join us at Sello Library for a fun and imaginative workshop where children can explore nature through art!</p><p> The Little Artists workshop invites children aged 3–6 to try creative activities such as flower pounding on tote bags.</p><p>Dates: 31 May and 6 June</p><p> Times: 11:00–12:00 and 13:00–14:00</p><p> Location: Sello Library, Espoo</p><p> Age Group: 3–6 years</p><p> Free of charge – no registration required</p><p>This sensory-friendly and inspiring workshop supports imagination, creativity, and collaboration. All materials are provided, and the activities are guided in a safe and welcoming environment.</p><p>Welcome to create, play, and explore together!</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227n2a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227oji",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227oyq/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-08T09:40:31.757856Z",
            "last_modified_time": "2025-05-08T09:40:31.757874Z",
            "date_published": null,
            "start_time": "2025-05-31T08:00:00Z",
            "end_time": "2025-05-31T09: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": "Little Artists – Luova työpaja lapsille",
                "en": "Little Artists – Creative Workshop for Children"
            },
            "short_description": {
                "fi": "Tule mukaan Sellon kirjastoon hauskaan ja mielikuvitukselliseen työpajaan, jossa 3–6-vuotiaat lapset voivat tutkia luontoa taiteen keinoin!\n",
                "en": "Join us at Sello Library for a fun and imaginative workshop where children age 3-6  can explore nature through art!"
            },
            "description": {
                "fi": "<p>Tule mukaan Sellon kirjastoon hauskaan ja mielikuvitukselliseen työpajaan, jossa lapset voivat tutkia luontoa taiteen keinoin!</p><p> Little Artists -työpaja kutsuu 3–6-vuotiaat lapset kokeilemaan luovia aktiviteetteja, kuten kukkapainantaa kangaskasseihin.</p><p>Päivät: 31. toukokuuta ja 6. kesäkuuta</p><p> Ajat: klo 11:00–12:00 ja 13:00–14:00</p><p> Paikka: Sellon kirjasto, Espoo</p><p> Ikäryhmä: 3–6-vuotiaat</p><p> Maksuton – ei ennakkoilmoittautumista</p><p>Tämä aisteja aktivoiva ja innostava työpaja tukee mielikuvitusta, luovuutta ja yhdessä tekemistä. Kaikki materiaalit tarjotaan paikan päällä, ja työpaja toteutetaan turvallisessa ja kannustavassa ympäristössä.</p><p>Tervetuloa luomaan, leikkimään ja tutkimaan yhdessä!</p>",
                "en": "<p>Join us at Sello Library for a fun and imaginative workshop where children can explore nature through art!</p><p> The Little Artists workshop invites children aged 3–6 to try creative activities such as flower pounding on tote bags.</p><p>Dates: 31 May and 6 June</p><p> Times: 11:00–12:00 and 13:00–14:00</p><p> Location: Sello Library, Espoo</p><p> Age Group: 3–6 years</p><p> Free of charge – no registration required</p><p>This sensory-friendly and inspiring workshop supports imagination, creativity, and collaboration. All materials are provided, and the activities are guided in a safe and welcoming environment.</p><p>Welcome to create, play, and explore together!</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227oji/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227oyq",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227m4m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227nle/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227n2a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227oji/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-08T09:40:31.110560Z",
            "last_modified_time": "2025-05-08T09:40:31.110577Z",
            "date_published": null,
            "start_time": "2025-05-31T08:00:00Z",
            "end_time": "2025-06-07T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Little Artists – Luova työpaja lapsille",
                "en": "Little Artists – Creative Workshop for Children"
            },
            "short_description": {
                "fi": "Tule mukaan Sellon kirjastoon hauskaan ja mielikuvitukselliseen työpajaan, jossa 3–6-vuotiaat lapset voivat tutkia luontoa taiteen keinoin!\n",
                "en": "Join us at Sello Library for a fun and imaginative workshop where children age 3-6  can explore nature through art!"
            },
            "description": {
                "fi": "<p>Tule mukaan Sellon kirjastoon hauskaan ja mielikuvitukselliseen työpajaan, jossa lapset voivat tutkia luontoa taiteen keinoin!</p><p> Little Artists -työpaja kutsuu 3–6-vuotiaat lapset kokeilemaan luovia aktiviteetteja, kuten kukkapainantaa kangaskasseihin.</p><p>Päivät: 31. toukokuuta ja 6. kesäkuuta</p><p> Ajat: klo 11:00–12:00 ja 13:00–14:00</p><p> Paikka: Sellon kirjasto, Espoo</p><p> Ikäryhmä: 3–6-vuotiaat</p><p> Maksuton – ei ennakkoilmoittautumista</p><p>Tämä aisteja aktivoiva ja innostava työpaja tukee mielikuvitusta, luovuutta ja yhdessä tekemistä. Kaikki materiaalit tarjotaan paikan päällä, ja työpaja toteutetaan turvallisessa ja kannustavassa ympäristössä.</p><p>Tervetuloa luomaan, leikkimään ja tutkimaan yhdessä!</p>",
                "en": "<p>Join us at Sello Library for a fun and imaginative workshop where children can explore nature through art!</p><p> The Little Artists workshop invites children aged 3–6 to try creative activities such as flower pounding on tote bags.</p><p>Dates: 31 May and 6 June</p><p> Times: 11:00–12:00 and 13:00–14:00</p><p> Location: Sello Library, Espoo</p><p> Age Group: 3–6 years</p><p> Free of charge – no registration required</p><p>This sensory-friendly and inspiring workshop supports imagination, creativity, and collaboration. All materials are provided, and the activities are guided in a safe and welcoming environment.</p><p>Welcome to create, play, and explore together!</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Jaminurkka",
                "en": "Jaminurkka"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227oyq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk227224",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2274ke/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-05-08T07:34:39.710458Z",
            "last_modified_time": "2025-05-08T07:34:39.710475Z",
            "date_published": null,
            "start_time": "2025-07-08T13:00:00Z",
            "end_time": "2025-07-08T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Perhepaja",
                "sv": "Workshop för familjer",
                "en": "Workshop for Families"
            },
            "short_description": {
                "fi": "Tervetuloa perhepajaan askartelemaan ja oppimaan ompelemista sekä tutustumaan kirjaston tarjoamiin välineisiin",
                "sv": "Välkommen till en familjeworkshop för att lära dig virka och sy och utforska de verktyg som biblioteket har att erbjuda",
                "en": "Welcome to Workshop for learning crochet, sewing, and to know about our library free offers"
            },
            "description": {
                "fi": "<p>Tervetuloa perhepajaan askartelemaan ja oppimaan ompelemista sekä tutustumaan kirjaston tarjoamiin välineisiin kuten saumuri, vinyylileikkuri ja 3D-tulostin.</p><p>Paja on ilmainen. Puhumme suomea, arabia ja englantia. Voit ottaa myös lapsesi mukaan.</p>",
                "sv": "<p>Välkommen till våra familjeverkstäder för pyssla och lära dig sy, samt bekanta dig med de redskap som biblioteket har att erbjuda, såsom symaskin, vinylskärare och 3D-skrivare.</p><p>Workshopen är kostnadsfri. Vi talar finska, arabiska och engelska. Det kostar ingenting att delta. Du kan också ta med dig ditt barn.</p>",
                "en": "<p>Welcome to our family workshops where you can make crafts, learn to sew, and to learn about our appliences for example sewing machine, vinyl cutter, and 3D-printers. The workshop language is in Finnish, English and Arabic, and is free of charge. Children are welcome to join together with their parents.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk227224/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2273he",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2274ke/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-05-08T07:34:39.415079Z",
            "last_modified_time": "2025-05-08T07:34:39.415097Z",
            "date_published": null,
            "start_time": "2025-07-22T13:00:00Z",
            "end_time": "2025-07-22T15: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": "Perhepaja",
                "sv": "Workshop för familjer",
                "en": "Workshop for Families"
            },
            "short_description": {
                "fi": "Tervetuloa perhepajaan askartelemaan ja oppimaan ompelemista sekä tutustumaan kirjaston tarjoamiin välineisiin",
                "sv": "Välkommen till en familjeworkshop för att lära dig virka och sy och utforska de verktyg som biblioteket har att erbjuda",
                "en": "Welcome to Workshop for learning crochet, sewing, and to know about our library free offers"
            },
            "description": {
                "fi": "<p>Tervetuloa perhepajaan askartelemaan ja oppimaan ompelemista sekä tutustumaan kirjaston tarjoamiin välineisiin kuten saumuri, vinyylileikkuri ja 3D-tulostin.</p><p>Paja on ilmainen. Puhumme suomea, arabia ja englantia. Voit ottaa myös lapsesi mukaan.</p>",
                "sv": "<p>Välkommen till våra familjeverkstäder för pyssla och lära dig sy, samt bekanta dig med de redskap som biblioteket har att erbjuda, såsom symaskin, vinylskärare och 3D-skrivare.</p><p>Workshopen är kostnadsfri. Vi talar finska, arabiska och engelska. Det kostar ingenting att delta. Du kan också ta med dig ditt barn.</p>",
                "en": "<p>Welcome to our family workshops where you can make crafts, learn to sew, and to learn about our appliences for example sewing machine, vinyl cutter, and 3D-printers. The workshop language is in Finnish, English and Arabic, and is free of charge. Children are welcome to join together with their parents.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2273he/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}