Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 10295,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=17&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=15&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:66800",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-taeydelliset-vieraat-3964060/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-taeydelliset-vieraat-3964060/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-taeydelliset-vieraat-3964060/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490511,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-25T14:13:51.945502Z",
                    "last_modified_time": "2025-08-25T14:13:51.945519Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775905.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490511/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-25T14:13:51.820931Z",
            "last_modified_time": "2025-08-25T14:13:52.142666Z",
            "date_published": null,
            "start_time": "2025-09-01T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "name": {
                "fi": "Ennakkonäytös: Täydelliset vieraat (S) – Kino Helios",
                "sv": "Ennakkonäytös: Täydelliset vieraat (S) – Kino Helios",
                "en": "Ennakkonäytös: Täydelliset vieraat (S) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Malmitalon oma ennakkonäytös 19.9. ensi-iltaan tulevasta elokuvasta!</p><p>Eräänä iltana ryhmä ystävyksiä kokoontuu yhteiselle illalliselle. Koko ikänsä toisensa tunteneiden pariskuntien leikkimielinen sanailu eskaloituu moderniksi aikuisten versioksi lapsuuden totuus vai tehtävä -leikistä, kun kukaan ei saata kieltäytyä esitetystä haasteesta. Tämän illan ajan kaikki puhelut, tekstiviestit, Whatsuppit ja muut viestit ovat julkisia. Onko tosiaan niin, että kenelläkään ei ole mitään salaisuuksia?</p><p>Illallisvieraina nähdään joukko Suomen eturivin näyttelijöitä: Laura Birn, Hannu-Pekka Björkman, Pirjo Lonka, Malla Malmivaara, Joonas Saartamo, Pekka Strang ja Jani Volanen.</p><p>Ikäraja: S<br>Kesto: 91 min<br>Ensi-ilta: 19.09.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Malmitalon oma ennakkonäytös 19.9. ensi-iltaan tulevasta elokuvasta!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/875F38FB9AD72EE8C4A916D265FE4557/Ennakkonaytos_Taydelliset_vieraat_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/875F38FB9AD72EE8C4A916D265FE4557/Ennakkonaytos_Taydelliset_vieraat_S_",
                "en": "http://www.malmitalo.fi/en/events/event/875F38FB9AD72EE8C4A916D265FE4557/Ennakkonaytos_Taydelliset_vieraat_S_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66800/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:37917990-4947-4ae5-90e8-1aa05d50a519",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "0"
                    },
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=174_re-test_2582110806475"
                    },
                    "description": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "created_time": "2025-08-25T12:44:03.091376Z",
            "last_modified_time": "2025-08-25T12:45:42.830706Z",
            "date_published": "2025-08-25T12:42:14Z",
            "start_time": "2025-08-31T05:00:00Z",
            "end_time": "2025-08-31T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 5,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 100,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-08-26T08:00:00+03:00",
            "enrolment_end_time": "2025-08-27T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Annantalo"
            },
            "name": {
                "fi": "#174 re-test 25.8."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<div><p>tarkka kuvaus</p></div>"
            },
            "short_description": {
                "fi": "lyhyt kuvaus"
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:37917990-4947-4ae5-90e8-1aa05d50a519/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:315b92c3-087d-44a6-97aa-7b2b6176db64",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "0"
                    },
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=172_re-test_25-8-_new465251249"
                    },
                    "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:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                }
            ],
            "created_time": "2025-08-25T12:17:53.242192Z",
            "last_modified_time": "2025-08-25T12:17:53.242212Z",
            "date_published": "2025-08-25T12:09:22Z",
            "start_time": "2025-09-01T05:00:00Z",
            "end_time": "2025-09-01T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 99,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 100,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-08-26T08:00:00+03:00",
            "enrolment_end_time": "2025-08-26T20:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Annatalo"
            },
            "name": {
                "fi": "#172 re-test 25-8- new"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<div><p>tarkka kuvaus</p></div>"
            },
            "short_description": {
                "fi": "lyhyt kuvaus"
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:315b92c3-087d-44a6-97aa-7b2b6176db64/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66912",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/vuotalo-tiistaimatinea-smokey-blues-band-vuotalo-20182293/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490507,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-25T12:13:57.027486Z",
                    "last_modified_time": "2025-08-25T12:13:57.027508Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774905.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490507/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-25T12:13:56.904171Z",
            "last_modified_time": "2025-08-25T12:13:57.183405Z",
            "date_published": null,
            "start_time": "2025-09-04T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "name": {
                "fi": "Flyygelikuu: Joseph Tong"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Syyskauden ensimmäinen flyygelikuun pianisti Joseph Tong on erityisen arvostettu Jean Sibeliuksen pianomusiikin tulkitsijana.</p><p>Joseph Tong on brittiläinen pianisti, joka tunnetaan monipuolisuudestaan ja luovasta ilmaisustaan. Hän on opiskellut Cambridgessa, Wellsin katedraalikoulussa ja Lontoon Royal Academy of Musicissa. Hän esiintyy säännöllisesti soolopianistina, kamarimuusikkona ja pianoduona eri puolilla Eurooppaa.</p><p>Tong on erityisen arvostettu Jean Sibeliuksen pianomusiikin tulkitsijana. Hän on levyttänyt kolme Sibelius-albumia ja esiintynyt useasti Suomessa, mm. Korpo Sibelius -festivaalilla, Ainolassa ja Helsingin Musiikkitalossa. Hänen resitaalinsa St John’s Smith Square -salissa vuonna 2015 lähetettiin suorana BBC Radio 3:ssa.</p><p>Levytysurallaan Tong on saanut useita tunnustuksia, mukaan lukien BBC Music Magazine -palkinnot. Hän on tehnyt yhteistyötä mm. viulisti Fenella Humphreysin ja pianisti Waka Hasegawan kanssa. Hän konsertoi myös veljensä Danielin kanssa ja on esiintynyt Japanissa ja Yhdysvalloissa.</p><p>Viimeaikaisia kohokohtia ovat mm. Schubertin Wanderer-fantasian juhlakonsertti Wigmore Hallissa, resitaalit Espanjassa ja Saksassa sekä kantaesitykset uusista teoksista säveltäjiltä Lara Poe ja Terhi Dostal.</p><p>Joseph Tong toimii opettajana Wellsin katedraalikoulussa ja johtaa Wells International Piano Summer Schoolia. <br>Brittipianisti Joseph Tong soittaa Sibeliuksen iki-ihanat Puut sekä niistä inspiroituneen upouuden sävellyksen suomalaiselta Terhi Dostalilta.</p><p>Ohjelma:<br>Schumann  Arabeske in C Op. 18<br>Sibelius 'Puusarjas' Op. 75<br>Terhi Dostal  'The Willows Suite' (2024, Finland Premiere)<br>David Matthews  'Five Trees' Op. 163.</p><p>Vapaa pääsy<br>Kesto: 45min</p>"
            },
            "short_description": {
                "fi": "Syyskauden ensimmäinen flyygelikuun pianisti Joseph Tong on erityisen arvostettu Jean Sibeliuksen pianomusiikin tulkitsijana."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CFF9354BBF4404514C2A97ED8AF08B47/Flyygelikuu_Joseph_Tong"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66912/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66910",
            "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: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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/stella-polaris-malmi-noir-improvisoitu-rikosdraama-vuotalo-20576688/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490506,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-25T12:13:56.226627Z",
                    "last_modified_time": "2025-08-25T12:13:56.226642Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776885.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490506/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-25T12:13:56.076405Z",
            "last_modified_time": "2025-08-25T12:13:56.436206Z",
            "date_published": null,
            "start_time": "2025-09-03T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Vuosaari-toimikunta yhteistyössä Vuosaari-Seuran ja Vuosaari-Säätiön kanssa"
            },
            "name": {
                "fi": "Vuosaaren kaupunginosavision loppuraportin julkaisutilaisuus – Millainen olisi unelmien Vuosaari vuonna 2035?"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Lämpimästi tervetuloa kuulemaan Vuosaaren kaupunginosavision loppuraporttia!</p><p>Tilaisuudessa:<br>-\tTutkija Annaliina Niitamo esittelee visiotyön loppuraportin<br>-\tKeskustellaan raportin tuloksista ja Vuosaaren tulevaisuudesta<br>-\t Vuosaarelaisten valtuutettujen paneeli</p><p>Mikä on Vuosaaren kaupunginosavisio?<br>Visiotyö syventyy siihen, mitä Vuosaaren asukkaat, yhteisöt ja toimijat ajattelevat alueestaan ja sen tulevaisuudesta. Vision tuottaa Vuosaari-toimikunta. Helsingin kaupungin eri toimijat<br>ovat mukana edistämässä visiotyötä.</p><p>Vision tavoitteena on:<br>-\tToimia asukasosallisuuden lähteenä<br>-\t Tarjota päättäjille ja virkamiehillä monipuolista tietoa päätöksenteon tueksi<br>-\tVarmistaa, että vuosaarelaisten ääni kuuluu</p><p>Raporttia edelsi laaja kysely, johon vastasi 1 146 aikuista ja 460 opiskelijaa syksyllä 2024. Lisäksi järjestettiin temaattisia keskustelutilaisuuksia ja kaupunkilaispaneeleita tammi–helmikuussa 2025. Lopputuloksena syntyi raportti, joka tukee päätöksentekoa ja tarjoaa arvokasta tietoa alueen<br>toimijoille, asukkaille ja uusille tulijoille.</p><p>Tervetuloa mukaan kuulemaan, millainen olisi unelmien Vuosaari vuonna 2035</p><p>Paikka: Vuosali, Vuotalo (Mosaiikkitori 2)<br>Kellonaika: 18-20</p><p>Vapaa pääsy!</p><p>Järjestäjä: Vuosaari-toimikunta yhteistyössä Vuosaari-Seuran ja Vuosaari-Säätiön ja Vuotalon kanssa</p>"
            },
            "short_description": {
                "fi": "Lämpimästi tervetuloa kuulemaan Vuosaaren kaupunginosavision loppuraporttia!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2C00A65A88C91478573F806B19725B49/Vuosaaren_kaupunginosavision_loppuraportin_julkaisutilaisuus"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66910/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66911",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "46,80/48,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/erja-lyytinen-friends-blue-christmas-2025-savoy-teatteri-20527966/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490505,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-25T11:14:07.770184Z",
                    "last_modified_time": "2025-08-25T11:14:07.770202Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776887.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490505/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-25T11:14:07.579679Z",
            "last_modified_time": "2025-08-25T11:14:08.003043Z",
            "date_published": null,
            "start_time": "2025-12-20T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Bluesland Productions"
            },
            "name": {
                "fi": "Erja Lyytinen & Friends: Blue Christmas 2025"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Erja Lyytinen – Hanna Pakarinen – Kärtsy Hatakka</p><p>Kitaravirtuoosi <b>Erja Lyytinen</b> on ilahduttanut konserttiyleisöjä jouluisella Blue Christmas – kiertueellaan jo vuodesta 2017 lähtien! Lyytinen on yksi johtavista kansainvälisillä markkinoilla operoivista blues-rock kitaristeista ja hänet onkin palkittu useasti eri kategorioissa vuosien varrella. Vuonna 2022 Lyytinen teki historiaa olemalla ehdolla ensimmäisenä suomalaisena artistina Kanadan Maple Blues Awardseissa. Marraskuussa 2024 Lyytiselle myönnettiin Brittiläisen HRH–festivaalin toimesta Angel of Rock -palkinto. Palkinto myönnetään merkittävästä panoksesta rockin, metallin tai blues-musiikin saralla. Uransa aikana Lyytinen on esiintynyt maailman kärkikaartiin kuuluvien kitaristien, kuten Carlos Santanan, Sonny Landrethin, Jennifer Battenin ja Joe Bonamassan rinnalla. Lyytisen viimeisin albumi ”Smell the Roses” julkaistiin keväällä 2025. Albumi on saanut kiitettäviä arvioita kansainvälisissä julkaisuissa ja sijoittui kuudenneksi UK:n IBBA:n huhtikuun 2025 radiolistalla. Laulajantaitojaan Lyytinen pääsi esittelemään Masked Singer -ohjelmassa Luurankona. Tänäkin vuonna Blue Christmas -konsertissa kuullaan kattaus Lyytisen tuotannosta, tunnelmallisia sinisiä säveliä ja jouluisia rokkaavia kappaleita upeiden artistivieraiden kera!</p><p><b>Hanna Pakarinen</b> tunnetaan kautta aikain ensimmäisenä ja ehdottomasti legendaarisimpana Suomen Idolsin voittajana. Hänen kruunajaisiaan seurasi TV:n välityksellä peräti 1,6 miljoonaa katsojaa. Entistä isompien miljoonayleisöjen eteen Pakarinen nousi vuonna 2007, jolloin upeaääninen artisti edusti Suomea Euroviisuissa, harvinaisesti vieläpä kotikentällä Helsingin Hartwall Arenalla. Sooloalbumeillaan kulta- ja platinarajoja rikkoneesta Hanna Pakarisesta on huokunut läpi hänen uransa ajan jättiläismäinen palo musiikkia kohtaan. Hän on suunnannäyttäjä, jonka esimerkillä on ollut iso vaikutus monen uuden aallon tähtinimen polkuun. Sukupolvien yli ulottuva arvostus on vain kasvanut sen jälkeen, kun Pakarinen päätti kahdeksan vuoden julkaisutaukonsa syksyllä 2021. Esiintyminen on Pakariselle artistina olemisessa tärkeintä, ja hän onkin kertonut lavalla olemisen yhdeksi parhaista paikoista maailmassa. Pakarinen ilahdutti Blue Christmas kuulijoita jo vuoden 2024 kiertueella Rovaniemen konsertissa valaisten positiivisella olemuksellaan jouluisen konserttiyleisön.</p><p><b>Kärtsy Hatakka</b> tunnetaan parhaiten 80-luvun puolivälistä asti toimineen Waltari-yhtyeen laulajana ja primusmoottorina. Metallia, taidemusiikkia, kansanmusiikkia ja funkia yhdistelevä Waltari on pohjustanut suomalaisten metalliyhtyeiden menestystä Euroopassa, ja on esiintynyt megafestivaaleilla mm. Roskildessä ja Wackenissa. Viime vuosina Kärtsy on tullut suurelle yleisölle tutuksi myös vaikuttavana sooloesiintyjänä, joka loikkii genrerajojen yli vakuuttavan vaivattomasti. Soolotuotannossaan Kärtsy on soljunut popista rockiin leimaten omiin nimiinsä signature soundillaan kaikki esittämänsä cover-biisit. Keväällä 2025 Tähdet, Tähdet -kisassa Kärtsy ällistytti suomalaisen TV-yleisön taituruudellaan ja autenttisella rokkitähden olemuksellaan. Tänä vuonna Kärtsy tempaa mukaansa Blue Christmas konsertin kuulijat ainutlaatuisella lavakarismallaan ja persoonallisella äänellään!</p><p>Ikäraja: S</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p>"
            },
            "short_description": {
                "fi": "Erja Lyytinen – Hanna Pakarinen – Kärtsy Hatakka"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C96530CB4A374C1EC27F5A56BA5C5467/_Erja_Lyytinen_Friends_Blue_Christmas_2025"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66911/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:b57396a2-5895-4dfc-81f2-19448ffc5b5f",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "0"
                    },
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=181_Tapahtuman_tietojen_pivittminen_julkaisun_jlkeen3636453610"
                    },
                    "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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2025-08-25T06:45:37.935919Z",
            "last_modified_time": "2025-08-25T06:45:37.935940Z",
            "date_published": "2025-02-14T10:06:51Z",
            "start_time": "2025-10-20T09:16:00Z",
            "end_time": "2025-10-20T11:16:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 10,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 100,
            "minimum_attendee_capacity": 5,
            "enrolment_start_time": "2025-08-25T07:00:00+03:00",
            "enrolment_end_time": "2025-10-19T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Annantalo",
                "sv": "test",
                "en": "test"
            },
            "name": {
                "fi": "#181 Tapahtuman tietojen päivittäminen julkaisun jälkeen",
                "sv": "test",
                "en": "test"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "test"
            },
            "description": {
                "fi": "<div><p>testeste</p></div>",
                "sv": "<div><p>test</p></div>",
                "en": "<div><p>testt</p></div>"
            },
            "short_description": {
                "fi": "test",
                "sv": "test",
                "en": "test"
            },
            "info_url": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:b57396a2-5895-4dfc-81f2-19448ffc5b5f/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66729",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "35 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/the-69-eyes/goth-by-xmas-the-69-eyes-3929665/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1219504,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T14:14:28.396745Z",
                    "last_modified_time": "2025-07-09T14:14:28.396763Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775803.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1219504/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-09T13:16:42.986598Z",
            "last_modified_time": "2025-08-22T12:14:05.369070Z",
            "date_published": null,
            "start_time": "2025-12-10T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Sunborn Events"
            },
            "name": {
                "fi": "Goth By Xmas: The 69 Eyes"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Legendaarinen The 69 Eyes nousee Savoy-teatterin lavalle keskiviikkona 10.12.25. Goth By Xmas-konsertti on yhtyeen ainoa esiintyminen Helsingissä loppuvuoden aikana.</p><p>Kesto n. 1h 30min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>"
            },
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/8DC70B1AB81066EBA419A91752420512/Goth_By_Xmas_The_69_Eyes"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66729/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66882",
            "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: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:44/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490494,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-21T14:13:49.751152Z",
                    "last_modified_time": "2025-08-21T14:13:49.751169Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776472.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490494/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-21T14:13:49.618320Z",
            "last_modified_time": "2025-08-22T08:13:52.069266Z",
            "date_published": null,
            "start_time": "2025-08-30T12:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "name": {
                "fi": "Metsäkonsertissa Kielo Kärkkäinen – Suomen luonnon päivä Karhukalliolla",
                "sv": "Metsäkonsertissa Kielo Kärkkäinen – Suomen luonnon päivä Karhukalliolla",
                "en": "Metsäkonsertissa Kielo Kärkkäinen – Suomen luonnon päivä Karhukalliolla"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Kielo Kärkkäisen elokuinen esitys koostuu musiikista, runoista ja yhteisestä tarinoinnista.</p><p>Laulaja-lauluntekijä esittää folkia suomeksi, espanjaksi ja englanniksi, minkä lisäksi myös yleisö pääsee laulamaan. Tilaisuuden dramaturgia muotoutuu ympäristön, läsnäolijoiden ja sään yhteistyönä. Metsä on salliva konserttisali, jossa voi istua tai kuljeskella, havainnoida, nauttia eväistä sekä tutustua muihin eläviin.</p><p>Katsomona konsertissa on 20 riippumattoa ja kallioinen katsomo. Ota varmuudeksi mukaan oma alusta.</p><p>Huom! Lähdetään yhdessä konserttipaikalle klo 15.15 Karhukallion metsän eteläisestä reunasta (Viilarintien ja Holkkitien risteys)</p><p><b>Näin pääset paikalle:</b> <br>Pääset paikalle esimerkiksi Itäkeskuksesta pikaratikalla 15. Jää pois Kauppamyllyntien pysäkillä. <br>  <br>Kävellen tai pyörällä matka on Stoasta n. 1,7 kilometriä. Pyöräparkki Kauppamyllyntien pysäkin kohdalla.<br>  <br>Astu metsään sen eteläisestä reunasta, Holkkitien ja Viilarintien risteyksestä. Olemme teitä siellä vastassa ja neuvomme eteenpäin.</p><p>HUOM! Metsäpolku ei ole esteetön. Kulku kivikkoisella ja juurakkoisella polulla.</p><p><b>Muita ohjeita:</b>  <br>• Pukeudu säänmukaisesti ja varustaudu hyvillä jalkineilla.  <br>• Mukaan voi ottaa myös omaa evästä. Älä jätä metsään mitään roskia.</p><p>Kieli: suomi, englanti ja espanja<br>Ikäsuositus: avoin kaikille, lapset aikuisten seurassa<br>Kesto: 45 min<br>Vapaa pääsy</p><p>Tapahtumalla on säävaraus. Kovalla sateella tai myrskyllä se siirtyy Stoaan, Itäkeskuksen kirjaston tiloihin. Pienellä tihkusateella konsertti pidetään Karhukalliolla.</p>"
            },
            "short_description": {
                "fi": "Kielo Kärkkäisen elokuinen esitys koostuu musiikista, runoista ja yhteisestä tarinoinnista."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/34D290B90025989D1F3731BA96D0A4D5/Metsakonsertissa_Kielo_Karkkainen",
                "sv": "http://www.stoa.fi/sv/evenemang/event/34D290B90025989D1F3731BA96D0A4D5/Metsakonsertissa_Kielo_Karkkainen",
                "en": "http://www.stoa.fi/en/events/event/34D290B90025989D1F3731BA96D0A4D5/Metsakonsertissa_Kielo_Karkkainen"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66882/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66694",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:99/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1203857,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T14:14:09.078879Z",
                    "last_modified_time": "2025-07-07T14:14:09.078894Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772891.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203857/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T14:14:08.940485Z",
            "last_modified_time": "2025-08-22T08:13:51.055396Z",
            "date_published": null,
            "start_time": "2025-08-29T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "name": {
                "fi": "Kaunasin nukketeatteri (LT): Leijona ja Lintu - Liūtas ir paukštis – Sampo Festivaali 2025",
                "sv": "Kaunas dockteater (LT): Lejonet och fågeln – Liūtas ir paukštis – Sampo-festivalen 2025",
                "en": "Kaunas State Puppet Theatre (LT):Lion and Bird (Liūtas ir paukštis) – Sampo Festival 2025"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan. Esitys on LOPPUUN VARATTU!!!</p><p>Tämä Leijona on erilainen kuin muut leijonat: se on hyvin herkkä ja empaattinen, joten se kutsuu Linnun asumaan omaan viihtyisään kotiinsa. Näin alkaa odottamaton, mutta todellinen ja syvällinen ystävyys kahden hyvin erilaisen eläimen välillä. Päivät kuluvat, joulu tulee ja menee, Lintu toipuu ja haluaa nousta siivilleen, joten ystävien on väistämättä erottava... Todellinen ystävyys ei kuitenkaan koskaan katoa - lämmin tunne kulkee aina mukana, ja rakas ystävä asuu erityisessä paikassa - sydämessä.<br>Kunnes ystävät tapaavat jälleen...</p><p>Tämä hienovarainen ja inspiroiva tarina ystävyydestä ja sen merkityksestä palkittiin vuonna 2023 Liettuan parhaana nukketeatteri- ja esineteatteriesityksenä \"Näyttämön kultaisella ristillä”.</p><p><b>Esitys on tarkoitettu päiväkotiryhmille, pakollinen ilmoittautuminen osoitteessa kultus.hel.fi</b></p><p>Ohjaaja: Kata Csató<br>Skenografia ja nukeilla näytteleminen – Julija Skuratova <br>Musiikki: Rita Mačiliūnaitė</p><p>Kohderyhmä: koko perhe, 3-103v.<br>Kesto 45min.<br>Kieli: Sanaton</p>",
                "sv": "<p>En höstdag hittar lejonet en skadad fågel i sin trädgård. Föreställningen är FULLBOKAD</p><p>Lejonet är inte som andra lejon: det är väldigt känsligt och empatiskt, så det bjuder in fågeln till sitt trivsamma hem. Så börjar en oväntad men genuin och djup vänskap mellan två väldigt olika djur. Dagarna flyter förbi, julen kommer och går, fågeln återhämtar sig och vill flyga igen, så vännerna är tvungna att skiljas åt... Men äkta vänskap försvinner aldrig – den varma känslan följer alltid med och en kär vän bor på en särskild plats – i hjärtat.<br>Tills vännerna möts igen...</p><p>Den finstämda och inspirerande berättelsen om vänskap och vad den betyder belönades 2023 med ”Scenens gyllene kors” som Litauens bästa dock- och föremålsteaterföreställning.</p><p><b>Föreställningen är avsedd för daghemsgrupper; anmälan är obligatorisk på kultus.hel.fi.</b><br> <br>Regi: Kata Csató<br>Iscensättning och dockskådespeleri: Julija Skuratova <br>Musik: Rita Mačiliūnaitė</p><p>Åldersrekommendation: För hela familjen 3–103 år <br>Längd 45 min.<br>Språk: ordlöst</p>",
                "en": "<p>A Puppet Theatre Performance About True and Genuine Friendship. The performance is FULLY BOOKED!</p><p>One day, Lion finds aninjured Bird in his autumnal garden. This Lion is different from other lions: he is very sensitive and caring, so he allows Bird to live in his cozy home. Thus begins an unexpected but true and profound friendship between two very different animals. Days go by, Christmas comes and goes, Bird recovers and wants to leave, so the friends inevitably have to part... However, true friendship never disappears - the warm feeling always travels together, and a dear friend lives in a special place – in the heart.<br>Until the moment when the friends meet again...</p><p>The Performance was awarded with the “Golden Stage Cross” for the best Puppet and Object Theatre Performance in Lithuania in the year 2023.</p><p><b>The performance is intended for daycare groups; registration is mandatory at kultus.hel.fi.</b></p><p>Director: Kata Csató<br>Scenography & acting with puppets– Julija Skuratova <br>Composer – Rita Mačiliūnaitė</p><p>For the whole family 3–103 v. <br>Duration 45min.<br>Language: nonverbal</p>"
            },
            "short_description": {
                "fi": "Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan. Esitys on LOPPUUN VARATTU!!!",
                "sv": "En höstdag hittar lejonet en skadad fågel i sin trädgård. Föreställningen är FULLBOKAD",
                "en": "A Puppet Theatre Performance About True and Genuine Friendship. The performance is FULLY BOOKED!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A163107FB3095975F414186C60D33B0F/Kaunasin_nukketeatteri_LT_Leijona_ja_Lintu_-_Li_tas_ir_pauk_tis",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/A163107FB3095975F414186C60D33B0F/Kaunas_dockteater_LT_Lejonet_och_fageln_Li_tas_ir_pauk_tis",
                "en": "http://www.annantalo.fi/en/events/event/A163107FB3095975F414186C60D33B0F/Kaunas_State_Puppet_Theatre_LT_Lion_and_Bird_Li_tas_ir_pauk_tis_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66694/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66231",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:99/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1203856,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T14:14:08.554183Z",
                    "last_modified_time": "2025-07-07T14:14:08.554198Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772890.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203856/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T14:14:08.388237Z",
            "last_modified_time": "2025-08-22T08:13:50.648901Z",
            "date_published": null,
            "start_time": "2025-08-29T06:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "name": {
                "fi": "Kaunasin nukketeatteri (LT): Leijona ja Lintu - Liūtas ir paukštis – Sampo Festivaali 2025",
                "sv": "Kaunas dockteater (LT): Lejonet och fågeln – Liūtas ir paukštis – Sampo-festivalen 2025",
                "en": "Kaunas State Puppet Theatre (LT):Lion and Bird (Liūtas ir paukštis) – Sampo Festival 2025"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan. Esitys on LOPPUUN VARATTU!!!</p><p>Tämä Leijona on erilainen kuin muut leijonat: se on hyvin herkkä ja empaattinen, joten se kutsuu Linnun asumaan omaan viihtyisään kotiinsa. Näin alkaa odottamaton, mutta todellinen ja syvällinen ystävyys kahden hyvin erilaisen eläimen välillä. Päivät kuluvat, joulu tulee ja menee, Lintu toipuu ja haluaa nousta siivilleen, joten ystävien on väistämättä erottava... Todellinen ystävyys ei kuitenkaan koskaan katoa - lämmin tunne kulkee aina mukana, ja rakas ystävä asuu erityisessä paikassa - sydämessä.<br>Kunnes ystävät tapaavat jälleen...</p><p>Tämä hienovarainen ja inspiroiva tarina ystävyydestä ja sen merkityksestä palkittiin vuonna 2023 Liettuan parhaana nukketeatteri- ja esineteatteriesityksenä \"Näyttämön kultaisella ristillä”.</p><p><b>Esitys on tarkoitettu päiväkotiryhmille, pakollinen ilmoittautuminen osoitteessa kultus.hel.fi</b></p><p>Ohjaaja: Kata Csató<br>Skenografia ja nukeilla näytteleminen – Julija Skuratova <br>Musiikki: Rita Mačiliūnaitė</p><p>Kohderyhmä: koko perhe, 3-103v.<br>Kesto 45min.<br>Kieli: Sanaton</p>",
                "sv": "<p>En höstdag hittar lejonet en skadad fågel i sin trädgård. Föreställningen är FULLBOKAD</p><p>Lejonet är inte som andra lejon: det är väldigt känsligt och empatiskt, så det bjuder in fågeln till sitt trivsamma hem. Så börjar en oväntad men genuin och djup vänskap mellan två väldigt olika djur. Dagarna flyter förbi, julen kommer och går, fågeln återhämtar sig och vill flyga igen, så vännerna är tvungna att skiljas åt... Men äkta vänskap försvinner aldrig – den varma känslan följer alltid med och en kär vän bor på en särskild plats – i hjärtat.<br>Tills vännerna möts igen...</p><p>Den finstämda och inspirerande berättelsen om vänskap och vad den betyder belönades 2023 med ”Scenens gyllene kors” som Litauens bästa dock- och föremålsteaterföreställning.</p><p><b>Föreställningen är avsedd för daghemsgrupper; anmälan är obligatorisk på kultus.hel.fi.</b><br> <br>Regi: Kata Csató<br>Iscensättning och dockskådespeleri: Julija Skuratova <br>Musik: Rita Mačiliūnaitė</p><p>Åldersrekommendation: För hela familjen 3–103 år <br>Längd 45 min.<br>Språk: ordlöst</p>",
                "en": "<p>A Puppet Theatre Performance About True and Genuine Friendship. The performance is FULLY BOOKED!</p><p>One day, Lion finds aninjured Bird in his autumnal garden. This Lion is different from other lions: he is very sensitive and caring, so he allows Bird to live in his cozy home. Thus begins an unexpected but true and profound friendship between two very different animals. Days go by, Christmas comes and goes, Bird recovers and wants to leave, so the friends inevitably have to part... However, true friendship never disappears - the warm feeling always travels together, and a dear friend lives in a special place – in the heart.<br>Until the moment when the friends meet again...</p><p>The Performance was awarded with the “Golden Stage Cross” for the best Puppet and Object Theatre Performance in Lithuania in the year 2023.</p><p><b>The performance is intended for daycare groups; registration is mandatory at kultus.hel.fi.</b></p><p>Director: Kata Csató<br>Scenography & acting with puppets– Julija Skuratova <br>Composer – Rita Mačiliūnaitė</p><p>For the whole family 3–103 v. <br>Duration 45min.<br>Language: nonverbal</p>"
            },
            "short_description": {
                "fi": "Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan. Esitys on LOPPUUN VARATTU!!!",
                "sv": "En höstdag hittar lejonet en skadad fågel i sin trädgård. Föreställningen är FULLBOKAD",
                "en": "A Puppet Theatre Performance About True and Genuine Friendship. The performance is FULLY BOOKED!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9492729087358B0040D2E01399D2F976/Kaunasin_nukketeatteri_LT_Leijona_ja_Lintu_-_Li_tas_ir_pauk_tis",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9492729087358B0040D2E01399D2F976/Kaunas_dockteater_LT_Lejonet_och_fageln_Li_tas_ir_pauk_tis",
                "en": "http://www.annantalo.fi/en/events/event/9492729087358B0040D2E01399D2F976/Kaunas_State_Puppet_Theatre_LT_Lion_and_Bird_Li_tas_ir_pauk_tis_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66231/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66887",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "24,90 € / 20 €",
                        "sv": "24,90 € / 20 €",
                        "en": "24,90 € / 20 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jore-marjaranta-olli-ahvenlahti-jore-marjaranta-olli-ahvenisto-joulun-tuoksu-konsertti-vuotalo-20353015/",
                        "sv": "https://www.lippu.fi/event/jore-marjaranta-olli-ahvenlahti-jore-marjaranta-olli-ahvenisto-joulun-tuoksu-konsertti-vuotalo-20353015/",
                        "en": "https://www.lippu.fi/event/jore-marjaranta-olli-ahvenlahti-jore-marjaranta-olli-ahvenisto-joulun-tuoksu-konsertti-vuotalo-20353015/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490496,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-21T15:14:22.860196Z",
                    "last_modified_time": "2025-08-21T15:14:22.860214Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774955.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490496/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-21T15:14:22.746057Z",
            "last_modified_time": "2025-08-21T15:14:23.011150Z",
            "date_published": null,
            "start_time": "2025-12-13T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "name": {
                "fi": "Jore Marjaranta & Olli Ahvenlahti: Joulun tuoksu",
                "sv": "Jore Marjaranta & Olli Ahvenlahti: Joulun tuoksu",
                "en": "Jore Marjaranta & Olli Ahvenlahti: Joulun tuoksu"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Virittäydytään jouluun! Konsertissa kuullaan tunnelmallisia ja koskettavia joululauluja.</p><p>Leningrad Cowboys -yhtyeen keulahahmona tutuksi tullut kaunisääninen pop-tenori Jore Marjaranta on tehnyt mittavan soolouran laulaja-lauluntekijänä useiden albumien ja esiintymisten myötä.<br> <br>Pianon ääreen istahtaa Olli Ahvenlahti, tuo television monista musiikkiohjelmista tuttu pianisti, säveltäjä ja kapellimestari, kotimaisen musiikkiviihteen grand old man.<br> <br>Kaksikon Joulun tuoksu -konserttikokonaisuudessa kuullaan tunnelmallisia ja koskettavia joululauluja.<br> <br>Kesto: 1 t 50 min, sis. 20 min väliajan</p>",
                "sv": "<p>Låt oss komma i stämning inför julen! Konserten bjuder på stämningsfulla och rörande julsånger.</p><p>Den skönsjungande poptenoren Jore Marjaranta är känd som frontfigur i Leningrad Cowboys och har haft en omfattande solokarriär som sångare och låtskrivare med flera album och framträdanden.<br> <br>Vid pianot sitter Olli Ahvenlahti, pianist, kompositör och dirigent, den finska musikunderhållningens grand old man, känd från många musikprogram i TV.<br> <br>Duons Joulun tuoksu-konsert kommer att innehålla stämningsfulla och rörande julsånger.<br> <br>Längd: 1 timmar 50 minuter, inklusive paus 20 minuter</p>",
                "en": "<p>Let us get in the mood for Christmas! The concert will feature atmospheric and touching Christmas songs.</p><p>Known as the frontman of Leningrad Cowboys, the beautiful-voiced pop tenor Jore Marjaranta has had an extensive solo career as a singer-songwriter through several albums and performances.<br> <br>On piano will be Olli Ahvenlahti, a pianist, composer, conductor and grand old man of Finnish music entertainment, known from many TV music programmes.<br> <br>The duo’s Joulun tuoksu (‘Smell of Christmas’) concert will feature atmospheric and touching Christmas songs.<br> <br>Duration: 1 h 50 min, incl. a 20-min intermission</p>"
            },
            "short_description": {
                "fi": "Virittäydytään jouluun! Konsertissa kuullaan tunnelmallisia ja koskettavia joululauluja.",
                "sv": "Låt oss komma i stämning inför julen! Konserten bjuder på stämningsfulla och rörande julsånger.",
                "en": "Let us get in the mood for Christmas! The concert will feature atmospheric and touching Christmas songs."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BF204621C7451244B3AC740DB75D7AD0/Jore_Marjaranta_Olli_Ahvenlahti_Joulun_tuoksu",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/BF204621C7451244B3AC740DB75D7AD0/Jore_Marjaranta_Olli_Ahvenlahti_Joulun_tuoksu",
                "en": "http://www.vuotalo.fi/en/events/event/BF204621C7451244B3AC740DB75D7AD0/Jore_Marjaranta_Olli_Ahvenlahti_Joulun_tuoksu"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66887/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66618",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1000828,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-12T07:13:57.536665Z",
                    "last_modified_time": "2025-06-12T07:13:57.536681Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767362.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1000828/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-12T07:13:57.374925Z",
            "last_modified_time": "2025-08-21T13:13:46.329651Z",
            "date_published": null,
            "start_time": "2025-08-21T14:30:00Z",
            "end_time": "2025-08-21T17: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,
            "provider": null,
            "name": {
                "fi": "Improvisoidut iltamat ja Kaupunkitanssikauden päätösjuhla – Elokuun iltasoitot",
                "sv": "Improviserade soaréer och Stadsdanssäsongens avslutningsfest – Kvällsspelningar i augusti",
                "en": "Improvised Soiree and closing event of the Dancing in the City season – August Evening Song concerts"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Tervetuloa mukaan Kaupunkitanssien päätösjuhlaan! Huom.! Tapahtuma pidetään Vuosalissa.</p><p>Tapahtumassa pääset nauttimaan Tanssiteatteri Tsuumin Improvisoidut iltamat -esityksestä, tanssinopetuksesta sekä tansseista elävän musiikin tahtiin.</p><p>Juhlan aloittaa Improvisoidut iltamat -esitys, joka yhdistää improvisoidun tanssin ja musiikin suomalaiseen iltamaperinteeseen. Esityksessä improvisoitu tanssi ja musiikki yllättävät ja tempaavat mukaansa niin esiintyjät kuin yleisönkin. Tule mukaan todistamaan miten tunnelmat, sävelmät, liikemaailmat ja tarinat syntyvät yleisön silmien edessä!</p><p>Esityksen jälkeen on luvassa vapaat tanssit elävän musiikin tahdittamana. Tanssit alkavat Kaupunkitanssien henkeen tanssinopetuksella. Opetustuokio kestää noin 30 minuuttia ja vapaat tanssit sen jälkeen noin 60 minuuttia.</p><p><b>Ohjelma:</b> <br>Klo 17.30 Improvisoidut iltamat -esitys <br>Klo 18.30 Tanssinopetusta<br>Klo 19–20 Vapaat tanssit elävän musiikin tahtiin</p><p>Vapaa pääsy, tervetuloa! <br>Kesto: noin 2,5 tuntia</p>",
                "sv": "<p>Välkommen till Stadsdansens avslutningsfest!</p><p>På evenemanget kan du njuta av dansteater Tsuums improviserade soaréer, dansundervisning och dans till levande musik.</p><p>Festen inleds med föreställningen Improviserade soaréer (Improvisoidut iltamat), som kombinerar improviserad dans och musik med den finländska soarétraditionen. Dansen och musiken som improviseras i föreställningen överraskar och drar med sig såväl artister som publik. Kom med och bevittna hur stämningar, melodier, rörelsevärldar och berättelser uppstår inför publikens ögon!</p><p>Efter föreställningen utlovas fri dans i takt med levande musik. Dansen börjar i Stadsdansens anda med dansundervisning. Undervisningen varar cirka 30 minuter och den fria dansen cirka 60 minuter därefter.</p><p><b>Program:</b> <br>Kl. 17.30 Föreställningen Improviserade soaréer (Improvisoidut iltamat) <br>Kl. 18.30 Dansundervisning<br>Kl. 19–20 Fri dans i takt med levande musik.</p><p>Längd: cirka 2,5 h</p><p>Fritt inträde. Välkommen!</p>",
                "en": "<p>Join us for the closing event of the Dancing in the City season!</p><p>At the event, you can enjoy the Improvised Soiree performance by Tsuumi Dance Theatre, a dance lesson and dancing to live music.</p><p>The celebration will be kicked off by the Improvised Soiree performance, which combines improvised dance and music with the Finnish soiree tradition. During the performance, the improvised dance and music will surprise and captivate the performers and the audience alike. Come and witness atmospheres, tunes, worlds of movement and stories come alive in front of the audience!</p><p>After the performance, there will be free dancing accompanied by life music. The dancing will begin with a dance lesson in the spirit of Dancing in the City sessions. The dance lesson will last for about 30 minutes, and the free dancing following it will last for about 60 minutes.</p><p><b>Programme:</b> <br>17.30 Performance: Improvised Soiree <br>18.30 Dance lesson<br>19.00–20.00 Free dancing accompanied by live music</p><p>Duration: about 2.5 hours.</p><p>Free entry; hope to see you there!</p>"
            },
            "short_description": {
                "fi": "Tervetuloa mukaan Kaupunkitanssien päätösjuhlaan! Huom.! Tapahtuma pidetään Vuosalissa.",
                "sv": "Välkommen till Stadsdansens avslutningsfest!",
                "en": "Join us for the closing event of the Dancing in the City season!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D4F77708820357E1D9BAFD2AE55DEFAB/Improvisoidut_iltamat_ja_Kaupunkitanssikauden_paatosjuhla",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D4F77708820357E1D9BAFD2AE55DEFAB/Improviserade_soar_er_och_Stadsdanssasongens_avslutningsfest",
                "en": "http://www.vuotalo.fi/en/events/event/D4F77708820357E1D9BAFD2AE55DEFAB/Improvised_Soiree_and_closing_event_of_the_Dancing_in_the_City_season"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66618/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66380",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 771040,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-15T12:14:22.622643Z",
                    "last_modified_time": "2025-05-15T12:14:22.622665Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761388.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/771040/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-05-15T12:14:22.011823Z",
            "last_modified_time": "2025-08-21T13:13:43.383984Z",
            "date_published": null,
            "start_time": "2025-08-14",
            "end_time": "2025-08-23",
            "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,
            "provider": null,
            "name": {
                "fi": "Malmin tapahtumakesä 2025 – Elokuun ohjelma",
                "sv": "Malms evenemangssommar 2025 – Augusti 2025",
                "en": "Malmi Summer of Events 2025 – August 2025"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Tapahtumakesän elokuun osuus täyttää puiston konserteilla ja viihtyisillä aktiviteeteilla! Tervetuloa kesän monipuolisiin loppurientoihin.</p><p>Malmin tapahtumakesän lavalla elokuussa esiintyvät muun muassa <b>Vilma Jää, Josén pimeä puoli, Erja Lyytinen, Sari Aalto, Sami Saari & Jazzpojat, Asa, Pesso, Marko Haavisto ja Poutahaukat, Aliisa Syrjä</b> sekä paljon muita!</p><p>Hyppää mukaan kesätorille, puuhastele työpajoissa, taluta poneja ja tule ulkoilmaleffaan! Elokuussa paikan päältä löydät myös ruokatarjontaa ja teekojun.</p><p><b>Malmin tapahtumakesä 2025 elokuun ohjelma</b></p><p><b>To 14.8. Taiteiden yö: Vilma Jää, Josén pimeä puoli, Höpinätötterö, kesätori ja työpajoja</b><br>13–16 OmaStadi-piste<br>13.30, 14.30 ja 15.45 Pienperheyhdistys/Mummila: Puhutaan peikkoa -työpaja<br>15–18 Iltakorva<br>15–18 Malmin Varustamo esittäytyy<br>15–19 Kesätori<br>15–20 Hennatatuointi<br>16–17 Työväenopisto: Taiteiden yön yhteislaulut<br>16–19.15 Työväenopisto: Paperikoristepaja<br>16–19.15 Työväenopisto: Kierrätyskuvanveistoa<br>16.30–17.15 Höpinätötterö<br>17.15–18.00 Jamkids-puistomuskari<br>18–19 Vilma Jää<br>20–21 Josén pimeä puoli<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/516E8F1209FD05AA9191F07D875D9BEF/Taiteiden_y___Vilma_J____Jos_n_pime__puoli__H_pin_t_tter___kes_tori_ja_ty_paja\">Katso ohjelma</a></u></p><p><b>Pe 15.8. Erja Lyytinen ja AT’S Roots & Rambling</b><br>18–19 AT’s Roots & Ramblin’ <br>20–21 Erja Lyytinen <br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/6CAF9EBC3912C09B9F2EF2E04B5AEAF1/Erja_Lyytinen__AT_s_Roots___Ramblin_\">Katso ohjelma</a></u></p><p><b>Lasten la 16.8. Vatsastapuhuja Sari Aalto, Tuubakimalainen, ponitalutusta ja eläinnaamari-työpaja</b><br>11–15 Malmin seurakunta: Liikunnallinen toimintarata<br>12.30–15 Ponihaka: Ponitalutusta<br>13–16 Malmin tuulenkävijät esittelevät toimintaansa<br>13.30, 14.30 ja 15.45 Pienperheyhdistys/Mummila: Puhutaan peikkoa -työpaja   <br>14–16.15 Pohjois-Helsingin kuvataidekoulu: Eläinten kesäloma -katuliitutyöpaja<br>14–14.30 Vatsastapuhuja Sari Aalto<br>15–15.45 Tuubakimalainen <br>13–15 Kirjasto: Eläinnaamari-työpaja <br>14–16 Forum Virium: Toislajisten neuvosto <br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/46F74373E37ED07C86A72F7784B3995F/Lasten_lauantai__Vatsastapuhuja_Sari_Aalto__Tuubakimalainen__poneja_ja_ty_pajoja\">Katso ohjelma</a></u></p><p><b>Ti 19.8. Sami Saari & Jazzpojat, yhteislaulut, kaupunkitanssit ja kehonhuolto</b><br>15–15.50 Kehonhuolto<br>16–16.45 Kaupunkitanssit <br>16–19.30 Forum Virium Helsinki: Malmin vihreä sydän - Longinojanpuiston kehittämissuunnitelman luonnos <br>17–18 Yhteislaulut: Pauli Kainulainen ja Jukka Okkonen <br>19–20 Sami Saari & Jazzpojat <br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/F7C2531A031609D657AAB46700B25895/Sami_Saari___Jazzpojat_sek__yhteislaulua__kaupunkitanssit_ja_kehonhuoltoa\">Katso ohjelma</a></u></p><p><b>Ke 20.8. Asa ja Pesso</b><br>18-19 Pesso <br>20-21 Asa <br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/2B025B2F676465476F3AACF694A37B81/Asa__Pesso\">Katso ohjelma</a></u></p><p><b>To 21.8. Marko Haavisto & Poutahaukat, ulkoilmaelokuva: Mies vailla menneisyyttä, puistojumppa</b><br>17–17.50 Puistojumppa <br>20–21.15 Marko Haavisto & Poutahaukat <br>21.30–23.00 Ulkoilmaelokuvanäytös: Mies vailla menneisyyttä <br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/99EB81E2626B85392DA9CA6896AC3EAB/Marko_Haavisto___Poutahaukat__ulkoilman_yt_s__Mies_vailla_menneisyytt__ja_puistojumppaa\">Katso ohjelma</a></u></p><p><b>Pe 22.8. The Valkyrians ja The Blaster Master</b><br>18–19 Blaster Master <br>20–21 The Valkyrians <br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/7140CEBF9966CB1C257A396D29A3A560/The_Valkyrians_ja_Blaster_Master\">Katso ohjelma</a></u></p><p><b> La 23.8. Aliisa Syrjä, Itcevät ja pakohuonepelaamista</b><br>10.30–15.15 Malmin kirjasto: Merirosvolaivan aarre –pakopeli <br>14–16 Pukinmäen Taidekoulut: Savityöpaja <br>16–17 Itcevät <br>15−16 Malmin kirjasto: K-pop tanssityöpaja<br>18–19 Aliisa Syrjä<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/D913EB131D9999A95A7127A6D4137EA1/emma___matilda__Itcev_t_ja_pakohuonepelailua\">Katso päivän ohjelma</a></u></p><p>Tapahtumiin on vapaa pääsy!<br>Sateen sattuessa tapaht</p>",
                "sv": "<p>Evenemangssommaren fyller parken med konserter och trivsamma aktiviteter i augusti! Välkommen till sommarens mångsidiga aktiviteter på slutet.</p><p>På estraden för Malms evenemangssommar uppträder bland annat <b>Vilma Jää, Josén pimeä puoli, Erja Lyytinen, buktalare Sari Aalto, Sami Saari & Jazzpojat, Asa, Pesso, Marko Haavisto och Poutahaukat, emma & matilda</b> samt många andra artister.</p><p>Utöver konserterna kan du också ge dig ut på sommartorget, tala bergatroll i verkstäderna, leda ponnyer och rentav titta på bio utomhus.</p><p>Välkommen att dansa, sjunga, leka och inspireras!</p><p><i>Under evenemangsdagarna i augusti finns det matförsäljare på plats: Mikokit och pop up-téståndet Chai Wali.</i></p><p><b>14.8 Konstens natt: Vilma Jää, Josén Pimeä Puoli, Höpinätötterö, sommartorg och verkstäder </b><br>På eftermiddagen arbetarinstitutets verkstäder <br>13–16 VårStad<br>13.30, 14.30 och 15.45 Pienperheyhdistys ry/Mummila: Verkstaden Vi talar troll<br>15–18 Malmins Varustamo presenterar sig<br>Verkstadsområdet<br>15–18 Iltakorva<br>15–19 Sommartorg<br>15-20 Hennatatuering<br>16–17 Arbetarinstitutet: Sommarens minnen – Allsång under konstens natt i Malmitalo<br>16–19.15 Arbetarinstitutet: Verkstad för pappersdekorationer<br>16–19.15 Arbetarinstitutet: Skulpturverkstad med återvunnet material<br>16.30–17.15 Höpinätötterö<br>17.15–18.00 Jamkids musikskolan<br>18–19 Vilma Jää<br>20–21 Josén Pimeä Puoli<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/516E8F1209FD05AA9191F07D875D9BEF/Konstens_natt__Vilma_J____Jos_n_Pime__Puoli__H_pin_t_tter___sommartorg_och_verkst_der\">Se program </a></u></p><p><b>15.8 Erja Lyytinen och AT's Roots & Ramblin'</b><br>18–19 AT's Roots & Ramblin' <br>20–21 Erja Lyytinen <br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/6CAF9EBC3912C09B9F2EF2E04B5AEAF1/Erja_Lyytinen__AT_s_Roots___Ramblin_\">Se program </a></u></p><p><b>16.8 Buktalare Sari Aalto, Tuubakimalainen, ponnyridning och djurmask-verkstad</b><br>11–15 Malms församling: Motionsbana<br>12.30–15 Ponihaka: Ponnyridning <br>13–16 Malms Tuulenkävijät presenterar sin verksamhet<br>13.30, 14.30 och 15.45 Pienperheyhdistys ry/Mummila: Verkstaden Vi talar troll   <br>14–14.30 Buktalare Sari Aalto<br>15–15.45 Tuubakimalainen <br>13–15 Biblioteket: Djurmask-verkstad <br>14–16 Forum Virium: Rådet för sekundära arter<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/46F74373E37ED07C86A72F7784B3995F/Buktalare_Sari_Aalto__Tuubakimalainen__ponnyer_och_verkst_der\">Se program </a></u></p><p><b>19.8 Sami Saari & Jazzpojat, allsång, stadsdans och fitness</b><br>15–15.50 Fitness<br>16–16.45 Stadsdans <br>16–19.30 Forum Virium Helsinki: Malms gröna hjärta – Utkast till skötsel- och utvecklingsplan för Stickelbackaparken <br>17–18 Allsång: Pauli Kainulainen och Jukka Okkonen <br>19–20 Sami Saari & Jazzpojat <br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/F7C2531A031609D657AAB46700B25895/Sami_Saari___Jazzpojat__alls_ng__stadsdans_och_fitness\">Se program </a></u></p><p><b>20.8 Asa och Pesso</b><br>18–19 Pesso <br>20–21 Asa <br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/2B025B2F676465476F3AACF694A37B81/Asa__Pesso\">Se program </a></u></p><p><b>21.8 Marko Haavisto & Poutahaukat, utomhusfilm: Mannen utan minne, parkgympa</b><br>17–17.50 Parkgympa <br>20–21.15 Marko Haavisto & Poutahaukat, utomhusfilm: <br>21.30–23 Utomhusfilmförevisning: Mannen utan minne <br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/99EB81E2626B85392DA9CA6896AC3EAB/Marko_Haavisto___Poutahaukat__utomhusfilmf_revisning__Mannen_utan_minne_samt_parkgympa\">Se program </a></u></p><p><b>22.8 The Valkyrians och The Blaster Master</b><br>18–19 Blaster Master <br>20–21 The Valkyrians <br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/7140CEBF9966CB1C257A396D29A3A560/The_Valkyrians_och_Blaster_Master\">Se program </a></u></p><p><b>23.8 Aliisa Syrjä, Itcevät och flyktrumsspel</b><br>10.30–15.15 Malms bibliotek: Flyktrumsspelet Piratskeppets skatt <br>14–16 Pukinmäen Taidekoulut: Lerverkstad <br>15−16 Malms bibliotek: K-pop-dansworkshop<br>16–17 Itcevät <br>18–19 Aliisa Syrjä<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/D913EB131D9999A95A7127A6D4137EA1/emma_matilda_Itcevat_ja_pakohuonepelailua\">Se program</a></u></p>",
                "en": "<p>The August part of the Malmi Summer of Events fills the park with concerts and other activities! Welcome to the wide range of summer activities.</p><p>In August, the Malmi Summer of Events will feature acts such as <b>Vilma Jää, Josén pimeä puoli, Erja Lyytinen, ventriloquist Sari Aalto, Sami Saari & Jazzpojat, Asa, Pesso, Marko Haavisto ja Poutahaukat, emma & matilda</b> and many other artists.</p><p>In addition to the concerts, you can visit the summer market, participate in activities and workshops or even enjoy an outdoor movie! Come along and participate, dance, sing and play!</p><p>During August, there will be food vendors on site.</p><p><b>14 August The Night of the Arts: Vilma Jää, Josén pimeä puoli, Höpinätötterö, summer market and workshops</b><br>13.30, 14.30 and 15.45 Single Parents’ Association/Mummila: Puhutaan peikkoa workshop<br>15–18 Iltakorva<br>15–18 Malmi's Varustamo introduction<br>15–19 Summer market<br>15–20 Henna tattoo<br>16–17 Adult Education Centre: The Night of the Arts' sing-along<br>16–19.15 Adult Education Centre: Paper decoration workshop<br>16–19.15 Adult Education Centre: Recycled sculpture workshop<br>16.30–17.15 Höpinätötterö<br>17.15–18.00 Jamkids music playschool<br>18–19 Vilma Jää <br>20–21 Josén Pimeä Puoli<br><u><a href=\"https://malmitalo.fi/en/events/event/516E8F1209FD05AA9191F07D875D9BEF/The_Night_of_the_Arts__Vilma_J____Jos_n_pime__puoli__H_pin_t_tter___summer_market_and_workshops\">See the programme</a></u></p><p><b>15 August: Erja Lyytinen and AT’S Roots & Rambling</b><br>18–19 AT’s Roots & Ramblin’ <br>20–21 Erja Lyytinen <br><u><a href=\"https://malmitalo.fi/en/events/event/6CAF9EBC3912C09B9F2EF2E04B5AEAF1/Erja_Lyytinen__AT_s_Roots___Ramblin_\">See the programme</a></u></p><p><b>16 August: Ventriloquist Sari Aalto, Tuubakimalainen, pony walking and workshops</b><br>11–15 Malmi Parish: Physical activity track<br>12.30–15.00 Ponihaka: Pony walking <br>13–16 Malmi's Tuulenkävijät introduction<br>13.30, 14.30 and 15.45 Single Parents’ Association/Mummila: Puhutaan peikkoa workshop   <br>14–14.30 Ventriloquist Sari Aalto<br>15–15.45 Tuubakimalainen <br>13–15 Library: Animal mask workshop <br>14–16 Forum Virium: Toislajisten neuvosto<br><u><a href=\"https://malmitalo.fi/en/events/event/46F74373E37ED07C86A72F7784B3995F/Ventriloquist_Sari_Aalto__Tuubakimalainen__ponies_and_workshops\">See the programme</a></u></p><p><b>19 August: Sami Saari & Jazzpojat, singalong, dancing and other activities</b><br>15–15.50 Body maintenance<br>16–16.45 Dancing in the City <br>16–19.30 Forum Virium Helsinki: Malmi’s green heart – Draft Longinoja Park management and development plan <br>17–18 Singalong: Pauli Kainulainen and Jukka Okkonen <br>19–20 Sami Saari & Jazzpojat<br><u><a href=\"https://malmitalo.fi/en/events/event/F7C2531A031609D657AAB46700B25895/Sami_Saari___Jazzpojat_and_a_singalong__Dancing_in_the_City_and_body_maintenance\">See the programme</a></u></p><p><b>20 August: Asa and Pesso</b><br>18–19 Pesso <br>20–21Asa <br><u><a href=\"https://malmitalo.fi/en/events/event/2B025B2F676465476F3AACF694A37B81/Asa__Pesso\">See the programme</a></u></p><p><b>21 August Marko Haavisto & Poutahaukat, outdoor cinema: The Man Without a Past, outdoor fitness class</b><br>17–17.50 Outdoor fitness class <br>20–21 Marko Haavisto & Poutahaukat <br>21–23 Outdoor cinema: The Man Without a Past <br><u><a href=\"https://malmitalo.fi/en/events/event/99EB81E2626B85392DA9CA6896AC3EAB/Marko_Haavisto___Poutahaukat__outdoor_cinema__The_Man_Without_a_Past_and_outdoor_fitness_class\">See the programme</a></u></p><p><b>22 August: The Valkyrians and The Blaster Master</b><br>18–19 The Blaster Master <br>20–21 The Valkyrians <br><u><a href=\"https://malmitalo.fi/en/events/event/7140CEBF9966CB1C257A396D29A3A560/The_Valkyrians_and_The_Blaster_Master\">See the programme</a></u></p><p><b> 23 August: Aliisa Syrjä, Itcevät and escape room activities</b><br>10.30–15.15 Malmi's Library: Merirosvolaivan aarre -pakopeli <br>14–16 Pukinmäen Taidekoulut: Savityöpaja <br>15−16 Malmi's Library: K-pop dance workshop<br>16–17 Itcevät <br>18–19 Aliisa Syrjä<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/D913EB131D9999A95A7127A6D4137EA1/emma_matilda_Itcevat_ja_pakohuonepelailua\">See the programme</a></u></p>"
            },
            "short_description": {
                "fi": "Tapahtumakesän elokuun osuus täyttää puiston konserteilla ja viihtyisillä aktiviteeteilla! Tervetuloa kesän monipuolisiin loppurientoihin.",
                "sv": "Evenemangssommaren fyller parken med konserter och trivsamma aktiviteter i augusti! Välkommen till sommarens mångsidiga aktiviteter på slutet.",
                "en": "The August part of the Malmi Summer of Events fills the park with concerts and other activities! Welcome to the wide range of summer activities."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/ABD4F17E2E2BBF627AE0B67DBEBD9C63/Malmin_tapahtumakesa_2025",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/ABD4F17E2E2BBF627AE0B67DBEBD9C63/Malms_evenemangssommar_2025",
                "en": "http://www.malmitalo.fi/en/events/event/ABD4F17E2E2BBF627AE0B67DBEBD9C63/Malmi_Summer_of_Events_2025"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66380/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65861",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 404561,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-25T16:13:56.613958Z",
                    "last_modified_time": "2025-03-25T16:13:56.613979Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767208.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/404561/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-03-25T16:13:56.596321Z",
            "last_modified_time": "2025-08-21T12:14:49.034366Z",
            "date_published": null,
            "start_time": "2025-08-23T07:30:00Z",
            "end_time": "2025-08-23T16: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,
            "provider": null,
            "name": {
                "fi": "Aliisa Syrjä, Itcevät ja pakohuonepelailua – Malmin tapahtumakesä",
                "sv": "Aliisa Syrjä, Itcevät och flyktrumsspel – Malms evenemangssommar",
                "en": "Aliisa Syrjä, Itcevät and escape room activities – Malmi Summer of Events"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Tule mukaan saattelemaan tämän vuoden tapahtumakesä päätökseensä ihastuttavan päivän myötä.</p><p>Illan esiintyjinä nähdään herkkää kitararockia ja puhuttelevuutta tarjoava <b>Itcevät</b> ja kesän kruunaa laulaja-lauluntekijä <b>Aliisa Syrjä</b>. Päivän aikana voit osallistua myös pakohuonepeliin, tutustua saven kanssa työskentelyyn ja viihtyä kauniissa puistossa!</p><p><b>Aikataulu</b><br>10.30–15.15 Malmin kirjasto: Merirosvolaivan aarre –pakopeli<br>14–16 Pukinmäen Taidekoulut: Savityöpaja<br>15−16 Malmin kirjasto: K-pop tanssityöpaja<br>16–17 Itcevät<br>18–19 Aliisa Syrjä<br> <br><b>klo 10.30–15.15<br>Malmin kirjasto: Merirosvolaivan aarre -pakopeli</b></p><p>Olette uusia tulokkaita merirosvolaivalla. Huomaatte tilaisuuden tunkeutua vihollislaivaan, ja korjata vuosia sitten tapahtunut vääryys. Saako merirosvojoukkonne pelastettua kapteeniltanne varastetun aarteen?</p><p>Pakopelin suositusikäraja on 12+, ja se sopii myös aikuisille. Yhteen peliin mahtuu 5 henkilöä, kesto noin 45 minuuttia. Pakopeli sisältää erilaisia pulmia ja loogista päättelyä. Pakopeli järjestetään Malmin kirjaston monitoimitilassa</p><p><b>Peliajat:</b><br>10.30<br>11.30<br>12.30<br>13.30<br>14.30</p><p>Ilmoittautumiset 4.8. alkaen numeroon 040 5632 849</p><p><b>klo 16–17<br>Itcevät</b><br>Itcevät yhdistelee musiikissaan tunteikasta lyriikkaa, tarinankerronnallista tulkintaa sekä nostattavaa kitararockia. Yhtyeen tarkoituksena on ajaa herkkyyden ja avoimuuden sanomaa, haastaa sukupuolirooleja sekä tarjota Suomen musiikkikentälle raikasta trans-representaatiota.<br>Itcevien keikoilla kuullaan yhtyeen aikaisempia hittejä sekä tulevan albumin vielä julkaisemattomia singlejä.</p><p><b>klo 18–19<br>Aliisa Syrjä</b><br>Aliisa Syrjä on laulaja-lauluntekijä, jonka sävellykset ja tekstit vievät mukanaan jonnekin sinne, missä surun ja onnen rajat ovat häilyvät ja mannerlaatat jyrisevät jalkojen alla. Platinaa ja kultaa striimanneilla Tää tunne, 2:02 ja Sydämetön singleillään hurmannut Aliisa sanoittaa, säveltää ja on myös mukana biisien tuotannoissa. Artisti valittiin mukaan YleX Läpimurto-listaukseen keväällä 2023, jossa hän sijoittui huikeasti toiseksi. Aliisan platinaa striimannut debyyttialbumi Höyheniä ja saaria julkaistiin lokakuussa 2023. Vuoden 2024 Emma Gaalassa Aliisa oli ehdolla Vuoden tulokas-kategoriassa. Parhaiten artistina Aliisaa kuvaa se, että hänen lauluissaan klassikkokirjojen järkälemäinen ja filosofinen sisältö yhdistyy nuoren ihmisen elämään sekä perinteinen lauluntekijyys nykypäivään.</p><p>*Valitettavasti emma & matilda on peruuntunut, paikkaajaksi saapuu Aliisa Syrjä.</p><p>Tapahtumiin on vapaa pääsy.</p>",
                "sv": "<p>Kom med och avsluta årets evenemangssommar med en underbar dag.</p><p>Kvällens artister är Itcevät, som bjuder på känslig tilltalande gitarrock, och emma & matilda, som kröner sommaren med sin känsliga folkinspirerade musik som sveper med publiken. Under dagen kan du också delta i ett flyktrumsspel, lära dig att arbeta med lera och njuta av den vackra parken!</p><p><b>Tidtabell</b><br>10.30–15.15 Malms bibliotek: Flyktrumsspelet Piratskeppets skatt<br>14–16 Pukinmäen Taidekoulut: Lerverkstad<br>15−16 Malms bibliotek: K-pop-dansworkshop<br>16–17 Itcevät<br>18–19 Aliisa Syrjä</p><p><b>kl. 10.30–15.15<br>Malms bibliotek: Flyktrumsspelet Piratskeppets skatt</b></p><p>Ni är nyanlända på ett piratskepp. Ni upptäcker en möjlighet att bryta er in i fiendens skepp och rätta till ett fel som begicks för flera år sedan. Får er piratbesättning tillbaka skatten som stulits från kaptenen?</p><p>Den rekommenderade åldersgränsen för flyktspelet är 12+, och det passar även för vuxna. Fem personer kan delta i ett (1) spel, längden är cirka 45 minuter. Flyktspelet omfattar olika problem och logiska slutledningar. Flyktspelet ordas i allaktivitetslokalen i Malms bibliotek.</p><p>Speltider:<br>10.30<br>11.30<br>12.30<br>13.30<br>14.30</p><p>Anmälningar från och med den 4 augusti till numret 040 5632 849.</p><p><b>kl. 16–17<br>Itcevät</b><br>I deras musik kombinerar Itcevät känslomässig lyrik, berättande tolkningar och upplyftande gitarrock. Bandets syfte är att främja budskapet om känslighet och öppenhet, utmana könsroller och erbjuda fräsch trans-representation till den finländska musikscenen.<br>På Itceväts spelningar hör vi bandets tidigare hittar och ännu outgivna singlar från deras kommande album.</p><p><b>kl. 18–19<br>Aliisa Syrjä</b><br>Tyvärr har emma & matilda ställt in, och Aliisa Syrjä kommer som ersättare.</p><p>Evenemangen har fritt inträde.</p>",
                "en": "<p>Come along and say farewell to this year’s Summer of Events by enjoying a lovely day.</p><p>The evening will be crowned by Itcevät, who serve up sensitive, thought-provoking guitar rock, and emma & matilda, who wrap the audience up in their delicate folk tunes. During the day you can also take part in an escape room game, learn how to work with clay and enjoy the beautiful park!</p><p><b>Programme</b><br>10.30–15.15 Malmi Library: ‘Merirosvolaivan aarre’ (pirate ship treasure) escape room game<br>14.00–16.00 Pukinmäen Taidekoulut: Clay workshop<br>15−16 Malmi Library: K-pop dance workshop<br>16.00–17.00 Itcevät<br>18.00–19.00 Aliisa Syrjä</p><p><b>10.30–15.15<br>Malmi Library: ‘Merirosvolaivan aarre’ (pirate ship treasure) escape room game</b></p><p>You are newcomers to the pirate ship. You spot an opportunity to infiltrate the enemy ship, and put a past wrong right. Can your pirate crew recover the treasure stolen from your captain?</p><p>The recommended age for the escape room is 12 and upwards, and it is also suitable for adults. Five people can play at a time, duration approx. 45 minutes. The escape room game contains various problems and logical reasoning. The game is held in the multi-purpose facility of the Malmi Library.</p><p>Games start at:<br>10.30<br>11.30<br>12.30<br>13.30<br>14.30</p><p>Sign up from 4 August by calling +358 (0)40 563 2849</p><p><b>16.00–17.00<br>Itcevät</b><br>In their music, Itcevät combine emotional lyrics, narrative interpretation and energetic guitar rock. The band are advocates for sensitivity and openness, challenging gender roles and providing fresh trans representation on the Finnish music scene.<br>Their shows include earlier hits by the group as well as unreleased singles from their upcoming album.</p><p><b>18.00–19.00<br>Aliisa Syrjä</b><br>Aliisa Syrjä is a singer-songwriter whose compositions and lyrics carry the listener to a place where the boundaries between sorrow and joy blur, and the tectonic plates rumble beneath one’s feet. With platinum- and gold-streaming singles such as Tää tunne, 2:02, and Sydämetön, Aliisa writes lyrics, composes, and also takes part in the production of her songs. She was chosen for the YleX Breakthrough list in spring 2023, where she impressively placed second. Aliisa’s platinum-streaming debut album Höyheniä ja saaria was released in October 2023. At the 2024 Emma Gala, she was nominated in the Newcomer of the Year category. As an artist, Aliisa is best described by the way her songs bring together the weighty, philosophical essence of classic literature with the life of a young person, blending traditional songwriting with a contemporary approach.</p><p>Unfortunately emma & matilda have cancelled, and Aliisa Syrjä will be stepping in as a replacement</p><p>Entry to the events is free of charge.</p>"
            },
            "short_description": {
                "fi": "Tule mukaan saattelemaan tämän vuoden tapahtumakesä päätökseensä ihastuttavan päivän myötä.",
                "sv": "Kom med och avsluta årets evenemangssommar med en underbar dag.",
                "en": "Come along and say farewell to this year’s Summer of Events by enjoying a lovely day."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D913EB131D9999A95A7127A6D4137EA1/Aliisa_Syrja_Itcevat_ja_pakohuonepelailua",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D913EB131D9999A95A7127A6D4137EA1/Aliisa_Syrja_Itcevat_och_flyktrumsspel",
                "en": "http://www.malmitalo.fi/en/events/event/D913EB131D9999A95A7127A6D4137EA1/Aliisa_Syrja_Itcevat_and_escape_room_activities"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65861/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66871",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490467,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-19T11:14:04.757053Z",
                    "last_modified_time": "2025-08-19T11:14:04.757073Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776256.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490467/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-19T11:14:04.545323Z",
            "last_modified_time": "2025-08-21T11:14:51.497213Z",
            "date_published": null,
            "start_time": "2025-09-06",
            "end_time": "2025-09-07",
            "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,
            "provider": null,
            "name": {
                "fi": "Stoan monikieliset kirjallisuuspäivät",
                "sv": "Stoas flerspråkiga litteraturdagar",
                "en": "Stoa’s Multilingual Literature Days"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Syyskuussa Stoassa järjestettävä kansainvälinen kirjallisuustapahtuma tuo yhteen kansainvälisesti palkittuja kirjailijoita ja elokuvantekijän.</p><p>Tapahtuma tarjoaa kirjallisia kohtaamisia, joissa yleisö voi kohdata teoksia omilla äidinkielillään ja osallistua vuoropuheluun kulttuurien välillä.</p><p><b>Lauantai 6.9.2025 klo 12–16 | Stoan aula</b></p><p><b>12:00–13:30 | Kirjailijakeskustelu: Ali Badr</b><br>Irakilainen kirjailija ja esseisti Ali Badr on yksi sukupolvensa merkittävimmistä arabiankielisistä romaanikirjailijoista. Hänen teoksensa tutkivat sodan, vallan ja kulttuurin risteyksiä sekä yksilön haavoittuvuutta. Badr tunnetaan myös esseistinä ja näytelmäkirjailijana, jonka ääni on vaikuttanut arabiankielisen nykykirjallisuuden keskusteluun.</p><p>Kieli: arabia</p><p><b>14:00–15:30 | Kirjailijakeskustelu: Mariwan Kanie</b><br>Kurdikirjailija ja Amsterdamin yliopiston professori Mariwan Kanie kuuluu kurdien keskeisiin ajattelijoihin ja nykykirjallisuuden ääniin. Hänen työnsä pureutuu nationalismin, uskonnon ja identiteetin kysymyksiin, mutta myös filosofian ja kirjallisuuden välisiin siltoihin. Kanie tunnetaan kyvystään yhdistää länsimaisen ja islamilaisen ajattelun perinteitä nykypäivän keskusteluihin.</p><p>Kieli: kurdi</p><p><b>Sunnuntai 7.9.2025 klo 15–17 | Stoan teatterisali</b></p><p><b>15:00–17:00 | Elokuvanäytös ja keskustelu: Khadar Ayderus Ahmed</b><br>Somalialaissyntyinen, Suomessa varttunut ohjaaja Khadar Ayderus Ahmed sai kansainvälisen läpimurtonsa Cannesissa elokuvalla The Gravedigger’s Wife (2021). Stoassa esitetään hänen uusin lyhytelokuvansa The Earth Has Ears (Dhulku Dhago Leh) (Somalia, 2025, 13 min), joka kertoo tarinan kylästä, jossa miesten poissaolo muuttaa koko yhteisön elämän. Näytöksen jälkeen keskustelu ohjaajan kanssa. Tule ajoissa ja varmista paikkasi, saliin mahtuu noin 200 henkilöä.</p><p>Kieli: somali</p><p>Koko tapahtuma on maksuton.</p><p>Tapahtuma järjestetään yhteistyössä Itäkeskuksen kirjaston kanssa.</p>",
                "sv": "<p>Det litterära evenemanget som inspirerats av den flerspråkiga vardagen i Östra Helsingfors lyfter fram internationella författare med olika språkliga bakgrunder.</p><p>Programmet:<br>Lö kl. 12–13.30 Författarsamtal: Ali Badr. Samtalet på arabiska<br>Lö kl. 14–15.30 Författarsamtal: Mariwan Kanie. Samtalet på kurdiska<br>Sö kl. 15–17 Filmvisning och samtal: Khadar Ayderus Ahmed. Film och samtal på somaliska</p><p>Evenemanget ordnas i samarbete med Östra centrums bibliotek.</p>",
                "en": "<p>Inspired by the multilingual day-to-day life of East Helsinki, this literary event brings together international writers from different language backgrounds.</p><p>Programme:<br>Sat 12:00–13:30 Author talk: Ali Badr. Discussion in Arabic<br>Sat 14:00–15:30 Author talk: Mariwan Kanie. Discussion in Kurdish<br>Sun 15:00–17:00 Film screening and discussion: Khadar Ayderus Ahmed. Film and discussion in Somali</p><p>The event is organised in cooperation with the Itäkeskus Library.</p>"
            },
            "short_description": {
                "fi": "Syyskuussa Stoassa järjestettävä kansainvälinen kirjallisuustapahtuma tuo yhteen kansainvälisesti palkittuja kirjailijoita ja elokuvantekijän.",
                "sv": "Det litterära evenemanget som inspirerats av den flerspråkiga vardagen i Östra Helsingfors lyfter fram internationella författare med olika språkliga bakgrunder.",
                "en": "Inspired by the multilingual day-to-day life of East Helsinki, this literary event brings together international writers from different language backgrounds."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/5C3DAAF828B604A40383DD6C12C8F446/Stoan_monikieliset_kirjallisuuspaivat_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/5C3DAAF828B604A40383DD6C12C8F446/Stoas_flersprakiga_litteraturdagar",
                "en": "http://www.stoa.fi/en/events/event/5C3DAAF828B604A40383DD6C12C8F446/Stoa_s_Multilingual_Literature_Days"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66871/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66511",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "28,90-43,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/antti-sarpila-swing-band/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490429,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-18T12:14:50.834759Z",
                    "last_modified_time": "2025-08-18T12:14:50.834778Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772804.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490429/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-18T12:14:50.722958Z",
            "last_modified_time": "2025-08-21T10:14:08.885807Z",
            "date_published": null,
            "start_time": "2025-12-09T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Antti Sarpila Oy"
            },
            "name": {
                "fi": "Swinging Christmas 2025 - Antti Sarpila Swing Band featuring Anna Inginmaa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p><b>Antti Sarpila Swing Bandin</b> perinteinen svengaava joulukonsertti, jossa vieraana on upea laulaja <b>Anna Inginmaa</b> – luvassa on jälleen sekä vauhdikasta että herkkää joulutunnelmaa</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p>"
            },
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/56E17C39B8F803C26370F8EA3567EB2E/Swinging_Christmas_2025_-_Antti_Sarpila_Swing_Band_featuring_Anna_Inginmaa"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66511/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66768",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20€/15€",
                        "sv": "20€/15€",
                        "en": "20€/15€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-underbara-kvinnor-vid-sandladskanten-3933506/",
                        "sv": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-underbara-kvinnor-vid-sandladskanten-3933506/",
                        "en": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-underbara-kvinnor-vid-sandladskanten-3933506/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1270151,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T07:12:44.554790Z",
                    "last_modified_time": "2025-07-16T07:12:44.554809Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774916.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1270151/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T07:12:44.485958Z",
            "last_modified_time": "2025-08-21T09:15:16.283619Z",
            "date_published": null,
            "start_time": "2025-10-02T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "name": {
                "fi": "Underbara kvinnor vid sandlådskanten – Klubb Ankdamm",
                "sv": "Underbara kvinnor vid sandlådskanten – Klubb Ankdamm",
                "en": "Underbara kvinnor vid sandlådskanten – Klubb Ankdamm"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Maanläheinen musikaalikonsertti ruotsiksi, Underbara kvinnor vid sandlådskanten (Ihanat naiset hiekkalaatikolla), lavalla Marika Westerling, Minna Kettunen-Enberg, Suvi Isotalo ja Puro Paju.</p><p>Tervetuloa ruotsinkieliseen musikaalikonserttiin kuulemaan vuosaarelaisen laulaja-näyttelijä Marika Westerlingin sanoittamia sekä kääntämiä kappaleita.<br> <br>Marika ja hänen kollegansa Minna Kettunen-Enberg kohtaavat jälleen näyttämöllä jakaakseen avioliiton ratkiriemukkaita tilanteita, kärsimystä hiekkalaatikon reunalla, ajatuksia vanhenemisesta sekä niin yksinäisyyden kuin syvän ystävyydenkin hetkiä. Lavalla heidän kanssaan on kaksi muusikkoa, tutkapari Suvi Isotalo (piano) ja Puro Paju (basso ja perkussiot). Uunituoreiden laulujen, jotka on säveltänyt mm. Suvi Isotalo, lisäksi kvartetti tarjoaa lauluja muun muassa musikaaleista Raka Rör! (Kraanat auki!, Susanna Haavisto/Juha Tikka), Det perfekta livet (Amity Dry) sekä Follies (Stephen Sondheim).</p><p>Tyylillisesti kvartetti liikkuu kevyesti musikaaliballadeista aina poppiin, salsaan ja jopa tangoon asti.<br> <br>Konsertin mahdollistaa Svenska Kulturfondenin tuki.<br> <br>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.<br>Kesto: n. 90 min. sis. väliaika. <br>Kieli: ruotsi</p>",
                "sv": "<p>En jordnära musikalkonsert på svenska med Marika Westerling, Minna Kettunen-Enberg, Suvi Isotalo och Puro Paju.</p><p>Välkommen på en musikalkonsert på svenska med översättningar och även ny sånglyrik av nordsjöbon, sångaren och skådespelaren Marika Westerling.</p><p>Hon och kollegan Minna Kettunen-Enberg möts igen på scen för att dela med sig av dråpliga situationer i äktenskapet, leda vid sandlådskanten, tankar kring åldrande och stunder av såväl ensamhet som djup vänskap. Med sig har de musikerna, radarduon Suvi Isotalo (piano) och Puro Paju (bas och percussion). Utöver splitternytt material, som är tonsatt av bl.a. Suvi Isotalo, kommer kvartetten också att bjuda på sånger ur bland annat musikalerna Raka Rör! (Susanna Haavisto/Juha Tikka), Det perfekta livet (Amity Dry), samt Follies, (Stephen Sondheim).</p><p>Genremässigt rör sig kvartetten ledigt mellan allt från musikalballader och pop till salsa och tango.</p><p>Förverkligat med understöd av Svenska Kulturfonden.<br>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30.</p><p>Längd: ca 90 min. inkl. paus. <br>Språk: svenska</p>",
                "en": "<p>A down-to-earth musical concert in Swedish, Underbara kvinnor vid sandlådskanten (Lovely Ladies in the Sandbox), with Marika Westerling, Minna Kettunen-Enberg, Suvi Isotalo and Puro Paju on stage.</p><p>Join us for a musical concert in Swedish, where you will get to hear songs written and translated by singer and actress Marika Westerling.<br> <br>Marika and her colleague Minna Kettunen-Enberg will once again meet on stage to share hilarious situations from marriage, suffering at the edge of the sandbox, thoughts on growing old, and moments of both loneliness and deep friendship. They will be joined on stage by two musicians, the dynamic duo of Suvi Isotalo (piano) and Puro Paju (bass and percussion). In addition to brand-new songs composed by Suvi Isotalo and others, the quartet will perform songs from musicals such as Raka Rör! (Kraanat auki!, Susanna Haavisto/Juha Tikka), Det perfekta livet (Amity Dry) and Follies (Stephen Sondheim).</p><p>Stylistically, the quartet will navigate lightly between musical ballads and pop, salsa and even tango.<br> <br>The concert is made possible with the support of the Swedish Cultural Foundation in Finland.<br> <br>Club evening, alcohol serving licence, catering by Café Pokkari, doors open at 17.30.<br>Duration: roughly 90 min, incl. intermission<br>Language: Swedish</p>"
            },
            "short_description": {
                "fi": "Maanläheinen musikaalikonsertti ruotsiksi, Underbara kvinnor vid sandlådskanten (Ihanat naiset hiekkalaatikolla), lavalla Marika Westerling, Minna Kettunen-Enberg, Suvi Isotalo ja Puro Paju.",
                "sv": "En jordnära musikalkonsert på svenska med Marika Westerling, Minna Kettunen-Enberg, Suvi Isotalo och Puro Paju.",
                "en": "A down-to-earth musical concert in Swedish, Underbara kvinnor vid sandlådskanten (Lovely Ladies in the Sandbox), with Marika Westerling, Minna Kettunen-Enberg, Suvi Isotalo and Puro Paju on stage."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/45E6F9E888BE4C96658B6AC7E82296DB/Underbara_kvinnor_vid_sandladskanten",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/45E6F9E888BE4C96658B6AC7E82296DB/Underbara_kvinnor_vid_sandladskanten",
                "en": "http://www.vuotalo.fi/en/events/event/45E6F9E888BE4C96658B6AC7E82296DB/Underbara_kvinnor_vid_sandladskanten"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66768/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66647",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1219172,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T13:16:42.571901Z",
                    "last_modified_time": "2025-07-09T13:16:42.571915Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772369.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1219172/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-09T13:16:42.511618Z",
            "last_modified_time": "2025-08-20T11:14:11.201037Z",
            "date_published": null,
            "start_time": "2025-12-10T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "name": {
                "fi": "Opi suomea laulaen TÄYNNÄ – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare",
                "en": "Learn Finnish by Singing – Song workshops for immigrants"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min <br>Maksuton, mutta mukaan ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Syksyn laulupajakerrat: <br>Ke 10.9. klo 10 ja 11.45<br>Ke 5.11. klo 12.30 ja 14.15<br>Ke 10.12. Klo 10 ja 11.45</p>",
                "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd ca 80 min.</p><p>Du måste anmäla dig till gruppen på förhand. <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p>Höstens sångverkstäder:<br>On 10.9. kl. 10 och 11.45<br>On 5.11. kl. 12.30 och 14.15<br>On 10.12. kl. 10 och 11.45</p>",
                "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group. <br>Ask for more information and register: sanna.nuutinen@hel.fi</p><p>Autumn song workshops:<br>Wed 10.9. at 10 and 11.45<br>Wed 5.11. at 12.30 and 14.15<br>Wed 10.12. at 10 ja 11.45</p>"
            },
            "short_description": {
                "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.",
                "sv": "Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.",
                "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D6652B91103C1F1700389353CF1E513F/Opi_suomea_laulaen_TAYNNA",
                "sv": "http://www.stoa.fi/sv/evenemang/event/D6652B91103C1F1700389353CF1E513F/Lar_dig_finska_genom_att_sjunga_",
                "en": "http://www.stoa.fi/en/events/event/D6652B91103C1F1700389353CF1E513F/Learn_Finnish_by_Singing_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66647/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66643",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1219157,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-09T13:16:34.292379Z",
                    "last_modified_time": "2025-07-09T13:16:34.292394Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772363.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1219157/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-09T13:16:34.202325Z",
            "last_modified_time": "2025-08-20T10:13:51.794942Z",
            "date_published": null,
            "start_time": "2025-09-10T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "name": {
                "fi": "Opi suomea laulaen TÄYNNÄ – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare",
                "en": "Learn Finnish by Singing – Song workshops for immigrants"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min <br>Maksuton, mutta mukaan ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Syksyn laulupajakerrat: <br>Ke 10.9. klo 10 ja 11.45<br>Ke 5.11. klo 12.30 ja 14.15<br>Ke 10.12. Klo 10 ja 11.45</p>",
                "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd ca 80 min.</p><p>Du måste anmäla dig till gruppen på förhand. <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p>Höstens sångverkstäder:<br>On 10.9. kl. 10 och 11.45<br>On 5.11. kl. 12.30 och 14.15<br>On 10.12. kl. 10 och 11.45</p>",
                "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group. <br>Ask for more information and register: sanna.nuutinen@hel.fi</p><p>Autumn song workshops:<br>Wed 10.9. at 10 and 11.45<br>Wed 5.11. at 12.30 and 14.15<br>Wed 10.12. at 10 ja 11.45</p>"
            },
            "short_description": {
                "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.",
                "sv": "Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.",
                "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/A6B7B0D9CE082A7AF034C94E9EB46A71/Opi_suomea_laulaen_TAYNNA",
                "sv": "http://www.stoa.fi/sv/evenemang/event/A6B7B0D9CE082A7AF034C94E9EB46A71/Lar_dig_finska_genom_att_sjunga_",
                "en": "http://www.stoa.fi/en/events/event/A6B7B0D9CE082A7AF034C94E9EB46A71/Learn_Finnish_by_Singing_"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66643/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}