Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

Default ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 19239,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=42",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=40"
    },
    "data": [
        {
            "id": "espoo_le:agmk22sxpy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 150472,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-13T07:34:03.349624Z",
                    "last_modified_time": "2024-03-13T07:34:03.349649Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Entressen_lukukoirat.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Kaksi mäyräkoiraa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150472/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-06-16T11:27:30.247586Z",
            "last_modified_time": "2025-06-16T11:27:30.247610Z",
            "date_published": null,
            "start_time": "2025-06-19T10:00:00Z",
            "end_time": "2025-06-19T12: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Hei,</p><p>Olemme Nekku ja Pätkis, Entressen lukukoirat. Tykkäämme rapsuttelusta ja kuuntelemisesta. Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.</p><p>Kaikki ovat tervetulleita rapsuttamaan!</p><p>Nekku ja Pätkis ovat tavattavissa Entressen lastenosastolla torstaisin klo 13-15 (2025 ensimmäinen kerta 9.1.).</p><p>Tervetuloa!</p>",
                "sv": "<p>Hej på er,</p><p>Vi är Nekku och Pätkis, Entresses läshundar. Vi gillar att bli klappade och lyssnade på. Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.</p><p>Alla är välkomna att klösa!</p><p>Nekku och Pätkis finns på barnavdelningen Entresse på torsdagar från den kl 13-15 (2025 första gången 9.1.).</p><p>Varmt välkomna!</p>",
                "en": "<p>Hello,</p><p>We are Nekku and Pätkis, Entresse's reading dogs. We like to be petted and listened to. If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader.</p><p>Everyone is welcome to scratch!</p><p>Nekku and Pätkis can be found in the Entresse children's section on Thursdays at 13-15 (2025 första gången 9.1.).</p>"
            },
            "name": {
                "fi": "Lukukoirat Nekku ja Pätkis tavattavissa",
                "sv": "Läshundarna Nekku och Pätkis kan träffas",
                "en": "Meet the reading dogs Nekku and Pätkis"
            },
            "short_description": {
                "fi": " Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.",
                "sv": " Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.",
                "en": " If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader."
            },
            "location_extra_info": {
                "fi": "Lastenosasto",
                "sv": "barnavdelningen",
                "en": "children's department"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22sxpy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22sx7i",
            "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:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490253,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-16T10:36:19.194550Z",
                    "last_modified_time": "2025-06-16T10:36:19.194577Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f79a15a5-54d8-4724-a948-64d1c85abe67.jpg",
                    "cropping": "0,366,1170,1536",
                    "photographer_name": "Paul Utunen",
                    "alt_text": "utuinen maisema auringonnousun hetkellä peltomaisemassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490253/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-16T10:41:59.164732Z",
            "last_modified_time": "2025-06-16T10:41:59.164749Z",
            "date_published": null,
            "start_time": "2025-06-28T12:00:00Z",
            "end_time": "2025-06-28T13: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Paul ja Björn"
            },
            "description": {
                "fi": "<p>Kesän nostalgiaa - musiikkiesitys tarjoaa kuulijalleen musiikin matkan, jossa pääsee kuulemaan coveroituna muun muassa Suvi Teräsniskaa, Taikakuuta, Samuli Edelmania, Veskua ja paljon muuta! </p><p><br></p><p>Paul ja Björn laulavat nostalgisia hittejä!&nbsp;</p>"
            },
            "name": {
                "fi": "Kesän nostalgiaa - tule nauttimaan musiikista! "
            },
            "short_description": {
                "fi": "Paul ja Björn laulavat nostalgisia hittejä! "
            },
            "location_extra_info": {
                "fi": "Estradi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22sx7i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22syky",
            "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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490254,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-28T11:12:57.506507Z",
                    "last_modified_time": "2025-05-28T11:12:57.506521Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5ad9302a-476e-4700-b0b2-6ae146838913.png",
                    "cropping": "336,0,1200,864",
                    "photographer_name": "Sanna Korkelainen",
                    "alt_text": "tyyni järvimaisema Lummenteella, pilvet heijastuvat järven pintaan",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490254/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-28T11:13:48.537441Z",
            "last_modified_time": "2025-06-16T09:02:43.953171Z",
            "date_published": null,
            "start_time": "2025-06-18T14:00:00Z",
            "end_time": "2025-06-18T15: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<strong>Juhannustanssit siirtyvät tanssittavaksi 2.7. klo 17-18.30 </strong>\n<strong>Tervetuloa Heinätansseihin laittamaan jalalla koreaksi!</strong><p><br></p><p><br></p><p>Juhannuksen etkot keskiviikkona 18.6. kello 17 - 18.30 Jarmo´s band tanssittaa.</p><p>Nyt tanssikengät jalkaan ja jussia vastaanottamaan!</p>",
                "sv": "<p>.</p>",
                "en": "<p>.</p>"
            },
            "name": {
                "fi": "PERUTTU: Juhannustanssit (uusi ajankohta 2.7.) ",
                "sv": "AVBRUTEN: Midsommar danser",
                "en": "CANCELLED: Midsummer dances"
            },
            "short_description": {
                "fi": "Viihdeorkesteri JarmosBand tempaa mukaansa tanssin pyörteisiin.",
                "sv": "Underhållningsorkestern JarmosBand sveper med dig in i dansens virvlar.",
                "en": "The entertainment orchestra JarmosBand sweeps you into the whirlwind of dance."
            },
            "location_extra_info": {
                "fi": "Estradi",
                "sv": "Estradi",
                "en": "Estradi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22syky/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66471",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 836009,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-23T11:14:07.865721Z",
                    "last_modified_time": "2025-05-23T11:14:07.865739Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764945.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/836009/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-23T11:14:07.743380Z",
            "last_modified_time": "2025-06-16T08:14:24.207667Z",
            "date_published": null,
            "start_time": "2025-07-18T11: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,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1D2CFDFF3A66D890510963BA9AEAAE5F/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_konserttisoittokunta",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/1D2CFDFF3A66D890510963BA9AEAAE5F/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_konserttisoittokunta",
                "en": "http://www.espanlava.fi/en/events/event/1D2CFDFF3A66D890510963BA9AEAAE5F/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_konserttisoittokunta"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.</p><p>Puolustusvoimien sotilassoittokunnat, varusmiessoittokunta ja soittokuntien varusmiesbändit nousevat vuorollaan eri kokoonpanoin Espan lavalle kesäperjantaisin kello 14.</p><p>Musiikki vaihtelee jazzista iskelmään ja tarjolla on kaikkea siltä väliltä. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen!</p><p>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa.</p><p>Konserttiin on vapaa pääsy. Tervetuloa!</p>",
                "sv": "<p>På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.</p><p>Försvarsmaktens militära musikkår, värnpliktsmusikkår och musikkårernas värnpliktsband stiger i tur och ordning i olika sammansättningar upp på Esplanadestraden på sommarfredagar kl. 14.</p><p>Musiken varierar från jazz till schlager och allt där emellan utlovas. Underhållande uppträdanden med blandade musikstilar utlovas!</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadsparken sedan 1927.</p>",
                "en": "<p>On summer Fridays, the Espa Stage will present different military band ensembles across Finland.</p><p>Finnish Military Bands, the Conscript Band of the Finnish Defence Forces and the conscript bands of different military bands in different compositions will take their turns on the Espa Stage on summer Fridays at 14:00.</p><p>The music will range from jazz to popular music and everything in-between! The concerts will feature entertaining performances spanning a wide variety of musical styles.</p><p>MIL-Espa park concerts have been organised at the Esplanadi Park since 1927.</p>"
            },
            "name": {
                "fi": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan konserttisoittokunta",
                "sv": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan konserttisoittokunta",
                "en": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan konserttisoittokunta"
            },
            "short_description": {
                "fi": "Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.",
                "sv": "På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.",
                "en": "On summer Fridays, the Espa Stage will present different military band ensembles across Finland."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66471/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66630",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1033918,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-16T08:14:21.674812Z",
                    "last_modified_time": "2025-06-16T08:14:21.674832Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775124.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1033918/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-16T08:14:21.519855Z",
            "last_modified_time": "2025-06-16T08:14:21.850975Z",
            "date_published": null,
            "start_time": "2025-06-27T11: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,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1C722D719B3B050EDC573854A917717D/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_showband",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/1C722D719B3B050EDC573854A917717D/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_showband",
                "en": "http://www.espanlava.fi/en/events/event/1C722D719B3B050EDC573854A917717D/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_showband"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.</p><p>Puolustusvoimien sotilassoittokunnat, varusmiessoittokunta ja soittokuntien varusmiesbändit nousevat vuorollaan eri kokoonpanoin Espan lavalle kesäperjantaisin kello 14.</p><p>Musiikki vaihtelee jazzista iskelmään ja tarjolla on kaikkea siltä väliltä. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen!</p><p>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa.</p><p>Konserttiin on vapaa pääsy. Tervetuloa!</p>",
                "sv": "<p>På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.</p><p>Försvarsmaktens militära musikkår, värnpliktsmusikkår och musikkårernas värnpliktsband stiger i tur och ordning i olika sammansättningar upp på Esplanadestraden på sommarfredagar kl. 14.</p><p>Musiken varierar från jazz till schlager och allt där emellan utlovas. Underhållande uppträdanden med blandade musikstilar utlovas!</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadsparken sedan 1927.</p>",
                "en": "<p>On summer Fridays, the Espa Stage will present different military band ensembles across Finland.</p><p>Finnish Military Bands, the Conscript Band of the Finnish Defence Forces and the conscript bands of different military bands in different compositions will take their turns on the Espa Stage on summer Fridays at 14:00.</p><p>The music will range from jazz to popular music and everything in-between! The concerts will feature entertaining performances spanning a wide variety of musical styles.</p><p>MIL-Espa park concerts have been organised at the Esplanadi Park since 1927.</p>"
            },
            "name": {
                "fi": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan showband",
                "sv": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan showband",
                "en": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan showband"
            },
            "short_description": {
                "fi": "Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.",
                "sv": "På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.",
                "en": "On summer Fridays, the Espa Stage will present different military band ensembles across Finland."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66630/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65808",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 375003,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-20T13:15:03.373815Z",
                    "last_modified_time": "2025-03-20T13:15:03.373835Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761387.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/375003/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-20T13:15:03.352723Z",
            "last_modified_time": "2025-06-14T10:13:39.715900Z",
            "date_published": null,
            "start_time": "2025-06-14T07:00:00Z",
            "end_time": "2025-06-14T18: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CD53FAE1862845A9CBFBD69A4249ADF2/Joose_Keskitalo_The_Mystic_Revelation_of_Teppo_Repo_Panssarijuna_Lokit_ja_Nikita_Titov_seka_karrysauna",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CD53FAE1862845A9CBFBD69A4249ADF2/Joose_Keskitalo_The_Mystic_Revelation_of_Teppo_Repo_Panssarijuna_Lokit_och_Nikita_Titov_samt_bastukarra",
                "en": "http://www.malmitalo.fi/en/events/event/CD53FAE1862845A9CBFBD69A4249ADF2/Joose_Keskitalo_The_Mystic_Revelation_of_Teppo_Repo_Panssarijuna_Lokit_and_Nikita_Titov_as_well_as_mobile_sauna"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Hyppää mukaan musiikin vietäväksi ja tule pelailemaan ja leikkimään! Ota pyyhe ja uima-asu mukaan, kärrysauna lämpimänä 17–20.</p><p>Lavalla melankolista, mutta tarttuvaa soundia Lokeilta ja energistä trauma bluesia Panssarijunalta. Iltaan tummempia sävyjä maalaavat Nikita Titov, jonka indie-rockissa kaikuu niin gotiikan kuin 90-luvun alternativen melankolia sekä folkin mestari Joose Keskitalo, jonka ajattomat laulut johdattavat syvälle tarinoiden ja mystiikan maailmaan.</p><p><b>Aikataulu</b><br>klo 10–15 Malmin nuorisotyöyksikkö: Pelejä ja leikkejä koko perheelle PERUTTU<br>klo 13–15 RaivioBumann Oy: Puukukkapaja<br>klo 14–15 Lokit<br>klo 16–17 Panssarijuna<br>klo 17–20 Kärrysauna + suihku<br>klo 18–19 Nikita Titov<br>klo 20–21 Joose Keskitalo & The Mystic Revelation of Teppo Repo</p><p><b>klo 10–15<br>Malmin nuorisotyöyksikkö: Pelejä ja leikkejä koko perheelle</b><br>Pelit ja leikit lauantain osalta peruttu, pahoittelumme!</p><p><b>klo 14–15 <br>Lokit</b> <br>Lokit on kymmenen vuotta kasassa ollut helsinkiläinen rokkibändi. Jos Beach Boys olisi aurinkoisten surffirantojen sijaan viettänyt aikaansa 90-luvun lama-Suomessa, Mustalammen rannalla laskuhumalassa ja lenkkarit märkänä kuunnellen kasettimankasta Kasevaa ja Sonic Youthia, se olisi luultavasti kuulostanut Lokeilta.</p><p><b>klo 16–17<br>Panssarijuna</b> <br>Panssarijuna on helsinkiläinen trauma blues -yhtye. Yhtyeen energiset keikat ovat kulttimaineessa. Viisi levyä julkaissut Panssarijuna on esiintynyt pitkin Suomea pikkupubeista aina Tavastialle ja Flow Festivaleille saakka.</p><p>Yhtyeen suomenkielisissä kappaleissa seikkailevat elämän päähänpotkimat ja sivuraiteelle joutuneet. Panssarijunan musiikissa sekoittuvat blues, kantri, punk ja rillumarei. Nelihenkisen kitarabändin livesetin kruunaavat banjo, huuliharppu ja kaljakassi-perkussio. Yleisö nautti yhtyeen keikoista tyypillisesti hymy huulillaan.</p><p><b>klo 17–20  <br>Kärrysauna + suihku</b><br>Pakkaa tapahtumapäivään mukaan myös oma pyyhe, uima-asu ja kenties vihtakin, ja tule mukaan saunomaan! Tuomme tapahtumakesään myös kärrysaunan suihkumahdollisuuden kera, jotta tapahtumapäiväsi olisivat vielä astetta rennompi. Löylyistä voi nauttia uimapuvun tai pyyhkeen kanssa. Tapahtumassa ei ole erillistä pukutilaa.   <br> <br><b>klo 18–19<br>Nikita Titov</b><br>Nikita Titov on indie-rockin saralta ammentava helsinkiläinen laulunkirjoittaja. Musiikissa liikutaan vaivattomasti psykedeelisen folk-rockin euforiasta ysäri-alternativen melankoliaan. Rakkaus goth/new wave -genrejä kohtaan nostaa päätään soundissa vahvasti. Titovin taito kirjoittaa klassikkoja on herättänyt musadiggareiden huomion ensimmäisistä sinkkujulkaisuista lähtien.</p><p><b>klo 20–21 <br>Joose Keskitalo & The Mystic Revelation of Teppo Repo</b><br>Joose Keskitalo on aikamme merkittävimpiä lauluntekijöitä, folkin mestari. Uransa aikana Keskitalo on tehnyt jo 14 albumia, joista tuoreimpana kreikkalaisesta mytologiasta kumpuava kahden levyn julkaisu Orfiset laulut V & VI. Debyyttilevy Luoja auta ilmestyi vuonna 2004. Orfiset laulut V & VI on tehty jälleen yhteistyössä The Mystic Revelation Teppo Repo -yhtyeen (Otto Eskelinen, Eero Tikkanen, Arwi Lind) kanssa. Albumien tekstit Keskitalo on kirjoittanut antiikin kreikkalaisten tragedioiden ja myyttien pohjalta.</p><p>Musiikillisesti monipuolinen ja ainutlaatuinen kokonaisuus, jolla kuljetaan ennakkoluulottomasti arkaaisen folkin pohjalta progen ja psykedelian sävyihin. Väkeviä lauluja, näkyjä ja tarinoita. Joose Keskitalon laulut ovat maailmankirjallisuuden klassikoiden kaltaisia ajattomia järkäleitä.</p><p>Tapahtumiin on vapaa pääsy.</p>",
                "sv": "<p>Låt dig ryckas med av musiken och kom och spela och lek! Ta med handduk och baddräkt, bastun i kärran är varm 17–20.</p><p>På scenen hör vi ett melankoliskt men medryckande sound från Lokit och ett energiskt trauma blues från Panssarijuna. På kvällen målar Nikita Titov mörkare toner med indierock som har ett eko av både gotik och 90-talets alternativa melankoli samt Joose Keskitalo, mästare i folk, med tidlösa sånger som leder oss djupt in i berättelsernas och mystikens värld.</p><p><b>Tidtabell</b><br>kl. 10–15 Enheten för ungdomsarbete i Malm: Spel och lekar för hela familjen INSTÄLLD<br>kl. 13–15 RaivioBumann Oy: Workshop i att göra träblommor<br>kl. 14–15 Lokit<br>kl. 16–17 Panssarijuna<br>kl. 17–20 Bastuvagn + dusch<br>kl. 18–19 Nikita Titov<br>kl. 20–21 Joose Keskitalo & The Mystic Revelation of Teppo Repo</p><p><b>kl. 10–15<br>Enheten för ungdomsarbete i Malm: Spel och lekar för hela familjen</b><br>INSTÄLLD.</p><p><b>kl. 14–15<br>Lokit</b><br>Lokit är ett rockband från Helsingfors som spelat tillsammans i tio år. Om Beach Boys hade tillbringat sin tid i 90-talets lågkonjunktur, i stället för på soliga surfstränder, och i det avtagande ruset med blöta tennisskor vid Mustalampi lyssnat på Kaseva och Sonic Youth, skulle de förmodligen ha låtit som Lokit.</p><p><b>kl. 16–17<br>Panssarijuna</b><br>Panssarijuna är ett trauma bluesband från Helsingfors. Gruppens energiska spelningar präglas av kult. Panssarijuna, som gett ut fem skivor, har uppträtt i hela Finland i allt från små pubar till Tavastia och Flow Festival.</p><p>Bandets låtar på finska handlar om dem som blivit påsparkade och dem som hamnat på sidospår. Panssarijuna blandar blues, country, punk och ”rillumarei” i sin musik. Gitarrkvartettens liveset kröns av banjo, munspel och ölkasse-perkussion. Publiken njuter typiskt av bandets spelningar med ett leende på läpparna.</p><p><b>kl. 17–20<br>Bastuvagn + dusch</b><br>Packa också med handduk, baddräkt och kanske till och med bastukvasten, och kom och bada bastu! Vi har också en bastuvagn med dusch under evenemangssommaren för att din evenemangsdag ska bli ännu mer avkopplande. Du kan njuta av bastubadet i baddräkt eller handduk. Evenemanget saknar separata omklädningsrum.</p><p><b>kl. 18–19<br>Nikita Titov</b><br>Nikita Titov är en låtskrivare från Helsingfors som hämtar inspiration från indierock. I musiken rör man sig lätt ur euforin i den psykedeliska folkrocken till melankolin i 90-talets alternative. Kärleken till goth/new wave-genrerna hörs starkt i soundet. Titovs förmåga att skriva klassiker har väckt musikdiggarnas uppmärksamhet sedan de första singelutgåvorna.</p><p><b>kl. 20–21<br>Joose Keskitalo & The Mystic Revelation of Teppo Repo</b><br>Joose Keskitalo är en av vår tids mest betydande låtskrivare och mästare i folk. Under sin karriär har Keskitalo redan gett ut 14 album, varav de senaste två skivorna Orfiset laulut V & VI hämtar inspiration från den grekiska mytologin. Debutskivan Luoja auta utkom 2004. Orfiset laulut V & VI har gjorts i samarbete med bandet The Mystic Revelation of Teppo Repo (Otto Eskelinen, Eero Tikkanen, Arwi Lind). Keskitalo har skrivit albumtexterna utifrån antika grekiska tragedier och myter.</p><p>Det är en musikaliskt mångsidig och unik helhet, där man fördomsfritt rör sig i toner av progressiv och psykedelisk musik som baserar sig på den arkaiska folkmusiken. Starka sånger, syner och berättelser. Joose Keskitalos sånger är tidlösa block som liknar världslitteraturens klassiker.</p><p>Evenemangen har fritt inträde.</p>",
                "en": "<p>Come along and enjoy the music, games and playing! Bring your towel and swimming costume; you can bathe in the mobile sauna between 17.00 and 20.00.</p><p>Melancholic, but catchy sounds by Lokit and energetic trauma blues by Panssarijuna can be heard on stage. Darker hues will descend on the evening when Nikita Titov, whose indie rock contains echoes of the Gothic and the alternative melancholy of the 1990s, and folk wizard Joose Keskitalo, whose timeless songs lead the listener deep into the world of stories and mysticism, take the stage.</p><p><b>Programme</b><br>10.00–15.00 Malmi Youth Work Unit: Play and games for the entire family CANCELLED<br>13.00–15.00 RaivioBumann Oy: Wooden flower workshop<br>14.00–15.00 Lokit<br>16.00–17.00 Panssarijuna<br>17.00–20.00 Mobile sauna + shower<br>18.00–19.00 Nikita Titov<br>20.00–21.00 Joose Keskitalo & The Mystic Revelation of Teppo Repo</p><p><b>10.00–15.00<br>Malmi Youth Work Unit: Play and games for the entire family</b><br>CANCELLED.</p><p><b>14.00–15.00<br>Lokit</b><br>Lokit is a ten-year-old rock band from Helsinki. If the Beach Boys had spent their time in the recession-era Finland of the 1990s, on the shore of Mustalampi pond, slowly sobering up, wearing wet trainers and listening to Kaseva and Sonic Youth on their cassette player, instead of hanging out on surf beaches, they would probably have sounded like Lokit.</p><p><b>16.00–17.00<br>Panssarijuna</b><br>Panssarijuna is a trauma blues group from Helsinki. The energetic shows by the group enjoy a cult following. Panssarijuna, who have released five albums, has toured Finland in all manner of venues from small pubs to Tavastia and Flow Festival.</p><p>The group’s Finnish-language songs feature protagonists who have had it rough and who have been marginalised. Panssarijuna’s music is a mix of blues, country, punk and rowdy olden-times vibes. The four-piece guitar band is accompanied by a banjo, harmonica and percussions made from a bag of beer bottles. The audience usually enjoys their shows by wearing a wide grin.</p><p><b>17.00–20.00<br>Mobile sauna + shower</b><br>Pack your own towel, swimming costume and a sauna whisk, if you like, and come and bathe in the sauna! We will provide visitors with a chance to bathe in the mobile sauna and take a shower to make the event day even more relaxed. You can enjoy the sauna wearing a swimsuit or towel. There are no separate changing rooms.</p><p><b>18.00–19.00<br>Nikita Titov</b><br>Nikita Titov is an indie rock songwriter from Helsinki. The music moves effortlessly between the euphoria of psychedelic folk rock to nineties alternative melancholy. The love for the genres of goth and new wave will often pop up in the sound. Titov's ability to write classics piqued the interest of music lovers as soon as the first singles were published.</p><p><b>20.00–21.00<br>Joose Keskitalo & The Mystic Revelation of Teppo Repo</b><br>Joose Keskitalo is one of the most significant songwriters of our time, a folk master. During his career, Keskitalo has already published 14 albums, the most recent of which is the double-album release ‘Orfiset laulut V & VI’, which was inspired by Greek mythology. His debut album ‘Luoja auta’ was released in 2004. ‘Orfiset laulut V & VI’ was made in collaboration with the Mystic Revelation Teppo Repo group (Otto Eskelinen, Eero Tikkanen, Arwi Lind). Keskitalo wrote the lyrics based on ancient Greek tragedies and myths.</p><p>The record is a musically versatile and unique entity that takes the listener on an open-minded journey to the tunes of progressive rock and psychedelia based on archaic folk. Potent sounds, visions and stories. Joose Keskitalo’s songs are timeless masterpieces in the vein of world literature classics.</p><p>Entry to the events is free of charge.</p>"
            },
            "name": {
                "fi": "Joose Keskitalo & The Mystic Revelation of Teppo Repo, Panssarijuna, Lokit ja Nikita Titov sekä kärrysauna – Malmin tapahtumakesä",
                "sv": "Joose Keskitalo & The Mystic Revelation of Teppo Repo, Panssarijuna, Lokit och Nikita Titov samt bastukärra – Malms evenemangssommar",
                "en": "Joose Keskitalo & The Mystic Revelation of Teppo Repo, Panssarijuna, Lokit and Nikita Titov as well as mobile sauna – Malmi Summer of Events"
            },
            "short_description": {
                "fi": "Hyppää mukaan musiikin vietäväksi ja tule pelailemaan ja leikkimään! Ota pyyhe ja uima-asu mukaan, kärrysauna lämpimänä 17–20.",
                "sv": "Låt dig ryckas med av musiken och kom och spela och lek! Ta med handduk och baddräkt, bastun i kärran är varm 17–20.",
                "en": "Come along and enjoy the music, games and playing! Bring your towel and swimming costume; you can bathe in the mobile sauna between 17.00 and 20.00."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65808/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22s3a4",
            "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:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490256,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-06-13T11:37:59.577550Z",
                    "last_modified_time": "2025-06-13T11:37:59.577571Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/db83b6a6-293a-491a-9e25-bc0c880f7360.png",
                    "cropping": "94,0,549,454",
                    "photographer_name": "",
                    "alt_text": "Kiertoteitä - Omvägar: keramiikkanäyttely",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490256/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-13T11:49:16.175582Z",
            "last_modified_time": "2025-06-13T11:49:16.175599Z",
            "date_published": "2025-06-13T11:32:00Z",
            "start_time": "2025-06-15T07:00:00Z",
            "end_time": "2025-07-04T17: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Axxellista keväällä valmistuvat keramiikka-artesaanit esittelevät lopputöitään Sellon kirjastossa Espoossa. Näyttelyssä on esillä opiskelijoiden teoksia veistoksista käyttö- ja sisustusesineisiin.</p><p>Kiertoteitä-näyttelyyn tiivistyy kaksivuotinen artesaanikoulutus ja matka keraamikoksi. Kiertotiet ovat osa keraamikon päivittäistä työtä. Savi yhdistää tekijöitä eri taustoista ja eri elämäntilanteista, mikä näkyy näyttelyssä.&nbsp;</p>",
                "sv": "<p>Keramikartesanstuderande på Axxell ställer ut sina slutarbeten på Sellobiblioteket i Esbo. Utställningen presenterar studerandes verk, allt från bruksföremål till konst- och inredningsföremål.&nbsp;</p><p>Utställningen Omvägar knyter ihop den 2-åriga artesanutbildningen och vägen till utexaminerad keramiker. Keramikerns dagliga arbete är ett ständigt vägval av olika omvägar. Lera sammankopplar individer med olika erfarenheter och livssituationer, vilket syns i utställningen.</p>",
                "en": "<p>Ceramic art students from Axxell are exhibiting their final projects at the Sello Library in Espoo. The exhibition presents the students' works, ranging from utility items to art and interior design objects.</p><p>The exhibition “Detours” connects the 2-year artesan education and the path to becoming a ceramicist. The daily work of a ceramist is a constant choice of different detours. Clay connects individuals with different experiences and life situations, which is visible in the exhibition.</p>"
            },
            "name": {
                "fi": "Kiertoteitä: keramiikkanäyttely",
                "sv": "Omvägar: keramiikkanäyttely",
                "en": "Detours: ceramics exhibition"
            },
            "short_description": {
                "fi": "Kiertoteitä: Axxellista keväällä valmistuvat keramiikka-artesaanit esittelevät lopputöitään",
                "sv": "Omvägar: Keramikartesanstuderande på Axxell ställer ut sina slutarbeten",
                "en": "Detours: Ceramic art students from Axxell exhibit their final projects"
            },
            "location_extra_info": {
                "fi": "Vitriinigalleria (2. krs)",
                "sv": "Glasmonter (2:a våningen)",
                "en": "Glass showcase (2nd floor)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s3a4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22tbpu",
            "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:p10727/?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:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s3ni/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s3ze/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s4fy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s4si/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s46q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s5kq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s5we/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s6ci/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s6oy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s62m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s7ge/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s7se/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s754/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22take/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22taxa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tbda/?format=api"
                }
            ],
            "images": [
                {
                    "id": 151416,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-06-11T08:35:11.928788Z",
                    "last_modified_time": "2024-06-11T08:35:11.928858Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/suomenlippu.PNG",
                    "cropping": "98,0,471,374",
                    "photographer_name": "",
                    "alt_text": "Kuvassa suomenlippu sinistä taivasta vasten",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151416/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-13T07:49:23.490781Z",
            "last_modified_time": "2025-06-13T07:49:23.490798Z",
            "date_published": null,
            "start_time": "2025-09-01T14:30:00Z",
            "end_time": "2025-12-15T17: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea. Myös aloittelijat ovat tervetulleita.</p><p>Kielikahvilaan ei tarvitse ilmoittautua etukäteen. Mukaan voi tulla koska tahansa.</p><p>Kielikahvilassa opit puhumaan arkielämän suomen kieltä. Kielikahvilassa pääset puhumaan suomea suomalaisten kanssa.</p><p>Tervetuloa mukaan!</p>",
                "sv": "<p>Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. Nybörjare är också välkomna.</p><p>Du behöver inte anmäla dig till språkcaféet i förväg. Du kan komma när som helst.</p><p>I språkcaféet får du lära dig att tala det finska vardagsspråket. I språkcaféet kan du prata finska med finländare.</p><p>Välkommen ombord!</p><p><br></p>",
                "en": "<p>A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. Beginners are also welcome.</p><p>You do not need to register for the language cafe in advance. You can come anytime.</p><p>In the language cafe, you will learn to speak the Finnish language of everyday life. In the language cafe you can speak Finnish with Finns.</p><p>Welcome aboard!</p><p><br></p>"
            },
            "name": {
                "fi": "Puhutaan suomea -kielikahvila",
                "sv": "Låt oss prata finska- det finska språkkaféet",
                "en": "Let's speak Finnish -Finnish language cafe"
            },
            "short_description": {
                "fi": "Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea.",
                "sv": "Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. ",
                "en": "A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. "
            },
            "location_extra_info": {
                "fi": "Kajuutta",
                "sv": "Kajuutta",
                "en": "Kajuutta"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tbpu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22tb3y",
            "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: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:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490257,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-27T06:37:14.605319Z",
                    "last_modified_time": "2025-05-27T06:37:14.605331Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3e6e52d6-a8dc-4999-95c6-f540a9857a79.png",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "Emmi Malmström",
                    "alt_text": "Maalaus koirasta, jolla suu auki",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490257/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-27T07:38:23.373194Z",
            "last_modified_time": "2025-06-13T07:24:47.923050Z",
            "date_published": "2025-06-16T04:59:00Z",
            "start_time": "2025-06-16T05:00:00Z",
            "end_time": "2025-07-06T15: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Päähahmoina näyttelyssä ovat järkyttyneet kotieläimet. Myös pari eläinten ihmiskaveria löytyy näyttelystä.&nbsp;</p><p>Emmi Malmström on harrastaja taidemaalari, joka maalaa pääosin ihmisistä muotokuvia, mutta tänä keväänä hän on inspiroitunut ja ilotellut ilmeikkäiden kissojen ja koirien kanssa.&nbsp;</p><p><br></p><p>emmimalmstrom.art</p>",
                "sv": "<p>Välkommen att besöka Emmi Malmströms utställning \"OMG\" i Entressebiblioteket under tiden 16.6.-6.7.2025. Utställningen kan ses under bibliotekets öppettider.</p><p><br></p><p>emmimalmstrom.art</p>",
                "en": "<p>Art exhibition \"OMG\" by Emmi Malmström in Entresse Library during 16.6.-6.7.2025. Welcome!</p><p><br></p><p>emmimalmstrom.art</p>"
            },
            "name": {
                "fi": "Emmi Malmström: OMG",
                "sv": "Emmi Malmström: OMG",
                "en": "Emmi Malmström: OMG"
            },
            "short_description": {
                "fi": "Emmi Malmstömin taidenäyttely \"OMG\" Entressen kirjaston Galleria Betonissa 16.6.-6.7.2025.",
                "sv": "Emmi Malsmtröms utställning \"OMG\" i Entressebiblioteket under tiden 16.6.-6.7.2025.",
                "en": "Art exhibition \"OMG\" by Emmi Malmström in Entresse Library during 16.6.-6.7.2025."
            },
            "location_extra_info": {
                "fi": "Galleria Betoni"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tb3y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65806",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:755/?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: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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 375001,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-20T13:15:03.065680Z",
                    "last_modified_time": "2025-03-20T13:15:03.065698Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761380.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/375001/?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-20T13:15:03.033989Z",
            "last_modified_time": "2025-06-12T13:14:40.814136Z",
            "date_published": null,
            "start_time": "2025-06-12T10:00:00Z",
            "end_time": "2025-06-12T18: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8804D71D342541FB6DF28523386F10AA/Helsinki-paiva_Goldielocks_Skidit-disko_ja_Michael_Bleu_kesaillan_tanssit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8804D71D342541FB6DF28523386F10AA/Helsingforsdagen_Goldielocks_Skidit-disco_och_Michael_Bleu_dans_i_sommarkvallen",
                "en": "http://www.malmitalo.fi/en/events/event/8804D71D342541FB6DF28523386F10AA/Helsinki_Day_Goldielocks_Disco_for_kids_and_Michael_Bleu_summer_evening_s_dance"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Rakkaan kaupunkimme 475-vuotissyntymäpäivänä Ala-Malmin puistossa riittää synttärikarkelointia koko perheelle huippuartistien kera!</p><p>Lahjakas ja kansainvälistä huomiota herättänyt <b>Goldielocks</b> nousee lavalle tuoden mukanaan modernin indie-pop-soundinsa ja tarinalliset lyriikkansa, jotka kuljettavat kuulijansa vaihtoehtoiseen todellisuuteen.</p><p>Päivän aikana jorataan niin lasten omassa Skidit Diskossa, jossa <b>DJ Orkidea, MC Aino</b> ja <b>Robo-robotti</b> pitävät huolen, että bileet ovat taatusti parhaat! Kesäillan tansseihin lähdetään Tsuumin opastuksella ja myöhemmin <b>Michael Bleun</b> tahtiin, retrosoulin ja modernin psykedelian lyödessä yläfemmaa taustalla.</p><p>Tule mukaan myös taiteilemaan, tanssimaan, viihtymään kesätorilla tai pyöräyttämään onnenpyörää!</p><p><b>Aikataulu</b><br>11 ja 13 Forum Virium Helsinki: Villi Malmin kesä - Luontoelämyksiä ja yhdessäoloa<br>13–15 Pienperheyhdistys: Klovni<br>13–16 OmaStadi-piste<br>13–16 Pääroolissa Malmi / Helsingin kaupunginteatteri: Runokioski<br>14–18 Malmin nuorisotyöyksikkö: tehdään yhdessä taidetta!<br>14–18 Taiteen sulattamo: Häpeäpesula<br>15−18 Iltakorva<br>15–19 Forum Virium Helsinki: Kesäseppeleiden tekoa<br>15–19 Kesätori<br>15–20.30 Kärrysauna + suihku<br>15–16 Malmi/Kollektiivi screening<br>15–18 Malmin seurakunta: Kohtaamisia Ala-Malmin puistossa<br>15–18 Tukiyhdistys Karvinen: Onnenpyörä<br>15–18 Stadin yhteisötalot: Mandalakivien maalausta<br>16.15–17 Skidit disko<br>18–19 Goldielocks<br>20–20.30 Tsuumin tanssinopetusjohdatus<br>20.30–21.30 Michael Bleu: kesäillan tanssit</p><p><b>klo 11 ja 13<br>Forum Virium Helsinki: Villi Malmin kesä - Luontoelämyksiä ja yhdessäoloa</b><br>Anna aistiesi johdattaa ja kulje Malmin vehreillä poluilla. GreenInCities-hanke järjestää kaksi opastettua kierrosta alueella ja Longinojanpuistossa. <br>Lähtö Malmitalon edustalta.</p><p><b>klo 13–15 Pienperheyhdistys: Klovni </b><br>Pienperheyhdistys tuo lasten ja aikuisten riemuksi paikan päälle klovnin, joka kiertelee yleisön seassa heitä viihdyttäen.</p><p><b>klo 13–16 OmaStadi-piste</b><br>Unelmien Helsinki tehdään yhdessä. OmaStadi.<br> <br><b>klo 14–18 Tehdään yhdessä taidetta, teemana Meidän Helsinki</b><br>Malmin nuorisotyöyksikön kesätyöntekijät toteuttavat kaikille avointa hyvänmielen toimintaa. Tule mukaan tekemään taidetta yhdessä, teemana meidän Helsinkimme!</p><p><b>klo 15–19 Ala-Malmin puiston kesätori</b><br>Pienimuotoinen, mutta isosti ilahduttava, kesätori kokoaa Ala-Malmin puistoon toimijoita, jotka tarjoavat tapahtumakesän vierailijoille paikallisia käsitöitä, herkkuja ja muuta kotiin vietävää.</p><p><b>klo 15–19 <br>Forum Virium Helsinki: Kesäseppeleiden ja kasvikoristeiden tekoa</b><br>Tule mukaan Forum Virium Helsingin järjestämään työpajaan, jossa toteutetaan ihania kesäisiä seppeleitä ja muita koristeita.</p><p><b>klo 16.15–17 Skidit Disko: DJ Orkidea, MC Aino ja Robo-robotti</b><br>Tervetuloa juhlimaan kesäistä Helsinkiä yhdessä koko perheen kanssa Konttilavalle! Mitä toivotuimmassa Skidit Diskossa tarjolla on huippubiisejä, leikkiä ja kreisibailausta kaikenikäisille. Skidit-disko on oodi elämälle, tanssille ja kavereille. Let’s baila!</p><p><b>15–20.30 Kärrysauna + suihku</b><br>Ota mukaan oma pyyhe ja tule mukaan saunomaan! Kärrysauna ja suihku tekevät päivästäsi vielä astetta rennomman. Löylyistä voi nauttia uimapuvun tai pyyhkeen kera. Tapahtumassa ei ole erillistä pukutilaa.</p><p><b>klo 18–19 Goldielocks</b><br>Kansainvälistä huomiota kerännyt Goldielocks saapuu valtaamaan tapahtumakesän estradin! <br>Goldielocks yhdistelee musiikissaan menneiden vuosikymmenten orgaanisia bändielementtejä ja tämän päivän indie-vaikutteista popia. Vuonna 2025 Goldielocks osallistui UMK-kisoihin kappaleella Made Of.</p><p><b>klo 20.30–21.30 Michael Bleu & Kesäillan tanssit</b><br>Kesäillan tanssit tuo liikkeen lumoa ja ihastuttavia askeleita Ala-Malmin puistoon Michael Bleun karismaattisen retromusiikin tahtiin.</p>",
                "sv": "<p>På vår älskade stads 475-årsdag finns det ett stort utbud av födelsedagsuppträdanden för hela familjen med toppartister i Nedre Malms park!</p><p>Det talangfulla bandet <b>Goldielocks</b>, som fått internationell uppmärksamhet, kliver upp på scenen med sitt moderna indiepop-sound och sin berättande lyrik, som tar med sig åhörarna till en alternativ verklighet.</p><p>Under dagen får besökarna dansa både på barnens eget Skidit-disco, där <b>DJ Orkidea, MC Aino</b> och <b>roboten Robo</b> ser till att ordna den garanterat bästa festen! Under ledning av Tsuumi och senare <b>Michael Bleus</b> takter blir det dans i sommarkvällen, där retro soul och modern psykedelisk rock gör highfive i bakgrunden.</p><p>Kom med och skapa konst, dansa, trivs på sommartorget eller snurra lyckohjulet! Dagen är full av program.</p><p><b>Tidtabell</b><br>kl. 11 och 13 Forum Virium Helsinki: Vilda sommaren i Malm – Naturupplevelser och samvaro<br>kl. 13–15 Föreningen Pienperheyhdistys ry: Clown<br>kl. 13–16 Pääroolissa Malmi / Helsingin kaupunginteatteri: poesi kiosk<br>kl. 14–18 Enheten för ungdomsarbete i Malm: Vi skapar konst tillsammans! Temat är vårt Helsingfors. <br>kl. 14–18 Taiteen sulattamo: Skamtvätten<br>kl. 15–19 Forum Virium Helsinki: Vi binder växtkransar<br>kl. 15–19 Sommartorg<br>kl. 15−18 Iltakorva<br>kl. 15–20.30 Bastuvagn + dusch<br>kl. 15–18 Malms församling: Möten i Nedre Malms park<br>kl. 15–18 Föreningen Tukiyhdistys Karvinen ry: Lyckohjul<br>kl. 15–18 Stadin yhteisötalot: Målning av mandalastenar<br>kl. 15–16 Malm/Kollektiv screening<br>kl. 16.15–17 Skidit-disco<br>kl. 18–19 Goldielocks<br>kl. 20–20.30 Tsuumis dansundervisning som introduktion till dans i sommarkvällen<br>kl. 20.30–21.30 Michael Bleu: dans i sommarkvällen</p><p><b>12.6 kl. 11 och 13<br>Forum Virium Helsinki: Vilda sommaren i Malm – Naturupplevelser och samvaro</b><br>Låt dina sinnen leda dig när vi tar oss fram på lummiga stigar i Malm. Projektet GreenInCities ordnar två guidade rundvandringar i Malm och Stickelbackaparken där deltagarna får bekanta sig med naturen i stadsdelen. Utflykten ger deltagarna en avkopplande stund i naturen och möjlighet att lära sig mer om stadsnaturen.<br>Start från Malms kulturhus.</p><p><b>kl. 13–15 <br>Pienperheyhdistys ry: Clown </b><br>Pienperheyhdistys ry har med sig en clown, som går runt i publiken för att underhålla och glädja barn och vuxna.</p><p><b>12.6 kl. 14–18<br>Vi gör konst tillsammans kring temat Vårt Helsingfors</b><br>Sommarjobbarna vid enheten för ungdomsarbete i Malm ordnar feel good-verksamhet som är öppen för alla. Kom med och gör konst tillsammans kring temat Vårt Helsingfors i enlighet med Helsingforsdagen!</p><p><b>kl. 15–19 <br>Sommartorget i Nedre Malms park</b><br>Det småskaliga men mycket glädjande sommartorget samlar aktörer i Nedre Malms park som erbjuder evenemangssommarens besökare lokalt hantverkskunnande, delikatesser och annat att ta med sig hem.</p><p><b>kl. 15–19 <br>Forum Virium Helsinki: Vi binder växtkransar och somriga växtdekorationer samt reparerar cyklar</b><br>Kom med i en verkstad som ordnas av Forum Virium Helsinki där deltagarna gör ljuvliga växtkransar och andra somriga växtdekorationer. Du kan också reparera din cykel där!</p><p><b>kl. 16.15–17.00 <br>Skidit-disco: DJ Orkidea, MC Aino och roboten Robo</b><br>Välkommen att fira det somriga Helsingfors tillsammans med hela familjen på en containerscen! På det mycket efterfrågade Skidit-discot utlovas de bästa låtarna, lek och galet festande för alla åldrar. Discot är en hyllning till livet, dansen och kompisarna. Let’s party!</p><p><b>kl. 18–19 Goldielocks</b><br>Bandet Goldielocks, som fått internationell uppmärksamhet, kommer för att inta evenemangssommarens estrad! År 2025 deltar Goldielocks i Tävlingen för ny musik (UMK) med låten Made Of.</p><p><b> kl 20.30–21.30 Michael Bleu & dans i sommarkvällen</b><br>Danserna i sommarkvällen för med sig rörelsens magi och förtjusande steg till Nedre Malms park till takterna av Michael Bleus karismatiska retromusik.</p>",
                "en": "<p>On the 475th birthday of our dear home town, the entire family should head to Ala-Malmi Park to enjoy activities and performances by top artists!</p><p>The talented, internationally known <b>Goldielocks</b> will take the stage, bringing her modern indie-pop sound and story-telling lyrics to Malmi, transporting the audience to an alternative reality.</p><p>Earlier in the day, kids will have their own disco event, Skidit Disko, where <b>DJ Orkidea, MC Aino</b> and <b>Robo the Robot</b> will make sure to give the best party in the town! The summer evening dance will start with Tsuumi’s instructional session and continues later accompanied by <b>Michael Bleu</b>, with retro soul music and modern psychedelia coming together in the background.</p><p>Come by to make art, dance, enjoy the summer market or spin a wheel of fortune! The day is filled with fun.</p><p><b>Schedule</b><br>at 11and 13 Forum Virium Helsinki: Wild Malmi summer – Nature experiences and spending time together<br>13–15 Single Parents’ Association: Clown<br>13−16 OmaStadi<br>13–16 Pääroolissa Malmi / Helsingin kaupunginteatteri: Poetry kiosk<br>14–18 Malmi Youth Work Unit: let’s make art together! Theme: our Helsinki. <br>14–18 Taiteen sulattamo: Shame Laundry<br>15−18 Iltakorva<br>15–19 Forum Virium Helsinki: Flower wreath making<br>15–19 Summer market<br>15–20.30 Mobile sauna + shower<br>15–18 Malmi parish: Meetings in Ala-Malmi Park<br>15–18 Tukiyhdistys Karvinen: Wheel of fortune<br>15–18.00  Stadin yhteisötalot: Let's paint mandala stones<br>15–16.00 Malmi/Kollektiivi screening<br>16.15–17.00 Skidit disco for kids<br>18–19 Goldielocks<br>20–20.30 Tsuumi’s dance teacher introduction to the summer evening’s dance<br>20.30–21.30 Michael Bleu: summer evening’s dance</p><p><b>at 11.00 and 13.00<br>Forum Virium Helsinki: Wild Malmi summer – Nature experiences and spending time together</b><br>Let your senses guide you along the green paths of Malmi. The GreenInCities project will organise two guided tours in the Malmi area and Longinoja Park, familiarising the participants with local nature in Malmi. The tour will offer a relaxing moment in nature and the chance to learn more about urban nature.<br>We will depart from the front of Malmitalo.</p><p><b>13.00–15.00 Single Parents’ Association: Clown </b><br>The Single Parents’ Association has invited a clown to the event to mingle with the crowd, entertaining children and adults alike.</p><p><b>14.00–18.00 Let’s make art together with the theme ‘our Helsinki’</b><br>Malmi Youth Work Unit’s summer workers host pleasant activities open to all. Join us in making art with the theme ‘our Helsinki’ to celebrate Helsinki Day!</p><p><b>15.00–19.00 Ala-Malmi Park summer market</b><br>The small but delightful summer market in Ala-Malmi Park features vendors offering local crafts, delicacies and other gifts to take home.</p><p><b>15.00–19.00 <br>Forum Virium Helsinki: Making flower wreaths and repairing bicycles</b><br>Join a workshop organised by Forum Virium Helsinki and create wonderful summer wreaths and decorations made with plants and flowers. You can also try your hand at fixing a bicycle!<br>Location: Workshop area in Ala-Malmi Park</p><p><b>16.15–17.00 <br>Skidit Disko: DJ Orkidea, MC Aino and Robo the Robot</b><br>Bring your whole family to celebrate summer season in Helsinki at Konttilava stage! The popular children’s disco event, Skidit Disko, offers top hits, fun times and a great party for people of all ages. Skidit Disko is an ode to life, dance and friendships. Let’s baila!</p><p><b>18.00–19.00 Goldielocks</b><br>The internationally known Goldielocks takes over the stage!<br>In 2025, Goldielocks competed in the Finnish selection format for the Eurovision Song Contest, Uuden Musiikin Kilpailu, with her song ‘Made Of’.</p><p><b>20.30–21.30 Michael Bleu & summer evening's dance</b><br>Summer evening’s dance brings the magic of movement and beauty of dance to Ala-Malmi Park, accompanied by Michael Bleu’s charismatic retro music.</p>"
            },
            "name": {
                "fi": "Helsinki-päivä: Goldielocks, Skidit-disko ja Michael Bleu + kesäillan tanssit – Malmin tapahtumakesä",
                "sv": "Helsingforsdagen: Goldielocks, Skidit-disco och Michael Bleu + dans i sommarkvällen – Malms evenemangssommar",
                "en": "Helsinki Day: Goldielocks, Disco for kids and Michael Bleu + summer evening’s dance – Malmi Summer of Events"
            },
            "short_description": {
                "fi": "Rakkaan kaupunkimme 475-vuotissyntymäpäivänä Ala-Malmin puistossa riittää synttärikarkelointia koko perheelle huippuartistien kera!",
                "sv": "På vår älskade stads 475-årsdag finns det ett stort utbud av födelsedagsuppträdanden för hela familjen med toppartister i Nedre Malms park!",
                "en": "On the 475th birthday of our dear home town, the entire family should head to Ala-Malmi Park to enjoy activities and performances by top artists!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65806/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:f03eca68-8647-f011-877a-000d3ab0762c",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?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:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "0"
                    },
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=384_TPR_testi_automaatio_julkaisu3345799421"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?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:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "created_time": "2025-06-12T12:37:17.353495Z",
            "last_modified_time": "2025-06-12T12:37:17.353514Z",
            "date_published": "2025-06-12T12:11:46Z",
            "start_time": "2025-06-12T12:30:00Z",
            "end_time": "2025-06-22T05:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 22,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 100,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-06-12T15:30:00+03:00",
            "enrolment_end_time": "2025-06-13T09:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Annantalo"
            },
            "description": {
                "fi": "<div><p>Tarkempi kuvaus</p></div>"
            },
            "name": {
                "fi": "384 TPR testi & automaatio julkaisu"
            },
            "short_description": {
                "fi": "Lyhyt kuvaus"
            },
            "location_extra_info": {
                "fi": "sali 1"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:f03eca68-8647-f011-877a-000d3ab0762c/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66483",
            "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:348/?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:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 837054,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-23T14:13:25.023397Z",
                    "last_modified_time": "2025-05-23T14:13:25.023414Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765387.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/837054/?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-23T14:13:24.892794Z",
            "last_modified_time": "2025-06-12T12:13:48.942243Z",
            "date_published": null,
            "start_time": "2025-07-26T11: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,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/506F7E8C98B9BD998137D6D8B5EEEFEB/Jazzup",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/506F7E8C98B9BD998137D6D8B5EEEFEB/Jazzup",
                "en": "http://www.espanlava.fi/en/events/event/506F7E8C98B9BD998137D6D8B5EEEFEB/Jazzup"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Jazzup on neljästä omilla tahoillaan vaikuttavasta jazzmuusikosta koostuva kvartetti, joka on esittänyt yhtyeen originaalisävellyksiä lukuisissa koulukonserteissa.</p><p>Pianisti Riitta Paakki, alttosaksofonisti sekä bassoklarinetisti Max Zenger, rumpali Mikko Hassinen ja basisti Antti Ahoniemi ovat kehitelleet sekä kouluympäristöön että jazzklubille sopivan ohjelmiston: esitettävä musiikki on helposti lähestyttävää, mutta samalla taiteellisesti tinkimätöntä.</p><p>Kieli: englanti</p><p>Esitys on toteutettu yhteistyössä Konserttikeskuksen kanssa.</p>",
                "sv": "<p>Jazzup består av fyra musiker, varav alla även är aktiva med sina egna grupper i den finska jazzscenen.</p><p>Riitta Paakki (piano), Max Zenger (altsax oc basklarinett), Mikko Hassinen (trummor) och Antti Ahoniemi (bas) har uppträtt med sina egna kompositioner i både skolor och jazzklubbar sedan år 2020 och på så vis skapat Jazzups repertoar till en konsertupplevelse som passar för både barn och vuxna.</p><p>Språk: engelska</p><p>Framförandet genomförs i samarbete med Konsertcentralen.</p>",
                "en": "<p>Jazzup is a quartet consisting of four active and versatile musicians in the Finnish jazz landscape.</p><p>Riitta Paakki on piano, Max Zenger on alto sax and bass clarinet, Mikko Hassinen on drums and Antti Ahoniemi on double bass. The group has performed their set of original compositions in both schools and jazz clubs since 2020, making a concentrated effort to play concerts that are easily approachable without compromising artistic integrity.</p><p>Language: English</p><p>Performance is produced in collaboration with Concert Centre Finland.</p>"
            },
            "name": {
                "fi": "Jazzup",
                "sv": "Jazzup",
                "en": "Jazzup"
            },
            "short_description": {
                "fi": "Jazzup on neljästä omilla tahoillaan vaikuttavasta jazzmuusikosta koostuva kvartetti, joka on esittänyt yhtyeen originaalisävellyksiä lukuisissa koulukonserteissa.",
                "sv": "Jazzup består av fyra musiker, varav alla även är aktiva med sina egna grupper i den finska jazzscenen.",
                "en": "Jazzup is a quartet consisting of four active and versatile musicians in the Finnish jazz landscape."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66483/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66465",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 828180,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-22T12:12:42.757850Z",
                    "last_modified_time": "2025-05-22T12:12:42.757864Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765836.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/828180/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-22T12:12:42.705207Z",
            "last_modified_time": "2025-06-12T12:13:47.992294Z",
            "date_published": null,
            "start_time": "2025-07-16T15: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,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/CF90CE6E123C243FF32C205B4D334673/Vodou_Fusion",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/CF90CE6E123C243FF32C205B4D334673/Vodou_Fusion",
                "en": "http://www.espanlava.fi/en/events/event/CF90CE6E123C243FF32C205B4D334673/Vodou_Fusion"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Vodou Fusionin musiikki on täynnä energiaa! Musiikin rytmit kumpuavat alun perin muinaisista länsiafrikkalaisista voodoo-rytmeistä.</p><p>Nämä saavat seurakseen nykyaikaisempia vivahteita, kuten afrobeat, funk, reaggae ja afropop. Monikulttuurinen musiikkimme on täynnä iloa ja saa sinut varmasti tanssimaan!</p><p>Kaikki Vodou Fusionin kappaleet on säveltänyt ja sovittanut Gildas Houessou sekä yhtye. Kappaleiden teemat ovat tuttuja jokaiselle: kunnioitus, rakkaus, moraali, rauha sekä elämän kaikki puolet. Sanat ovat osittain ranskaa, osittain englantia sekä minan kieltä, joka on yksi paikallisista Beninissä puhutuista kielistä.</p><p>Vodou Fusion villitsi Espan lavan Open Stage -sarjassa viime kesänä, ja yleisön pyynnöstä heidät kutsuttiin heti takaisin!</p><p>Gildas Houessou - Lead vocals (Benin)<br>Keita Iba - Drums (Senegal)<br>Papa Diakhate - Bass (Senegal)<br>Jacob Kabre - Keyboard (Burkina Faso)<br>Alex Kivikoski - Flute, keyboard (Finland)<br>Macoumba Ndiaye - Percussions ( Senegal)<br>Noora Nurmi - Vocals (Finland)<br>Riche Bamba - Vocals (Ivory Coast)<br>Yoandy Jimeno - Vocals (Cuba / Finland)<br>Susanna Salama - Alto saxophone (Finland)<br>Samuel Leminen - Lead guitar (Finland)</p>",
                "sv": "<p>Vodou Fusions musik är full av energi! Musikens rytmer har sitt ursprung i gamla västafrikanska voodoo-rytmer.</p><p>Dessa får sällskap av modernare inslag, som afrobeat, funk, reaggae och afropop. Vår mångkulturella musik är fylld av glädje och får dig helt säkert att dansa!</p><p>Alla Vodou Fusions låtar är skrivna och arrangerade av Gildas Houessou och gruppen. Låtarnas teman är bekanta för alla: respekt, kärlek, moral, fred och livets alla sidor. Texterna är delvis på franska, delvis på engelska och delvis på språket mina, som är ett av de lokala språken i Benin.</p><p>Vodou Fusion deltog i Open Stage på Esplanadestraden förra sommaren, och på publikens begäran fick de genast en ny inbjudan!</p><p>Gildas Houessou - Lead vocals (Benin)<br>Keita Iba - Drums (Senegal)<br>Papa Diakhate - Bass (Senegal)<br>Jacob Kabre - Keyboard (Burkina Faso)<br>Alex Kivikoski - Flute, keyboard (Finland)<br>Macoumba Ndiaye - Percussions ( Senegal)<br>Noora Nurmi - Vocals (Finland)<br>Riche Bamba - Vocals (Ivory Coast)<br>Yoandy Jimeno - Vocals (Cuba / Finland)<br>Susanna Salama - Alto saxophone (Finland)<br>Samuel Leminen - Lead guitar (Finland)</p>",
                "en": "<p>Vodou Fusion’s music is full of energy! The beat of the music originally stems from ancient West African voodoo rhythms.</p><p>They are accompanied by more contemporary flair, such as afrobeat, funk, reggae and afropop. Our multicultural music is full of joy and is guaranteed to make you dance!</p><p>All songs by Vodou Fusion have been composed and arranged by Gildas Houessou and the band. The themes of the songs are familiar to everyone: respect, love, morality, peace and all sides of life. The lyrics are partly in French, partly in English and Gen, which is one of the local languages spoken in Benin.</p><p>Vodou Fusion made the crowd go wild on Espa Stage in the Open Stage series last summer, and they are now back by popular demand!</p><p>Gildas Houessou - Lead vocals (Benin)<br>Keita Iba - Drums (Senegal)<br>Papa Diakhate - Bass (Senegal)<br>Jacob Kabre - Keyboard (Burkina Faso)<br>Alex Kivikoski - Flute, keyboard (Finland)<br>Macoumba Ndiaye - Percussions ( Senegal)<br>Noora Nurmi - Vocals (Finland)<br>Riche Bamba - Vocals (Ivory Coast)<br>Yoandy Jimeno - Vocals (Cuba / Finland)<br>Susanna Salama - Alto saxophone (Finland)<br>Samuel Leminen - Lead guitar (Finland)</p>"
            },
            "name": {
                "fi": "Vodou Fusion",
                "sv": "Vodou Fusion",
                "en": "Vodou Fusion"
            },
            "short_description": {
                "fi": "Vodou Fusionin musiikki on täynnä energiaa! Musiikin rytmit kumpuavat alun perin muinaisista länsiafrikkalaisista voodoo-rytmeistä.",
                "sv": "Vodou Fusions musik är full av energi! Musikens rytmer har sitt ursprung i gamla västafrikanska voodoo-rytmer.",
                "en": "Vodou Fusion’s music is full of energy! The beat of the music originally stems from ancient West African voodoo rhythms."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66465/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65774",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 689403,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T06:13:45.983794Z",
                    "last_modified_time": "2025-05-05T06:13:45.983812Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767408.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/689403/?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-05T06:13:45.828458Z",
            "last_modified_time": "2025-06-12T11:13:58.760022Z",
            "date_published": null,
            "start_time": "2025-06-12T11:00:00Z",
            "end_time": "2025-06-12T16: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9B07E92B29795833DC176AE034874414/Helsinki-paiva_Sitratorilla_tule_naura_nauti_ja_viihdy_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9B07E92B29795833DC176AE034874414/Helsingforsdagen_pa_Cittertorget_kom_skratta_njut_och_trivs_",
                "en": "http://www.kanneltalo.fi/en/events/event/9B07E92B29795833DC176AE034874414/Helsinki_Day_on_Sitratori_Square_joy_pleasure_and_fun_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kokoonnutaan yhteen juhlimaan 475 vuotta täyttävää kotikaupunkiamme. Luvassa on sirkustunnelmaa: hauskoja temppuja, hattaraa ja klovneja!</p><p>Juhlitaan Helsinkiä sateesta huolimatta!  <br>Suuri osa ohjelmasta siirtyy Kanneltalon sisätiloihin. Hattaraa ja sirkushuvia tarjoillaan Sitratorilla. Tervetuloa!</p><p>Blind Gut Companyn sirkustaiteilijat viihdyttävät meitä urakalla ja me muut voimme nauttia hattarasta, musiikista ja käsillä tekemisestä ilman huolen häivää. Illan aikana Sitratori ja Kanneltalo täyttyvät pikkuklovneista, kun kasvomaalaajat loihtivat sirkusaiheiset ilmeet ja klovninnenät perheen pienimille. Tapahtumassa juhlistetaan myös Sitratorin uutta vehreää keidasta.</p><p>Tapahtuman juontaa näyttelijä <b>Minna Kivelä.</b></p><p><b>OHJELMA:</b></p><p><b>PERUTTU sateen vuoksi: klo 14–16 Kirjojen Kannelmäki -kirjakävely</b><br>Miltä Kantsu näyttää kirjallisuudessa – tule kirjalliselle kävelylle Kantsuun. Voit lainata kirjastosta kävelyn kirjat.</p><p><b>14-18 Korupaja</b><br>Punottuja rannekoruja ja pienemmille lapsille puuhelmi-rannekoruja.</p><p><b>klo 14.30–16.15 Flowtaiteen lajikokeilu - Ulkona</b><br>Come flow with us! Työpajassa vannetanssin ammattilaiset antavat neuvoja flowtaiteeseen kuuluvien vannetanssivanteiden kanssa temppuiluun matalalla kynnyksellä. Ota mukaan kevyeen liikuntaan sopivat vaatteet. Toteuttaja Belenos studio, vannetanssi.fi</p><p><b>14.30–16.30 Pop-Up D-asema Kannelmäki - Rauhan paikka</b></p><p><b>klo 16–18 Kukkabuffet</b><br>Väriloistoa tulviva Kukkabuffet on katettu aidoilla kukilla. Kukkabistron virkistävä menu tarjoilee värikkäitä leikkokukkia, vehreitä koristeita ja ripauksen kimalletta. Ilahduta kukkakoristeilla itseäsi tai anna lahjaksi ystävälle! Tapahtumassa hyödynnetään aina sesongin kukkia sekä hävikkikukkia saatavuuden mukaan. Työpajan toteuttaa Hupsansaa.</p><p><b>klo 16–17.30 Sitratorin kaupunkikeitaan avajaiset ja muraalikierros  - Ulkona</b></p><p><b>klo 16–19 ACTION-RATA </b><br>Tule pelastamaan Helsingin karkit! Suorita huikea tehtävärata, jossa kohtaat vesipyssytaistelun, lusikkapingiksen, kuppitornit, lattia on laavaa -haasteen ja paljon muuta jännää. Uskallatko ottaa haasteen vastaan? Järjestäjänä Nuorisopalvelut.</p><p><b>klo 16–19.30 Kasvomaalausta</b> <br>Perheen pienimmät saavat itselleen upean sirkusilmeen. Toteuttaja Lilla-Millan Juhlat.</p><p><b>klo 16-18.30 Naamiotyöpaja</b><br>House of New Theatren eli HNT:n työpajassa pääset luomaan oman ainutlaatuisen Kannelmäki-naamiosi. HNT:n upeat opiskelijat vetävät hauskoja ja mukaansatempaavia improleikkejä, tervetuloa mukaan! Et tarvitse aiempaa näyttelijän kokemusta. <br> <br><b>klo 16–18 Huudeilla: Red Nose Company & FiBO – Suomalainen barokkiorkesteri</b><br>Huudeilla ovat myös Red Nose Companyn klovnit ja Suomalaisen barokkiorkesterin aluemuusikot, jotka kohtaavat, ilahduttavat ja yllättävät juhlakansan keskellä.</p><p><b>klo 16.30–17 Back 2 the Future -työpaja</b></p><p><b>klo 18–18.45 Back 2 the Future -konsertti</b><br>Tässä live-musiikin, tanssin, laulun, tarinankerronan, räppäämisen ja freestylen hullunmyllyssä yleisö pääsee osallistumaan konsertin kulkuun ja hyppäämään mukaan rytmin vietäväksi. Matka alkaa 70-luvun New Yorkista ja päätyy 80-luvun Chicagon ja vuosituhannen vaihteen Pariisin kautta tulevaisuuteen!<br>Esiintyjät: Simeoni Juoperi, Elias Niskanen, Linda Ilves, Joose Kyyrö, Arttu Rintakumpu</p><p><b>klo 17 ja klo 19  - Sitratorilla<br>Blind Gut Company: Viihdy! Viihdy! Viihdy! –  halpahintaista viihdettä kovalla pöhinällä!</b><br>Viihdy! Viihdy! Viihdy! -esitys tuo narriperinteen nykypäivään! Tule markkinakojulle kokemaan unohtumattomia sirkuselämyksiä! Kaupan on niin ammattiviihdyttäjien esityksiä kuin omille some-tileille soveltuvia sisältöjä, ja halvalla lähtee, sillä esiintyjät maksavat ostoksista asiakkaille!<br>Viihdyttäjät: Inga Björn, Tuomas Vuorinen, Ira Oinonen, Jere Virta<br>Kesto: 30 minuuttia</p><p>Yhteistyössä: Kanneltalo, Nuorisopalvelut, Kannelmäen kirjasto, Helsingin tapahtumasäätiö, D-asema Kannelmäki, Helsingin aikuissosiaalityö ja Kaupunkiympäristön toimiala, Sibelius-Akatemian Global Music -osasto, FiBO - Suomalainen barokkiorkesteri, Red Nose Company ja House of New Theatre</p>",
                "sv": "<p>Vi samlas för att fira vår hemstad som fyller 475 år. Cirkusstämning utlovas: roliga trick, spunnet socker och clowner!</p><p>Låt oss fira Helsingfors trots regnet!<br>En stor del av programmet kommer att flytta inomhus till Gamlasgården. Spunnet socker och cirkuskonst serveras på Cittertorget. Välkommen!</p><p>Blind Gut Companys cirkusartister underhåller oss så det står härliga till, och vi andra kan njuta av spunnet socker, musik och att skapa med händerna utan ett problem i världen. Under kvällen fylls Gamlasgården av små clowner, när ansiktsmålare ger familjens minstingar clownnäsor och ansiktsmålningar med cirkustema. Vid evenemanget firas också den nya grönskande oasen på Cittertorget.</p><p>Programledare för evenemanget är skådespelaren <b>Minna Kivelä.</b></p><p><b>PROGRAM:</b></p><p><b>kl. 14.30–16.15 Prova på flowkonst</b><br>Come flow with us! I verkstaden har du möjlighet att på egen hand prova på olika former av flowkonst, såsom tunnband och poi. Ta med kläder som lämpar sig för lätt motion. Genomförs av Belenos studio, vannetanssi.fi.</p><p><b>kl. 14–18 Smyckesverkstad</b><br>Flätade armband och armband av träpärlor för yngre barn.</p><p><b>kl. 16–18 Blombuffé</b> <br>En blombuffé som svämmar över av färgprakt är dukad med äkta blommor. Den uppfriskande menyn i blombistron serverar färgglada snittblommor, grönskande dekorationer och en gnutta glitter. Gläd dig själv med blomsterdekorationer eller ge bort som gåva till en vän! På evenemanget utnyttjas alltid säsongens blommor och svinnblommor enligt tillgång. Verkstaden genomförs av Hupsansaa.</p><p><b>kl. 16–19.30 Ansiktsmålning</b> <br>Familjens minsta får ett strålande cirkusutseende. Genomförs av Lilla-Miljan Juhlat.</p><p><b>kl. 16–18: Huudeilla: Red Nose Company & FiBO - Finländska barockorkestern</b><br>Också Red Nose Companys clowner och Finländska barockorkesterns regionmusiker kommer inom ramarna för projektet Huudeilla för att möta, glädja och överraska besökarna.</p><p><b>kl. 16.30–17 Verkstaden Back 2 the Future</b></p><p><b>kl. 18–18.45 Konserten Back 2 the Future</b><br>I den här villervallan av livemusik, dans, sång, berättande, rappande och freestyle får publiken delta i konsertens gång och låta sig hänföras av rytmerna. Resan börjar i 70-talets New York samt går via 80-talets Chicago och millennieskiftets Paris in i framtiden!<br>På scenen: Simeoni Juoperi, Elias Niskanen, Linda Ilves, Joose Kyyrö, Arttu Rintakumpu</p><p><b>kl. 17 och kl. 19<br>Blind Gut company: Viihdy! Viihdy! Viihdy! – simpel underhållning med buller och bång!</b><br>Föreställningen Viihdy! Viihdy! Viihdy! (Trivs! Trivs! Trivs!) tar narrtraditionen till nutiden! Kom till marknadsståndet för oförglömliga cirkusupplevelser! Såväl föreställningar av yrkesunderhållare som innehåll för dina egna sociala mediekonton är till salu, och det billigt, eftersom de som uppträder betalar inköpen till kunderna!<br>Underhållare: Inga Björn, Tuomas Vuorinen, Ira Oinonen, Jere Virta<br>Längd: 30 minuter</p><p>I samarbete: Gamlasgården, Ungdomstjänsterna, Gamlas bibliotek, Helsingfors evenemangsstiftelse, D-asema Kannelmäki, Helsingfors vuxensocialarbete och stadsmiljösektor, Sibelius-Akademins avdelning Global music, FiBO - Finländska barockorkestern, Red Nose Company och House of New Theatre</p>",
                "en": "<p>We come together to celebrate the 475th anniversary of our home city. Come and enjoy the circus atmosphere: fun tricks, candy floss and clowns!</p><p>Let’s celebrate Helsinki!   <br>Most of the programs will be held indoors due to the rain. Cotton candy and Blind Gut Company’s circus performance will be served at Sitratori square.   <br>You are warmly welcome!</p><p>The circus performers of Blind Gut Company will entertain us while we enjoy eating candy floss, listening to music and doing crafts without a care in the world. The evening will fill the square with little clowns, when face painters design circus-themed looks and clown noses for the youngest in the family. The event is also a celebration for the new green oasis of Sitratori Square.</p><p>The event is hosted by actress <b>Minna Kivelä.</b></p><p>In case of bad weather, the music programme and workshops will be held in Kanneltalo's lobby.</p><p><b>PROGRAMME:</b></p><p><b>CANCELLED due the rain: 14.00–16.00 Kirjojen Kannelmäki – ‘Kannelmäki in literature’ walking tour </b></p><p><b>14–18 Bracelet workshop </b><br>Braided bracelets  and wooden bead bracelets for the little ones.</p><p><b>14.30-16.30 Pop-up D-station Kannelmäki – A Place for Peace </b></p><p><b>14.30–16.15 Experiment with Flow Art  - OUTDOORS</b><br>Come flow with us! This workshop lets you experiment with different forms of flow art, such as hooping and poi spinning. Wear clothing suitable for light exercise. Implemented by Belenos studio, vannetanssi.fi</p><p><b>16-17.30 Opening of the Sitratori summer oasis and a mural warking tour - Outdoors </b></p><p><b>16.00–18.00 Flower Buffet </b><br>The lush and colourful Flower Buffet is served! The fresh menu of the flower ‘bistro’ offers bright cut flowers, lush decorations and a sprinkle of sparkle. Delight yourself or your friends with beautiful real flower decor! The event always utilises seasonal flowers and surplus flowers based on availability. The workshop is hosted by Hupsansaa.</p><p><b>16-18.30 Masquarade Workshop </b></p><p><b>16.00–19.30 Face painting</b> <br>The youngest in the family will get fun circus looks. Implemented by Lilla-Millan Juhlat.</p><p><b>16.00–18.00 Huudeilla – In the ‘hood: Red Nose Company & FiBO – Finnish Baroque Orchestra</b><br>The clowns of the Red Nose Company will also be in the ‘hood, along with the regional musicians of the Finnish Baroque Orchestra, meeting with, delighting and surprising the visitors.</p><p><b>16.30–17.00 Back 2 the Future workshop</b></p><p><b>18.00–18.45 Back 2 the Future concert</b><br>In this carnival of live music, dance, song, storytelling, rapping and freestyle, the audience will have the chance to alter the flow of the concert and jump into the rhythm. The journey will start from 1970s New York, move to Chicago of the 1980s and to Paris in the turn of the millennium, ending up in the future!<br>Performers: Simeoni Juoperi, Elias Niskanen, Linda Ilves, Joose Kyyrö, Arttu Rintakumpu</p><p><b>At 17.00 and 19.00 @Sitratori Square<br>Blind Gut Company: Fun! Fun! Fun! – cheap entertainment at a full run!</b><br>Fun! Fun! Fun! performance by modern-day jesters! Visit the market stand for unforgettable circus experiences! You can choose from performances by professional entertainers or content that would be perfect for your own social media channels – and everything is a bargain, as the performers will pay the customers for their purchases!<br>Entertainers: Inga Björn, Tuomas Vuorinen, Ira Oinonen, Jere Virta<br>Duration: 30 minutes</p><p>In cooperation with: Cultural Centre Kanneltalo, Youth Services, Kannelmäki Library, Helsinki Events Foundation, D-asema Kannelmäki, Helsinki Adult Social Work and Urban Environment Division, Global Music department of the Sibelius Academy, FiBO – Finnish Baroque Orchestra, Red Nose Company and House of New Theatre</p>"
            },
            "name": {
                "fi": "Helsinki-päivä Sitratorilla – tule, naura, nauti ja viihdy!",
                "sv": "Helsingforsdagen på Cittertorget – kom, skratta, njut och trivs!",
                "en": "Helsinki Day on Sitratori Square – joy, pleasure and fun!"
            },
            "short_description": {
                "fi": "Kokoonnutaan yhteen juhlimaan 475 vuotta täyttävää kotikaupunkiamme. Luvassa on sirkustunnelmaa: hauskoja temppuja, hattaraa ja klovneja!",
                "sv": "Vi samlas för att fira vår hemstad som fyller 475 år. Cirkusstämning utlovas: roliga trick, spunnet socker och clowner!",
                "en": "We come together to celebrate the 475th anniversary of our home city. Come and enjoy the circus atmosphere: fun tricks, candy floss and clowns!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65774/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22tcna",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [],
            "images": [
                {
                    "id": 1490210,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-12-19T13:38:22.730727Z",
                    "last_modified_time": "2024-12-19T13:38:22.730786Z",
                    "name": "rumpuja soittava hirvi",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/7a641321-18e9-4aef-b659-b5c6fa27bb9d.png",
                    "cropping": "257,0,823,566",
                    "photographer_name": "",
                    "alt_text": "Svengaava hirvi",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490210/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-05-28T10:50:40.384100Z",
            "last_modified_time": "2025-06-12T08:57:38.562843Z",
            "date_published": null,
            "start_time": "2025-06-24T11:00:00Z",
            "end_time": "2025-06-24T11: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Lastenmusiikkiorkesteri Svengaavat hirvet soittavat tuttuja lastenlauluja raikkaalla otteella. Tässä konsertissa lapset pääsevät itse osallistumaan laulamalla, tanssimalla ja soittamalla laulujen mukana. Kirjaston musiikkipedagogit Lauri ja Sakari ohjaavat lapsia leikkien ja laulujen avulla rytmin, melodian ja harmonian maailmaan.&nbsp;</p><p>Tervetuloa konserttiin Sellon kesäterassille klo 14!</p><p><br></p><p>#konsertti #musiikki </p>"
            },
            "name": {
                "fi": "Lastenmusiikkiorkesteri Svengaavat hirvet"
            },
            "short_description": {
                "fi": "Lastenmusiikkiorkesteri Svengaavat hirvet soittavat tuttuja lastenlauluja raikkaalla otteella."
            },
            "location_extra_info": {
                "fi": "Kesäterassi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tcna/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66619",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1001174,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-12T08:13:57.270285Z",
                    "last_modified_time": "2025-06-12T08:13:57.270301Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775117.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1001174/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-12T08:13:57.034321Z",
            "last_modified_time": "2025-06-12T08:13:57.562884Z",
            "date_published": null,
            "start_time": "2025-08-14T12:00:00Z",
            "end_time": "2025-08-14T17: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/985BEBF0CDE330BA5A2AF210181174A5/OAF_Outsider_Art_Festival",
                "sv": "http://www.caisa.fi/sv/evenemang/event/985BEBF0CDE330BA5A2AF210181174A5/OAF_Outsider_Art_Festival",
                "en": "http://www.caisa.fi/en/events/event/985BEBF0CDE330BA5A2AF210181174A5/OAF_Outsider_Art_Festival"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Outsider Art Festivalin avajaisia juhlistetaan 14.8.2025 Taiteiden yönä Elannon Leipätehtaan alueella Kulttuurikeskus Caisassa ja Tekstin talolla.</p><p>Leipätehtaalle rakentuu avajaisviikonloppuna elämyksellinen tapahtumakokonaisuus Outsider Art Festivalin, Kulttuurikeskus Caisan ja Tekstin talon yhteistyönä.<br> <br>Caisassa nähdään mm. outsider-taiteen taidenäyttely, keraamisia veistoksia ja noisea yhdistävä installaatio, performansseja ja musiikkiesityksiä. Tekstin talolla OAF järjestää yhdessä WSOY:n kanssa runostagen.</p><p><b>Avajaisten ohjelma Kulttuurikeskus Caisalla:</b></p><p><b>15.00–15.45 Ryhmänäyttelyn avajaiset Caisan galleriassa</b><br>Outsider-taiteen tuoreimpia virtauksia esittelevän ryhmänäyttelyn teema on tulevaisuus. Näyttely on avoinna koko illan ja jatkuu lauantaihin 23.8. asti.</p><p><b>16.00–21.00 Ksenia Voy Kheninen & Zherbin – Plants -installaatio Caisan takahuonetilassa</b><br>Taiteilijaduon installaatio Plants on keinotekoisesti ääntelevä puutarha, jossa yhdistyy noise ja veistokset. Installaatio on koettavissa myös perjantaina 15.8. 16–21.</p><p><b>18.00–20.00 RÄKÄlicious, Jussi P Niinku Pekka & Vähäsähkö, Milla Heart</b><br>Sali</p><p>I RÄKÄlicious on performatiivinen pop-punk-duo, jonka muodostavat videotaiteilija Sandra Marins ja äänitaiteilija Mai Pesonen. RÄKÄliciousin ydin on tee-se-itse-toiminnassa ja queer-kokemusta korostavassa, hieman vinksahtaneessa lähestymistavassa.</p><p>Jussi P Niinku Pekka & Vähäsähkö-duo esittää suomenkielistä kokeellista aivofolkia. Jussi P on tehnyt aivofolkia vuodesta 2017 ja tätä ennen muuta omaa musiikkia jo vuodesta 2006 lähtien. Vähäsähkö eli Harri Vähänissi tekee noisea, ambientia, ääniä ja rytmejä itse rakentamillaan elektronisilla soittimilla, luoden rikkaan äänimaailman ympäröimään Jussi P:n laulua ja akustista kitaraa.</p><p>Milla Heart on helsinkiläinen, suomenkielistä dreamypop-musiikkia esittävä lauluntekijä. Millan musiikissa on toivoa, iloa ja rakkautta. Milla haluaa vaikuttaa musiikillaan positiivisesti ja saada ihmiset näkemään itsensä täydellisinä kaikkine virheineen.</p><p>Illan aikana nähdään myös OAF:n esittävän taiteen ohjelmasta Pekka Luodeslammen ja LIPGLOSSBOYn performanssit.</p><p><b>Avajaisten ohjelma Tekstin talolla:</b></p><p><b>20.15–22.00 OAF Runostage permantosalissa:</b><br>OAF:n ja WSOY:n yhteinen runostage tutkii millaista on kirjallisuuden ulkopuolinen kirjallisuus. Runostagella kuullaan OAF:n kirjallisuuden ohjelman taiteilijoiden tekstejä heidän itsensä lukeminaan.</p><p>Taiteiden yön ohjelma on ilmainen!</p>",
                "sv": "<p>Outsider Art Festival öppnas den 14 augusti 2025 under Konstens natt på Elantos Leipätehdas, Kulturcentret Caisa och Textens hus.</p><p>Under öppningshelgen byggs en evenemangshelhet fylld av upplevelser på Leipätehdas som ett samarbete mellan Outsider Art Festival, Kulturcentret Caisa och Textens hus.<br> <br>På Caisa får vi till exempel se en utställning med outsider-konst, en installation som kombinerar keramikskulpturer och noise, performanceföreställningar och musikframträdanden. OAF ordnar runostage på Textens hus tillsammans med WSOY.</p><p><b>Program på Kulturcentret Caisa under öppningen:</b></p><p><b>15.00–15.45 Grupputställningen öppnas i Caisas galleri</b><br>Outsider-konstens senaste strömningar visas i en grupputställning på temat framtiden. Utställningen är öppen hela kvällen och pågår till lördagen den 23 augusti.</p><p><b>16.00–21.00 Ksenia Voy Kheninen & Zherbin – Plants-installation i Caisas bakre rum</b><br>Konstnärsduons installation Plats är en trädgård med konstgjorda ljud, som kombinerar noise med skulpturer. Du kan uppleva installationen även fredagen den 15 augusti kl. 16–21.</p><p><b>18.00–20.00 RÄKÄlicious, Jussi P Niinku Pekka & Vähäsähkö, Milla Heart-konsert i Caisas sal</b><br>I kvällens dukning ingår dreamypop som andas positivitet, performativ pop-punk och folk som lyfter fram queer-upplevelser samt hjärnfolk som kombinerar noise och ambient på ett experimentellt sätt.</p><p>Under kvällen får vi också se performanceföreställningar av Pekka Luodeslampi och LIPGLOSSBOY från OAF:s scenkonstprogram.</p><p><b>Öppningens program på Textens hus:</p><p>20.15–22.00 OAF Runostage i parkettsalen.</b></p><p>OAF:s och WSOY:s gemensamma runostage utforskar hur det är att vara litteratur utanför litteraturen. Under Runostage får vi höra texter av konstnärer som deltar i OAF:s litteraturprogram, lästa av dem själva.</p><p>Programmet under Konstens natt är gratis!</p>",
                "en": "<p>The opening of OAF 2025 will be celebrated on the Night of the Arts 14.8.2025!</p><p>The place is located on the site of the old Elanto Bread Factory block, at the Cultural Centre Caisa and the House of Text.</p><p>On the opening weekend, Leipätehdas will be the venue for an experiential event, a collaboration between Outsider Art Festival, Cultural Centre Caisa and the House of Text.</p><p>At Caisa, you can see an outsider art exhibition, various performances and music acts and an installation combining ceramic sculptures and noise. At The House of Text, OAF will organize a poetry stage together with the publisher WSOY.</p><p><b>Opening Program at Cultural Centre Caisa:</p><p>3.00 PM – 3.45 PM Opening of the group exhibition at Caisa’s gallery.</b><br>The theme for the group exhibition showcasing the latest currents of outsider art is Future. The exhibition will remain open all evening and continues until Saturday 23rd of August.</p><p><b>4.00 PM – 9.00 PM Ksenia Voy Kheninen & Zherbin – Plants -installation in Caisa’s backstage area.</b><br>The installation of the artist duo, Plants is an artificial sounding garder, which combines noise and sculptures. Installation can be experienced also on Friday 15th of August from 4.00 PM to 9.00 PM.</p><p><b>6.00 PM – 8.00 PM RÄKÄlicious, Jussi P Niinku Pekka & Vähäsähkö, Milla Heart -concert at Caisa Hall.</b><br>The musical offerings include dreamy pop oozing of positivity, performative pop-punk emphasizing queer experience and aivofolk which is experimental combination of folk, noise and ambience.<br>Throughout the evening, there will be performances by OAF performance art artists Pekka Luodeslampi and LIPGLOSSBOY.</p><p><b>Opening Program at the House of Text:</p><p>8.15 PM – 10.00 PM: OAF Poetry Stage at Permantosali.</b></p><p>A joint poetry stage by OAF and WSOY, exploring what “literature beyond literature” could mean. At Poetry Stage artists from the OAF literature program read their own texts to the audience.</p><p>All Night of the Arts events are free of charge.</p>"
            },
            "name": {
                "fi": "OAF – Outsider Art Festival – Taiteiden yö Caisassa",
                "sv": "OAF – Outsider Art Festival – Konstens natt på Caisa",
                "en": "OAF – Outsider Art Festival – The Night of Arts"
            },
            "short_description": {
                "fi": "Outsider Art Festivalin avajaisia juhlistetaan 14.8.2025 Taiteiden yönä Elannon Leipätehtaan alueella Kulttuurikeskus Caisassa ja Tekstin talolla.",
                "sv": "Outsider Art Festival öppnas den 14 augusti 2025 under Konstens natt på Elantos Leipätehdas, Kulturcentret Caisa och Textens hus.",
                "en": "The opening of OAF 2025 will be celebrated on the Night of the Arts 14.8.2025!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66619/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22tcyi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490258,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-05-22T13:32:39.433497Z",
                    "last_modified_time": "2024-05-22T13:32:39.433529Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Uke_Park_Jam02.jpg",
                    "cropping": "0,18,850,868",
                    "photographer_name": "",
                    "alt_text": "Ukulele puistojamit",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490258/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-06T07:09:15.319308Z",
            "last_modified_time": "2025-06-12T08:08:39.588844Z",
            "date_published": "2025-05-06T06:00:07.318000Z",
            "start_time": "2025-06-12T14:00:00Z",
            "end_time": "2025-06-12T15: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa mukaan soittamaan kesäisiä lauluja ukulelella, kitaralla tai muulla akustisella soittimella.  Nuotit annetaan jameissa. Vetäjinä musiikkipedagogit Sakari Heikka ja Lauri Iljin.</p><p>SATEISEN SÄÄN TAKIA SIIRRETTY TAPIOLAN KIRJASTON HEIKKI TAPAHTUMATILAAN</p><p><strong>#ukulele #ukulelejamit #yhteislaulu #yhteislaulut</strong></p>",
                "en": "<p>Welcome to play summer songs on the ukulele, guitar or any other acoustic instrument or just sing together. You will get the sheet music at the event. The event is led by music pedagogues Sakari Heikka and Lauri Iljin.</p><p>DUE TO RAINY WEATHER THE JAM IS MOVED TO TAPIOLA LIBRARY, EVENT SPACE HEIKKI</p><p>#ukulele #ukulelejam #singalong</p>"
            },
            "name": {
                "fi": "Ukulele puistojamit SIIRRETTY SISÄTILOIHIN",
                "en": "Ukulele Park Jam MOVED TO TAPIOLA LIBRARY"
            },
            "short_description": {
                "fi": "Soitetaan ja lauletaan yhdessä kesäisiä lauluja ukulelella Tapiolan kirjastossa. ",
                "en": "Let's begin the summer by playing and singing summer songs together  in Tapiola Library.  "
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tcyi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:aglu4xm2yy",
            "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/kultus:17/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "10",
                        "sv": "10",
                        "en": "10"
                    },
                    "info_url": null,
                    "description": {
                        "fi": "Vain korttimaksu",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:40/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:58/?format=api"
                }
            ],
            "created_time": "2025-06-08T07:07:26.837354Z",
            "last_modified_time": "2025-06-12T08:07:10.000129Z",
            "date_published": null,
            "start_time": "2025-06-12T08:07:09.463000Z",
            "end_time": "2200-06-21T06: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": "2199-12-31T16:30:00+02:00",
            "enrolment_end_time": "2200-06-19T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://example.org/testi/",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Pitkä kuvaus</p>\n",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Testitapahtuman nimi",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Lyhyt kuvaus",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aglu4xm2yy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22tdei",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490259,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-06-04T06:51:28.774422Z",
                    "last_modified_time": "2025-06-04T06:51:28.774481Z",
                    "name": "Kuva: Heidi Piiroinen",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/f93c1195-30ae-4b5c-b566-d0f2fcda2da1.png",
                    "cropping": "150,0,757,607",
                    "photographer_name": "Heidi Piiroinen",
                    "alt_text": "Kuvassa on pinkki auto, jonka ikkunasta katsoo kirjailija Miia Saari. Auton ovessa lukee teksti\"Ken tästä käy saa kaiken toivon heittää\"",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490259/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-04T07:04:13.504246Z",
            "last_modified_time": "2025-06-12T06:36:54.709101Z",
            "date_published": null,
            "start_time": "2025-09-04T15:00:00Z",
            "end_time": "2025-09-04T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "Näin potkut jalostuivat&nbsp;kehutuksi komediaksi/Nämä asiat ensimmäinen vuoteni kirjailijana opetti<p><br></p><p>Miia Saari jalosti ahdistavat yt-kokemuksensa hulvattomaksi ja yllättäviä käänteitä sisältäväksi tragikomediaksi esikoiskirjassaan Toimenpidepäivät (Enostone 2024). Saari,&nbsp;entinen Länsiväylänkin toimittaja, kertoo, miten alun perin dekkariksi suunniteltu tarina muuttui komediaksi ja mitä kaikkea kiinnostavaa hänelle on kirjailijan uransa alkumetreillä tapahtunut.&nbsp;</p><p>Kirjassa on myös dekkarimaisia piirteitä ja se on ajankohtainen myös tekoälyyn liittyvän juonikuvion vuoksi. Kirjan yksi juonilinja kertoo kirjan päähenkilön Tiia Rautasen Roosa-äidin vaikeuksista hoivakodissa.</p><p>Saari opiskeli kirjan juoneen liittyvän sarjakuvan piirtämistä Aalto-yliopiston kaikille avoimella kurssilla.</p><p>\"En ollut koskaan ennen piirtänyt oikein mitään, saati sitten sarjakuvaa, mutta ei ollut kirjani päähenkilökään. Opettajani Matti Hagelberg oli superkannustava ja antoi kurssista minulle arvosanaksi 3/5. Olen siitä yhtä ylpeä kuin kirjan kirjoittamisesta\", Saari sanoo.</p><p>Lue lisää Miia Saaren tarinasta ja hänen kirjastaan osoitteessa<a href=\"&nbsp;sainpotkut.fi\">&nbsp;sainpotkut.fi</a></p><p>Kuva: Heidi Piiroinen</p>"
            },
            "name": {
                "fi": "Kirjailijavieraana Miia Saari ja Toimenpidepäivät"
            },
            "short_description": {
                "fi": "Tervetuloa kuuntelemaan Miia Saaren kirjailijavierailu Tapiolan kirjastoon 4.9. klo 18.00 alkaen!"
            },
            "location_extra_info": {
                "fi": "Kaija"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tdei/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22tfji",
            "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:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tdse/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22teai/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22teoa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22te3u/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490260,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-11T12:02:13.309605Z",
                    "last_modified_time": "2025-06-11T12:02:13.309619Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/13b0cdc5-d4f6-4c5b-812c-5e77f2d11a0d.jpg",
                    "cropping": "216,0,1508,1293",
                    "photographer_name": "",
                    "alt_text": "kuvituskuva, jossa kirjakerhoon valitut kirjat ja kahvikuppi",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490260/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-11T12:33:27.534069Z",
            "last_modified_time": "2025-06-12T06:30:29.579201Z",
            "date_published": null,
            "start_time": "2025-09-09T09:00:00Z",
            "end_time": "2025-12-16T11: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa hyvän mielen kirjakerhoon keskustelemaan kirjoista rennolla meiningillä. Jokaiselle kerralle on valittu kevyempi, hyvän mielen kirja, josta keskustelemme. Vaikket ehtisi tai haluaisi lukea kyseistä kirjaa, voit silti osallistua.</p><p>Tapaamme Lippulaivan kirjaston Salongissa kultareunaisten kuppien äärellä tiistaisin 9.9., 7.10., 4.11. ja 16.12. klo 12-13. Ei ennakkoilmoittautumista.</p><p><br></p><p>9.9. Ann-Christin Antell: Puuvillatehtaan varjossa</p><p>7.10. Maija Kajanto: Korvapuustikesä</p><p>4.11. Liina Putkonen: Unohdettujen unelmien kirjasto</p><p>16.12. Maeve Binchy: Kastanjakadun väki</p>"
            },
            "name": {
                "fi": "Hyvän mielen kirjakerho Lippulaivan kirjastossa"
            },
            "short_description": {
                "fi": "Tervetuloa hyvän mielen kirjakerhoon keskustelemaan kirjoista rennolla meiningillä. Jokaiselle kerralle on valittu kevyempi, hyvän mielen kirja."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22tfji/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}