Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 29172,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=13",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=11"
    },
    "data": [
        {
            "id": "kulke:69259",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384980,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T12:13:54.231985Z",
                    "last_modified_time": "2026-06-05T12:13:54.231999Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793582.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384980/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-05T12:13:54.038146Z",
            "last_modified_time": "2026-06-05T12:13:54.481053Z",
            "date_published": null,
            "start_time": "2026-08-25T06:00:00Z",
            "end_time": "2026-08-25T06: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.vuotalo.fi/fi/tapahtumat/event/9A2A674852EAE4B52C307D05BD1508AC/BUU-klubben_LIVE",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/9A2A674852EAE4B52C307D05BD1508AC/BUU-klubben_LIVE",
                "en": "http://www.vuotalo.fi/en/events/event/9A2A674852EAE4B52C307D05BD1508AC/BUU-klubben_LIVE"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "BUU-klubben LIVE",
                "sv": "BUU-klubben LIVE",
                "en": "BUU-klubben LIVE"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Rakastettu ruotsinkielinen lastenohjelma BUU-klubben livenä Vuotalossa! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!",
                "sv": "Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!",
                "en": "Beloved Swedish-language children's TV-show BUU-klubben now live at Vuosaari House! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!"
            },
            "description": {
                "fi": "<p>Rakastettu ruotsinkielinen lastenohjelma BUU-klubben livenä Vuotalossa! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>Tapahtuma on ruotsinkielinen, ja suunnattu päiväkoti- ja esikouluikäisille lapsille sekä lapsiperheille.</p><p>Ilmoittautumislinkit (ruotsiksi):<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Ilmoittautuminen, maanantai 24.8. klo 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp  \">Ilmoittautuminen, tiistai 25.8. klo 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Ilmoittautuminen, tiistai 25.8. klo 10.30</u></a><br>Tapahtumiin voi ilmoittaa päiväkoti- tai esikouluryhmän, tai pienemmänkin kokoonpanon.</p><p><b>Esittelyteksti ruotsiksi:</b></p><p><span lang=\"sv\">BUU-klubben besöker huvudstadsregionen med sin show under vecka 35 (24-28.8).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan – hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!</p><p>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill.</p><p>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat.</p>",
                "sv": "<p>Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>Evenemanget hålls på svenska och är riktade till barn i daghems- och förskole-åldern samt barnfamiljer.</p><p>Bokningslänkar:<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Bokning, måndag 24.8 kl. 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp  \">Bokning, tisdag 25.8 kl. 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Bokning, tisdag 25.8 kl. 10.30</u></a><br>Man kan anmäla en daghem- eller förskolegrupp, eller en mindre grupp, till evenemangen.</p><p>**</p><p>BUU-klubben besöker huvudstadsregionen med sin show under vecka 35 (24-28.8).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan – hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!</p><p>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill.</p><p>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat.</p>",
                "en": "<p>Beloved Swedish-language children's TV-show BUU-klubben now live at Vuosaari House! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>The event is held in Swedish and is targeted towards daycare and preschool-aged children as well as families.</p><p>Booking links (in Swedish):<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Booking, Monday 24 August 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp  \">Booking, tuesday 25 August 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Booking, Tuesday 25 August 10.30</u></a><br>You can register a daycare or preschool group, or a smaller group.</p><p><b>About the show (in Swedish):</b></p><p><span lang=\"sv\">BUU-klubben besöker huvudstadsregionen med sin show under vecka 35 (24-28.8).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan – hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!</p><p>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill.</p><p>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat.</span></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69259/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69258",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384979,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T12:13:53.591444Z",
                    "last_modified_time": "2026-06-05T12:13:53.591461Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793581.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384979/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-05T11:13:42.128455Z",
            "last_modified_time": "2026-06-05T12:13:53.836763Z",
            "date_published": null,
            "start_time": "2026-08-24T15:00:00Z",
            "end_time": "2026-08-24T15: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.vuotalo.fi/fi/tapahtumat/event/84E3DECCFA849783702A67C2E0CC3648/BUU-klubben_LIVE",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/84E3DECCFA849783702A67C2E0CC3648/BUU-klubben_LIVE",
                "en": "http://www.vuotalo.fi/en/events/event/84E3DECCFA849783702A67C2E0CC3648/BUU-klubben_LIVE"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "BUU-klubben LIVE",
                "sv": "BUU-klubben LIVE",
                "en": "BUU-klubben LIVE"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Rakastettu ruotsinkielinen lastenohjelma BUU-klubben livenä Vuotalossa! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!",
                "sv": "Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!",
                "en": "Beloved Swedish-language children's TV-show BUU-klubben now live at Vuosaari House! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!"
            },
            "description": {
                "fi": "<p>Rakastettu ruotsinkielinen lastenohjelma BUU-klubben livenä Vuotalossa! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>Tapahtuma on ruotsinkielinen, ja suunnattu päiväkoti- ja esikouluikäisille lapsille sekä lapsiperheille.</p><p>Ilmoittautumislinkit (ruotsiksi):<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Ilmoittautuminen, maanantai 24.8. klo 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp  \">Ilmoittautuminen, tiistai 25.8. klo 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Ilmoittautuminen, tiistai 25.8. klo 10.30</u></a><br>Tapahtumiin voi ilmoittaa päiväkoti- tai esikouluryhmän, tai pienemmänkin kokoonpanon.</p><p><b>Esittelyteksti ruotsiksi:</b></p><p><span lang=\"sv\">BUU-klubben besöker huvudstadsregionen med sin show under vecka 35 (24-28.8).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan – hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!</p><p>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill.</p><p>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat.</p>",
                "sv": "<p>Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>Evenemanget hålls på svenska och är riktade till barn i daghems- och förskole-åldern samt barnfamiljer.</p><p>Bokningslänkar:<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Bokning, måndag 24.8 kl. 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp  \">Bokning, tisdag 25.8 kl. 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Bokning, tisdag 25.8 kl. 10.30</u></a><br>Man kan anmäla en daghem- eller förskolegrupp, eller en mindre grupp, till evenemangen.</p><p>**</p><p>BUU-klubben besöker huvudstadsregionen med sin show under vecka 35 (24-28.8).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan – hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!</p><p>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill.</p><p>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat.</p>",
                "en": "<p>Beloved Swedish-language children's TV-show BUU-klubben now live at Vuosaari House! / Det älskade svenskspråkiga barnprogrammet BUU-klubben live på Nordhuset!</p><p>The event is held in Swedish and is targeted towards daycare and preschool-aged children as well as families.</p><p>Booking links (in Swedish):<br><u><a href=\"https://yle-lv.creamailer.fi/survey/answer/tfion0rf3hybx\">Booking, Monday 24 August 18.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/olyxoiyeyrucp  \">Booking, tuesday 25 August 9.00</u></a><br><u><a href=\"https://yle-lv.creamailer.fi/survey/ox3akgycvxicj\">Booking, Tuesday 25 August 10.30</u></a><br>You can register a daycare or preschool group, or a smaller group.</p><p><b>About the show (in Swedish):</b></p><p><span lang=\"sv\">BUU-klubben besöker huvudstadsregionen med sin show under vecka 35 (24-28.8).</p><p>BUU-klubbens LIVE show är ett interaktivt program med mycket dans, sång och överraskningar på scenen där barnen får komma med förslag på vad som ska hända. Showen lämpar sig för barn från cirka tre år och upp till förskolan – hoppas ert daghem/ förskola har möjlighet att besöka någon av showerna. Ni är varmt välkomna!</p><p>Showen är gratis och är cirka en halvtimme lång. Efter showen finns också möjlighet att träffa programledarna Malin, Tika, Lisa och Jontti och ta foto om man vill.</p><p>Var snäll och anmäl ert deltagande så att vi vet hur många besökare som kommer. Antalet platser är begränsat.</span></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69258/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agpjo5xsdy",
            "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:16/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u48040010",
            "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/kultus:56/?format=api"
                }
            ],
            "created_time": "2026-06-05T11:06:55.453926Z",
            "last_modified_time": "2026-06-05T11:21:34.117393Z",
            "date_published": null,
            "start_time": "2026-06-10T12:00:00Z",
            "end_time": "2026-06-10T13: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": "2026-06-05T14:10:00+03:00",
            "enrolment_end_time": "2026-06-09T15:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Kulttuuripolku",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kulttuuripolku",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Kulttuuripolku</p>\n",
                "sv": "",
                "en": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agpjo5xsdy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agk2h3lsgq",
            "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:11/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:16/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api"
                }
            ],
            "created_time": "2025-03-17T11:46:42.411966Z",
            "last_modified_time": "2026-06-05T11:21:13.002405Z",
            "date_published": null,
            "start_time": "2026-06-17T08:00:00Z",
            "end_time": "2026-06-17T10: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": "2026-06-05T14:30:00+03:00",
            "enrolment_end_time": "2026-06-16T11:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Test 3",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "aadfadf",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>dfasdfas</p>\n",
                "sv": "",
                "en": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agk2h3lsgq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69255",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384976,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T09:13:41.129140Z",
                    "last_modified_time": "2026-06-05T09:13:41.129155Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793585.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384976/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T09:13:41.002562Z",
            "last_modified_time": "2026-06-05T09:13:41.285962Z",
            "date_published": null,
            "start_time": "2026-06-17",
            "end_time": "2026-08-30",
            "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.stoa.fi/fi/tapahtumat/event/0C2A94B263D2D32105C25E071D706846/Vaihtoehtokaavoja_elonkirjon_puolesta_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/0C2A94B263D2D32105C25E071D706846/Vaihtoehtokaavoja_elonkirjon_puolesta_",
                "en": "http://www.stoa.fi/en/events/event/0C2A94B263D2D32105C25E071D706846/Vaihtoehtokaavoja_elonkirjon_puolesta_"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Vaihtoehtokaavoja elonkirjon puolesta",
                "sv": "Vaihtoehtokaavoja elonkirjon puolesta",
                "en": "Vaihtoehtokaavoja elonkirjon puolesta"
            },
            "provider_contact_info": null,
            "short_description": null,
            "description": {
                "fi": "<p>Kaupungit ja kunnat kaavoittavat ympäri Suomen uusia asuin- ja teollisuusalueita sekä esimerkiksi datakeskuksia luonnon kustannuksella, vaikka lähiluonnon merkitys ihmisen hyvinvoinnille, luonnon monimuotoisuudelle ja ilmastonmuutokseen sopeutumiselle on tutkitusti merkittävä. Monet kaupunkien metsäalueille rakentamista osoittavat kaavat perustuvat vanhentuneisiin lähtökohtiin, eivätkä riittävissä määrin huomioi metsän merkitystä ihmisen ja elonkirjon elinolosuhteiden turvaajana ilmasto- ja ympäristökriisien ajassa. Suuri osa Suomen viimeisistä luonnontilaisisen kaltaisista metsistä sijaitsee kaupungeissa, koska niitä on harvemmin valjastettu metsätalouden käyttöön.</p><p>Elonkirjon kaupunki -hankkeessa tuotamme kaupunkien metsää tuhoavien suunnitelmien rinnalle vaihtoehto, joiden avulla kaupunkimetsät säästyvät rakentamiselta. Hanketta rahoittaa Koneen Säätiön Metsän puolella -aloite. Olemme toteuttaneet kaavaehdotuksia Kuopion Pieneen Neulamäkeen, Helsingin Stansvikiin ja Kumpulaan sekä Lehtivuoreen Lempäälässä – jokainen niistä tiiviissä yhteistyössä paikallisten kanssa. Huolella laadittujen vaihtoehtokaavojen tarkoituksena on vahvistaa asukkaiden toimijuutta kaupunkisuunnittelussa ja suojella lähimetsiä: ne ovat työkalu lähiluonnon puolustamiseen. Kustakin kaavaehdotuksesta järjestetään tiedotustilaisuuksia ja kaavakävelyitä, joissa asukkaat, päättäjät ja suunnittelijat kohtaavat.</p><p>Elonkirjon kaupungin muodostavat arkkitehdit Heljä Nieminen, Seela Pentikäinen, Cecilia Aintila ja Siiri Hänninen. Tuikku Leinonen oli mukana tekemässä Kumpulan vaihtoehtokaavaa. Kaikki valmistuneet vaihtoehtokaavat ja lisää tietoa toiminnasta löydät nettisivuiltamme www.elonkirjonkaupunki.com ja Instagramissa @elonkirjonkaupunki.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69255/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:c38c36eb-45b7-4fa9-a924-447b1d706d23",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46044/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "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/yso:p1235/?format=api"
                }
            ],
            "created_time": "2026-06-05T09:09:23.772488Z",
            "last_modified_time": "2026-06-05T09:09:23.772508Z",
            "date_published": "2026-06-05T08:58:58Z",
            "start_time": "2026-06-05T09:08:00Z",
            "end_time": "2026-06-05T11:08: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,
            "location_extra_info": null,
            "provider": {
                "fi": "Tapahtuman järjestäjä"
            },
            "name": {
                "fi": "testi: #2770 tapahtuman julkaisun epäonnistuminen - sähköpostin sisältö"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lyhyt kuvaus"
            },
            "description": {
                "fi": "<div><p>Pitkä kuvaus</p></div>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:c38c36eb-45b7-4fa9-a924-447b1d706d23/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68636",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384970,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:10.883897Z",
                    "last_modified_time": "2026-06-05T07:14:10.883914Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791327.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384970/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T07:14:10.768262Z",
            "last_modified_time": "2026-06-05T07:14:11.037001Z",
            "date_published": null,
            "start_time": "2026-12-08T16:00:00Z",
            "end_time": "2026-12-08T18: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/14B30DD74891205FDFEA36907D01D609/Big_band_-jamit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/14B30DD74891205FDFEA36907D01D609/Big_band_-jamit",
                "en": "http://www.malmitalo.fi/en/events/event/14B30DD74891205FDFEA36907D01D609/Big_band_-jamit"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Big band -jamit",
                "sv": "Big band -jamit",
                "en": "Big band -jamit"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!"
            },
            "description": {
                "fi": "<p>Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!</p><p>Ilmaiset big band -jamit syyskaudella 2026:<br>ti 6.10. klo 18–20<br>ti 3.11. klo 18–20<br>Ti 8.12. klo 18–20</p><p>House bandien lyhyiden esitysten jälkeen kaikki saksofonisti, trumpetistit, pasunistit, komppisoittajat ja laulajat ovat tervetulleita mukaan musisoimaan! Paikan päältä löytyvät rumpusetti, piano, basso- ja kitaravahvistin, nuottitelineet sekä nuotit. Tuothan muut tarvitsemasi soittimet ja rumpukapulat mukanasi.<br> <br>Jameihin on valikoitu ohjelmistoksi mukavaa ja eri tasoisille soittajille soveltuvaa materiaalia - soitettavat kappaleet valitaan jameissa paikalle saapuvien soittajien mukaan!<br> <br>Kappaleiden nuotteja on mahdollista saada myös pyydettäessä etukäteen nähtäväksi. Laita tästä pyyntö osoitteeseen: info@sointijazzorchestra.com<br> <br>Tule ja ota kaverisikin mukaan musisoimaan yhdessä! Voit saapua paikalle myös vain kuuntelemaan ja nauttimaan big band -musiikista.<br> <br>Kesto: 2 t<br>Vapaa pääsy!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68636/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68635",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384967,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:06.764136Z",
                    "last_modified_time": "2026-06-05T07:14:06.764157Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791325.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384967/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T07:14:06.617965Z",
            "last_modified_time": "2026-06-05T07:14:06.930584Z",
            "date_published": null,
            "start_time": "2026-11-03T16:00:00Z",
            "end_time": "2026-11-03T18: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/668A9FF6B5E2D55BD5620FBE2FB42EBB/Big_band_-jamit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/668A9FF6B5E2D55BD5620FBE2FB42EBB/Big_band_-jamit",
                "en": "http://www.malmitalo.fi/en/events/event/668A9FF6B5E2D55BD5620FBE2FB42EBB/Big_band_-jamit"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Big band -jamit",
                "sv": "Big band -jamit",
                "en": "Big band -jamit"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!"
            },
            "description": {
                "fi": "<p>Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!</p><p>Ilmaiset big band -jamit syyskaudella 2026:<br>ti 6.10. klo 18–20<br>ti 3.11. klo 18–20<br>Ti 8.12. klo 18–20</p><p>House bandien lyhyiden esitysten jälkeen kaikki saksofonisti, trumpetistit, pasunistit, komppisoittajat ja laulajat ovat tervetulleita mukaan musisoimaan! Paikan päältä löytyvät rumpusetti, piano, basso- ja kitaravahvistin, nuottitelineet sekä nuotit. Tuothan muut tarvitsemasi soittimet ja rumpukapulat mukanasi.<br> <br>Jameihin on valikoitu ohjelmistoksi mukavaa ja eri tasoisille soittajille soveltuvaa materiaalia - soitettavat kappaleet valitaan jameissa paikalle saapuvien soittajien mukaan!<br> <br>Kappaleiden nuotteja on mahdollista saada myös pyydettäessä etukäteen nähtäväksi. Laita tästä pyyntö osoitteeseen: info@sointijazzorchestra.com<br> <br>Tule ja ota kaverisikin mukaan musisoimaan yhdessä! Voit saapua paikalle myös vain kuuntelemaan ja nauttimaan big band -musiikista.<br> <br>Kesto: 2 t<br>Vapaa pääsy!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68635/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68634",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384966,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:04.079096Z",
                    "last_modified_time": "2026-06-05T07:14:04.079114Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791322.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384966/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T07:14:03.936749Z",
            "last_modified_time": "2026-06-05T07:14:04.270514Z",
            "date_published": null,
            "start_time": "2026-10-06T15:00:00Z",
            "end_time": "2026-10-06T17: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/051A195F3BC19B510CA06D91827C5A90/Big_band_-jamit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/051A195F3BC19B510CA06D91827C5A90/Big_band_-jamit",
                "en": "http://www.malmitalo.fi/en/events/event/051A195F3BC19B510CA06D91827C5A90/Big_band_-jamit"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Big band -jamit",
                "sv": "Big band -jamit",
                "en": "Big band -jamit"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!"
            },
            "description": {
                "fi": "<p>Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!</p><p>Ilmaiset big band -jamit syyskaudella 2026:<br>ti 6.10. klo 18–20<br>ti 3.11. klo 18–20<br>Ti 8.12. klo 18–20</p><p>House bandien lyhyiden esitysten jälkeen kaikki saksofonisti, trumpetistit, pasunistit, komppisoittajat ja laulajat ovat tervetulleita mukaan musisoimaan! Paikan päältä löytyvät rumpusetti, piano, basso- ja kitaravahvistin, nuottitelineet sekä nuotit. Tuothan muut tarvitsemasi soittimet ja rumpukapulat mukanasi.<br> <br>Jameihin on valikoitu ohjelmistoksi mukavaa ja eri tasoisille soittajille soveltuvaa materiaalia - soitettavat kappaleet valitaan jameissa paikalle saapuvien soittajien mukaan!<br> <br>Kappaleiden nuotteja on mahdollista saada myös pyydettäessä etukäteen nähtäväksi. Laita tästä pyyntö osoitteeseen: info@sointijazzorchestra.com<br> <br>Tule ja ota kaverisikin mukaan musisoimaan yhdessä! Voit saapua paikalle myös vain kuuntelemaan ja nauttimaan big band -musiikista.<br> <br>Kesto: 2 t<br>Vapaa pääsy!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68634/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68330",
            "has_user_editable_resources": false,
            "location": null,
            "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:41/?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/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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1730506,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-25T10:13:56.810590Z",
                    "last_modified_time": "2026-03-25T10:13:56.810605Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787442.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1730506/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-25T10:13:56.681888Z",
            "last_modified_time": "2026-06-05T07:13:57.648328Z",
            "date_published": null,
            "start_time": "2026-08-28T13:00:00Z",
            "end_time": "2026-08-28T19: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.kanneltalo.fi/fi/tapahtumat/event/CD6E17859EAA5D0036E3DC70D753B4C1/Maltsun_musailta",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CD6E17859EAA5D0036E3DC70D753B4C1/Maltsun_musailta",
                "en": "http://www.kanneltalo.fi/en/events/event/CD6E17859EAA5D0036E3DC70D753B4C1/Maltsun_musailta"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Maltsun musailta",
                "sv": "Maltsun musailta",
                "en": "Maltsun musailta"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "MALTSU ELÄÄ! Laaja kattaus livemusiikkia soi taas tänäkin kesänä Malminkartanonaukiolla pe 28.8.!",
                "sv": "MALTSU LEVER! Ett brett urval av livemusik ljuder även denna sommar på Malmgårdsplatsen fredagen den 28 augusti!",
                "en": "MALTSU LIVES! This summer, Malminkartanonaukio Square will once again be filled with a wide range of live music on Friday 28 August!"
            },
            "description": {
                "fi": "<p>MALTSU ELÄÄ! Laaja kattaus livemusiikkia soi taas tänäkin kesänä Malminkartanonaukiolla pe 28.8.!</p><p>MALTSU ELÄÄ! Malminkartanonaukiolla soi taas livemusiikki perjantaina 28.8.! Luvassa on ainutlaatuinen ilta Suomen eturivin muusikkojen kanssa paikallisilla mausteilla. Tapahtuma on kaikille avoin ja ilmainen.<br>Lavalla nähdään voimakkailla ja vilpittömillä kappaleillaan lumoava Antti Autio, poliittisen ja yhteiskunnallisen suomiräpin kärkihahmo Paleface, Malminkartanosta kotoisin oleva energinen suomiräppäri Heikki Kuula ja lämpimän liveshown tarjoava paikallinen yhtye 4apila.<br>Aikataulu: <br>17.00 4apila<br>18.00 Heikki Kuula<br>19.15 Paleface<br>20.45 Antti Autio<br>Tapahtuma-alue on esteetön. WC-tilat löytyvät aukion ympäristöstä Malmgård-ravintolasta. <br>Tapahtuman järjestää Helsinki Urban Art ry yhteistyössä Kanneltalon kanssa.<br>///<br>MALTSU LIVES! Live music will be playing again in Malminkartanonaukio on Friday 28 August! Expect a unique evening with Finland’s leading musicians with local flavors. The event is open to everyone and free of charge.<br>On stage will be Antti Autio, enchanting with his powerful and sincere songs, Paleface, a leading figure in political and social Finnish rap, Heikki Kuula, an energetic Finnish rapper from Malminkartano, and the local band 4apila, offering a warm live show.<br>Timetable:<br>17.00 4apila<br>18.00 Heikki Kuula<br>19.15 Paleface<br>20.45 Antti Autio<br>The event is organized by Helsinki Urban Art ry in collaboration with Kanneltalo.<br>The event area is accessible. Toilets can be found around the square at the Malmgård restaurant.</p>",
                "sv": "<p>MALTSU LEVER! Ett brett urval av livemusik ljuder även denna sommar på Malmgårdsplatsen fredagen den 28 augusti!</p><p>Här utlovas diamanthårda spelningar och fantastiska artister. Evenemanget är avgiftsfritt och öppet för alla.</p><p>Programmet och artisterna offentliggörs närmare evenemanget.<br>Evenemanget ordnas av Helsinki Urban Art ry i samarbete med Gamlasgården.</p><p>Evenemangsområdet är tillgängligt. Toaletter finns i restaurangerna Malmgård och Laiska kissa.</p>",
                "en": "<p>MALTSU LIVES! This summer, Malminkartanonaukio Square will once again be filled with a wide range of live music on Friday 28 August!</p><p>The event will feature awesome shows by amazing performers. The event is open to everyone and free of charge.<br>The programme and artists will be published closer to the date of the event.</p><p>The event will be organised by Helsinki Urban Art ry in cooperation with Kanneltalo.</p><p>The event area is accessible. Toilets can be found near the square, in the Malmgård and Laiska Kissa restaurants.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68330/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68329",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384761,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-26T12:13:40.125259Z",
                    "last_modified_time": "2026-05-26T12:13:40.125281Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787441.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384761/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-26T12:13:40.014897Z",
            "last_modified_time": "2026-06-05T07:13:57.311746Z",
            "date_published": null,
            "start_time": "2026-08-27T15:30:00Z",
            "end_time": "2026-08-27T18: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.kanneltalo.fi/fi/tapahtumat/event/94ED5524E9E1D6FCD7F7DF4CAF06B9BB/Illallinen_Malminkartanonaukiolla",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/94ED5524E9E1D6FCD7F7DF4CAF06B9BB/Illallinen_Malminkartanonaukiolla",
                "en": "http://www.kanneltalo.fi/en/events/event/94ED5524E9E1D6FCD7F7DF4CAF06B9BB/Illallinen_Malminkartanonaukiolla"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Illallinen Malminkartanonaukiolla",
                "sv": "Illallinen Malminkartanonaukiolla",
                "en": "Illallinen Malminkartanonaukiolla"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Nautitaan yhdessä illallinen Malminkartanonaukiolla! Tuo omat eväät, me tarjoamme pöydät."
            },
            "description": {
                "fi": "<p>Nautitaan yhdessä illallinen Malminkartanonaukiolla! Tuo omat eväät, me tarjoamme pöydät.</p><p>Malminkartanonaukiolla illallistetaan taas yhdessä torstaina 27.8.! Me tarjoamme pöydät ja penkit, tuo mukanasi ruokaa, juomaa, astiat, aterimet ja hyvää mieltä. Ruokailun lomassa illallistajia viihdyttää Michael Bleu yhtyeineen!</p><p>Michael Bleu on monessa erivärisessä liemessä uitettu artisti ja tuottaja. Hänen erityispelialuettaan on 60 -ja 70-lukulainen amerikkasoul, joka kuitenkin tässä tapauksessa esitetään suomenkielellä. Bleu hämmentää ja yllättää tuotantonsa moni-ilmeisyydellä sekoitellen eri ainesosia aivan niin kuin huvittaa.<br>Illallinen alkaa klo 18.30 ja päättyy kello 21 aikoihin.</p><p>Osallistuminen on ilmaista, mutta vaatii ennakkoilmoittautumisen. <br>Ilmoittaudu mukaan illalliselle: https://forms.gle/W92fQ55aEkeZpqci9</p><p>Mikäli joku ilmoittamistasi ihmisistä ei pääsekään osallistumaan illalliselle, ilmoitathan siitä osoitteeseen ella@helsinkiurbanart.com<br>Tapahtuma-alue on esteetön. WC-tilat löytyvät aukion ympäristöstä Malmgård-ravintolasta.</p><p>Tapahtuman järjestää Helsinki Urban Art ry yhteistyössä Kanneltalon kanssa.</p><p>///<br>Come and join us for dinner on Malminkartanonaukio on Thursday, August 27! Bring your own food, drinks and dishes with a happy spirit, we provide the tables and benches. Entertainment alongside dinner will be provided by Michael Bleu and his band!<br>Michael Bleu is an artist and producer who has been immersed in many different genres. His special area of ​​expertise is 60s and 70s American soul, which in this case is presented in Finnish. Bleu confuses and surprises with the diversity of his production, mixing different ingredients just as he pleases.</p><p>Dinner starts at 6.30 pm and ends at around 9 pm. Participation is free but registration in advance is required. <br>Registration for the dinner: https://forms.gle/W92fQ55aEkeZpqci9</p><p>If any of the people you have registered are unable to attend the dinner, please let us know at ella@helsinkiurbanart.com<br>The event area is accessible. Bathrooms can be found by the square in Malmgård restaurants’ facilities.</p><p>The event is hosted by Helsinki Urban Art ry in collaboration with Kanneltalo.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68329/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpjftxnui",
            "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:p10727/?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:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490576,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-28T16:42:17.396704Z",
                    "last_modified_time": "2025-12-18T11:11:36.169680Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/976b1358-e3d1-4193-bfb1-8fea495e3ce4.png",
                    "name": "",
                    "cropping": "94,0,468,375",
                    "photographer_name": "",
                    "alt_text": "kuva päiväkirjan sivusta jota on koristeltu piirtäen kukkia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490576/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T12:26:19.504955Z",
            "last_modified_time": "2026-06-04T12:26:19.504971Z",
            "date_published": null,
            "start_time": "2025-09-11T14:00:00Z",
            "end_time": "2026-08-26T12:22: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,
            "location_extra_info": {
                "fi": "Vitriini"
            },
            "provider": null,
            "name": {
                "fi": "VITRIININÄYTTELY: Art Journal - Taidepäiväkirjatyöpaja"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Näyttelyssä taidepäiväkirjatyöpajan tuotoksia"
            },
            "description": {
                "fi": "TAIDENÄYTTELYSSÄ Art Journal - Taidepäiväkirjatyöpajan osallistujien taidetta<p><strong> Entressen kirjasto Vitriini Estradilla</strong></p><p>Näyttelyssä esillä työpajan osallistujien taidetta ja päiväkirjan sivuja. Ryhmä jatkuu taas syksyllä, jos kiinnostuit taidemuodosta; lämpimästi tervetuloa osallistumaan.</p><p><br></p><p>Taidepäiväkirjatyöpajassa työstetään taidepäiväkirjaa kuvan ja tekstin kautta. Taidepäiväkirjoissa hyödynnetään paljon kierrätysmateriaaleja. Materiaalit, myös päiväkirjapohjan, saat kirjastosta. Tai ota omat materiaalit mukaan.&nbsp;</p><p>Tämä tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta.</p><p><br></p><p>Järjestäjä: Kirjasto</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpjftxnui/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68465",
            "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:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1816478,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-14T11:25:39.768999Z",
                    "last_modified_time": "2026-04-14T11:25:39.769024Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786161.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816478/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-14T11:25:39.578873Z",
            "last_modified_time": "2026-06-04T12:13:48.611136Z",
            "date_published": null,
            "start_time": "2026-08-22T12:00:00Z",
            "end_time": "2026-08-22T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E18E1E966165087FFF8ECD2723E419EA/ANI_Kukkatalo",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E18E1E966165087FFF8ECD2723E419EA/ANI_Kukkatalo",
                "en": "http://www.malmitalo.fi/en/events/event/E18E1E966165087FFF8ECD2723E419EA/ANI_Kukkatalo"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "ANI, Kukkatalo – Malmin tapahtumakesä 2026",
                "sv": "ANI, Kukkatalo – Malms evenemangssommar 2026",
                "en": "ANI, Kukkatalo – Malmi Summer of Events 2026"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tapahtumakesän viimeinen päivä tarjoaa Kukkatalon bileet ja ANIn karismaattista poppia Ala-Malmin torilla!",
                "sv": "Evenemangsommarens sista dag bjuder på Kukkatalos fest och ANI:s karismatiska pop på Nedre Malms torg!",
                "en": "The last day of the Summer of Events offers a Kukkatalo party and ANI's charismatic pop at Ala-Malmi Square!"
            },
            "description": {
                "fi": "<p>Tapahtumakesän viimeinen päivä tarjoaa Kukkatalon bileet ja ANIn karismaattista poppia Ala-Malmin torilla!</p><p><b>Aikataulu</b><br><b>Lauantai 22.8. ANI, kukkatalo, työpajoja ja muuta puuhaa</b> <br>14.00–18.00 Malmin nuorisotyöyksikön pop up - kahvila<br>14.00–18.00 Malmin nuorisotyöyksikön pop up – ulkonuta<br>14.00–16.00 Kukkatyöpaja<br>14.30–15.00 Will Funk for Food<br>16.00–17.00 Koristautumispaja<br>15.00–16.00 kukkatalo<br>17.00–18.00 ANI</p><p><b>Päivän ohjelma</p><p>14.00–18.00 Malmin nuorisotyöyksikön pop up - kahvila</p><p>14.00–18.00 Malmin nuorisotyöyksikön pop up – ulkonuta</b><br>Malmin nuorisotyöyksikön järjestämä nuorten oma hengailupaikka osana Malmitalon tapahtumakesän päätöspäivää.  <br>Ohjelmassa nuorten järjestämää toimintaa: pihapelejä, piirtelyä ja pelailua. Tervetuloa mukaan!</p><p></b>14.00–16.00 Kukkatyöpaja</b><br>Kukkiksen hävikkikukkatyöpajassa askarrellaan kotiin vietäväksi kukkaseppeleitä, tai muita pieniä kukkakoristeita. Tervetuloa!</p><p></b>14.30–15.00 Will Funk for Food</p><p>klo 15.00–16.00 Kukkatalo</b><br>Kukkatalo tunnetaan riehakkaista, viihdyttävistä ja yllätyksellisistä keikoistaan. Yhtyeen musiikissa yhdistyvät indie, räppi ja pop rock asenteella. Yhtyeen kaksi solistia vaikuttavat myös kokoonpanoissa GOOD BOYS ja JÄNÖKLUBI.<br>Helmikuussa 2026 julkaistu toinen albumi Ristiriita valittiin Radio Helsingissä Viikon Levyksi ja sai ylistävää huomiota kriitikoilta. Kukkatalon musiikissa rapin ja rockin yhdistäminen tuntuu luontevalta osalta nykypopin ilmaisua.</p><p><b>klo 16.00–17.00 Koristautumispaja</b><br>Malmin nuorisotyöyksikön nuorten järjestämä koristautumispaja osana Malmitalon tapahtumakesän päätöspäivää. Tule koristautumaan ihanilla glittereillä ja kasvomaaleilla!</p><p><b>klo 17.00–18.00 ANI</b><br>ANI on yksi tämän hetken mielenkiintoisimmista pop artisteista, jonka musiikissa suomalainen sielunmaisema ja poeettiset sanoitukset yhdistyvät nuorekkaaseen soundiin ja huippuluokan tuotantoon.<br>Laulaja lauluntekijänä ANI on ollut mukana lukuisilla kulta  ja platinarajan ylittäneillä kappaleilla, joilla esiintyvät muun muassa JVG, BESS, BEHM ja Evelina. Hänen osaamistaan on tunnustettu myös Emma ehdokkuuksilla Vuoden musiikintekijänä sekä Vuoden pop  artistina.<br>ANIn live esiintymiset tunnetaan vahvasta läsnäolosta, energisyydestä ja aitoudesta, joka tekee jokaisesta keikasta ainutkertaisen kokemuksen.</p><p>Tapahtumiin on vapaa pääsy!</p>",
                "sv": "<p>Evenemangsommarens sista dag bjuder på Kukkatalos fest och ANI:s karismatiska pop på Nedre Malms torg!</p><p><b>Tidtabell</b><br>15.00–16.00 Kukkatalo<br>17.00–18.00 ANI</p><p><b>Dagens program</p><p>kl. 15.00–16.00 Kukkatalo</b><br>Kukkatalo är känt för sina högljudda, underhållande och överraskande spelningar. Bandets musik kombinerar indie, rap och pop med en rockig attityd. Bandets två solister spelar även i GOOD BOYS och JÄNÖKLUBI.<br>Det andra albumet, Ristiriita, som släpptes i februari 2026, valdes till Veckans album i Radio Helsinki och hyllades av kritikerna. I Kukkatalos musik framstår kombinationen av rap och rock som en naturlig del av det nutida poputtrycket.</p><p><b>kl. 17.00–18.00 ANI</b><br>ANI är en av de intressantaste pop-artisterna just nu, som i sin musik förenar det finländska själslandskapet och poetiska texterna med ett yngre sound och en produktion i toppklass.<br>Som sångare och låtskrivare har ANI deltagit i flera låtar som passerat guld- och platinagränsen, vilka gästas av bland annat JVG, BESS, BEHM och Evelina. Hans talang har också uppmärksammats med Emma-nomineringar för Årets musikskapare och Årets popartist.<br>ANI:s liveuppträdanden är kända för sin starka närvaro, energi och autenticitet, vilket gör varje spelning till en unik upplevelse.</p><p>Evenemangen har fritt inträde!</p>",
                "en": "<p>The last day of the Summer of Events offers a Kukkatalo party and ANI's charismatic pop at Ala-Malmi Square!</p><p><b>Schedule</b><br>15.00–16.00 Kukkatalo<br>17.00–18.00 ANI</p><p><b>Programme of the day</p><p>15.00–16.00 Kukkatalo</b><br>Kukkatalo is known for its raucous, entertaining and surprising gigs. The band's music combines indie, rap and pop with a rock attitude. The band's two soloists are also involved in the ensembles GOOD BOYS and JÄNÖKLUBI.<br>The band’s second album, Ristiriita, released in February 2026, was chosen as Album of the Week by Radio Helsinki and received critical acclaim. In Kukkatalo's music, the combination of rap and rock seems a natural part of their form of contemporary pop.</p><p><b>17.00–18.00 ANI</b><br>ANI is one of the most fascinating pop artists of the moment, combining Finnish mental landscapes and poetic lyrics with a youthful sound and high class production values.<br>As a singer-songwriter, ANI has been involved in numerous songs that have sold gold and platinum, featuring artists such as JVG, BESS, BEHM and Evelina. Her talent has also been recognised with Emma nominations for Music Maker of the Year and Pop Artist of the Year.<br>ANI's live performances are known for their strong presence, energy and authenticity, making every show a unique experience.</p><p>Entry to the events is free of charge!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68465/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68463",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1816477,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-14T11:25:38.950309Z",
                    "last_modified_time": "2026-04-14T11:25:38.950324Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786177.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-14T11:25:38.715015Z",
            "last_modified_time": "2026-06-04T12:13:47.693404Z",
            "date_published": null,
            "start_time": "2026-08-20T13:00:00Z",
            "end_time": "2026-08-20T17: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/7FB4C1FEBDB4D8C8D205003F9D5BB374/Taiteiden_yo_Lala_Salama_Juhlat_ja_tyopajoja",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/Konstens_natt_Lala_Salama_Juhlat_och_verkstader",
                "en": "http://www.malmitalo.fi/en/events/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/The_Night_of_the_Arts_Lala_Salama_Juhlat_and_workshops"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Taiteiden yö: Lala Salama, Juhlat ja työpajoja – Malmin tapahtumakesä 2026",
                "sv": "Konstens natt: Lala Salama, Juhlat och verkstäder – Malms evenemangssommar 2026",
                "en": "The Night of the Arts: Lala Salama, Juhlat and workshops – Malmi Summer of Events 2026"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Taiteiden yössä painetaan kangaskasseja, juhlitaan indiepopin tahdissa ja koetaan illan huipentava rock jyräys Lala Salaman kanssa!",
                "sv": "Under Konstens natt trycker man tygkassar, firar i takt till indiepop och upplever kvällens kulminering med rockdundret Lala Salama!",
                "en": "The Night of the Arts will be a night of printing tote bags, partying to indie pop and a rockin' good time with Lala Salama!"
            },
            "description": {
                "fi": "<p>Taiteiden yössä painetaan kangaskasseja, juhlitaan indiepopin tahdissa ja koetaan illan huipentava rock jyräys Lala Salaman kanssa!</p><p><b>Aikataulu</b><br><b>Torstai 20.8. Taiteiden yö: Lala Salama, Juhlat ja työpajoja</b>\t<br>16.00–18.00 Yksin hanke: Kangaskassien painatusta <br>16.00–19.00 Työväenopisto: Hippiäisestä muurahaisten poluille - maalaa elonkirjoa kasviväreillä!<br>16.00–19.00 Työväenopisto: Heijastintyöpaja<br>16.00–17.00 Työväenopisto: Kesän muistoja -yhteislaulut<br>17.00–18.00\tJuhlat<br>19.00–20.00\tLala Salama</p><p><b>Päivän ohjelma<br>klo 16.00–18.00 Yksin hanke: Kangaskassien painatusta</b><br>Taiteiden yössä pääsee painamaan omia kangaskasseja rennossa ja luovassa työpajassa. Tule tekemään ja viihtymään!</p><p>klo 16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla<br> <br>Klo 16-19 Työväenopisto: Heijastintyöpaja<br> <br>Klo 16-17 Työväenopisto: Kesän muistoja -yhteislaulut</p><p><b>klo 17.00–18.00 Juhlat</b><br>Suomen kiinnostavimpiin indieyhtyeisiin lukeutuva Juhlat ammentaa melodiseen kitarapopiinsa 2000 luvun alun radiohiteistä, skandinaavisesta melankoliasta ja amerikkalaisesta aikuisrockista.<br>Vuonna 2025 julkaistu toinen albumi Yöllä taivas kaatuu keräsi ylistäviä arvioita ja toi yhtyeelle Indie Awards  ehdokkuuksia. Yhtye on nähty muun muassa Provinssissa, Ruisrockissa ja Tavastialla.</p><p><b>klo 19.00–20.00 Lala Salama</b><br>Lala Salama on dynaaminen rock trio, jonka ilmaisussa yhdistyvät anteeksipyytelemätön herkkyys ja jyrähtelevä särö. Kansainvälistä kulttimainetta kerännyt yhtye tunnetaan intensiivisistä keikoistaan ja vahvasta yhteydestä yleisöön.</p><p>Kokoonpano:<br>Rosa Jules – kitara, laulu<br>Aliisa Keränen – rummut, taustalaulut<br>Elli Holmström – basso, taustalaulut</p><p>Tapahtumiin on vapaa pääsy!</p>",
                "sv": "<p>Under Konstens natt trycker man tygkassar, firar i takt till indiepop och upplever kvällens kulminering med rockdundret Lala Salama!</p><p><b>Tidtabell</b><br>16.00–18.00 Yksin-projekt: Tryck på tygkasse<br>16-17 Työväenopisto: Kesän muistoja -yhteislaulut<br>16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla <br>16-19 Työväenopisto: Heijastintyöpaja<br>17.00-18.00\tJuhlat<br>19.00–20.00\tLala Salama</p><p><b>Dagens program<br>klo 16.00–18.00 Yksin-projektet: Tryck på tygkasse</b><br>Under Konstens natt kan man trycka egna tygkassar i en lättsam och kreativ verkstad. Kom med och tillverka och trivas!</p><p>klo 16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla<br> <br>Klo 16-19 Työväenopisto: Heijastintyöpaja<br> <br>Klo 16-17 Työväenopisto: Kesän muistoja -yhteislaulut</p><p><b>kl. 17.00–18.00 Juhlat</b><br>Juhlat, som är en av Finlands intressantaste indiegrupper, inhämtar inspiration från 2000-talets radiohits, skandinavisk melankoni och amerikansk vuxenrock till sin melodiska gitarrpop.<br>Deras andra album, Yöllä taivas kaatuu, som släpptes 2025, fick strålande recensioner och gav bandet Indie Awards-nomineringar. Bandet har bland annat setts på Provinssirock, Ruisrock och Tavastia.</p><p><b>kl. 19.00–20.00 Lala Salama</b><br>Lala Salama är en dynamisk rocktrio vars uttryck kombinerar en oförställd känslighet med en dundrande skärpa. Bandet med internationellt kultrykte är känt för sina intensiva spelningar och för sin starka kontakt med publiken.</p><p>Sammansättning:<br>Rosa Jules – gitarr, sång<br>Aliisa Keränen – trummor, bakgrundssång<br>Elli Holmström - bas, körsång</p><p>Evenemangen har fritt inträde!</p>",
                "en": "<p>The Night of the Arts will be a night of printing tote bags, partying to indie pop and a rockin' good time with Lala Salama!</p><p><b>Schedule</b><br>16.00–18.00 Yksin (‘Alone’) project: Printing tote bags<br>16-17 Työväenopisto: Kesän muistoja -yhteislaulut<br>16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla <br>16-19 Työväenopisto: Heijastintyöpaja</p><p>17.00–18.00\tJuhlat<br>19.00–20.00\tLala Salama</p><p><b>Programme of the day<br>16.00–18.00 Yksin project: Printing tote bags</b><br>The Night of the Arts lets you print your own tote bags in a relaxed and creative workshop. Get creative and have fun!</p><p>klo 16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla<br> <br>Klo 16-19 Työväenopisto: Heijastintyöpaja<br> <br>Klo 16-17 Työväenopisto: Kesän muistoja -yhteislaulut</p><p><b>17.00–18.00 Juhlat</b><br>Juhlat, one of Finland's most interesting indie bands, draws inspiration for its melodic guitar pop from early 21st century radio hits, Scandinavian melancholy and American grown-up rock.<br>Their second album, Yöllä taivas kaatuu, was released in 2025, garnering rave reviews and even earning the band Indie Awards nominations. The band has performed in festivals such as Provinssi and Ruisrock and at Tavastia.</p><p><b>19.00–20.00 Lala Salama</b><br>Lala Salama is a dynamic rock trio whose expression combines unapologetic vulnerability with harsher edges. The band, which has built up an international cult following, is known for its intense live performances and strong connection with the audience.</p><p>Line-up:<br>Rosa Jules – guitar, vocals<br>Aliisa Keränen – drums, backing vocals<br>Elli Holmström – bass, backing vocals</p><p>Entry to the events is free of charge!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68463/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68466",
            "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: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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1816475,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-14T11:25:37.121476Z",
                    "last_modified_time": "2026-04-14T11:25:37.121504Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786151.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816475/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-04-14T11:25:36.894687Z",
            "last_modified_time": "2026-06-04T12:13:46.419982Z",
            "date_published": null,
            "start_time": "2026-08-15T08:00:00Z",
            "end_time": "2026-08-15T11:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/09855A8A174C6429C6717B077141CD98/Lasten_lauantai_Aarne_Alligaattori_Viidakkorumpu_Riemukas_perhemuskari_ja_muuta_puuhaa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/09855A8A174C6429C6717B077141CD98/Barnens_lordag_Arne_Alligator_Den_Glada_familjmusiklekisen_och_annan_sysselsattning",
                "en": "http://www.malmitalo.fi/en/events/event/09855A8A174C6429C6717B077141CD98/Children_s_Saturday_Arnie_Alligator_Joyful_family_music_playschool_and_other_activities"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Lasten lauantai: Aarne Alligaattori & Viidakkorumpu, Riemukas perhemuskari ja muuta puuhaa – Malmin tapahtumakesä 2026",
                "sv": "Barnens lördag: Arne Alligator, Den Glada familjmusiklekisen och annan sysselsättning – Malms evenemangssommar 2026",
                "en": "Children’s Saturday: Arnie Alligator, Joyful family music playschool and other activities – Malmi Summer of Events 2026"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lasten lauantai kutsuu perheet puuhastelemaan! Luvassa luontoaiheista tekemistä, kirjoja, muskaria, työpajoja ja lasten lemppari: Aarne Alligaattori & Viidakkorumpu!",
                "sv": "Barnens lördag bjuder in familjerna till sysselsättning! Sysselsättning med naturtema, böcker, musiklekis, verkstäder och barnens favorit: Arne Alligator & Viidakkorumpu!",
                "en": "Children's Saturday invites families to have fun! The programme of the day offers nature-themed activities, books, music playschool, workshops and the children's absolute favourite: Arnie Alligator & Viidakkorumpu!"
            },
            "description": {
                "fi": "<p>Lasten lauantai kutsuu perheet puuhastelemaan! Luvassa luontoaiheista tekemistä, kirjoja, muskaria, työpajoja ja lasten lemppari: Aarne Alligaattori & Viidakkorumpu!</p><p><b>Aikataulu</b><br>11.00–14.00 Malmin Varustamo: Luontopiste pikkuväelle<br>11.00-15.00 Lasten uimataidon edistäminen<br>12.00–14.00 Yksin hanke: Minikirjoja ja matariki-tähtien punontaa <br>13.00–13.30 Riemukas perhemuskari<br>14.00–14.45 Aarne Alligaattori & Viidakkorumpu</p><p><b>Päivän ohjelma</p><p>klo 11.00–14.00 Malmin Varustamo: Luontopiste pikkuväelle</b><br>Luontopiste kutsuu perheen pienimmät tutkimaan ja ihmettelemään luontoa monipuolisten tehtävien ja materiaalien parissa.</p><p><b> klo 11.00–15.00 Lasten uimataidon edistäminen</b><br>Lasten uimataidon edistäminen<br>Tule keskustelemaan lasten uimataidosta samalla kun samalla kun perheen pienimmät voivat käydä pulahtamassa pallomereen.<br>Mukana KASKO, Fimu ry ja Monaliiku ry.</p><p><b>klo 12.00–14.00 Yksin-hanke: Minikirjoja ja matariki tähtien punontaa</b><br>Työpajassa askarrellaan omia minikirjoja ja punotaan matariki tähtiä yhdessä luovan tekemisen hengessä.</p><p><b>klo 13.00–13.30 Riemukas perhemuskari</b><br>”Pyöri kuin pyörre veden pinnalla!<br>Leiju kuin pilvi taivaan kannella!”</p><p>Riemukkaassa perhemuskarissa lauletaan, leikitään ja musisoidaan yhdessä kesäisissä tunnelmissa. Muskarin ohjaa musiikin maisteri ja lastenmuusikko Henna-Maija Kuki, tuttu Henna ja Supersankarit  yhtyeestä.</p><p><b>klo 14.00–14.45 Aarne Alligaattori & Viidakkorumpu</b><br>Ihastuttava ja halattava Aarne Alligaattori saapuu lavalle yhdessä safariasuisten ystäviensä Tobben ja Jocken kanssa. Aarne hassuttelee, keksii kepposia ja soittaa viidakkorumpuja ratkiriemukkaassa esityksessä koko perheelle.</p><p>Aarne Alligaattoria on katsottu YouTubessa yli 400 miljoonaa kertaa, ja hänen musiikkinsa on myynyt useita platina  ja kultalevyjä eri maissa.</p><p>Kaikkiin tapahtumiin on vapaa pääsy, tervetuloa koko perhe!</p>",
                "sv": "<p>Barnens lördag bjuder in familjerna till sysselsättning! Sysselsättning med naturtema, böcker, musiklekis, verkstäder och barnens favorit: Arne Alligator & Viidakkorumpu!</p><p><b>Tidtabell</b><br>11.00–14.00 Varustamo-livsrummet i Malm: En naturpunkt för de minsta<br>11.00–15.00 Främjande av barns simkunskaper<br>12.00–14.00 Yksin-projektet: Miniböcker och flätning av matariki-stjärnor <br>13.00–13.30 Glatt familjemusiklekis<br>14.00–14.45 Arne Alligator & Viidakkorumpu</p><p><b>Dagens program</p><p>kl. 11.00–14.00 Varustamo-livsrummet i Malm: En naturpunkt för de minsta</b><br>Naturpunkten bjuder in familjens minsta att undersöka och beundra naturen med hjälp av mångsidiga uppgifter och material.</p><p><b> kl. 11.00–15.00 Främjande av barns simkunskaper</b><br>Kom och diskutera barns simkunskaper medan de minsta i familjen får hoppa i bollhavet.<br>Medverkar gör Helsingfors stads fostrans- och utbildningssektorn, Fimu ry och Monaliiku ry.</p><p><b>klo 12.00–14.00 Yksin-projektet: Miniböcker och flätning av matariki-stjärnor</b><br>I verkstaden pysslar vi egna miniböcker och flätar matariki-stjärnor tillsammans i en kreativ anda.</p><p><b>klo 13.00–13.30 Glatt musiklekis</b><br>”Snurra som en virvel på vattenytan!<br>Sväva som ett moln på himlen!”</p><p>I det glada familjemusiklekiset får vi sjunga, leka och musicera i somrig stämning. Musiklekiset leds av Henna-Maija Kuki, barnmusiker med magisterexamen i musik, som är känd från bandet Henna ja Supersankarit.</p><p><b>klo 14.00–14.45 Arne Alligator& Viidakkorumpu</b><br>Bedårande och kramgoa Arne Arne Alligator intar scenen tillsammans med sina safariklädda vänner Tobbe och Jocke. Aarne skämtar, busar och spelar djungeltrummor i en hysteriskt rolig show för hela familjen.</p><p>Arne Alligator har setts på YouTube mer än 400 miljoner gånger och hans musik har sålt flera platina- och guldskivor i olika länder.</p><p>Alla evenemang har fritt inträde, vi önskar hela familjen välkommen!</p>",
                "en": "<p>Children's Saturday invites families to have fun! The programme of the day offers nature-themed activities, books, music playschool, workshops and the children's absolute favourite: Arnie Alligator & Viidakkorumpu!</p><p><b>Schedule</b><br>11.00–14.00 Malmin Varustamo parish: Nature activity point for young ones<br>11.00–15.00 Promoting children's swimming skills<br>12.00–14.00: The Yksin (‘Alone’) project: Miniature books and weaving matariki stars <br>13.00–13.30 Joyful family music playschool<br>14.00–14.45 Arnie Alligator & Viidakkorumpu</p><p><b>Programme of the day</p><p>11.00–14.00 Malmin Varustamo: Nature activity point for young ones</b><br>The nature activity point invites the youngest in the family to explore and wonder at nature through a range of activities and materials.</p><p><b>11.00–15.00 Promoting children's swimming skills</b><br>Come discuss children’s swimming skills while the little ones take a dip in the ball pit.<br>Together with the Education Division of the City of Helsinki, Fimu ry, and Monaliiku ry.</p><p><b>12.00–14.00: Yksin (‘Alone’) project: Miniature books and weaving matariki stars</b><br>In this workshop you get to craft your own miniature books and weave matariki stars, letting your creativity fly together.</p><p><b>13.00–13.30: Joyful family music playschool</b><br>“Spin like a whirlpool – on the surface of the water!<br>Float like a cloud – up in the sky!\"</p><p>This joyful family music playschool will involve singing, play and making music together in a summery atmosphere. The music playschool will be led byChildren’s Musician Henna-Maija Kuki, who has a master’s degree in music and is best known from her Henna ja Supersankarit band.</p><p><b>14.00–14.45 Arnie Alligator & Viidakkorumpu</b><br>The adorable and huggable Arnie Alligator will be taking to the stage with his friends Tobbe and Jocke, who are always dressed for a safari. Arnie will play jokes, pranks and jungle drums in this hilarious performance for the whole family.</p><p>Arnie Alligator has received over 400 million views on YouTube and his music has sold platinum and gold records in several countries.</p><p>Free entry to all events, the whole family is welcome!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68466/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68271",
            "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:596/?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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1674197,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T15:14:02.902267Z",
                    "last_modified_time": "2026-03-19T15:14:02.902283Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786140.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1674197/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T15:14:02.758211Z",
            "last_modified_time": "2026-06-04T12:13:39.839416Z",
            "date_published": null,
            "start_time": "2026-06-12T11:30:00Z",
            "end_time": "2026-06-12T17: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/01BA3D940BFC1583059744C211303906/Helsinki-paiva_Malmilla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/01BA3D940BFC1583059744C211303906/Helsingforsdagen_i_Malm",
                "en": "http://www.malmitalo.fi/en/events/event/01BA3D940BFC1583059744C211303906/Helsinki_Day_in_Malmi"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Helsinki-päivä Malmilla – Malmin tapahtumakesä 2026",
                "sv": "Helsingforsdagen i Malm – Malms evenemangssommar 2026",
                "en": "Helsinki Day in Malmi – Malmi Summer of Events 2026"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Helsinki-päivä Malmilla tarjoaa yhteisötaidetta, tanssia ja illan huippukeikat: Laineen Kasperi ja F. Tule juhlimaan kesäistä kaupunkipäivää!",
                "sv": "Helsingforsdagen i Malm bjuder på samhällskonst, dans och spelningar med Laineen Kasperi och F på kvällen. Kom och fira sommardagen i staden!",
                "en": "Helsinki Day in Malmi will offer community art, dance and the evening's top performances: Laineen Kasperi and F. Come and celebrate a summer’s day in the city!"
            },
            "description": {
                "fi": "<p>Helsinki-päivä Malmilla tarjoaa yhteisötaidetta, tanssia ja illan huippukeikat: Laineen Kasperi ja F. Tule juhlimaan kesäistä kaupunkipäivää!</p><p><b>Aikataulu</b><br>14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa yhteisötaidetta kaiken ikäisille <br>16.00–19.00 Malmin seurakunnan toimintapiste <br>16.00–16.45 Kaupunkitanssit <br>17.00–18.00 Laineen Kasperi<br>18.00–19.00 MALMI/Kollektiivi: Koe Malmi nuorten silmin -videoteos<br>19.00–20.00 F</p><p><b>klo 14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa yhteisötaidetta kaiken ikäisille</b><br>Malmin nuorisotyöyksikön kesätyöntekijät toteuttavat kaikille avointa hyvänmielen toimintaa. Tule mukaan!</p><p><b>klo 16.00–19.00 Malmin seurakunnan toimintapiste</b></p><p><b>klo 16.00–16.45 Kaupunkitanssit</b><br>Tanssiteatteri Tsuumin ammattilaisten ohjauksella järjestettävää matalan kynnyksen tanssinopetusta, johon kaikki ovat tervetulleita. Helsinki-päivän tanssilajina svengaava bugg!</p><p><b>18.00–19.00 MALMI/Kollektiivi: Koe Malmi nuorten silmin –videoteos</b><br>Tule Malmitalon auditorioon kokemaan vaikuttava videoteos, Kerroksia, joka tuo valkokankaalle nuorten dokumentaarisia valokuvia Malmista. Kerroksia tarjoaa ainutlaatuisen ja tuoreen näkökulman tuttuihin kulmiin – näe ja tunne kaupunginosa nuorten omien kokemusten kautta.</p><p>Teoksen ovat toteuttaneet Stadin ammattiopiston media-alan opiskelijat, yhteistyössä MALMI/Kollektiivin kanssa.</p><p><b>klo 17.00–18.00 Laineen Kasperi</b><br>Laineen Kasperi tunnetaan räppärinä, tuottajana, sekä yleisön tajuntaa ravistelevana esiintyjänä. Laine on työskennellyt uransa aikana lähes kaikilla taiteen alueilla ja tehnyt yhteistyötä lukuisten maamme ykkösartistien kanssa.</p><p>Laineen Kasperin uusin albumi ”Jumala on lomalla” ilmestyi keväällä 2025, ja on saanut mitä parhaimman vastaanoton.<br>Alla Laineen Kasperin puhelimeen keikan jälkeen saapunut viesti:<br>”Siis voihan vid-du et oli hieno keikka eilen!</p><p>Suorastaan spirituaalinen kokemus! Uskomatonta tsekata noin voimakasta lähetystä ja kuunnella lyyristä viestiä, joka tuntuu kanavoituvan suoraan sieltä jostain ikuisen viisauden lähteestä. Oot kyllä huippu tekijä ja universaalin ymmärryksen sanoiksi pukija.”</p><p><b>klo 19–20 F</b><br>Emma-palkittu rap/R&B-artisti F julkaisi keväällä 2024 uuden albuminsa Self-helpless. Self-helpless on antiteesi itsensä jatkuvalle kehittämiselle ja ylistys keskeneräisyydelle.<br>Visuaalisesti albumi kumartaa 90-luvun ikonisten tähtien, kuten Anna Nicole Smithin ja Pamela Andersonin suuntaan. Albumilta julkaistiin viisi singleä: musiikkivideollaan vakuuttanut Taas mennään, Muija on ku kone, Teetä (feat. Tuplakääk), <br>Naispaholainen II ja Exit. Rohkeista ja visuaalisesti kekseliäistä livekeikoistaan ylistetty F tunnetaan parhaiten kultaa myyneestä Ihana-hitistään.</p><p>Monipuolinen, vahvoja albumikokonaisuuksia luova artisti on ollut ehdolla Emma Gaalassa useasti ja vuonna 2021 hänet palkittiin vuoden musiikkivideopalkinnolla.</p><p><b>Tapahtumiin on vapaa pääsy!</b></p>",
                "sv": "<p>Helsingforsdagen i Malm bjuder på samhällskonst, dans och spelningar med Laineen Kasperi och F på kvällen. Kom och fira sommardagen i staden!</p><p>Tidtabell<br>14.30–18.30 Unga sommarjobbare vid Malms ungdomsarbetsenhet har planerat samhällskonst för alla åldrar <br>16.00–19.00 Malms församlings aktivitetspunkt <br>16.00–16.45 Stadsdans <br>17.00–18.00 Laineen Kasperi <br>19.00–20.00 F</p><p>kl. 14.30–18.30 Unga sommarjobbare vid Malms ungdomsarbetsenhet har planerat samhällskonst för alla åldrar<br>Sommarjobbarna vid enheten för ungdomsarbete i Malm ordnar feel good-verksamhet som är öppen för alla. Kom med!<br>kl. 16.00–19.00 Malms församlings aktivitetspunkt</p><p>kl. 16.00–16.45 Stadsdans<br>Danslektioner med låg tröskel under ledning av proffs från Tanssiteatteri Tsuumi, där alla är välkomna.</p><p>kl. 17–18 Laineen Kasperi<br>Laineen Kaseri är känd som en rappare, producent och artist som skakar om publikens medvetande. Under sin karriär har Laine arbetat med nästan alla konstarter, och han har samarbetat med många av de största artisterna i vårt land. <br>Laineen Kasperis senaste album ”Jumala on lomalla” kom våren 2025 och har fått ett fint mottagande.</p><p>Nedan följer ett meddelande som kom till Laineen Kasperis telefon efter en spelning:<br>”Alltså vilken jä--a bra spelning i går! <br>En rent spirituell upplevelse! Fantastiskt att se en så mäktig sändning och höra det lyriska budskapet, som känns som att det kanaliseras direkt ur nån evig visdomskälla. Du är superbra och klär den universella förståelsen i ord.”</p><p>kl. 19–20 F<br>Den Emma-belönade rap/R&B-artisten F släppte sitt nya album Self-helpless våren 2024. Self-helpless är en antites till att hela tiden utveckla sig själv och en hyllning till det halvfärdiga.</p><p>Visuellt bugar albumet mot ikoniska 90-talsstjärnor som Anna Nicole Smith och Pamela Anderson. Från albumet släpptes fem singlar: Taas mennään, som imponerade med sin musikvideo, Muija on ku kone, Teetä (feat. Tuplakääk), Naispaholainen II och Exit. F, som hyllats för sina djärva och visuellt uppfinningsrika livespelningar, är bäst känd för sin hit Ihana, som sålt guld.</p><p>F är en mångsidig artist som skapar starka albumhelheter och har varit nominerad på Emma-galan flera gånger. År 2021 belönades hon med priset för årets musikvideo.</p><p>Evenemangen har fritt inträde!</p>",
                "en": "<p>Helsinki Day in Malmi will offer community art, dance and the evening's top performances: Laineen Kasperi and F. Come and celebrate a summer’s day in the city!</p><p>Schedule<br>14.30–18.30 Community art for all ages, created by Malmi Youth Work Unit's summer interns <br>16.00–19.00 Malmi parish activity point <br>16.00–16.45 Dancing in the City <br>17.00–18.00 Laineen Kasperi <br>19.00–20.00 F</p><p>14.30–18.30 Community art for all ages, created by the Malmi Youth Work Unit's summer interns<br>Malmi Youth Work Unit’s summer workers host pleasant activities open to all. Join us!<br>16.00–19.00 Malmi parish activity point</p><p>16.00–16.45 Dancing in the City<br>Low-threshold dance classes for everyone hosted by Tsuumi Dance Theatre professionals.</p><p>17.00–18.00 Laineen Kasperi<br>Laineen Kasperi is known as a rapper, producer and performer who shakes the audience to their core. During his career, Laine has worked in almost every field of art and collaborated with many of the top artists in Finland. <br>Laineen Kasperi's latest album Jumala on lomalla was released in spring 2025, and has been very well received.</p><p>Below is a message that Laineen Kasperi received on his phone after a show:<br>\"I mean, God-damn, you gave a great performance last night! <br>It was a truly spiritual experience! It's incredible to watch such a powerful performer and listen to a lyrical message that seems to be channeled directly from some source of eternal wisdom. But you are a top creator and a poet that can put the universal understanding into words.\"</p><p>19.00–20.00 F<br>Emma Award-winning rap/R&B artist F released her new album Self-helpless in spring 2024. Self-helpless is the antithesis of continuous self-improvement and a celebration of unfinished business.</p><p>Visually, the album bows to iconic 90s stars like Anna Nicole Smith and Pamela Anderson. Five singles were released from the album: Taas mennään, Muija on ku kone, Teetä (feat. Double Head), Female Devil II and Exit. Praised for her bold and visually inventive live shows, F is best known for her gold-selling hit Ihana.</p><p>A versatile artist who creates strong albums, she has been nominated in the Emma Gaala awards several times, and she won Music Video of the Year in 2021.</p><p>Entry to the events is free of charge!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68271/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpd6vh4b4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2201331,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-19T08:05:52.260454Z",
                    "last_modified_time": "2026-05-19T08:05:52.260467Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/4b7f190c-20a6-46af-b1f9-a8376cd63cd0.png",
                    "name": "",
                    "cropping": "336,0,1200,864",
                    "photographer_name": "Sanna Korkelainen",
                    "alt_text": "vinyylileikkurin materiaalirullia ja kangaskasseja, pride sateenkaari",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201331/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-19T08:13:04.740100Z",
            "last_modified_time": "2026-06-04T11:09:30.815005Z",
            "date_published": null,
            "start_time": "2026-06-11T13:00:00Z",
            "end_time": "2026-06-11T15: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": "https://www.espoo.fi/fi/kaupunki-ja-paatoksenteko/espoon-kaupunki-x-helsinki-pride",
                "sv": "https://www.espoo.fi/sv/staden-och-beslutsfattandet/esbo-stad-x-helsinki-pride",
                "en": "https://www.espoo.fi/en/city-and-decision-making/city-espoo-x-helsinki-pride"
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Verkstad",
                "en": "Maker Space"
            },
            "provider": {
                "fi": "Kirjasto",
                "sv": "Biblioteket",
                "en": "Library"
            },
            "name": {
                "fi": "Kangaskassipaja",
                "sv": "Tygpåseverkstad",
                "en": "Tote bag workshop"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "tule tuunaamaan pride teemainen kangaskassi",
                "sv": "Kom och dekorera en tygkasse med Pride-tema",
                "en": "Come design a Pride-themed tote bag"
            },
            "description": {
                "fi": "Kangaskassipaja<p><strong>To 11.6.2026 klo 16-18 | Entressen kirjaston paja</strong></p><p><strong>Tote-ally Proud - Ylpeydellä Kannettu</strong></p><p>Haluatko tulla tuunaamaan omia vaatteitasi tai kulkuelippua? Teemme pajassa vinyylileikkurilla värikkäitä silitettäviä kuvioita kankaalle. 50 ensimmäiselle kangaskassi kirjastolta.</p><p>Pajassa voi tehdä myös tarroja! </p><p>Espoon kaupunki on tänä vuonna Helsinki Priden Working with Pride -kumppani. Lue lisää Espoon kirjastojen sekä koko Espoon kaupungin Pride-kuukauden ohjelmasta Espoon kaupungin Pride-sivulta <a href=\"https://www.espoo.fi/fi/kaupunki-ja-paatoksenteko/espoon-kaupunki-x-helsinki-pride\">Espoon kaupunki x Helsinki Pride | Espoon kaupunki&nbsp;</a></p>",
                "sv": "Tygkasseverkstad&nbsp;<p><strong>Torsdag 11 juni 2026 kl. 16–18 | Verkstaden på Entressen-biblioteket</strong></p><p><strong>Tote-ally Proud – Bär med stolthet</strong></p><p>Vill du komma och piffa upp dina egnakläder eller din flagga? I verkstaden skapar vi färgglada, strykbara mönster på tyg med hjälp av en vinylskärare. De 50 första får en tygkasse från biblioteket.</p><p>I verkstaden kan man också göra klistermärken!&nbsp;</p><p>Esbo stad är i år partner till Helsingfors Pride inom ramen för Working with Pride. Läs mer om programmet för Pride-månaden i Esbos bibliotek och hela Esbo stad på Esbo stads Pride-sida <a href=\"https://www.espoo.fi/sv/staden-och-beslutsfattandet/esbo-stad-x-helsinki-pride\">Esbo stad x Helsingfors Pride | Esbo stad&nbsp;</a></p>",
                "en": "Tote Bag Workshop&nbsp;<p><strong>Thu, June 11, 2026, 4:00–6:00 p.m. | Entresse Library Workshop</strong></p><p><strong>Tote-ally Proud – Carried with Pride</strong></p><p>Would you like to come and customize your own clothes or flags? In this workshop, we’ll use a vinyl cutter to create colorful iron-on designs on fabric. The first 50 participants will receive a tote bag from the library.</p><p>You can also make stickers at the workshop!&nbsp;</p><p>This year, the City of Espoo is a “Working with Pride” partner of Helsinki Pride. Read more about the Pride Month program for Espoo libraries and the entire City of Espoo on the City of Espoo’s Pride page: <a href=\"https://www.espoo.fi/en/city-and-decision-making/city-espoo-x-helsinki-pride\">City of Espoo x Helsinki Pride | City of Espoo&nbsp;</a></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpd6vh4b4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpgslee6y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2384769,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-27T10:20:41.415348Z",
                    "last_modified_time": "2026-05-27T10:20:41.415366Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/051f5a6b-ba74-4875-8540-b97ae1ee9ab4.png",
                    "name": "",
                    "cropping": "1036,0,3111,2074",
                    "photographer_name": "Canva",
                    "alt_text": "piirroskuvat hamsteri, siili, sammakko katsoo yhdessä elokuvaa syöden poppareita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384769/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-27T10:21:25.621777Z",
            "last_modified_time": "2026-06-04T11:08:02.340980Z",
            "date_published": null,
            "start_time": "2026-06-05T14:30:00Z",
            "end_time": "2026-06-05T16: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,
            "location_extra_info": {
                "fi": "Sininen huone"
            },
            "provider": null,
            "name": {
                "fi": "Queer-kino leffailta (K-7)"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule mukaan katsomaan leffaa kirjastolle!"
            },
            "description": {
                "fi": "Queer-kino leffailta (K-7)<p>Perjantaina 5.6. Entressen kirjaston sinisessä huoneessa klo 17.30-19.30</p><p>Tule mukaan katsomaan leffaa kirjastolle!</p><p><br></p><p>Espoon kaupunki on tänä vuonna Helsinki Priden Working with Pride -kumppani. Lue lisää Espoon kirjastojen sekä koko Espoon kaupungin Pride-kuukauden ohjelmasta Espoon kaupungin Pride-sivulta <a href=\"https://www.espoo.fi/fi/kaupunki-ja-paatoksenteko/espoon-kaupunki-x-helsinki-pride\">Espoon kaupunki x Helsinki Pride | Espoon kaupunki&nbsp;</a></p><p><br></p><p>Tapahtuman järjestää kirjasto</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpgslee6y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpjeyby7i",
            "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:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2384948,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-06-03T07:18:06.469218Z",
                    "last_modified_time": "2026-06-03T07:18:06.469231Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/43f9d634-4a3d-4e30-bd32-51adf8c5a3be.jfif",
                    "name": "Ilmaisia Kuvia : lelu, hauska, pelit, viihde, gesellschaftsspiel,",
                    "cropping": "46,0,229,183",
                    "photographer_name": "",
                    "alt_text": "Ilmaisia Kuvia : lelu, hauska, pelit, viihde, gesellschaftsspiel,",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384948/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-04T10:50:17.954509Z",
            "last_modified_time": "2026-06-04T10:56:25.666973Z",
            "date_published": null,
            "start_time": "2026-06-10T10:00:00Z",
            "end_time": "2026-06-10T12: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,
            "location_extra_info": {
                "fi": "Lasten osasto"
            },
            "provider": null,
            "name": {
                "fi": "Lautapelikerho"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tapahtuma on tarkoitettu alakoululaisille."
            },
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu alakoululaisille. Se pidetään Lastenosastossa. Vapaa pääsy.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpjeyby7i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69102",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384765,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-27T07:14:15.209322Z",
                    "last_modified_time": "2026-05-27T07:14:15.209339Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785662.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384765/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-27T07:14:15.060050Z",
            "last_modified_time": "2026-06-03T12:14:17.483345Z",
            "date_published": null,
            "start_time": "2026-09-26T06:00:00Z",
            "end_time": "2026-09-26T09: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.annantalo.fi/fi/tapahtumat/event/489CCC9709BE14B9F746E90CEE31A5FD/Yalla_Disko",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/489CCC9709BE14B9F746E90CEE31A5FD/Yalla_Disko",
                "en": "http://www.annantalo.fi/en/events/event/489CCC9709BE14B9F746E90CEE31A5FD/Yalla_Disko"
            },
            "location_extra_info": null,
            "provider": null,
            "name": {
                "fi": "Yalla Disko",
                "sv": "Yalla Disko",
                "en": "Yalla Disko"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Hypätään yhdessä värikkäälle tanssilattialle, missä arabihitit pauhaavat, ilmapallot lentelevät ja nauru raikaa!",
                "sv": "Kom med på disko där arabiska hits spelas, ballonger svävar omkring och skrattet bubblar!",
                "en": "Come join us on a colorful dance floor where Arabic hits are playing, balloons float around, and laughter fills the air!"
            },
            "description": {
                "fi": "<p>Hypätään yhdessä värikkäälle tanssilattialle, missä arabihitit pauhaavat, ilmapallot lentelevät ja nauru raikaa!</p><p>Yalla Collectiven DJ pistää bileet käyntiin, Ramithawi tuo taian lavalle live-musiikillaan ja Mo-Clown hassuttelee. Leikit ja erilaiset taidetyöpajat tempaavat koko perheen mukaansa. Kasvomaalaus voi muuttaa sinut vaikka tiikeriksi. Nähdään tanssilattialla!</p><p>Kaikki ovat tervetulleita!</p><p>Yalla Disko on osa Nomads Festivaalia. Tapahtuman tuottaa Kulttuuriyhdistämö Interkult yhteistyössä Annantalon kanssa.</p>",
                "sv": "<p>Kom med på disko där arabiska hits spelas, ballonger svävar omkring och skrattet bubblar!</p><p>Yalla Collectives DJ sätter igång festen, Ramithawi bjuder på härlig livemusik, Mo-Clown skojar och hittar på bus, och det finns roliga lekar och kreativa verkstäder för alla. I ansiktsmålningen kan du till exempel bli en tiger!</p><p>Yalla Disko är en del av Nomads Festival och ordnas av Interkult tillsammans med Annegården.</p>",
                "en": "<p>Come join us on a colorful dance floor where Arabic hits are playing, balloons float around, and laughter fills the air!</p><p>Yalla Collective’s DJ gets the party started, Ramithawi brings magic to the stage with live music, Mo-Clown brings fun and silliness, and there are playful games and creative workshops for everyone. At the face painting station, you can even turn into a tiger!</p><p>Yalla Disco is part of the Nomads Festival and is produced by Interkult in collaboration with Annantalo.</p>",
                "ar": "<p><p lang=\"ar\" dir=\"rtl\"><br>انضموا إلينا إلى ساحة رقص مليئة بالألوان، حيث تُعزف أشهر الأغاني العربية، وتطفو البالونات في كل مكان، ويملأ الضحك الأجواء! يفتتح دي جي \"مجموعة يلا\" الحفلة، ويقدّم \"راميثاوي\" سحره على المسرح من خلال عرض موسيقي حي، بينما يضيف المهرّج \"مو\" أجواءً من المرح والضحك، كما تتوفر ألعاب ممتعة وورش إبداعية للجميع. وفي ركن رسم الوجوه، يمكنكِ حتى أن تتحول إلى نمر!<br></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69102/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}