Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 23147,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=30",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=28"
    },
    "data": [
        {
            "id": "espoo_le:agojada2rm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agojadaz6y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpreddybm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpreddzia/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpreddz7q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpredd2wm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpredd4hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpredhasm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpredhbdq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpredhbvq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490260,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-11T12:02:13.309605Z",
                    "last_modified_time": "2025-06-11T12:02:13.309619Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/13b0cdc5-d4f6-4c5b-812c-5e77f2d11a0d.jpg",
                    "name": "",
                    "cropping": "216,0,1508,1293",
                    "photographer_name": "",
                    "alt_text": "kuvituskuva, jossa kirjakerhoon valitut kirjat ja kahvikuppi",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490260/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-24T13:17:35.843862Z",
            "last_modified_time": "2026-06-29T05:22:39.760015Z",
            "date_published": null,
            "start_time": "2026-03-24T10:00:00Z",
            "end_time": "2026-07-14T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Hyvän mielen kirjakerho Lippulaivan kirjastossa",
                "sv": "Feel good-bokklubb på Lippulaiva-biblioteket",
                "en": "Feel good book club at Lippulaiva library"
            },
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki",
                "en": "Salonki"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa hyvän mielen kirjakerhoon keskustelemaan kirjoista rennolla meiningillä. Jokaiselle kerralle on valittu kevyempi, hyvän mielen kirja.",
                "sv": "Välkommen till bokklubben där vi pratar om böcker i en avslappnad miljö. Vi kommer att diskutera en ny feelgood-bok varje gång.",
                "en": "Welcome to the feel good book club to chat about books in relaxed environment. We'll be discussing about a different feel good book each time."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Osallistujien toiveesta Lippulaivan kirjaston Hyvän mielen kirjakerho jatkuu keväällä! Tervetuloa mukaan kaikki uudetkin osallistujat!</p><p>Lukupiirimme kokoontuu jälleen kultareunaisten kahvikuppien ääreen keskustelemaan kirjoista ja kirjallisuudesta. Voit osallistua vaikket olisi lukenut kirjaa tai et olisi pitänyt siitä, kirjoista keskusteleminenhan on aina antoisaa! Kahvia ja teetä nautitaan tapahtumatila Salongissa tiistaisin klo 12.00-13.00. Lämpimästi tervetuloa mukaan vaikka joka kerta!</p><p><br></p><p>24.3. Cecelia Ahern: Nainen joka sai siivet selkäänsä</p><p>21.4. Kaisa Viitala: Klaanin vieraana</p><p>19.5. Frida Skybäck: Lukupiiri maailman laidalla</p><p>16.6. Minna Rytisalo: Rouva C.</p><p>14.7. Catharina Ingelman-Sundberg: Kakkua, kiitos!</p><p>15.9. Helena Steen: Paikka hyvässä perheessä</p><p>13.10. Carin Hjulström: Pikku murha vain</p><p>10.11. Laura Suomela: Tulppaanitoiveunia</p><p>8.12. Siri Østli: Uusien alkujen joulukalenteri</p>",
                "sv": "<p>Vår bokklubb samlas återigen kring guldkantade kaffekoppar för att diskutera böcker och litteratur. Du är välkommen att delta även om du inte har läst boken eller inte gillade den, det är alltid givande att diskutera böcker! Kaffe och te serveras i Salonki-evenemangslokalen på tisdagar kl. 12.00–13.00. Du är varmt välkommen att delta varje gång!</p><p><br></p><p>24.3. Cecelia Ahern: Häftad</p><p>21.4. Kaisa Viitala: Klaanin vieraana</p><p>19.5. Frida Skybäck: Bokcirkeln vid världens ände</p><p>16.6. Minna Rytisalo: Fru C</p><p>14.7.Catharina Ingelman-Sundberg: Kaffe med rån</p><p>15.9. Helena Steen: Paikka hyvässä perheessä</p><p>13.10. Carin Hjulström: Pikku murha vain</p><p>10.11. Laura Suomela: Tulppaanitoiveunia</p><p>8.12. Siri Østli: Uusien alkujen joulukalenteri</p><p><br></p><p>Bokklubben är på finska. Välkommen!</p>",
                "en": "<p>Our book club will once again gather around golden-rimmed coffee cups to discuss about books and literature. You are welcome to join even if you haven't read the book or didn't like it, discussing books is always rewarding! Coffee and tea will be served in the Salonki event space on Tuesdays from 12:00 to 13:00. You are warmly welcome to join us every time!</p><p><br></p><p>24.3. Cecelia Ahern:&nbsp;Roar: A Story for Every Woman</p><p>21.4. Kaisa Viitala: Klaanin vieraana</p><p>19.5. Frida Skybäck: The Book Club at the End of the World</p><p>16.6. Minna Rytisalo: Mrs. C</p><p>14.7. Catharina Ingelman-Sundberg: The Little Old Lady Who Broke All the Rules</p><p>15.9. Helena Steen: Paikka hyvässä perheessä</p><p>13.10. Carin Hjulström: Pikku murha vain</p><p>10.11. Laura Suomela: Tulppaanitoiveunia</p><p>8.12. Siri Østli: Uusien alkujen joulukalenteri</p><p><br></p><p>The book club is in finnish. Welcome!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agojada2rm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpeldu76q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu42a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu5d4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu5nq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu5xq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu6bi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu6ni/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu6xm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu7bm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu7km/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu7ua/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2201344,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-20T08:44:11.905741Z",
                    "last_modified_time": "2026-05-20T08:45:03.592594Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/01a20785-6611-4da4-8bd7-1a9b7026c66f.jpg",
                    "name": "Lippulaivan kirjastossa hauskaa tekemistä!",
                    "cropping": "120,0,545,424",
                    "photographer_name": "",
                    "alt_text": "Lapset hyppäävät ilmaan",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201344/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-20T13:03:07.562795Z",
            "last_modified_time": "2026-06-28T08:44:55.103877Z",
            "date_published": null,
            "start_time": "2026-06-05T14:30:00Z",
            "end_time": "2026-08-14T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lippulaivan kirjaston lasten perjantaileffa",
                "sv": "Lippulaivabibliotekets fredagsfilm för barn",
                "en": "Lippulaiva library's movie screening for children"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kirjaston Salongissa järjestetään perjantaisin klo 17:30 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!",
                "sv": "På fredagar kl. 17.30 i bibliotekets Salonki är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!",
                "en": "On Fridays at 17:30 in the library's Salonki, there is an open cinema screening for children and families. Bring your own drinks and snacks!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Lippulaivan kirjaston Salongissa järjestetään joka perjantai klo 17:30 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä äänestämällä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Usein lapset valitsevat K7 elokuvan. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan.</p>",
                "sv": "<p>Välkommen att spendera fredagen med en film tillsammans! Varje fredag ​​klockan 17:30 anordnas en öppen filmvisning för barn och familjer i Lippulaiva biblioteks Salonki. Filmerna väljs ut tillsammans genom att man röstar på barnens önskemål på biblioteket.</p><p>Filmerna är alla klassade S eller K7. Barn väljer ofta en K7-film. Presentationsspråket är finska. Undertexter väljs efter barnens önskemål.</p>",
                "en": "<p>Welcome to spend Friday evening with a movie together! Every Friday at 17:30, an open film screening is organized for children and families in Lippulaiva library's Salonki. The films are chosen together by voting based on the movies that the children has picked in the library.</p><p>The movies are all rated S or K7. Children often choose a K7 movie. The presentation language is Finnish. Subtitles are chosen according to the wishes of the children.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpeldu76q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69095",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?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:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/the-art-of-diversity-4165143/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/the-art-of-diversity-4165143/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/the-art-of-diversity-4165143/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 7 €",
                        "sv": "20 € / 7 €",
                        "en": "20 € / 7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2380560,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-26T09:14:12.127679Z",
                    "last_modified_time": "2026-05-26T09:14:12.127703Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793211.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2380560/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-26T09:14:11.935403Z",
            "last_modified_time": "2026-06-26T15:13:57.503582Z",
            "date_published": null,
            "start_time": "2026-06-26T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "The Art of Diversity (K16) LOPPUUNMYYTY – Caisa 30 Club – Helsinki Pride 2026",
                "sv": "The Art of Diversity (K16) – Caisa 30 Club – Helsinki Pride 2026",
                "en": "The Art of Diversity (K16) SOLD OUT – Caisa 30 Club – Helsinki Pride 2026"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Helsinki, oletko valmis? The Art of Diversity on täällä, ja olemme tulleet loistamaan.",
                "en": "Helsinki, are you ready? Because The Art of Diversity is here, and we came to shine."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/F234109E6D9176498878350AD1DB05B2/The_Art_of_Diversity_K16_LOPPUUNMYYTY",
                "sv": "http://www.caisa.fi/sv/evenemang/event/F234109E6D9176498878350AD1DB05B2/The_Art_of_Diversity_K16_",
                "en": "http://www.caisa.fi/en/events/event/F234109E6D9176498878350AD1DB05B2/The_Art_of_Diversity_K16_SOLD_OUT"
            },
            "description": {
                "fi": "<p>Helsinki, oletko valmis? The Art of Diversity on täällä, ja olemme tulleet loistamaan.</p><p>Ilta juhlistaa sitä, mikä tekee yhteisöstämme niin kauniin ja voimakkaan – mikä tekee siitä meidät. Ohjelmistomme kokoaa yhteen taiteilijoita kaikista taustoista, identiteeteistä ja tarinoista. Entäpä taide? Tuomme lavalle tanssia, laulua, dragiä, burleskia, kabareeta ja sirkuksta yhdelle sähköistyneelle lavalle.</p><p>Pride on enemmän kuin vain hetki. Se on koko upea kirjo siitä, keitä olemme – jokainen tarina, jokainen keho, jokainen taidemuoto, joka uskaltaa sanoa: minä olen olemassa ja olen loistava. Yhdessä äänemme eivät vain täytä huonetta. Ne rakentavat maailmaa, johon jokainen kuuluu, tasavertaisesti ja ilman epäilyksiä.</p><p>Ovet avautuvat klo 18.30. Esitys kestää noin 2,5 tuntia ja sisältää 20 minuutin väliajan.</p><p>Esiintyjät: Alice Verseau, Betty Fvck, Delfi Oraakel (EE), Dumbling (FR), Humppa Slay, Katheona Satho, Kelly Babah, Rae Reinvall, Riki Bonham Carter, Ritni Tears, Queen Rebecca ja muita.</p><p>Tule sellaisena kuin olet. Ota ihmisesi mukaan. Juhlitaan kuin sillä olisi merkitystä – koska sillä on.</p><p>Tämä on turvallinen tila kaikille, jotka astuvat oviemme läpi. Emme suvaitse rasismia, homofobiaa, transfobiaa tai minkäänlaista vihaa – teoissa, sanoissa tai asenteissa. Kaikki ovat tervetulleita tänne. Kaikki ovat turvassa täällä.</p><p>Kieli: englanti <br>Ikäraja: K16<br>Huomioithan: Esitykseen sisältyy jonkin verran kiusoittelua ja alastomuutta (K-16)<br>Liput: Liput 20 / 7 € osoitteesta lippu.fi</p><p>Ilta on osa Helsinki Priden virallista ohjelmaa.</p>",
                "en": "<p>Helsinki, are you ready? Because The Art of Diversity is here, and we came to shine.</p><p>This is a celebration of what makes our community so beautifully, powerfully us. Our line-up brings together artists of every background, every identity, every story. And the art? We're bringing dance, live singing, drag, burlesque, cabaret, and circus to one electric stage.</p><p>Because Pride is about more than a moment. It's about the full, magnificent range of who we are – every story, every body, every art form that dares to say I exist and I am brilliant. Together, our voices don't just fill a room. They build a world where everyone belongs, equally and without question.</p><p>Doors open at 18:30, the show runs approximately 2.5 hours with a 20-minute intermission.</p><p>Line-up: Alice Verseau, Betty Fvck, Delfi Oraakel (EE), Dumbling (FR), Humppa Slay, Katheona Satho, Kelly Babah, Rae Reinvall, Riki Bonham Carter, Ritni Tears, Queen Rebecca, and more.</p><p>Come as you are. Bring your people. Let's celebrate like it matters – because it does.</p><p>This is a safe space for everyone who walks through our doors. We have zero tolerance for racism, homophobia, transphobia, or any form of hate – In actions, words, or attitude. Everyone is welcome here. Everyone is protected here.</p><p>Language: English<br>Age limit: 16 +<br>Content note: The performance includes some nudity and teasing<br>Tickets sold at 20 / 7 euros at lippu.fi</p><p>The event is part of Helsinki Pride's official programming.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69095/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69539",
            "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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385391,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-26T13:14:10.107272Z",
                    "last_modified_time": "2026-06-26T13:14:10.107289Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783812.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385391/?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"
                }
            ],
            "created_time": "2026-06-26T13:14:09.930479Z",
            "last_modified_time": "2026-06-26T13:14:10.321596Z",
            "date_published": null,
            "start_time": "2026-08-29T14:00:00Z",
            "end_time": "2026-08-29T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "VuoRock – Nuorten bänditapahtuma",
                "sv": "VuoRock",
                "en": "VuoRock"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Vuosaaren nuorten tuottamassa bänditapahtumassa kuullaan loppukesän tarttuvimmat riffit ja rosoisimmat säröt, kun neljä bändiä päästetään irti ja rokki soi!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D2127B3C335B029084610A08CFDAE1BE/VuoRock",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D2127B3C335B029084610A08CFDAE1BE/VuoRock",
                "en": "http://www.vuotalo.fi/en/events/event/D2127B3C335B029084610A08CFDAE1BE/VuoRock"
            },
            "description": {
                "fi": "<p>Vuosaaren nuorten tuottamassa bänditapahtumassa kuullaan loppukesän tarttuvimmat riffit ja rosoisimmat säröt, kun neljä bändiä päästetään irti ja rokki soi!</p><p>VuoRock tuo lavalle neljä huikeaa nuorten bändiä, joiden musiikissa kuullaan metalli-, punk- ja heavy rock –soundeja.</p><p>Tapahtuma on tuotettu Vuosaaren nuorten omasta toimeliaisuudesta ja toiveista käsin. Tässä tapahtumassa pääsee moshaamaan ja fiilistelemään täysillä!</p><p>Tapahtuman alustava aikataulu:<br>17.00 Ovet auki ja illan aloittavaa ohjelmaa Vuotalon aulassa<br>18.00 Neurosect<br>18.40 Pill of Happiness<br>19.20 Radelmare<br>20.00 RapidFire</p><p>Bändien esittelyt:</p><p>Neurosect <br>Neurosect on vantaalainen alotteleva metallibändi jolla on syksyn aikana tulossa omaa musiikkia.</p><p>Pill of Happiness<br>Pill Of happiness on suoraan Kontulasta puskeva metallimöykky, jonka ainut tehtävä on jakaa metallin ilosanomaa kaikille. Musiikki on maustettu erityisesti masentavilla teemoilla, joiden pyrkimyksenä on tavoittaa kaikki joita on joskus kohdeltu elämässä väärin.</p><p>Toisin kun normaali masennuslääke, Pill Of Happiness haluaa tuoda surun esiin. Bändi syntyi kahden vatipään Ossin ja Joelin yhteen lyömisestä, vaikka toki muut jäsenet liittyivät vasta, kun nämä kaksi nuorukaista sai selvittyä päänsärystään.</p><p>Bändin keula on hottis Matti, joka on saanut tehtäväkseen huutaa ja rämpyttää kitaraa niin kuin hullu. Lead-kitaran hoitaa Ossi mahdollisimman taidokkaasti. Rumpuja paukuttaa Joel niin lujaa, että korvat kiljuu vielä huomennakin. Viimeisenä muttei todellakaan vähäisimpänä on Tomi, joka hiplaa bassoa jykevästi. Koska yksi kieli ei riitä, musiikkia tehdään englanniksi ja suomeksi.</p><p>Radelmare<br>Radelmare raapii punkkia ja louhii metallia. Radelmaren musiikissa yhdistyy 80-luvun räyhäkät kitarariffit moderniin metalliin. Laulu taipuu screameista puhtaaseen lauluun ja bändin livemeininki on tiukkaa toimitusta saaden yleisönkin liikkeelle.</p><p>Jos yhtyeen musiikkia yrittää kuvata muiden yhtyeiden kautta niin se on sekoitus Motörheadia, Mötley Crüeta, Panteraa, Slipknotia ja Bring Me The Horizonia. Bändin kotipaikka on Kouvolassa ja bändi on perustettu vuonna 2023. Genre: punk/rock/metalcore.</p><p>RapidFire<br>RapidFire soittaa heavy rockia.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69539/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69522",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385388,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-26T12:14:30.859023Z",
                    "last_modified_time": "2026-06-26T12:14:30.859045Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795838.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385388/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-26T12:14:30.540362Z",
            "last_modified_time": "2026-06-26T12:14:31.181762Z",
            "date_published": null,
            "start_time": "2026-10-07T06:00:00Z",
            "end_time": "2026-10-08T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "E1T1: Each One Teach One – Työpaja- ja esityskokonaisuus 5.–6.-luokkalaisille | Nomads Festival",
                "sv": "E1T1: Each One Teach One – Workshop och föreställning för elever i årskurs 5–6 | Nomads Festival",
                "en": "E1T1: Each One Teach One – Workshop and presentation for 5th-6th graders Nomads Festival"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Nuorille suunnatussa monitaiteellisessa hiphop-projektissa pohditaan mm. tanssin, graffitin ja musiikin keinoin, miten kommunikoimme ja jaamme tunteitamme.",
                "sv": "Each One Teach One är ett tvärkonstnärligt hiphop-projekt för unga, där vi bland annat genom dans, graffiti och musik utforskar hur vi kommunicerar och delar med oss av våra känslor.",
                "en": "Each One Teach One is a multidisciplinary hip hop project intended for young people in which we reflect on how we communicate and share our emotions, such as through dance, graffiti and music."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/0DB403F9E6D659BFC96ED22BAA7A90A4/E1T1_Each_One_Teach_One",
                "sv": "http://www.stoa.fi/sv/evenemang/event/0DB403F9E6D659BFC96ED22BAA7A90A4/E1T1_Each_One_Teach_One",
                "en": "http://www.stoa.fi/en/events/event/0DB403F9E6D659BFC96ED22BAA7A90A4/E1T1_Each_One_Teach_One"
            },
            "description": {
                "fi": "<p>Nuorille suunnatussa monitaiteellisessa hiphop-projektissa pohditaan mm. tanssin, graffitin ja musiikin keinoin, miten kommunikoimme ja jaamme tunteitamme.</p><p>Kaksipäiväisen Each One Teach One -projektin ensimmäisenä päivänä osallistutaan työpajoihin ja toisena rakennetaan esitys.  Voit ilmoittaa ryhmäsi joko ma–ti- tai ke–to-kokonaisuuteen.</p><p><b>Ensimmäinen päivä</b><br>9.00–10.30: Työpajat<br>10.30–12.00: Työpajat <br>12.00–13.00: Evästauko<br>13.00–14.30: Työpajat</p><p><b>Toinen päivä</b><br>10.00–12.00: Rakennetaan esitys yhdessä<br>12.00–14.00: Evästauko & esityksen valmistelu<br>14.00–14.30: Esitys</p><p>Työpajoissa tutustutaan eri taidemuotoihin ja tehtäviin, joista esitys rakentuu. Tanssityöpajoissa harjoitellaan esityksessä käytettäviä tanssitehtäviä, graffitityöpajoissa päästään suunnittelemaan esityksessä toteutuvaa teosta, ja työpajalaiset voivat mahdollisesti olla mukana sitä tekemässä. Työpajoihin osallistuneet pääsevät siis halutessaan esittämään tuotoksiaan osana esitystä. Työpajoihin voi osallistua, vaikka ei itse haluakaan näyttämölle.</p><p>Each One Teach One -esitys on paikkakohtainen teos. Se rakentuu useasta kohtauksesta, jotka sijoittuvat tilassa eri paikkoihin. Yleisö seuraa esiintyjiä ja liikuteltavaa äänilähdettä sitä mukaa, kun paikka vaihtuu.</p><p>Työryhmä: Julian Owusu, Jon Gredmark, Sebastian Kurtén, Liana Vahtiala, Pontus Linder, Sanna Hoang ja Sami Elovaara.<br>Ohjauskielet: suomi, ruotsi, englanti</p><p>E1T1 – Each One Teach One on osa <u><a href=\"https://www.nomadasfestival.com/\">Nomads Festival 2026</u></a> -ohjelmistoa.</p><p>Tiedustelut ja ilmoittautumiset: sanna.nuutinen@hel.fi</p>",
                "sv": "<p>Each One Teach One är ett tvärkonstnärligt hiphop-projekt för unga, där vi bland annat genom dans, graffiti och musik utforskar hur vi kommunicerar och delar med oss av våra känslor.</p><p>På den första dagen av tvådagarsprojektet Each One Teach One deltar vi i workshoppar och på den andra dagen bygger vi upp en föreställning.</p><p><b>Första dagen</b><br>9.00–10.30: Workshoppar<br>10.30–12.00: Workshoppar <br>12.00–13.00: Lunchpaus (Obs! Deltagarna tar med sig egen lunch)<br>13.00–14.30: Workshoppar</p><p><b>Andra dagen</b><br>10.00–12.00: Vi skapar föreställningen tillsammans<br>12.00–14.00: Lunchpaus & förberedelser inför föreställningen<br>14.00–14.30: Föreställning</p><p>I workshopparna utforskar vi de olika konstarter och uppgifter som bygger upp föreställningen. I dansworkshopparna övar vi på de dansuppgifter som sedan används under föreställningen, i graffitiworkshopparna designar vi ett konstverk för föreställningen, som workshopdeltagarna eventuellt får vara med om att skapa. Workshopdeltagarna har alltså möjlighet att presentera sina verk som en del av föreställningen. Du kan delta i workshopparna även om du inte själv vill stå på scenen.</p><p>Föreställningen Each One Teach One är ett platsspecifikt verk. Den består av flera scener som utspelar sig på olika platser i utrymmet. Publiken följer med artisterna och den flyttbara ljudkällan när platsen byts ut.</p><p>Arbetsgrupp: Julian Owusu, Jon Gredmark, Sebastian Kurtén, Liana Vahtiala, Pontus Linder, Sanna Hoang och Sami Elovaara.<br>Handledningsspråk: finska, svenska, engelska</p><p>E1T1 – Each One Teach One är en del av programmet för <u><a href=\"https://www.nomadasfestival.com/\">Nomads Festival 2026</u></a>.</p><p>Mer information och anmälan: sanna.nuutinen@hel.fi</p>",
                "en": "<p>Each One Teach One is a multidisciplinary hip hop project intended for young people in which we reflect on how we communicate and share our emotions, such as through dance, graffiti and music.</p><p>On the first day of the two-day Each One Teach One project, participants attend workshops and on the second day, they create a performance.</p><p><b>Day one</b><br>9:00–10:30: Workshops<br>10:30–12:00: Workshops <br>12:00–13:00: Lunch break (note: participants bring their own lunches)<br>13:00–14:30: Workshops</p><p><b>Day Two</b><br>10:00–12:00: Creating the performance together<br>12:00–14:00: Lunch break & performance preparation<br>14:00–14:30: Performance</p><p>In the workshops, participants learn about the different art forms and tasks that make up a performance. Dance workshops include practice for the dance tasks used in the performance, graffiti workshops include planning of the work being created for the performance, and the workshop participants may possibly be involved in creating it. Participants in the workshops can therefore present their works as part of the performance, if they wish. You can participate in the workshops even if you don't want to be on stage.</p><p>The Each One Teach One performance is location specific. It is made up of several scenes that take place in different places in the space. The audience follows the performers and the mobile sound source as the venue changes.</p><p>Working group: Julian Owusu, Jon Gredmark, Sebastian Kurtén, Liana Vahtiala, Pontus Linder, Sanna Hoang and Sami Elovaara.<br>Languages of instruction: Finnish, Swedish, English</p><p>E1T1 – Each One Teach One is part of the <u><a href=\"https://www.nomadasfestival.com/\">Nomads Festival 2026</u></a> programme.</p><p>Additional information and registration: sanna.nuutinen@hel.fi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69522/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69537",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385387,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-26T12:14:29.266767Z",
                    "last_modified_time": "2026-06-26T12:14:29.266784Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795835.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385387/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-26T12:14:28.968617Z",
            "last_modified_time": "2026-06-26T12:14:29.648525Z",
            "date_published": null,
            "start_time": "2026-10-05T06:00:00Z",
            "end_time": "2026-10-06T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "E1T1: Each One Teach One – Työpaja- ja esityskokonaisuus 5.–6.-luokkalaisille | Nomads Festival",
                "sv": "E1T1: Each One Teach One – Workshop och föreställning för elever i årskurs 5–6 | Nomads Festival",
                "en": "E1T1: Each One Teach One – Workshop and presentation for 5th-6th graders Nomads Festival"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Nuorille suunnatussa monitaiteellisessa hiphop-projektissa pohditaan mm. tanssin, graffitin ja musiikin keinoin, miten kommunikoimme ja jaamme tunteitamme.",
                "sv": "Each One Teach One är ett tvärkonstnärligt hiphop-projekt för unga, där vi bland annat genom dans, graffiti och musik utforskar hur vi kommunicerar och delar med oss av våra känslor.",
                "en": "Each One Teach One is a multidisciplinary hip hop project intended for young people in which we reflect on how we communicate and share our emotions, such as through dance, graffiti and music."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/F5A2D3122CD23912709EE4F695E0DA9B/E1T1_Each_One_Teach_One",
                "sv": "http://www.stoa.fi/sv/evenemang/event/F5A2D3122CD23912709EE4F695E0DA9B/E1T1_Each_One_Teach_One",
                "en": "http://www.stoa.fi/en/events/event/F5A2D3122CD23912709EE4F695E0DA9B/E1T1_Each_One_Teach_One"
            },
            "description": {
                "fi": "<p>Nuorille suunnatussa monitaiteellisessa hiphop-projektissa pohditaan mm. tanssin, graffitin ja musiikin keinoin, miten kommunikoimme ja jaamme tunteitamme.</p><p>Kaksipäiväisen Each One Teach One -projektin ensimmäisenä päivänä osallistutaan työpajoihin ja toisena rakennetaan esitys.  Voit ilmoittaa ryhmäsi joko ma–ti- tai ke–to-kokonaisuuteen.</p><p><b>Ensimmäinen päivä</b><br>9.00–10.30: Työpajat<br>10.30–12.00: Työpajat <br>12.00–13.00: Evästauko<br>13.00–14.30: Työpajat</p><p><b>Toinen päivä</b><br>10.00–12.00: Rakennetaan esitys yhdessä<br>12.00–14.00: Evästauko & esityksen valmistelu<br>14.00–14.30: Esitys</p><p>Työpajoissa tutustutaan eri taidemuotoihin ja tehtäviin, joista esitys rakentuu. Tanssityöpajoissa harjoitellaan esityksessä käytettäviä tanssitehtäviä, graffitityöpajoissa päästään suunnittelemaan esityksessä toteutuvaa teosta, ja työpajalaiset voivat mahdollisesti olla mukana sitä tekemässä. Työpajoihin osallistuneet pääsevät siis halutessaan esittämään tuotoksiaan osana esitystä. Työpajoihin voi osallistua, vaikka ei itse haluakaan näyttämölle.</p><p>Each One Teach One -esitys on paikkakohtainen teos. Se rakentuu useasta kohtauksesta, jotka sijoittuvat tilassa eri paikkoihin. Yleisö seuraa esiintyjiä ja liikuteltavaa äänilähdettä sitä mukaa, kun paikka vaihtuu.</p><p>Työryhmä: Julian Owusu, Jon Gredmark, Sebastian Kurtén, Liana Vahtiala, Pontus Linder, Sanna Hoang ja Sami Elovaara.<br>Ohjauskielet: suomi, ruotsi, englanti</p><p>E1T1 – Each One Teach One on osa <u><a href=\"https://www.nomadasfestival.com/\">Nomads Festival 2026</u></a> -ohjelmistoa.</p><p>Tiedustelut ja ilmoittautumiset: sanna.nuutinen@hel.fi</p>",
                "sv": "<p>Each One Teach One är ett tvärkonstnärligt hiphop-projekt för unga, där vi bland annat genom dans, graffiti och musik utforskar hur vi kommunicerar och delar med oss av våra känslor.</p><p>På den första dagen av tvådagarsprojektet Each One Teach One deltar vi i workshoppar och på den andra dagen bygger vi upp en föreställning.</p><p><b>Första dagen</b><br>9.00–10.30: Workshoppar<br>10.30–12.00: Workshoppar <br>12.00–13.00: Lunchpaus (Obs! Deltagarna tar med sig egen lunch)<br>13.00–14.30: Workshoppar</p><p><b>Andra dagen</b><br>10.00–12.00: Vi skapar föreställningen tillsammans<br>12.00–14.00: Lunchpaus & förberedelser inför föreställningen<br>14.00–14.30: Föreställning</p><p>I workshopparna utforskar vi de olika konstarter och uppgifter som bygger upp föreställningen. I dansworkshopparna övar vi på de dansuppgifter som sedan används under föreställningen, i graffitiworkshopparna designar vi ett konstverk för föreställningen, som workshopdeltagarna eventuellt får vara med om att skapa. Workshopdeltagarna har alltså möjlighet att presentera sina verk som en del av föreställningen. Du kan delta i workshopparna även om du inte själv vill stå på scenen.</p><p>Föreställningen Each One Teach One är ett platsspecifikt verk. Den består av flera scener som utspelar sig på olika platser i utrymmet. Publiken följer med artisterna och den flyttbara ljudkällan när platsen byts ut.</p><p>Arbetsgrupp: Julian Owusu, Jon Gredmark, Sebastian Kurtén, Liana Vahtiala, Pontus Linder, Sanna Hoang och Sami Elovaara.<br>Handledningsspråk: finska, svenska, engelska</p><p>E1T1 – Each One Teach One är en del av programmet för <u><a href=\"https://www.nomadasfestival.com/\">Nomads Festival 2026</u></a>.</p><p>Mer information och anmälan: sanna.nuutinen@hel.fi</p>",
                "en": "<p>Each One Teach One is a multidisciplinary hip hop project intended for young people in which we reflect on how we communicate and share our emotions, such as through dance, graffiti and music.</p><p>On the first day of the two-day Each One Teach One project, participants attend workshops and on the second day, they create a performance.</p><p><b>Day one</b><br>9:00–10:30: Workshops<br>10:30–12:00: Workshops <br>12:00–13:00: Lunch break (note: participants bring their own lunches)<br>13:00–14:30: Workshops</p><p><b>Day Two</b><br>10:00–12:00: Creating the performance together<br>12:00–14:00: Lunch break & performance preparation<br>14:00–14:30: Performance</p><p>In the workshops, participants learn about the different art forms and tasks that make up a performance. Dance workshops include practice for the dance tasks used in the performance, graffiti workshops include planning of the work being created for the performance, and the workshop participants may possibly be involved in creating it. Participants in the workshops can therefore present their works as part of the performance, if they wish. You can participate in the workshops even if you don't want to be on stage.</p><p>The Each One Teach One performance is location specific. It is made up of several scenes that take place in different places in the space. The audience follows the performers and the mobile sound source as the venue changes.</p><p>Working group: Julian Owusu, Jon Gredmark, Sebastian Kurtén, Liana Vahtiala, Pontus Linder, Sanna Hoang and Sami Elovaara.<br>Languages of instruction: Finnish, Swedish, English</p><p>E1T1 – Each One Teach One is part of the <u><a href=\"https://www.nomadasfestival.com/\">Nomads Festival 2026</u></a> programme.</p><p>Additional information and registration: sanna.nuutinen@hel.fi</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69537/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpqhzf3ee",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzfyym/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzfzom/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzfz3a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzf2hq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzf2vy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2385389,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-06-26T12:05:48.577944Z",
                    "last_modified_time": "2026-06-26T12:05:48.577958Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/81a6c5ff-10d6-409c-98ba-2a70c83cb1d1.png",
                    "name": "",
                    "cropping": "74,0,586,511",
                    "photographer_name": "",
                    "alt_text": "English language storytime",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385389/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-26T12:06:00.407441Z",
            "last_modified_time": "2026-06-26T12:06:00.407457Z",
            "date_published": null,
            "start_time": "2026-08-20T14:00:00Z",
            "end_time": "2026-12-17T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Englanninkielinen satuhetki",
                "en": "English language storytime"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Avoin englanninkielinen satuhetki kerran kuussa torstaisin klo 17-17.30",
                "en": "English language storytime once a month Thrusdays at 17-17:30."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Avoin englanninkielinen satuhetki Lippulaivan kirjastossa kerran kuussa torstaisin klo 17-17:30. Lämpimästi tervetuloa kaikille!</p>",
                "en": "<p>English language storytime in the Lippulaiva library once a month Thursdays at 17-17:30. Everyone is Welcome!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzf3ee/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpqhzgc6y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzf3re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzf364/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzf4le/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzf4w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzf5dm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzf5py/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzf55m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzf6na/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzf62e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzf7hq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzf7um/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzgaau/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzgaoi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzga3i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzgbjq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzgbv4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzgcde/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzgcri/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2385390,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-26T11:32:14.067911Z",
                    "last_modified_time": "2026-06-26T11:32:14.067929Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/c65899c9-59ae-4c60-b499-ded57eff3d8a.png",
                    "name": "",
                    "cropping": "128,0,447,318",
                    "photographer_name": "",
                    "alt_text": "Kaksi leveästy hymyilevaa vanhusta sekä teksti: Tervetuloa Olkkaritoimintaan! Hyvinvointipolkuryhmä Matinkylässä alkaen 17.8.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385390/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2026-06-26T11:43:31.855122Z",
            "last_modified_time": "2026-06-26T11:43:31.855139Z",
            "date_published": null,
            "start_time": "2026-08-17T10:00:00Z",
            "end_time": "2026-12-14T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ison Omenan Hyvinvointipolku",
                "sv": "Hälsostigen i Iso Omena  på Finska",
                "en": "The Iso Omena Wellbeing Way in Finnish"
            },
            "location_extra_info": {
                "fi": "Meri",
                "sv": "Meri",
                "en": "Meri"
            },
            "provider": {
                "fi": "luvn",
                "sv": "luvn",
                "en": "luvn"
            },
            "short_description": {
                "fi": "Tervetuloa Olkkaritoimintaan!",
                "sv": "Välkommen till Olkkari-verksamheten!",
                "en": "Welcome to Olkkari activities!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Aiheita joita käsittelemme syksyn aikana: </p><p><br></p><ul><li>Mielen hyvinvointi</li><li>Asuminen</li><li>Uni</li><li>Palautuminen</li><li>Oikeudellinen ennakointi</li><li>Säännöllinen ja monipuolinen ravitsemus</li><li>Ravitsemus, ruoka ja alkoholi</li><li>Varautuminen poikkeustilanteisiin</li><li>Liikunta</li><li>Luonto</li></ul>",
                "sv": "<p>Teman som vi kommer att ta upp under hösten:</p><ul><li>Psykiskt välbefinnande</li><li>Boende</li><li>Sömn</li><li>Återhämtning</li><li>Juridisk framförhållning</li><li>Regelbunden och mångsidig kost</li><li>Kost, mat och alkohol</li><li>Beredskap för exceptionella situationer</li><li>Motion</li><li>Natur</li></ul>",
                "en": "<p>Topics we will cover during the autumn:</p><ul><li>Mental wellbeing</li><li>Housing</li><li>Sleep</li><li>Recovery</li><li>Advance legal planning</li><li>Regular and balanced nutrition</li><li>Nutrition, food, and alcohol</li><li>Emergency preparedness</li><li>Physical activity</li></ul>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhzgc6y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69536",
            "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:32/?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/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10",
                        "sv": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10",
                        "en": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,50 € / 19 €",
                        "sv": "24,50 € / 19 €",
                        "en": "24,50 € / 19 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385384,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-26T11:14:18.855270Z",
                    "last_modified_time": "2026-06-26T11:14:18.855284Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792300.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385384/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-26T11:14:18.751500Z",
            "last_modified_time": "2026-06-26T11:14:18.995383Z",
            "date_published": null,
            "start_time": "2026-10-04T12:00:00Z",
            "end_time": "2026-10-04T13:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ismo Dance company - 5 koreografiaa rakkaudesta",
                "sv": "Ismo Dance company - 5 koreografiaa rakkaudesta",
                "en": "Ismo Dance company - 5 koreografiaa rakkaudesta"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Rakkauden teemoja eri näkökulmista esittävä tapahtuma tuo yhteen viisi koreografia ja viisi hyvin erilaista tanssiteosta humoristisen juontajan johdattamana."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/8D139241C923D8B658F6311DA63A5BFC/Ismo_Dance_company_-_5_koreografiaa_rakkaudesta",
                "sv": "http://www.stoa.fi/sv/evenemang/event/8D139241C923D8B658F6311DA63A5BFC/Ismo_Dance_company_-_5_koreografiaa_rakkaudesta",
                "en": "http://www.stoa.fi/en/events/event/8D139241C923D8B658F6311DA63A5BFC/Ismo_Dance_company_-_5_koreografiaa_rakkaudesta"
            },
            "description": {
                "fi": "<p>Rakkauden teemoja eri näkökulmista esittävä tapahtuma tuo yhteen viisi koreografia ja viisi hyvin erilaista tanssiteosta humoristisen juontajan johdattamana.</p><p>Ismo Dance Company tuo lavalle ainutlaatuisen tanssi-illan, jossa vierailee viisi koreografia: neljä Suomesta ja yksi Norjasta. Illan 10–20 minuutin mittaiset teokset kietoutuvat rakkauden teeman ympärille tarjoten tuoreita, yllättäviä ja monimuotoisia tulkintoja yhdestä ihmiselämän keskeisimmistä tunteista.</p><p>Harvoin on mahdollista kokea yhden illan aikana näin laaja kattaus lyhyitä nykytanssiteoksia. Koreografien erilaiset taustat ja ilmaisutavat luovat rikkaan ja vaihtelevan kokonaisuuden, joka puhuttelee niin tanssin ystäviä kuin uusia kokijoita.</p><p>Illan kulkua rytmittää yllätysjuontaja, joka johdattaa katsojat teosten maailmaan, avaa koreografian kerroksia ja rakentaa siltaa yleisön ja esitysten välille – pilke silmäkulmassa.</p><p>Koreografivieraina nähdään <b>Karen Eide Bøen</b>, <b>Ismo-Pekka Heikinheimo</b>, <b>Heidi Masalin</b>, <b>Satu Rekola</b> ja <b>Sofia Ruija</b>.</p><p>Tapahtuma on Tanssi-idea ry:n, KATVE [blind spot] Companyn ja Stoan yhteistuotanto.</p><p>Tapahtumaa tukevat Helsingin kaupunki ja Taide- ja kulttuurivirasto.</p><p>Kesto: n. 1h 45min.<br>Ikäsuositus: 12+</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69536/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69535",
            "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:32/?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/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10",
                        "sv": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10",
                        "en": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,50 € / 19 €",
                        "sv": "24,50 € / 19 €",
                        "en": "24,50 € / 19 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385383,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-26T11:14:18.381707Z",
                    "last_modified_time": "2026-06-26T11:14:18.381726Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792299.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385383/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-26T11:14:18.271584Z",
            "last_modified_time": "2026-06-26T11:14:18.526792Z",
            "date_published": null,
            "start_time": "2026-10-03T12:00:00Z",
            "end_time": "2026-10-03T13:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ismo Dance company - 5 koreografiaa rakkaudesta",
                "sv": "Ismo Dance company - 5 koreografiaa rakkaudesta",
                "en": "Ismo Dance company - 5 koreografiaa rakkaudesta"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Rakkauden teemoja eri näkökulmista esittävä tapahtuma tuo yhteen viisi koreografia ja viisi hyvin erilaista tanssiteosta humoristisen juontajan johdattamana."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/32E83BF34945F7A5689F9F4D2D1F2D0E/Ismo_Dance_company_-_5_koreografiaa_rakkaudesta",
                "sv": "http://www.stoa.fi/sv/evenemang/event/32E83BF34945F7A5689F9F4D2D1F2D0E/Ismo_Dance_company_-_5_koreografiaa_rakkaudesta",
                "en": "http://www.stoa.fi/en/events/event/32E83BF34945F7A5689F9F4D2D1F2D0E/Ismo_Dance_company_-_5_koreografiaa_rakkaudesta"
            },
            "description": {
                "fi": "<p>Rakkauden teemoja eri näkökulmista esittävä tapahtuma tuo yhteen viisi koreografia ja viisi hyvin erilaista tanssiteosta humoristisen juontajan johdattamana.</p><p>Ismo Dance Company tuo lavalle ainutlaatuisen tanssi-illan, jossa vierailee viisi koreografia: neljä Suomesta ja yksi Norjasta. Illan 10–20 minuutin mittaiset teokset kietoutuvat rakkauden teeman ympärille tarjoten tuoreita, yllättäviä ja monimuotoisia tulkintoja yhdestä ihmiselämän keskeisimmistä tunteista.</p><p>Harvoin on mahdollista kokea yhden illan aikana näin laaja kattaus lyhyitä nykytanssiteoksia. Koreografien erilaiset taustat ja ilmaisutavat luovat rikkaan ja vaihtelevan kokonaisuuden, joka puhuttelee niin tanssin ystäviä kuin uusia kokijoita.</p><p>Illan kulkua rytmittää yllätysjuontaja, joka johdattaa katsojat teosten maailmaan, avaa koreografian kerroksia ja rakentaa siltaa yleisön ja esitysten välille – pilke silmäkulmassa.</p><p>Koreografivieraina nähdään <b>Karen Eide Bøen</b>, <b>Ismo-Pekka Heikinheimo</b>, <b>Heidi Masalin</b>, <b>Satu Rekola</b> ja <b>Sofia Ruija</b>.</p><p>Tapahtuma on Tanssi-idea ry:n, KATVE [blind spot] Companyn ja Stoan yhteistuotanto.</p><p>Tapahtumaa tukevat Helsingin kaupunki ja Taide- ja kulttuurivirasto.</p><p>Kesto: n. 1h 45min.<br>Ikäsuositus: 12+</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69535/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69534",
            "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:32/?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/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10",
                        "sv": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10",
                        "en": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,50 / 19 €",
                        "sv": "24,50 / 19 €",
                        "en": "24,50 / 19 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385382,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-26T11:14:17.802258Z",
                    "last_modified_time": "2026-06-26T11:14:17.802280Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792298.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385382/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-26T11:14:17.691190Z",
            "last_modified_time": "2026-06-26T11:14:17.940260Z",
            "date_published": null,
            "start_time": "2026-10-02T15:00:00Z",
            "end_time": "2026-10-02T16:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ismo Dance Company: 5 koreografiaa rakkaudesta",
                "sv": "Ismo Dance Company: 5 koreografiaa rakkaudesta",
                "en": "Ismo Dance Company: 5 koreografiaa rakkaudesta"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Rakkauden teemoja eri näkökulmista esittävä tapahtuma tuo yhteen viisi koreografia ja viisi hyvin erilaista tanssiteosta humoristisen juontajan johdattamana."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/FBE93A6C773D9473951E89692EFC9636/Ismo_Dance_Company_5_koreografiaa_rakkaudesta",
                "sv": "http://www.stoa.fi/sv/evenemang/event/FBE93A6C773D9473951E89692EFC9636/Ismo_Dance_Company_5_koreografiaa_rakkaudesta",
                "en": "http://www.stoa.fi/en/events/event/FBE93A6C773D9473951E89692EFC9636/Ismo_Dance_Company_5_koreografiaa_rakkaudesta"
            },
            "description": {
                "fi": "<p>Rakkauden teemoja eri näkökulmista esittävä tapahtuma tuo yhteen viisi koreografia ja viisi hyvin erilaista tanssiteosta humoristisen juontajan johdattamana.</p><p>Ismo Dance Company tuo lavalle ainutlaatuisen tanssi-illan, jossa vierailee viisi koreografia: neljä Suomesta ja yksi Norjasta. Illan 10–20 minuutin mittaiset teokset kietoutuvat rakkauden teeman ympärille tarjoten tuoreita, yllättäviä ja monimuotoisia tulkintoja yhdestä ihmiselämän keskeisimmistä tunteista.</p><p>Harvoin on mahdollista kokea yhden illan aikana näin laaja kattaus lyhyitä nykytanssiteoksia. Koreografien erilaiset taustat ja ilmaisutavat luovat rikkaan ja vaihtelevan kokonaisuuden, joka puhuttelee niin tanssin ystäviä kuin uusia kokijoita.</p><p>Illan kulkua rytmittää yllätysjuontaja, joka johdattaa katsojat teosten maailmaan, avaa koreografian kerroksia ja rakentaa siltaa yleisön ja esitysten välille – pilke silmäkulmassa.</p><p>Koreografivieraina nähdään <b>Karen Eide Bøen</b>, <b>Ismo-Pekka Heikinheimo</b>, <b>Heidi Masalin</b>, <b>Satu Rekola</b> ja <b>Sofia Ruija</b>.</p><p>Tapahtuma on Tanssi-idea ry:n, KATVE [blind spot] Companyn ja Stoan yhteistuotanto.</p><p>Tapahtumaa tukevat Helsingin kaupunki ja Taide- ja kulttuurivirasto.</p><p>Kesto: n. 1h 45min.<br>Ikäsuositus: 12+</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69534/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69533",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10",
                        "sv": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10",
                        "en": "https://www.lippu.fi/artist/ismo-dance-company/#calendar-start=2026-10"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,50 € / 19 €",
                        "sv": "24,50 € / 19 €",
                        "en": "24,50 € / 19 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385381,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-26T11:14:17.148659Z",
                    "last_modified_time": "2026-06-26T11:14:17.148674Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792297.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385381/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-26T11:14:17.021842Z",
            "last_modified_time": "2026-06-26T11:14:17.328988Z",
            "date_published": null,
            "start_time": "2026-10-01T15:00:00Z",
            "end_time": "2026-10-01T16:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ismo Dance Company: 5 koreografiaa rakkaudesta ensi-ilta",
                "sv": "Ismo Dance Company: 5 koreografiaa rakkaudesta",
                "en": "Ismo Dance Company: 5 koreografiaa rakkaudesta"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Rakkauden teemoja eri näkökulmista esittävä tapahtuma tuo yhteen viisi koreografia ja viisi hyvin erilaista tanssiteosta humoristisen juontajan johdattamana."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/75784889EC9AE0FE4A84FC172C6E2F1E/Ismo_Dance_Company_5_koreografiaa_rakkaudesta_ensi-ilta",
                "sv": "http://www.stoa.fi/sv/evenemang/event/75784889EC9AE0FE4A84FC172C6E2F1E/Ismo_Dance_Company_5_koreografiaa_rakkaudesta",
                "en": "http://www.stoa.fi/en/events/event/75784889EC9AE0FE4A84FC172C6E2F1E/Ismo_Dance_Company_5_koreografiaa_rakkaudesta"
            },
            "description": {
                "fi": "<p>Rakkauden teemoja eri näkökulmista esittävä tapahtuma tuo yhteen viisi koreografia ja viisi hyvin erilaista tanssiteosta humoristisen juontajan johdattamana.</p><p>Ismo Dance Company tuo lavalle ainutlaatuisen tanssi-illan, jossa vierailee viisi koreografia: neljä Suomesta ja yksi Norjasta. Illan 10–20 minuutin mittaiset teokset kietoutuvat rakkauden teeman ympärille tarjoten tuoreita, yllättäviä ja monimuotoisia tulkintoja yhdestä ihmiselämän keskeisimmistä tunteista.</p><p>Harvoin on mahdollista kokea yhden illan aikana näin laaja kattaus lyhyitä nykytanssiteoksia. Koreografien erilaiset taustat ja ilmaisutavat luovat rikkaan ja vaihtelevan kokonaisuuden, joka puhuttelee niin tanssin ystäviä kuin uusia kokijoita.</p><p>Illan kulkua rytmittää yllätysjuontaja, joka johdattaa katsojat teosten maailmaan, avaa koreografian kerroksia ja rakentaa siltaa yleisön ja esitysten välille – pilke silmäkulmassa.</p><p>Koreografivieraina nähdään <b>Karen Eide Bøen</b>, <b>Ismo-Pekka Heikinheimo</b>, <b>Heidi Masalin</b>, <b>Satu Rekola</b> ja <b>Sofia Ruija</b>.</p><p>Tapahtuma on Tanssi-idea ry:n, KATVE [blind spot] Companyn ja Stoan yhteistuotanto.</p><p>Tapahtumaa tukevat Helsingin kaupunki ja Taide- ja kulttuurivirasto.</p><p>Kesto: n. 1h 45min.<br>Ikäsuositus: 12+</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69533/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68964",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201209,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-12T07:12:57.888330Z",
                    "last_modified_time": "2026-05-12T07:12:57.888347Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785938.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201209/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-12T07:12:57.777249Z",
            "last_modified_time": "2026-06-26T11:13:56.215718Z",
            "date_published": null,
            "start_time": "2026-07-01T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Rosita Luu (duo) – indiespa",
                "sv": "Rosita Luu (duo) – indiespa",
                "en": "Rosita Luu (duo) – indiespa"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Rosita Luu on livekeikoilla kova luu ja tarjoaa yleisölleen mieleenpainuvan kokemuksen.",
                "sv": "Rosita Luu är ytterst fängslande på livekonserter och ger publiken en oförglömlig upplevelse.",
                "en": "Rosita Luu is a tough act to follow on stage and offer their audience a memorable experience."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/3BE341EFF4FC8F99E2631AA51C27FC4A/Rosita_Luu_duo_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/3BE341EFF4FC8F99E2631AA51C27FC4A/Rosita_Luu_duo_",
                "en": "http://www.espanlava.fi/en/events/event/3BE341EFF4FC8F99E2631AA51C27FC4A/Rosita_Luu_duo_"
            },
            "description": {
                "fi": "<p>Rosita Luu on livekeikoilla kova luu ja tarjoaa yleisölleen mieleenpainuvan kokemuksen.</p><p>Neljä albumia julkaissut <b>Rosita Luu</b> (Merita Berg) on omaehtoinen, omia kinttupolkujaan kulkeva artisti ja yhtye. Kiitetyillä albumeilla on kuultu ennakkoluulottomasti kaikuja laajalti musiikin eri tyylilajeista. Monipuolisuus lauluntekijänä onkin yksi artistin tavaramerkeistä vahvojen sanoitusten lisäksi. Lyriikoiden pohjavire on ihmisyyttä, erheitä ja isoja tunteita syvästi ymmärtävä, eikä Rosita Luun maailmassa mikään ole mustavalkoista tai pyhää.</p><p>Vuonna 2021 <i>Samettisuu</i>-albumi oli ehdolla Emma Gaalassa Kriitikoiden valinta ja Vuoden yleisöäänestys -kategorioissa. <i>Samettisuu</i>-albumi listattiin julkaisuvuotenaan mm. Soundin Vuoden kotimainen albumi -listan sijalle kolme. Samana vuonna Rosita Luu valittiin YleX:n tulevaisuuden tähtiä ennustavaan Läpimurto-listaukseen.</p><p>Rosita Luun viimeisin albumi <i>Yöeläin</i> huomioitiin muun muassa vuoden 2024 levylistauksissa Yleisradion musiikkitoimittaja Susanna Vainiolan poimintona sekä Soundi-lehdessä. Lisäksi albumi nousi tammikuussa 2025 ehdolle vuoden albumiksi riippumattomien levy- ja tuotantoyhtiöiden yhdistys IndieCo ry:n toimesta osana Indie Awards 2025 -tapahtumaa.</p><p>Atisti yhtyeineen on livekeikoilla kova luu ja tarjoaa yleisölleen mieleenpainuvan kokemuksen. Yhtyeen valovoimaisten soittajien säestyksellä välittyy vahvasti Rosita Luun sävykäs ja omintakeinen maailma. Espan lavalla Rosita Luu esiintyy intiimisti duona.</p><p>Esiintyjät:<br>Merita Berg<br>Tiia Schwartz</p><p>Taitaa tulla <b>indiespa</b>! Espan lavalla tuoreinta ja kiinnostavinta kotimaista indie-musiikkia esitellyt indiespa-keikkasarja jatkuu tänä vuonna kolmen illan ja kuuden eri yhtyeen voimin.</p><p>Heinä- ja elokuulle sijoittuvat keikat tarjoavat kesäisen Espan kuulijoille äänikuvia herkästä pop-tunnelmoinnista tiukkaan rokkenrolliin. Soittoajat klo 17 ja 18, aina vapaa pääsy!</p>",
                "sv": "<p>Rosita Luu är ytterst fängslande på livekonserter och ger publiken en oförglömlig upplevelse.</p><p><b>Rosita Luu</b> (Merita Berg) är en unik artist och ett band som går sin egen väg och har släppt fyra album. De hyllade albumen har fördomsfria ekon av ett brett spektrum av olika musikgenrer. Mångsidigheten som låtskrivare är ett av artistens kännetecken, tillsammans med starka texter. Grundstämningen i texterna är en djup förståelse för mänskligheten, misstag och stora känslor, och ingenting i Rosita Luus värld är svartvitt eller heligt.</p><p>År 2021 var albumet <i>Samettisuu</i> nominerat i Emmagalan i kategorierna Kritikernas val och Publikens favorit. Albumet<i>Samettisuu</i> listades under publikationsåret bland annat på plats tre på Soundis lista över årets inhemska album (Vuoden kotimainen albumi) Samma år valdes Rosita Luu till YleX:s genombrottslista (Läpimurto), som förutspår framtida stjärnor.</p><p>Rosita Luus senaste album <i>Yöeläin</i> fanns bland annat med på skivlistor 2024 valt av Rundradions musikjournalist Susanna Vainiola samt i Soundi-tidskriften. Dessutom nominerade föreningen för oberoende skiv- och produktionsbolag IndieCo ry albumet i januari 2025 till årets album som en del av evenemanget Indie Awards 2025.</p><p>Artisten med sitt band är ytterst fängslande på livekonserter och ger publiken en oförglömlig upplevelse. Rosita Luus nyansrika och unika värld förmedlas starkt genom ackompanjemanget av bandets ljusstarka musiker.</p><p>Medlemmarna:<br>Merita Berg<br>Tiia Schwartz<br> <br>_____</p><p>Jag tror att det blir <b>indiespa</b>! Konsertserien indiespa som presenterar den nyaste och intressantaste inhemska indiemusiken på Esplanadestraden får fortsättning i år under tre kvällar med sex olika band.</p><p>Konserterna, som ordnas i juli och augusti, erbjuder publiken vid Esplanadestraden ljudbilder från känsliga popstämningar till hård rock'n’roll. Speltider kl. 17 och 18, alltid fritt inträde!</p>",
                "en": "<p>Rosita Luu is a tough act to follow on stage and offer their audience a memorable experience.</p><p>With four albums, <b>Rosita Luu</b> (band leader Merita Berg) is the band of a self-made artist, following her own winding path. Their acclaimed albums feature unprejudiced echoes of a wide range of musical genres. In fact, versatility as a songwriter is one of the artist's trademarks, along with strong lyrics. A deep undercurrent of understanding humanity, mistakes and big emotions runs through the lyrics, and nothing in Rosita Luu's world is black and white or sacred.</p><p>In 2021, their album <i>Samettisuu</i> was nominated in the critics' choice and audience choice categories at the Emma Gaala awards show. <i>Samettisuu</i> was ranked number three on Soundi's Finnish album of the year list in the year of its release. In the same year, Rosita Luu was featured on the YleX breakthrough list predicting future stars.</p><p>Rosita Luu's latest album <i>Yöeläin</i> was one of Finnish Broadcasting Company YLE's music journalist Susanna Vainiola’s picks for best albums in 2024 and it was also featured in Soundi magazine. In addition to this, the record was nominated for album of the year in January 2025 by the association of independent production companies IndieCo as part of the Indie Awards 2025 event.</p><p>The artist and her band are a tough act to follow on stage and offer their audience a memorable experience. The luminous musicians of Rosita Luu's band allow for the band leader’s melodic and original world to fully shine through.</p><p>Members:<br>Merita Berg<br>Tiia Schwartz<br> <br>_____</p><p>I think we’re headed for <b>indiespa</b>! The indiespa series of performances, which showcased some of the freshest and most interesting Finnish indie music on Espa Stage, continues this summer with six acts over three nights.</p><p>The gigs scheduled for July and August will offer summery Espa soundscapes to visitors, ranging from delicate pop tunes to aggressive rock 'n' roll. Bands will start playing at 17.00 and 18.00, always free entry!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68964/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpqhlothe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlomjq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlonla/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlon3q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlooni/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlopay/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlopsm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhloqb4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhloqvm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlorfi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlorwi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlosg4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlosxe/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2385385,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-06-26T11:01:09.837447Z",
                    "last_modified_time": "2026-06-26T11:01:09.837460Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/39c96262-fb36-4a50-8a2b-884a14d590c8.jpg",
                    "name": "",
                    "cropping": "10,0,1070,1060",
                    "photographer_name": "",
                    "alt_text": "Ohjaamotalon Starttipiste",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385385/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-26T11:01:31.352124Z",
            "last_modified_time": "2026-06-26T11:01:31.352141Z",
            "date_published": null,
            "start_time": "2026-09-08T12:00:00Z",
            "end_time": "2026-11-24T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ohjaamotalon Starttipiste Lippulaivassa",
                "sv": "Navigatorhuset, Startpunkt i Lippulaiva biblioteket",
                "en": "Ohjaamotalo's Starttipiste in Lippulaiva library"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Ohjaamotalon Starttipiste Lippulaivassa",
                "sv": "Navigatorhuset, Startpunkt i Lippulaiva biblioteket",
                "en": "Ohjaamotalo's Starttipiste in Lippulaiva library"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Moi nuori!</p><p>Tarvitsetko apua esimerkiksi työnhakuun,</p><p>opiskeluun, asumiseen tai toimeentuloon liittyviin</p><p>asioihin?</p><p>Me autamme eteenpäin.</p><p>Ohjaamotalon Starttipiste on avoinna Lippulaivan</p><p>kirjastossa 8.9. alkaen.</p><p>Aika: Tiistaisin klo 15-18</p><p>Jos et tiedä mistä aloittaa, aloita Starttipisteeltä!</p><p>Lisätietoa Ohjaamotalon</p><p>Starttipisteestä osoitteesta</p><p>espoo.fi/fi/nuoret/ohjaamotalo</p>",
                "sv": "<p>Hej ungdom! Funderar du på till exempel jobbsökning, studier, boende eller utkomst? Vi hjälper dig vidare. Navigatorhusets tjänster är avsedda för unga under 30 år från Esbo och Grankulla.</p><p>I Lippulaiva biblioteket med start den 8.9., på tisdagar kl. 15-18.</p>",
                "en": "<p>Hi there, young person! Are you thinking about things like job hunting, studying, housing or income? We’re here to help you move forward. Ohjaamotalo’s services are intended for young people under 30 living in Espoo and Kauniainen.</p><p>In Lippulaiva library every Tuesday, 3–6 p.m., starting September 8.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlothe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:c2994c25-3bc0-4857-99de-911630f7c292",
            "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:732/?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:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api"
                }
            ],
            "created_time": "2026-06-26T10:41:02.201882Z",
            "last_modified_time": "2026-06-26T10:59:48.640744Z",
            "date_published": "2026-06-26T10:40:23Z",
            "start_time": "2026-06-26T10:48:00Z",
            "end_time": "2026-06-26T12:48:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Asiasanatesti"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Tapahtuman järjestäjä"
            },
            "short_description": {
                "fi": "Lyhyt kuvaus"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Pitkä kuvaus</p></div>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:c2994c25-3bc0-4857-99de-911630f7c292/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpqhloxqq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlotwu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlouy4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlovvi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhlowti/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1494195,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-11T11:23:23.078521Z",
                    "last_modified_time": "2025-12-11T11:23:23.078542Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/e3891e45-46af-4619-a978-ea927f5dfbff.jpg",
                    "name": "",
                    "cropping": "120,0,840,720",
                    "photographer_name": "Johanna Anttila",
                    "alt_text": "Kuvassa on käsityöjuttuja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494195/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-26T10:39:22.796744Z",
            "last_modified_time": "2026-06-26T10:39:22.796761Z",
            "date_published": null,
            "start_time": "2026-08-26T07:00:00Z",
            "end_time": "2026-11-25T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Avoin kässäyhteisö  ",
                "sv": "Öppen Handarbetsgemenskap",
                "en": "Open Crafting Community"
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Makerspace"
            },
            "provider": null,
            "short_description": {
                "fi": "Kaikille avoin Kässäyhteisö kokoontuu syksyllä 2026 kerran kuukaudessa Lippulaivan kirjaston Pajassa.",
                "sv": "Den öppna Handarbetsgemenskapen samlas en gång i månaden under hösten 2026 i Lippulaiva bibliotekets Verkstad.",
                "en": "The Open Crafting Community meets once a month during autumn 2026 at the Lippulaiva Library Makerspace."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Ota mukaan oma käsityö ja tule inspiroitumaan yhdessä tekemisestä. Tapahtumassa neulotaan, virkataan ja ommellaan yhdessä. Joka kerralla saat myös vinkin helppoon käsityöhön ja esillä on kirjaston käsityökirjoja.&nbsp;</p><p>&nbsp;</p><p>Syksyn 2026 ajankohdat ja vinkit:&nbsp;</p><p>26.8. klo 10–12 Virkatut korvakorut&nbsp;</p><p>30.9. klo 10–12 Vinkki osallistujien toiveen mukaan&nbsp;</p><p>28.10. klo 10–12 Vinkki osallistujien toiveen mukaan&nbsp;</p><p>25.11. klo 10–12 Paperiset joulukoristeet</p><p>&nbsp;</p><p>Kokoonnumme Lippulaivan kirjaston Pajassa. Tapahtuman ajan Ompeluhuone Solmun ompelukoneet ovat käytettävissä. </p><p>Tarjolla kahvia/teetä ja keksejä. </p>",
                "sv": "<p>Ta med ditt eget hantverksprojekt och kom och låt dig inspireras av att skapa tillsammans. Under detta evenemang ska vi sticka, virka och sy tillsammans. Varje gång får du också ett tips på ett enkelt hantverksprojekt, och bibliotekets hantverksböcker kommer att finnas utställda.&nbsp;</p><p>&nbsp;</p><p>Datum och tips för hösten 2026:&nbsp;</p><p>26 augusti, kl. 10.00–12.00 Virkade örhängen&nbsp;</p><p>30 september, kl. 10.00–12.00 Tips utifrån deltagarnas önskemål&nbsp;</p><p>28 oktober, kl. 10.00–12.00 Tips utifrån deltagarnas önskemål&nbsp;</p><p>25 november, kl. 10.00–12.00 Julpynt av papper</p><p>&nbsp;</p><p>Vi träffas i Paja-verkstaden i Lippulaiva-biblioteket. Symaskiner från syrummet Ompeluhuone Solmu kommer att finnas tillgängliga under evenemanget.</p><p>Kaffe, te och kakor serveras.</p>",
                "en": "<p>Bring your own craft project and come be inspired by creating together. At this event, we’ll knit, crochet, and sew together. Each time, you’ll also get a tip for an easy craft project, and the library’s craft books will be on display.&nbsp;</p><p>&nbsp;</p><p>Fall 2026 dates and tips:&nbsp;</p><p>August 26, 10 a.m.–12 p.m. Crocheted earrings&nbsp;</p><p>September 30, 10 a.m.–12 p.m. Tip based on participants’ requests&nbsp;</p><p>October 28, 10 a.m.–12 p.m. Tip based on participants’ requests&nbsp;</p><p>November 25, 10 a.m.–12 p.m. Paper Christmas decorations</p><p>&nbsp;</p><p>We’ll meet at the Paja workshop in the Lippulaiva Library. Sewing machines from the Ompeluhuone Solmu sewing room will be available during the event.</p><p>Coffee, tea, and cookies will be served.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpqhloxqq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69532",
            "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385380,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-26T10:14:44.506338Z",
                    "last_modified_time": "2026-06-26T10:14:44.506354Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793309.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385380/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-26T10:14:44.273018Z",
            "last_modified_time": "2026-06-26T10:14:44.752434Z",
            "date_published": null,
            "start_time": "2026-12-10T09:45:00Z",
            "end_time": "2026-12-10T11:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Lär dig finska genom att sjunga",
                "en": "Learn Finnish by Singing – Learn Finnish by Singing"
            },
            "location_extra_info": null,
            "provider": null,
            "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 makes use of the many opportunities offered by music to strengthen your learning."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/CC7FFD11574D5698F927962A3D83A15F/Opi_suomea_laulaen",
                "sv": "http://www.stoa.fi/sv/evenemang/event/CC7FFD11574D5698F927962A3D83A15F/Lar_dig_finska_genom_att_sjunga_",
                "en": "http://www.stoa.fi/en/events/event/CC7FFD11574D5698F927962A3D83A15F/Learn_Finnish_by_Singing_"
            },
            "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</p><p>Mukaan ryhmään on ilmoittauduttava etukäteen.  <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi  <br> <br>Syksyn laulupajakerrat:  <br>Ti 22.9. klo 10 ja 11.45<br>To 1.10. klo 10 ja 11.45 <br>To 29.10. klo 10 ja 11.45 <br>Ti 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.<br>   <br>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>Sångverkstäder: <br>Tis. 22.9 kl. 10 och 11.45<br>Tors. 1.10 kl. 10 och 11.45 <br>Tors. 29.10 kl. 10 och 11.45 <br>Tors. 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 makes use of 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 <br> <br>Autumn song workshops:<br>Tue 22.9. at 10 and 11.45 <br>Thu 1.10. at 10 and 11.45 <br>Thu 29.10. at 10 and 11.45 <br>Thu 10.12. at 10 and 11.45</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69532/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69531",
            "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385379,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-26T10:14:43.774471Z",
                    "last_modified_time": "2026-06-26T10:14:43.774487Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793308.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385379/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-26T10:14:43.544518Z",
            "last_modified_time": "2026-06-26T10:14:44.046706Z",
            "date_published": null,
            "start_time": "2026-12-10T08:00:00Z",
            "end_time": "2026-12-10T09:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Lär dig finska genom att sjunga",
                "en": "Learn Finnish by Singing – Learn Finnish by Singing"
            },
            "location_extra_info": null,
            "provider": null,
            "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 makes use of the many opportunities offered by music to strengthen your learning."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/F5811D59BA0A785414ADD38AA3CFC012/Opi_suomea_laulaen",
                "sv": "http://www.stoa.fi/sv/evenemang/event/F5811D59BA0A785414ADD38AA3CFC012/Lar_dig_finska_genom_att_sjunga_",
                "en": "http://www.stoa.fi/en/events/event/F5811D59BA0A785414ADD38AA3CFC012/Learn_Finnish_by_Singing_"
            },
            "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</p><p>Mukaan ryhmään on ilmoittauduttava etukäteen.  <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi  <br> <br>Syksyn laulupajakerrat:  <br>Ti 22.9. klo 10 ja 11.45<br>To 1.10. klo 10 ja 11.45 <br>To 29.10. klo 10 ja 11.45 <br>Ti 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.<br>   <br>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>Sångverkstäder: <br>Tis. 22.9 kl. 10 och 11.45<br>Tors. 1.10 kl. 10 och 11.45 <br>Tors. 29.10 kl. 10 och 11.45 <br>Tors. 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 makes use of 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 <br> <br>Autumn song workshops:<br>Tue 22.9. at 10 and 11.45 <br>Thu 1.10. at 10 and 11.45 <br>Thu 29.10. at 10 and 11.45 <br>Thu 10.12. at 10 and 11.45</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69531/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69530",
            "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385378,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-26T10:14:38.148430Z",
                    "last_modified_time": "2026-06-26T10:14:38.148445Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793306.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385378/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-26T10:14:37.935680Z",
            "last_modified_time": "2026-06-26T10:14:38.396910Z",
            "date_published": null,
            "start_time": "2026-10-29T09:45:00Z",
            "end_time": "2026-10-29T11:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Opi suomea laulaen – 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"
            },
            "location_extra_info": null,
            "provider": null,
            "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 makes use of the many opportunities offered by music to strengthen your learning."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/1583FAB313487931F5DE38D20358705D/Opi_suomea_laulaen_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/1583FAB313487931F5DE38D20358705D/Lar_dig_finska_genom_att_sjunga_",
                "en": "http://www.stoa.fi/en/events/event/1583FAB313487931F5DE38D20358705D/Learn_Finnish_by_Singing_"
            },
            "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</p><p>Mukaan ryhmään on ilmoittauduttava etukäteen.  <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi  <br> <br>Syksyn laulupajakerrat:  <br>Ti 22.9. klo 10 ja 11.45<br>To 1.10. klo 10 ja 11.45 <br>To 29.10. klo 10 ja 11.45 <br>Ti 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.<br>   <br>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>Sångverkstäder: <br>Tis. 22.9 kl. 10 och 11.45<br>Tors. 1.10 kl. 10 och 11.45 <br>Tors. 29.10 kl. 10 och 11.45 <br>Tors. 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 makes use of 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 <br> <br>Autumn song workshops:<br>Tue 22.9. at 10 and 11.45 <br>Thu 1.10. at 10 and 11.45 <br>Thu 29.10. at 10 and 11.45 <br>Thu 10.12. at 10 and 11.45</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69530/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69529",
            "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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385377,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-26T10:14:37.411159Z",
                    "last_modified_time": "2026-06-26T10:14:37.411174Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793305.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385377/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-26T10:14:37.180487Z",
            "last_modified_time": "2026-06-26T10:14:37.720288Z",
            "date_published": null,
            "start_time": "2026-10-29T08:00:00Z",
            "end_time": "2026-10-29T09:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Opi suomea laulaen – 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"
            },
            "location_extra_info": null,
            "provider": null,
            "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 makes use of the many opportunities offered by music to strengthen your learning."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/5DF636E2AA1D9E5CA32A312D8A170774/Opi_suomea_laulaen_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/5DF636E2AA1D9E5CA32A312D8A170774/Lar_dig_finska_genom_att_sjunga_",
                "en": "http://www.stoa.fi/en/events/event/5DF636E2AA1D9E5CA32A312D8A170774/Learn_Finnish_by_Singing_"
            },
            "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</p><p>Mukaan ryhmään on ilmoittauduttava etukäteen.  <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi  <br> <br>Syksyn laulupajakerrat:  <br>Ti 22.9. klo 10 ja 11.45<br>To 1.10. klo 10 ja 11.45 <br>To 29.10. klo 10 ja 11.45 <br>Ti 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.<br>   <br>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>Sångverkstäder: <br>Tis. 22.9 kl. 10 och 11.45<br>Tors. 1.10 kl. 10 och 11.45 <br>Tors. 29.10 kl. 10 och 11.45 <br>Tors. 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 makes use of 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 <br> <br>Autumn song workshops:<br>Tue 22.9. at 10 and 11.45 <br>Thu 1.10. at 10 and 11.45 <br>Thu 29.10. at 10 and 11.45 <br>Thu 10.12. at 10 and 11.45</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69529/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}