Event List
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
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
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
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
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
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
event/?start=now&end=today
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
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
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
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
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
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
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
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
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
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
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
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
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
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
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
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
Full-text search
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
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
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
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
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
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
event/?suitable_for=12,14
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
event/?publisher_ancestor=ahjo:00001
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
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
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
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
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
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
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
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
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
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
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
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
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
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
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
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
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
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
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
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
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
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
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
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_super_event=true&page=125
{ "meta": { "count": 35920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=126", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=124" }, "data": [ { "id": "espoo_le:agp5dlbshi", "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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385698, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T10:20:51.407172Z", "last_modified_time": "2026-08-05T10:20:51.407191Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8108eb09-5ffe-4c8d-9898-14fddaed2371.jpg", "name": "", "cropping": "685,0,1235,550", "photographer_name": "", "alt_text": "Kuvassa on kitara ja sateenkaari", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385698/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-05T10:32:24.666691Z", "last_modified_time": "2026-08-06T07:25:49.404510Z", "date_published": null, "start_time": "2026-09-12T12:00:00Z", "end_time": "2026-09-12T12: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, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": { "fi": "Klassisen kitaran taitaja ja säveltäjä Yunjia Liu ", "sv": "Den professionella klassiska gitarristen och kompositören Yunjia Liu", "en": "Professional classical guitarist and composer Yunjia Liu" }, "name": { "fi": "\"Rainbow\"-projekti: Klassisen kitaran konserttikiertue", "sv": "Projektet ”Rainbow”: Konsertturné med sologitarr", "en": "\"Rainbow\" Project: Solo Guitar Concert Tour" }, "description": { "fi": "<p>Klassisen kitaran taitaja ja säveltäjä Yunjia Liu esittää \"Rainbow\"-projektin – ainutlaatuisen konserttisarjan, jonka tavoitteena on juhlistaa monimuotoisuutta ja syvää yhteiskunnallista osallisuutta.</p><p>Tämä 30-minuuttinen konserttimatka rakentaa musiikillisia mestariteoksia ja alkuperäissävellyksiä sateenkaaren seitsemän symbolisen värin ympärille. Ohjelmisto sisältää sekä klassisia teoksia että kantaesityksen teoksesta \"PUU\" (Tree) – sävellys, joka symboloi syvien juurten kasvattamista Suomeen.</p><p>Konsertit on suunniteltu kaikille avoimiksi ja saavutettaviksi, ja ne sisältävät yleisövuorovaikutusta sekä selostuksia, jotka voidaan esittää paikallisen yleisön tarpeen mukaan englanniksi, suomeksi, ruotsiksi, saksaksi tai kiinaksi. Nämä maksuttomat esitykset muuttavat kirjastot keskinäisen kunnioituksen ja yhteisöllisyyden tyyssijoiksi.</p><p>Digitaalinen julkaisu: Alkuperäisteos \"PUU\" julkaistaan suoratoistopalveluissa 28. elokuuta 2026.</p><p><br></p><p><strong>Tapahtumien aikataulu</strong></p><p>Kiertue vierailee viidessä espoolaisessa kirjastossa:</p><p><br></p><p><strong>Espoo-päivä, perjantai 28. elokuuta 2026</strong></p><p>12:00–12:30: Entressen kirjasto</p><p>14:00–14:30: Sellon kirjasto</p><p>16:00–16:30: Tapiolan kirjasto</p><p><br></p><p><strong>Lauantai 12. syyskuuta 2026</strong></p><p>13:00–13:30: Ison Omenan kirjasto</p><p>15:00–15:30: Lippulaivan kirjasto</p>", "sv": "<p>Den professionella klassiska gitarristen och kompositören Yunjia Liu presenterar projektet ”Rainbow”, en unik konsertserie som syftar till att hylla mångfald och djup samhällelig inkludering.</p><p><br></p><p>Denna 30-minuters långa musikaliska resa bygger upp musikaliska mästerverk och egna kompositioner kring regnbågens sju symboliska färger. Programmet innehåller både klassiska favoriter och världspremiären av ”PUU” (Träd) – ett stycke som symboliserar resan mot att slå djupa rötter i Finland – och erbjuder ett utrymme för gemenskap och reflektion.</p><p><br></p><p>Konserterna är utformade för att vara tillgängliga för alla, med interaktiva inslag och kommentarer anpassade efter den lokala publiken på engelska, finska, svenska, tyska eller kinesiska. Dessa kostnadsfria föreställningar förvandlar kommunala bibliotek till oaser av ömsesidig respekt och gemenskap.</p><p><br></p><p>Digital lansering: Det originella verket ”PUU” släpps på streamingplattformar den 28 augusti 2026.</p><p><br></p><p><strong>Evenemangsinformation och schema</strong></p><p>Turnén omfattar fem stora bibliotek i Esbo:</p><p><br></p><p><strong>Fredag den 28 augusti 2026 på Esbodagen:</strong></p><p>12:00–12:30: Entresse biblioteket</p><p>14:00–14:30: Sello biblioteket</p><p>16:00–16:30: Tapiola biblioteket</p><p><br></p><p><strong>Lördag den 12 september 2026:</strong></p><p>13:00–13:30: Iso Omena biblioteket</p><p>15:00–15:30: Lippulaiva biblioteket</p>", "en": "<p>Professional classical guitarist and composer Yunjia Liu presents the \"Rainbow\" Project, a unique series of concerts designed to celebrate diversity and deep societal inclusion.</p><p>This 30-minute performance journey structures musical masterworks and original compositions around the seven symbolic colors of the rainbow. Featuring both classical staples and the world premiere of \"PUU\" (Tree)—a piece symbolizing the journey of planting deep roots in Finland—this program offers a space for connection and reflection.</p><p>The concerts are designed to be accessible to everyone, with interactive elements and commentary tailored to local audiences in English, Finnish, Swedish, German, or Chinese. These free performances transform municipal libraries into sanctuaries of mutual respect and community cohesion.</p><p>Digital Launch: The original piece \"PUU\" will be released on streaming platforms on August 28, 2026.</p><p><br></p><p><strong>Event Details & Schedule</strong></p><p>The tour spans five major Espoo libraries:</p><p><br></p><p><strong>Friday, August 28, 2026 on Espoo Day:</strong></p><p>12:00–12:30: Entresse Library</p><p>14:00–14:30: Sello Library</p><p>16:00–16:30: Tapiola Library</p><p><br></p><p><strong>Saturday, September 12, 2026:</strong></p><p>13:00–13:30: Iso Omena Library</p><p>15:00–15:30: Lippulaiva Library</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa klassisenkitaran konserttiin la 12.9. klo 15 Salonkiin!", "sv": "Välkommen till en konsert med klassisk gitarr lördagen den 12 september kl. 15 i Salonki!", "en": "Welcome to a classical guitar concert on Saturday 12 September at 3 pm in Salonki!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5dlbshi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68673", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385704, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-06T07:13:30.758747Z", "last_modified_time": "2026-08-06T07:13:30.758763Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791551.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385704/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-08-06T07:13:30.617621Z", "last_modified_time": "2026-08-06T07:13:30.991671Z", "date_published": null, "start_time": "2026-09-12T08:00:00Z", "end_time": "2026-09-12T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Annantalon taidelauantai: Ihmeelliset pölyttäjät" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Ihmeelliset pölyttäjät -työpaja</b></p><p>Mia Röngän ja Janne Torisevan vetämässä työpajassa sukelletaan pörriäisten kiehtovaan maailmaan ja keksitään mahdollisuuksia niiden auttamiseksi. Työpaja pohjautuu Pölyttäjien kirjo -kirjan tietoihin ja rikkaaseen kuvamaailmaan.</p><p>Myynnissä Pölyttäjien kirjo -teoksia.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös rauhallinen tila. Annantalon taidelauantai on maksuton.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/82765008BC532A785A598F488727DB85/Annantalon_taidelauantai_Ihmeelliset_polyttajat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68673/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5l5i65e", "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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2090061, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-07T07:48:19.518990Z", "last_modified_time": "2026-05-07T07:48:19.519002Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c2e1ede5-410f-4362-95c6-a6ccbe69ae73.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Lukukoira Halla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2090061/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-06T07:02:04.175226Z", "last_modified_time": "2026-08-06T07:02:04.175245Z", "date_published": null, "start_time": "2026-11-21T11:00:00Z", "end_time": "2026-11-21T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Keskiaukio", "sv": "Keskiaukio", "en": "Keskiaukio" }, "provider": { "fi": "Lukihero", "sv": "Lukihero", "en": "Lukihero" }, "name": { "fi": "Lukineuvontaa (mukana Lukukoira Halla)", "sv": "Läsrådgivning ", "en": "Reading support" }, "description": { "fi": "<p>LUKINEUVONTA KIRJASTOISSA</p><p>📚💚 Vinkkejä ja tukea oppimiseen</p><p>Menevätkö sanat solmuun tai numerot sekaisin?</p><p>Hyppiikö teksti riviltä toiselle, tuntuuko lukeminen raskaalta tai onko vaikea hahmottaa kokonaisuuksia ja löytää olennaista?</p><p>Tule Helsingin seudun erilaisten oppijoiden ry:n (HERO) lukineuvontaan!</p><p>Saat rauhallisessa ja kannustavassa ympäristössä käytännön apua oppimisen arkeen.</p><p>Lukineuvonnassa saat:</p><p>✨ tietoa lukivaikeuksista ja muista oppimisen haasteista</p><p>✨ konkreettisia vinkkejä ja helppoja harjoituksia lukemisen ja kirjoittamisen tueksi</p><p>✨ ohjausta hyödyllisiin sovelluksiin ja apuvälineisiin</p><p>(esim. äänikirjat, puheentunnistus, tekstin jäsentämisen työkalut)</p><p>✨ keskusteluapua ja tukea arjen oppimistilanteisiin</p><p>Palvelu on maksutonta, ja neuvontaa antavat HEROn erityisopetuksen ammattilaiset.</p><p>Toisinaan mukana on myös ihastuttava Lukukoira Halla, joka tuo lukutilanteisiin rauhaa, rohkaisua ja hyvää mieltä 🐾</p>", "sv": "<p><br></p><p>📚💚 Tips och stöd för lärande</p><p>Knyter sig orden eller blandas siffrorna ihop?</p><p>Hoppar texten från rad till rad, känns läsningen tung eller är det svårt att se helheter och hitta det väsentliga?</p><p>Kom till läsrådgivningen som ordnas av Helsingforsregionens förening för inlärningssvårigheter (HERO)!</p><p>Du får praktisk hjälp för vardagens lärandesituationer i en lugn och uppmuntrande miljö.</p><p>I läsrådgivningen får du:</p><p>✨ information om lässvårigheter och andra inlärningsutmaningar</p><p>✨ konkreta tips och enkla övningar som stöd för läsning och skrivning</p><p>✨ handledning i användbara appar och hjälpmedel</p><p>(t.ex. ljudböcker, taligenkänning, verktyg för textstrukturering)</p><p>✨ samtalsstöd och hjälp i vardagliga lärandesituationer</p><p>Tjänsten är kostnadsfri, och rådgivningen ges av HEROs specialpedagogiska yrkespersoner.</p><p>Ibland deltar också den underbara läshunden Halla, som sprider lugn, mod och glädje i lässtunderna 🐾</p>", "en": "<p><br></p><p>📚💚 Tips and support for learning</p><p>Do words get tangled or numbers mixed up?</p><p>Does the text jump from line to line, does reading feel heavy, or is it hard to grasp the whole and find the essential?</p><p>Come to the reading support sessions provided by the Helsinki Region Association for Learning Disabilities (HERO)!</p><p>You will receive practical help for everyday learning in a calm and encouraging environment.</p><p>In the reading support sessions, you will get:</p><p>✨ information about reading difficulties and other learning challenges</p><p>✨ concrete tips and simple exercises to support reading and writing</p><p>✨ guidance on useful apps and assistive tools</p><p>(e.g. audiobooks, speech-to-text, text‑structuring tools)</p><p>✨ someone to talk to and support for everyday learning situations</p><p>The service is free of charge, and the guidance is provided by HERO’s special education professionals.</p><p>Sometimes the lovely Reading Dog Halla is also present, bringing calm, courage and good vibes to reading moments 🐾</p>" }, "provider_contact_info": null, "short_description": { "fi": "📚💚 Vinkkejä ja tukea oppimiseen", "sv": "📚💚 Tips och stöd för lärande", "en": "📚💚 Tips and support for learning" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5l5i65e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5l5i7wu", "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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385705, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-06T06:58:35.101949Z", "last_modified_time": "2026-08-06T06:58:35.101963Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ce31fce5-f0de-4a6b-bfdc-cd3360b0e06d.png", "name": "Canva / HERO", "cropping": "262,0,982,720", "photographer_name": "", "alt_text": "Kuvassa on kirja ja omena. Kuvassa on myös Heron logo)", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385705/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-06T06:58:58.020346Z", "last_modified_time": "2026-08-06T06:58:58.020362Z", "date_published": null, "start_time": "2026-09-21T14:00:00Z", "end_time": "2026-09-21T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Aula tai keskiaukio", "sv": "Aula tai keskiaukio", "en": "Aula tai keskiaukio" }, "provider": { "fi": "Lukihero", "sv": "Lukihero", "en": "Lukihero" }, "name": { "fi": "Lukineuvontaa", "sv": "Läsrådgivning ", "en": "Reading support" }, "description": { "fi": "<p>LUKINEUVONTA KIRJASTOISSA</p><p>📚💚 Vinkkejä ja tukea oppimiseen</p><p>Menevätkö sanat solmuun tai numerot sekaisin?</p><p>Hyppiikö teksti riviltä toiselle, tuntuuko lukeminen raskaalta tai onko vaikea hahmottaa kokonaisuuksia ja löytää olennaista?</p><p>Tule Helsingin seudun erilaisten oppijoiden ry:n (HERO) lukineuvontaan!</p><p>Saat rauhallisessa ja kannustavassa ympäristössä käytännön apua oppimisen arkeen.</p><p>Lukineuvonnassa saat:</p><p>✨ tietoa lukivaikeuksista ja muista oppimisen haasteista</p><p>✨ konkreettisia vinkkejä ja helppoja harjoituksia lukemisen ja kirjoittamisen tueksi</p><p>✨ ohjausta hyödyllisiin sovelluksiin ja apuvälineisiin</p><p>(esim. äänikirjat, puheentunnistus, tekstin jäsentämisen työkalut)</p><p>✨ keskusteluapua ja tukea arjen oppimistilanteisiin</p><p>Palvelu on maksutonta, ja neuvontaa antavat HEROn erityisopetuksen ammattilaiset.</p>", "sv": "<p><br></p><p>📚💚 Tips och stöd för lärande</p><p>Knyter sig orden eller blandas siffrorna ihop?</p><p>Hoppar texten från rad till rad, känns läsningen tung eller är det svårt att se helheter och hitta det väsentliga?</p><p>Kom till läsrådgivningen som ordnas av Helsingforsregionens förening för inlärningssvårigheter (HERO)!</p><p>Du får praktisk hjälp för vardagens lärandesituationer i en lugn och uppmuntrande miljö.</p><p>I läsrådgivningen får du:</p><p>✨ information om lässvårigheter och andra inlärningsutmaningar</p><p>✨ konkreta tips och enkla övningar som stöd för läsning och skrivning</p><p>✨ handledning i användbara appar och hjälpmedel</p><p>(t.ex. ljudböcker, taligenkänning, verktyg för textstrukturering)</p><p>✨ samtalsstöd och hjälp i vardagliga lärandesituationer</p><p>Tjänsten är kostnadsfri, och rådgivningen ges av HEROs specialpedagogiska yrkespersoner.</p>", "en": "<p><br></p><p>📚💚 Tips and support for learning</p><p>Do words get tangled or numbers mixed up?</p><p>Does the text jump from line to line, does reading feel heavy, or is it hard to grasp the whole and find the essential?</p><p>Come to the reading support sessions provided by the Helsinki Region Association for Learning Disabilities (HERO)!</p><p>You will receive practical help for everyday learning in a calm and encouraging environment.</p><p>In the reading support sessions, you will get:</p><p>✨ information about reading difficulties and other learning challenges</p><p>✨ concrete tips and simple exercises to support reading and writing</p><p>✨ guidance on useful apps and assistive tools</p><p>(e.g. audiobooks, speech-to-text, text‑structuring tools)</p><p>✨ someone to talk to and support for everyday learning situations</p><p>The service is free of charge, and the guidance is provided by HERO’s special education professionals.</p>" }, "provider_contact_info": null, "short_description": { "fi": "📚💚 Vinkkejä ja tukea oppimiseen", "sv": "📚💚 Tips och stöd för lärande", "en": "📚💚 Tips and support for learning" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5l5i7wu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5l5jaaa", "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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2090061, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-07T07:48:19.518990Z", "last_modified_time": "2026-05-07T07:48:19.519002Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c2e1ede5-410f-4362-95c6-a6ccbe69ae73.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Lukukoira Halla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2090061/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-06T06:54:03.247183Z", "last_modified_time": "2026-08-06T06:55:07.065201Z", "date_published": null, "start_time": "2026-09-07T14:00:00Z", "end_time": "2026-09-07T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Aula tai keskiaukio", "sv": "Aula tai keskiaukio", "en": "Aula tai keskiaukio" }, "provider": { "fi": "Lukihero", "sv": "Lukihero", "en": "Lukihero" }, "name": { "fi": "Lukineuvontaa (mukana Lukukoira Halla)", "sv": "Läsrådgivning ", "en": "Reading support" }, "description": { "fi": "<p>LUKINEUVONTA KIRJASTOISSA</p><p>📚💚 Vinkkejä ja tukea oppimiseen</p><p>Menevätkö sanat solmuun tai numerot sekaisin?</p><p>Hyppiikö teksti riviltä toiselle, tuntuuko lukeminen raskaalta tai onko vaikea hahmottaa kokonaisuuksia ja löytää olennaista?</p><p>Tule Helsingin seudun erilaisten oppijoiden ry:n (HERO) lukineuvontaan!</p><p>Saat rauhallisessa ja kannustavassa ympäristössä käytännön apua oppimisen arkeen.</p><p>Lukineuvonnassa saat:</p><p>✨ tietoa lukivaikeuksista ja muista oppimisen haasteista</p><p>✨ konkreettisia vinkkejä ja helppoja harjoituksia lukemisen ja kirjoittamisen tueksi</p><p>✨ ohjausta hyödyllisiin sovelluksiin ja apuvälineisiin</p><p>(esim. äänikirjat, puheentunnistus, tekstin jäsentämisen työkalut)</p><p>✨ keskusteluapua ja tukea arjen oppimistilanteisiin</p><p>Palvelu on maksutonta, ja neuvontaa antavat HEROn erityisopetuksen ammattilaiset.</p><p>Toisinaan mukana on myös ihastuttava Lukukoira Halla, joka tuo lukutilanteisiin rauhaa, rohkaisua ja hyvää mieltä 🐾</p>", "sv": "<p><br></p><p>📚💚 Tips och stöd för lärande</p><p>Knyter sig orden eller blandas siffrorna ihop?</p><p>Hoppar texten från rad till rad, känns läsningen tung eller är det svårt att se helheter och hitta det väsentliga?</p><p>Kom till läsrådgivningen som ordnas av Helsingforsregionens förening för inlärningssvårigheter (HERO)!</p><p>Du får praktisk hjälp för vardagens lärandesituationer i en lugn och uppmuntrande miljö.</p><p>I läsrådgivningen får du:</p><p>✨ information om lässvårigheter och andra inlärningsutmaningar</p><p>✨ konkreta tips och enkla övningar som stöd för läsning och skrivning</p><p>✨ handledning i användbara appar och hjälpmedel</p><p>(t.ex. ljudböcker, taligenkänning, verktyg för textstrukturering)</p><p>✨ samtalsstöd och hjälp i vardagliga lärandesituationer</p><p>Tjänsten är kostnadsfri, och rådgivningen ges av HEROs specialpedagogiska yrkespersoner.</p><p>Ibland deltar också den underbara läshunden Halla, som sprider lugn, mod och glädje i lässtunderna 🐾</p>", "en": "<p><br></p><p>📚💚 Tips and support for learning</p><p>Do words get tangled or numbers mixed up?</p><p>Does the text jump from line to line, does reading feel heavy, or is it hard to grasp the whole and find the essential?</p><p>Come to the reading support sessions provided by the Helsinki Region Association for Learning Disabilities (HERO)!</p><p>You will receive practical help for everyday learning in a calm and encouraging environment.</p><p>In the reading support sessions, you will get:</p><p>✨ information about reading difficulties and other learning challenges</p><p>✨ concrete tips and simple exercises to support reading and writing</p><p>✨ guidance on useful apps and assistive tools</p><p>(e.g. audiobooks, speech-to-text, text‑structuring tools)</p><p>✨ someone to talk to and support for everyday learning situations</p><p>The service is free of charge, and the guidance is provided by HERO’s special education professionals.</p><p>Sometimes the lovely Reading Dog Halla is also present, bringing calm, courage and good vibes to reading moments 🐾</p>" }, "provider_contact_info": null, "short_description": { "fi": "📚💚 Vinkkejä ja tukea oppimiseen", "sv": "📚💚 Tips och stöd för lärande", "en": "📚💚 Tips and support for learning" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5l5jaaa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5l5jajy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385706, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-06T06:45:59.633514Z", "last_modified_time": "2026-08-06T06:45:59.633527Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3cc2afd5-bc72-4420-b918-6fc4c83f72e7.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "Kolibri logo piirroskuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385706/?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-08-06T06:46:23.272354Z", "last_modified_time": "2026-08-06T06:46:23.272376Z", "date_published": null, "start_time": "2026-09-12T08:00:00Z", "end_time": "2026-09-12T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lava, Paja, Jaminurkka", "sv": "Lava, Paja, Jaminurkka", "en": "Lava, Paja, Jaminurkka" }, "provider": null, "name": { "fi": "Kolibri Festivaali", "sv": "Kolibri Festivaali", "en": "Kolibri Festivaali" }, "description": { "fi": "<p>Lastenfestivaali Kolibrí Festivaali palaa Selloon. Älä missaa tilaisuutta nauttia perhepäivästä, joka on täynnä esityksiä, monikielistä tarinankerrontaa, taidetyöpajoja, musiikkia, tanssia ja paljon hauskaa kaikille lapsille ja heidän perheilleen!</p><p>Tapaat ihmisiä, opit uusia kieliä, tutustut uusiin kulttuureihin, pidät hauskaa ja ennen kaikkea saat uusia ystäviä.</p><p><br></p><p>Koko ohjelma julkaistaan 14.8.2026 alkaen osoitteessa <a href=\"https://www.kolibrifestivaali.org/.\">https://www.kolibrifestivaali.org/.</a></p>", "sv": "<p>Barnfestivalen Kolibrí Festivaali återvänder till Sello. Missa inte chansen att njuta av den första familjedagen i denna specialutgåva, full av föreställningar, flerspråkigt historieberättande, konstverkstäder, musik, dans och massor av skoj för alla barn och deras familjer!</p><p><br></p><p>Du kommer att träffa människor, lära dig nya språk, utforska nya kulturer, ha mycket roligt och framför allt få nya vänner.</p><p><br></p><p>Hela programmet kommer att publiceras från 14.8.2026 på <a href=\"https://www.kolibrifestivaali.org/\">https://www.kolibrifestivaali.org/</a></p>", "en": "<p>The children’s festival Kolibrí Festivaali returns to Sello. Don’t miss the opportunity to enjoy the first Family Day of this special edition, full of performances, multilingual storytelling, art workshops, music, dance, and lots of fun for all children and their families!</p><p>You will meet people, learn new languages, explore new cultures, have lots of fun and above all, make new friends.</p><p><br></p><p>The full program will be published from 14.8.2026 at <a href=\"https://www.kolibrifestivaali.org/\">https://www.kolibrifestivaali.org/</a></p>" }, "provider_contact_info": null, "short_description": { "fi": "Lastenfestivaali Kolibrí Festivaali palaa Selloon.", "sv": "Barnfestivalen Kolibrí Festivaali återvänder till Sello. ", "en": "The children’s festival Kolibrí Festivaali returns to Sello. " }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5l5jajy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5dyywaq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385703, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-06T06:07:11.347306Z", "last_modified_time": "2026-08-06T06:07:11.347319Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0f4223bc-03c2-45a2-a09a-3f1225fc1041.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Yunjia Liu", "alt_text": "Kitara, jonka läpi virtaa sateenkaari. Kuvassa on teksti \"Rainbow Project, Artist Yunjia Liu.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385703/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-05T11:27:34.577052Z", "last_modified_time": "2026-08-06T06:07:17.128882Z", "date_published": null, "start_time": "2026-08-28T13:00:00Z", "end_time": "2026-08-28T13: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, "location_extra_info": { "fi": "Kaija", "sv": "Kaija", "en": "Kaija" }, "provider": { "fi": "Klassisen kitaran taitaja ja säveltäjä Yunjia Liu ", "sv": "Den professionella klassiska gitarristen och kompositören Yunjia Liu", "en": "Professional classical guitarist and composer Yunjia Liu" }, "name": { "fi": "\"Rainbow\"-projekti: Klassisen kitaran konserttikiertue", "sv": "Projektet ”Rainbow”: Konsertturné med sologitarr", "en": "\"Rainbow\" Project: Solo Guitar Concert Tour" }, "description": { "fi": "<p>Klassisen kitaran taitaja ja säveltäjä Yunjia Liu esittää \"Rainbow\"-projektin – ainutlaatuisen konserttisarjan, jonka tavoitteena on juhlistaa monimuotoisuutta ja syvää yhteiskunnallista osallisuutta.</p><p>Tämä 30-minuuttinen konserttimatka rakentaa musiikillisia mestariteoksia ja alkuperäissävellyksiä sateenkaaren seitsemän symbolisen värin ympärille. Ohjelmisto sisältää sekä klassisia teoksia että kantaesityksen teoksesta \"PUU\" (Tree) – sävellys, joka symboloi syvien juurten kasvattamista Suomeen.</p><p>Konsertit on suunniteltu kaikille avoimiksi ja saavutettaviksi, ja ne sisältävät yleisövuorovaikutusta sekä selostuksia, jotka voidaan esittää paikallisen yleisön tarpeen mukaan englanniksi, suomeksi, ruotsiksi, saksaksi tai kiinaksi. Nämä maksuttomat esitykset muuttavat kirjastot keskinäisen kunnioituksen ja yhteisöllisyyden tyyssijoiksi.</p><p>Digitaalinen julkaisu: Alkuperäisteos \"PUU\" julkaistaan suoratoistopalveluissa 28. elokuuta 2026.</p><p><br></p><p><strong>Tapahtumien aikataulu</strong></p><p>Kiertue vierailee viidessä espoolaisessa kirjastossa:</p><p><br></p><p><strong>Espoo-päivä, perjantai 28. elokuuta 2026</strong></p><p>12:00–12:30: Entressen kirjasto</p><p>14:00–14:30: Sellon kirjasto</p><p>16:00–16:30: Tapiolan kirjasto</p><p><br></p><p><strong>Lauantai 12. syyskuuta 2026</strong></p><p>13:00–13:30: Ison Omenan kirjasto</p><p>15:00–15:30: Lippulaivan kirjasto</p>", "sv": "<p>Den professionella klassiska gitarristen och kompositören Yunjia Liu presenterar projektet ”Rainbow”, en unik konsertserie som syftar till att hylla mångfald och djup samhällelig inkludering.</p><p><br></p><p>Denna 30-minuters långa musikaliska resa bygger upp musikaliska mästerverk och egna kompositioner kring regnbågens sju symboliska färger. Programmet innehåller både klassiska favoriter och världspremiären av ”PUU” (Träd) – ett stycke som symboliserar resan mot att slå djupa rötter i Finland – och erbjuder ett utrymme för gemenskap och reflektion.</p><p><br></p><p>Konserterna är utformade för att vara tillgängliga för alla, med interaktiva inslag och kommentarer anpassade efter den lokala publiken på engelska, finska, svenska, tyska eller kinesiska. Dessa kostnadsfria föreställningar förvandlar kommunala bibliotek till oaser av ömsesidig respekt och gemenskap.</p><p><br></p><p>Digital lansering: Det originella verket ”PUU” släpps på streamingplattformar den 28 augusti 2026.</p><p><br></p><p><strong>Evenemangsinformation och schema</strong></p><p>Turnén omfattar fem stora bibliotek i Esbo:</p><p><br></p><p><strong>Fredag den 28 augusti 2026 på Esbodagen:</strong></p><p>12:00–12:30: Entresse biblioteket</p><p>14:00–14:30: Sello biblioteket</p><p>16:00–16:30: Tapiola biblioteket</p><p><br></p><p><strong>Lördag den 12 september 2026:</strong></p><p>13:00–13:30: Iso Omena biblioteket</p><p>15:00–15:30: Lippulaiva biblioteket</p>", "en": "<p>Professional classical guitarist and composer Yunjia Liu presents the \"Rainbow\" Project, a unique series of concerts designed to celebrate diversity and deep societal inclusion.</p><p>This 30-minute performance journey structures musical masterworks and original compositions around the seven symbolic colors of the rainbow. Featuring both classical staples and the world premiere of \"PUU\" (Tree)—a piece symbolizing the journey of planting deep roots in Finland—this program offers a space for connection and reflection.</p><p>The concerts are designed to be accessible to everyone, with interactive elements and commentary tailored to local audiences in English, Finnish, Swedish, German, or Chinese. These free performances transform municipal libraries into sanctuaries of mutual respect and community cohesion.</p><p>Digital Launch: The original piece \"PUU\" will be released on streaming platforms on August 28, 2026.</p><p><br></p><p><strong>Event Details & Schedule</strong></p><p>The tour spans five major Espoo libraries:</p><p><br></p><p><strong>Friday, August 28, 2026 on Espoo Day:</strong></p><p>12:00–12:30: Entresse Library</p><p>14:00–14:30: Sello Library</p><p>16:00–16:30: Tapiola Library</p><p><br></p><p><strong>Saturday, September 12, 2026:</strong></p><p>13:00–13:30: Iso Omena Library</p><p>15:00–15:30: Lippulaiva Library</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa klassisenkitaran konserttiin.", "sv": "Välkommen till en konsert med klassisk gitarr.", "en": "Welcome to a classical guitar concert." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5dyywaq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5egee5e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhnya/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385644, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-27T10:18:42.019228Z", "last_modified_time": "2026-07-27T10:18:42.019249Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/aebf2e05-bf61-4705-b9ed-858ffa4ca155.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Tialisuuden mainos", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385644/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-27T10:19:32.212382Z", "last_modified_time": "2026-08-05T12:19:43.089692Z", "date_published": null, "start_time": "2026-08-06T13:30:00Z", "end_time": "2026-08-06T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "provider": { "fi": "Roda ry", "sv": "Roda ry", "en": "Roda ry" }, "name": { "fi": "PERUTTU Roda ry Vertaistuki", "sv": "INSTÄLLT Roda ry Kamratstöd", "en": "CANCELLED Roda ry Peer support" }, "description": { "fi": "<p>Roda ry Vertaistuki</p>", "sv": "<p>Roda ry Kamratstöd</p>", "en": "<p>Roda ry Peer support</p>" }, "provider_contact_info": null, "short_description": { "fi": "Roda ry Vertaistuki", "sv": "Roda ry Kamratstöd", "en": "Roda ry Peer support" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5egee5e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69427", "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: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: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": [], "description": null, "price": { "fi": "20 / 7 €", "sv": "20 / 7 €", "en": "20 / 7 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/olema-nykysirkusesitys-4182233/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/olema-nykysirkusesitys-4182233/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/olema-nykysirkusesitys-4182233/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385188, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-16T12:13:24.648361Z", "last_modified_time": "2026-06-16T12:13:24.648374Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794266.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385188/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-16T12:13:24.537399Z", "last_modified_time": "2026-08-05T11:14:17.206205Z", "date_published": null, "start_time": "2026-08-26T16:00:00Z", "end_time": "2026-08-26T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "OLEMA", "sv": "OLEMA", "en": "OLEMA" }, "description": { "fi": "<p>OLEMA on nykysirkusnäyttämöteos, joka tutkii ja tunnustelee ihmiskeskeisyyden purkamista ja yhteyden kokemista.</p><p>Teos pohjautuu tarinaan sukupuuttoon kuolleesta linnusta, jonka yksin jäänyt laulu päättyy hiljaisuuteen. Näyttämöllä akrobatia, tanssi, musiikki ja visuaalisuus kietoutuvat yhteen. Esitys kysyy, mitä menetysten jälkeen jää jäljelle ja voiko kadonnut silti näkyä kehossa, äänessä ja liikkeessä. <br> <br> ***<br> <br>Sirkus tarjoaa esityksen teemojen tutkimukselle ainutlaatuisen kontekstin: sen historia on kietoutunut ihmisen ja muunlajisten rajapintoihin; käärmenaisiin, pedonkesyttäjiin ja kehollisen epäinhimillistämisen perintöihin. <br> <br>Teoksen dramaturginen ydin kasvaa kauainkiharapyrstön sukupuuttotarinasta. Lintulajin viimeinen koiras jäi laulamaan yksin dueton puolikasta viimeisen naaraan kadottua hurrikaani Iwan mukana vuonna 1982. Esityksessä kuultavalla Cornellin yliopiston vuoden 1987 nauhoituksella lauluun avautuu yhä pidempiä hiljaisuuksia – paikkoja toiselle äänelle, joka ei enää vastaa.<br> <br>Näyttämöllä sirkustaiteilijat liikkuvat akrobatian, tanssin, tasapainoilun ja muunlajiseksi kurottavan kehollisuuden rajapinnoilla. Elektroakustinen musiikki tuo kuuluviin elämän sykkeen ja sukupuuton lopullisuuden. Pukusuunnittelijan työ tuo teokseen liikettä vasten asettuvia pintoja: kitkaa ja liukua, kiiltoa ja sameutta, olentojen ääriä. Valo- ja lavastussuunnittelija loihtii näyttämölle sisäisyydestä kumpuavan maailman, jossa muodot, liike, heijastukset, harhat ja materiat varjoineen ovat omia hahmojaan esityksen kudelmassa.<br> <br>Monitaiteelliset elementit kietoutuvat näyttämöllä yhteen kysymykseksi siitä, mitä menetyksistä jää jäljelle, ja voiko peruuttamattomasti loppunutta kantaa elävässä kehossa, katseessa, äänessä ja liikkeessä?<br> <br> <br>Työryhmä:<br>Felicia Hedman, Ella Jaakkola, Riina Leea Nieminen, Aino Savolainen, Saana Volanen<br>Esiintyjät: Felicia Hedman, Ella Jaakkola, Aino Savolainen<br>Ohjaus ja dramaturgia: Felicia Hedman, Ella Jaakkola, Riina Leea Nieminen, Aino Savolainen, Saana Volanen<br>Nykysirkuskoreografia: Felicia Hedman, Aino Savolainen<br>Sävellys, musiikki ja äänisuunnittelu: Ella Jaakkola<br>Valosuunnittelu ja lavastus: Saana Volanen<br>Pukusuunnittelu: Riina Leea Nieminen<br>Materiaalitutkimus: Jenni Räsänen<br>Lavastuksen valmistus: Bea Tornberg, Saana Volanen<br>Pukujen valmistus: Jenni Räsänen, Riina Leea Nieminen<br>Taiteellinen tuki: Henna Kaikula, Anni Koskinen<br>Maskeerauskonsultaatio: Riikka Virtanen<br>Esityskuvat: Venla Helenius<br>Koollekutsujat: Ghia Lumia, Aino Savolainen<br>Taiteellinen esityö ja tuotanto: Ella Jaakkola, Ghia Lumia, Aino Savolainen<br>Markkinointi: Aino Savolainen</p><p>Tukijat: Koneen Säätiö, Taike (Taiteen edistämiskeskus), SKR (Suomen Kulttuurirahasto), Kulttuurikeskus Caisa, Cirko – Uuden sirkuksen keskus, CircusNext, La Grainerie, Subtopia, Soiva Metsä -festivaali, Tanssiteatteri Hurjaruuth, R.E.D. Arena Norway</p><p>Kiitokset: Stella Kanto, András Nádasi, Rasmus Strandell</p><p>Esityskieli: esitys ei sisällä puhetta <br>Ikäsuositus: 14-v. + <br>Esityksen kesto: 60 min</p>", "sv": "<p>Poesikonferensen är ett seminarieliknande evenemang för poeter, författare, litteraturforskare och alla som är intresserade av poetiska frågor.</p><p>Konferensen är öppen för alla och en fortsättning på traditionen från Helsingfors poetikkonferens, som grundades för 20 år sedan som ett parallellarrangemang till Runokuu och som ordnades i olika former och många olika sammanhang under åren 2005–2012. Syftet med poesikonferensen är att upprätthålla en dialog mellan forskare, poeter, konstnärer från andra områden och publiken. Publiken uppmuntras att diskutera inte bara med föreläsarna utan också med varandra.</p><p>Talare på konferensen är <b>Jonis Hartman, A. V. Marraccini, Merima Dizdarević, Antti Salminen</b> och <b>Berta García Faet</b>. <br> <br> <br>Diskussionens språk: engelska och finska</p><p><u><a href=\"https://runokuu.fi/\">Läs mer om festivalen och programmet (sidan finns på finska och engelska)</u></a>.</p><p>OLEMA <br>OLEMA är en samtida cirkusföreställning som utforskar och undersöker nedmonteringen av antropocentrismen och upplevelsen av gemenskap.</p><p>Verket bygger på en berättelse om en utdöd fågel, vars ensamma sång tystnar. På scenen flätas akrobatik, dans, musik och scenografi samman. Föreställningen ställer frågan om vad som återstår efter förlusterna och om det förlorade ändå kan synas i kroppen, rösten och rörelserna.</p><p>Cirkusen erbjuder en unik kontext för att utforska föreställningens teman: dess historia är sammanslingrad med gränssnittet mellan människan och övriga arter; ormmänniskor, djurtämjare och arvet efter kroppslig dehumanisering.</p><p>Verkets dramaturgiska kärna växer fram ur berättelsen om utrotningen av kauai-oon. Den sista hanen av arten blev ensam kvar och sjöng sin halva av duetten efter att den sista honan försvann i samband med orkanen Iwan 1982. I en inspelning från Cornell University från 1987 som spelas upp i föreställningen uppstår allt längre tystnader i sången – pauser för en annan röst som inte längre svarar.</p><p>På scenen rör sig cirkusartisterna i gränslandet mellan akrobatik, dans och balanskonst samt kroppslighet som leker med uttryckskraften hos andra arter. Den elektroakustiska musiken som kompositören och musikern Ella Jaakkola framför på scenen ger uttryck för livets puls och utrotningens oåterkallelighet. Kostymdesignern arbete tillför verket ytor som står i kontrast till rörelsen: friktion och glidning, glans och grumlighet, varelsernas ytterligheter. På scenen skapar ljusdesign och scenografi en värld som växer fram inifrån, där former, rörelser, reflektioner, illusioner och material med sina skuggor utgör egna karaktärer i föreställningens väv.</p><p>De tvärkonstnärliga elementen vävs samman på scenen till en enda fråga: Vad återstår av förlusterna, och kan det som oåterkalleligt har upphört att existera fortleva i den levande kroppen, blicken, rösten och rörelsen?</p><p>Föreställningens språk: föreställningen innehåller inget tal<br>Åldersrekommendation: 14 år och äldre<br>Föreställningens längd: 60 min.</p>", "en": "<p>OLEMA is a contemporary circus performance exploring and attuning itself to the experience of connection and the undoing of anthropocentrism.</p><p>The piece takes its inspiration from the story of an extinct bird, whose solitary song ends in silence. On the stage, acrobatics, dance, music and visual art meld together. The performance asks, what is left after a loss, and if what has been lost can still be found in the body, voice, and movement. <br> <br> ** <br> <br>Circus offers a singular context for this inquiry: its history is entwined with the thresholds between the human and the more-than-human – from the serpent-like contortionists (käärmeihminen, ‘snake-human’ in Finnish), to beast tamers, and legacies of bodily dehumanisation. <br> <br>The dramaturgical core of the work grows from the extinction story of the Kauaʻi ʻōʻō bird species. The last male of the species continued to sing its duet-form mating call even after the last female had disappeared in a hurricane in 1982. In the 1987 recording by the Cornell Lab of Ornithology, heard during the performance, ever-lengthening silences open within the song – spaces for another voice to enter, a voice that no longer answers. <br> <br>On stage, the circus artists move at the thresholds of acrobatics, dance, balance, and a corporeality that reaches toward the more-than-human. The electroacoustic music brings forth the pulse of the living and the finality of extinction. The work of costume designer introduces surfaces that meet and resist movement: friction and glide, gloss and opacity, the edges of beings. Lighting and set design conjures a stage world in which the forms, movements, reflections, illusions, materials, and shadows of the surrounding world become figures in their own right within the weave of the performance. <br> <br>The multidisciplinary elements intertwine on stage into a question: what remains after loss, and can that which has irreversibly ended be carried in a living body, gaze, voice, and movement? <br> <br> Working group:<br>Felicia Hedman, Ella Jaakkola, Riina Leea Nieminen, Aino Savolainen, Saana Volanen</p><p>Performers: Felicia Hedman, Ella Jaakkola, Aino Savolainen<br>Direction and dramaturgy: Felicia Hedman, Ella Jaakkola, Riina Leea Nieminen, Aino Savolainen, Saana Volanen<br>Contemporary circus choreography: Felicia Hedman, Aino Savolainen<br>Composition, music and sound design: Ella Jaakkola<br>Lighting design and scenography: Saana Volanen<br>Costume design: Riina Leea Nieminen<br>Material research: Jenni Räsänen</p><p>Execution of set: Bea Tornberg, Saana Volanen<br>Costume making: Jenni Räsänen, Riina Leea Nieminen<br>Artistic support: Henna Kaikula, Anni Koskinen<br>Make up consultation: Riikka Virtanen<br>Photography of performance: Venla Helenius</p><p>Conveners: Ghia Lumia, Aino Savolainen<br>Artistic development and production: Ella Jaakkola, Ghia Lumia, Aino Savolainen<br>Marketing: Aino Savolainen</p><p>In support: Kone Foundation, Arts Promotion Centre Finland (Taike), Finnish Cultural Foundation (SKR), Cultural Centre Caisa, CircusNext, La Grainerie, Cirko – Center for New Circus, Subtopia, Dance Theatre Hurjaruuth, Soiva Metsä Festival, R.E.D. Arena Norway<br>Special thanks: Stella Kanto, András Nádasi, Rasmus Strandell</p><p>Performance language: wordless; non-language-specific <br>Age recommendation: 14 years old and up <br>Performance duration: 60 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "OLEMA on nykysirkusnäyttämöteos, joka tutkii ja tunnustelee ihmiskeskeisyyden purkamista ja yhteyden kokemista.", "sv": "Poesikonferensen är ett seminarieliknande evenemang för poeter, författare, litteraturforskare och alla som är intresserade av poetiska frågor.", "en": "OLEMA is a contemporary circus performance exploring and attuning itself to the experience of connection and the undoing of anthropocentrism." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9B89D02F33E2C26226604DFFA03E7F45/OLEMA", "sv": "http://www.caisa.fi/sv/evenemang/event/9B89D02F33E2C26226604DFFA03E7F45/OLEMA", "en": "http://www.caisa.fi/en/events/event/9B89D02F33E2C26226604DFFA03E7F45/OLEMA" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69427/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpgrp3wte", "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: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/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpgrp3yq4/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-05-27T08:57:11.444041Z", "last_modified_time": "2026-08-05T10:45:15.457497Z", "date_published": null, "start_time": "2026-08-06T07:00:00Z", "end_time": "2026-08-06T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Palvelutorin aula", "sv": "Palvelutorin aula", "en": "Palvelutorin aula" }, "provider": null, "name": { "fi": "PERUTTU: Hei äiti! Oletko hoitovapaalla ilman työ- tai opiskelupaikkaa? ", "sv": "PERUTTU: Hej mamma! Är du vårdledig utan arbete eller studieplats?", "en": "CANCELLED: Hi mom! Are you on parental leave without a job or a place of study? " }, "description": { "fi": "<p>Opetushallituksen erillisyksikkö Jotpa (Jatkuvan oppimisen ja työllisyyden palvelukeskus) ja Ura-instituutti järjestävät kotihoidon tukea saaville äideille hankkeen, jonka tarkoituksena on tarjota heille uraohjausta kohti työtä tai opiskelua. Palvelu on ilmainen ja yleishyödyllinen. Palvelun toteuttamisessa ovat mukana myös Kela ja tutkimuslaitos Labore. Palvelun tausta-ajatuksena on parantaa äitien asemaa työmarkkinoilla. Ison Omenan kirjastossa on pop-up infopiste, jossa pääset kuulemaan hankkeesta lisää ja ilmoittautumaan mukaan. Tervetuloa!</p>", "sv": "<p>Utbildningsstyrelsens specialenhet Jotpa (Servicecentret för kontinuerligt lärande och sysselsättning) och Ura-institutet ordnar ett projekt för mammor som får hemvårdsstöd. Syftet är att erbjuda dem karriärvägledning mot arbete eller studier. Tjänsten är kostnadsfri och allmännyttig. Även FPA och forskningsinstitutet Labore deltar i genomförandet. Grundtanken är att stärka mödrarnas ställning på arbetsmarknaden.</p><p>I Iso Omena bibliotek finns en pop‑up infopunkt där du kan höra mer om projektet och anmäla dig. Välkommen!</p>", "en": "<p>The Finnish National Agency for Education’s special unit Jotpa (Service Centre for Continuous Learning and Employment) and the Ura Institute are organising a project for mothers receiving home care allowance. The aim is to offer them career guidance towards employment or studies. The service is free of charge and serves the public good. Kela and the research institute Labore are also involved in implementing the service. The underlying goal is to improve mothers’ position in the labour market.</p><p>There will be a pop‑up information point at Iso Omena Library, where you can learn more about the project and sign up. Welcome!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Infopiste ilmaisesta uravalmennuksesta äideille. ", "sv": "Infopunkt om gratis karriärhandledning för mammor.", "en": "Information point about free career coaching for mothers." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpgrp3wte/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp4ptlibu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/espoo_le:agimlgcage/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agn6agzgh4/?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:p4354/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385681, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-18T11:08:31.208037Z", "last_modified_time": "2024-07-18T11:08:31.208066Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Raittikarnevaali.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "Läkkitorin aukio taustalla, etualalla piirretty kuva Välkystä katkoviivareitin päällä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385681/?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-08-03T12:23:19.631903Z", "last_modified_time": "2026-08-05T10:31:45.936874Z", "date_published": null, "start_time": "2026-08-29T07:00:00Z", "end_time": "2026-08-29T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Välkky", "sv": "Välkky", "en": "Välkky" }, "provider": { "fi": "Läkkitori, Konstaapelinkatu", "sv": "Läkkitori, Konstaapelinkatu", "en": "Läkkitori, Konstaapelinkatu" }, "name": { "fi": "Välkky Raittikarnevaalissa", "sv": "Välkky på rutten", "en": "Välkky on the route" }, "description": { "fi": "<p>Pidä pieni tauko hulinasta ja tule käymään Välkyssä! Jaamme auton ulkopuolella kirjaston kokoelmasta poistettuja kirjoja. Tervetuloa penkomaan!</p><p>Kirjastoautosta löydät luettavaa lapsiperheille. Mukana on myös pieni aikuisten kokoelma.</p><p>Voit istahtaa hetkeksi lukemaan, lainata aineistoa helmet-kirjastokortilla tai tulla vain kurkkaamaan, miltä kirjastoautossa näyttää. Kirjastoautosta lainatut kirjat voi palauttaa mihin tahansa Helmet-kirjastoon.</p><p>Mikäli sinulla ei vielä ole kirjastokorttia, voit hankkia sen samalla käynnillä. Ota mukaan tällöin henkilöllisyystodistus.</p><p>#HelloEspoo</p><p>#Kirjastoauto</p>", "sv": "<p>Ta en liten paus från vimlet och kom och besök Blinken! I biblioteksbussen hittar du böcker för barnfamiljer. Vi har även med ett mindre urval för vuxna.</p><p>Du kan slå dig ner en stund och läsa, låna material med ett Helmet-bibliotekskort eller bara titta in för att se hur biblioteksbussen ser ut. Böcker som lånats från biblioteksbussen kan återlämnas till vilket Helmet-bibliotek som helst.</p><p>Om du ännu inte har ett bibliotekskort kan du skaffa ett vid samma besök. Ta då med dig en giltig legitimation.</p><p>#HelloEspoo</p>", "en": "<p>Take a short break from the bustle and come visit Välkky! The mobile library offers books for families with children. A small selection for adults is also available.</p><p>You are welcome to sit down and read for a while, borrow items with a Helmet library card, or simply stop by to see what the library bus looks like. Books borrowed from the mobile library can be returned to any Helmet library.</p><p>If you do not yet have a library card, you can get one during your visit. Please bring a valid form of identification.</p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": { "fi": "https://raittikarnevaalit.fi/", "sv": "https://raittikarnevaalit.fi/", "en": "https://raittikarnevaalit.fi/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp4ptlibu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5dlbt6i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20268/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?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:p4354/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385699, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T07:44:19.907745Z", "last_modified_time": "2026-08-05T07:44:19.907761Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d5b876cd-e0dc-47e9-8cf9-ec936404d65a.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Tausta: Sean Xu", "alt_text": "Piirroskuva kirjastoauto Välkystä, taustalla syksyinen metsä, jonka halkaisee kaksikaistainen asfaltoitu tie.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385699/?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-08-05T10:23:44.653126Z", "last_modified_time": "2026-08-05T10:23:44.653144Z", "date_published": null, "start_time": "2026-09-01T11:00:00Z", "end_time": "2026-09-01T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Välkky Olari Tempauksessa", "sv": "Välkky på Olari Tempaus", "en": "Välkky at Olari Tempaus" }, "description": { "fi": "<p><strong>Espoon kaupungin Kirjasto- ja kulttuuriauto Välkky Olari tempauksessa 1.8. klo 14-18:00. </strong></p><p>Pidä pieni tauko hulinasta ja tule käymään Välkyssä! Kirjastoautosta löydät Itämeriaiheisia kirjoja, mutta myös muuta luettavaa lapsiperheille. Mukana on myös pieni aikuisten kokoelma.</p><p>Voit istahtaa hetkeksi lukemaan, lainata aineistoa helmet-kirjastokortilla tai tulla vain kurkkaamaan, miltä kirjastoautossa näyttää. Kirjastoautosta lainatut kirjat voi palauttaa mihin tahansa Helmet-kirjastoon.</p><p>Mikäli sinulla ei vielä ole kirjastokorttia, voit hankkia sen samalla käynnillä. Ota mukaan tällöin henkilöllisyystodistus.</p><p>#HelloEspoo</p><p>#Kirjastoauto</p>", "sv": "<p><strong>Esbo stads biblioteks- och kulturbuss Välkky på Olari tempaus den 1.8 kl. 14.00-18.00.</strong></p><p>Ta en liten paus från vimlet och kom och besök Välkky! I biblioteksbussen hittar du böcker för barnfamiljer. Vi har även med ett mindre urval för vuxna.</p><p>Du kan slå dig ner en stund och läsa, låna material med ett Helmet-bibliotekskort eller bara titta in för att se hur biblioteksbussen ser ut. Böcker som lånats från biblioteksbussen kan återlämnas till vilket Helmet-bibliotek som helst.</p><p>Om du ännu inte har ett bibliotekskort kan du skaffa ett vid samma besök. Ta då med dig en giltig legitimation.</p><p>#HelloEspoo</p>", "en": "<p><strong>The City of Espoo Library and Culture Bus Välkky at the Olari Tempaus on 1 August from 2:00 p.m. to 6:00 p.m.</strong></p><p>Take a short break from the bustle and come visit Välkky! The mobile library offers books for families with children. A small selection for adults is also available.</p><p>You are welcome to sit down and read for a while, borrow items with a Helmet library card, or simply stop by to see what the library bus looks like. Books borrowed from the mobile library can be returned to any Helmet library.</p><p>If you do not yet have a library card, you can get one during your visit. Please bring a valid form of identification.</p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5dlbt6i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5c5kq5y", "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/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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5c5kt4q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385697, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T09:29:05.443525Z", "last_modified_time": "2026-08-05T09:29:05.443543Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8da7c510-a11c-481f-aece-cdcb8adfee76.png", "name": "", "cropping": "285,0,915,630", "photographer_name": "", "alt_text": "Musta koira jolla on kaulassa pinkki bandana -huivi. Nimi: Lukukoira Lloyd", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385697/?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-08-05T09:46:18.202926Z", "last_modified_time": "2026-08-05T09:46:18.202942Z", "date_published": null, "start_time": "2026-12-08T16:00:00Z", "end_time": "2026-12-08T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Saturiutta", "sv": "Saturiutta", "en": "Saturiutta" }, "provider": { "fi": "Ison Omenan kirjasto", "sv": "Iso Omena bibliotek", "en": "Iso Omena library" }, "name": { "fi": "Lukukoira Lloyd", "sv": "Läshunden Lloyd", "en": "Reading pet Lloyd" }, "description": { "fi": "<p>Lukuoira Lloyd rakastaa tarinoita ja kuuntelee niitä mielellään. Tule opettelemaan lukemista lloydin kanssa. Kiltti karvakuono kirjastossa tiistaisin 8.9. 6.10 3.11. 8.12.</p><p>Lloyd Ison Omenan kirjaston Saturiutassa kello 18-19</p><p><br></p>", "sv": "<p>Läshunden Lloyd älskar berättelser och lyssnar gärna på dem. Kom och öva läsning tillsammans med Lloyd. Den snälla lurviga nosen finns på biblioteket på tisdagar: 8.9, 6.10, 3.11 och 8.12.</p><p><br></p><p>Lloyd finns i Sagorummet (Saturiutta) på Iso Omenas bibliotek kl. 18.00–19.00.</p>", "en": "<p>Reading Dog Lloyd loves stories and enjoys listening to them. Come and practise reading with Lloyd. This gentle furry friend will be at the library on Tuesdays: 8 September, 6 October, 3 November and 8 December.</p><p><br></p><p>Lloyd will be in the Story Room (saturiutta) at Iso Omena Library from 6.00 pm to 7.00 pm.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Lukukoira Lloyd Ison Omenan kirjastossa", "sv": "Läshunden Lloyd på Iso Omena bibliotek", "en": "\n Reading Dog Lloyd at Iso Omena Library" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5c5kq5y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5c5kr5e", "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/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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5c5kt4q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385697, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T09:29:05.443525Z", "last_modified_time": "2026-08-05T09:29:05.443543Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8da7c510-a11c-481f-aece-cdcb8adfee76.png", "name": "", "cropping": "285,0,915,630", "photographer_name": "", "alt_text": "Musta koira jolla on kaulassa pinkki bandana -huivi. Nimi: Lukukoira Lloyd", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385697/?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-08-05T09:46:18.053151Z", "last_modified_time": "2026-08-05T09:46:18.053166Z", "date_published": null, "start_time": "2026-11-03T16:00:00Z", "end_time": "2026-11-03T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Saturiutta", "sv": "Saturiutta", "en": "Saturiutta" }, "provider": { "fi": "Ison Omenan kirjasto", "sv": "Iso Omena bibliotek", "en": "Iso Omena library" }, "name": { "fi": "Lukukoira Lloyd", "sv": "Läshunden Lloyd", "en": "Reading pet Lloyd" }, "description": { "fi": "<p>Lukuoira Lloyd rakastaa tarinoita ja kuuntelee niitä mielellään. Tule opettelemaan lukemista lloydin kanssa. Kiltti karvakuono kirjastossa tiistaisin 8.9. 6.10 3.11. 8.12.</p><p>Lloyd Ison Omenan kirjaston Saturiutassa kello 18-19</p><p><br></p>", "sv": "<p>Läshunden Lloyd älskar berättelser och lyssnar gärna på dem. Kom och öva läsning tillsammans med Lloyd. Den snälla lurviga nosen finns på biblioteket på tisdagar: 8.9, 6.10, 3.11 och 8.12.</p><p><br></p><p>Lloyd finns i Sagorummet (Saturiutta) på Iso Omenas bibliotek kl. 18.00–19.00.</p>", "en": "<p>Reading Dog Lloyd loves stories and enjoys listening to them. Come and practise reading with Lloyd. This gentle furry friend will be at the library on Tuesdays: 8 September, 6 October, 3 November and 8 December.</p><p><br></p><p>Lloyd will be in the Story Room (saturiutta) at Iso Omena Library from 6.00 pm to 7.00 pm.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Lukukoira Lloyd Ison Omenan kirjastossa", "sv": "Läshunden Lloyd på Iso Omena bibliotek", "en": "\n Reading Dog Lloyd at Iso Omena Library" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5c5kr5e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5c5kssy", "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/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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5c5kt4q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385697, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T09:29:05.443525Z", "last_modified_time": "2026-08-05T09:29:05.443543Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8da7c510-a11c-481f-aece-cdcb8adfee76.png", "name": "", "cropping": "285,0,915,630", "photographer_name": "", "alt_text": "Musta koira jolla on kaulassa pinkki bandana -huivi. Nimi: Lukukoira Lloyd", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385697/?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-08-05T09:46:17.793113Z", "last_modified_time": "2026-08-05T09:46:17.793128Z", "date_published": null, "start_time": "2026-10-06T15:00:00Z", "end_time": "2026-10-06T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Saturiutta", "sv": "Saturiutta", "en": "Saturiutta" }, "provider": { "fi": "Ison Omenan kirjasto", "sv": "Iso Omena bibliotek", "en": "Iso Omena library" }, "name": { "fi": "Lukukoira Lloyd", "sv": "Läshunden Lloyd", "en": "Reading pet Lloyd" }, "description": { "fi": "<p>Lukuoira Lloyd rakastaa tarinoita ja kuuntelee niitä mielellään. Tule opettelemaan lukemista lloydin kanssa. Kiltti karvakuono kirjastossa tiistaisin 8.9. 6.10 3.11. 8.12.</p><p>Lloyd Ison Omenan kirjaston Saturiutassa kello 18-19</p><p><br></p>", "sv": "<p>Läshunden Lloyd älskar berättelser och lyssnar gärna på dem. Kom och öva läsning tillsammans med Lloyd. Den snälla lurviga nosen finns på biblioteket på tisdagar: 8.9, 6.10, 3.11 och 8.12.</p><p><br></p><p>Lloyd finns i Sagorummet (Saturiutta) på Iso Omenas bibliotek kl. 18.00–19.00.</p>", "en": "<p>Reading Dog Lloyd loves stories and enjoys listening to them. Come and practise reading with Lloyd. This gentle furry friend will be at the library on Tuesdays: 8 September, 6 October, 3 November and 8 December.</p><p><br></p><p>Lloyd will be in the Story Room (saturiutta) at Iso Omena Library from 6.00 pm to 7.00 pm.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Lukukoira Lloyd Ison Omenan kirjastossa", "sv": "Läshunden Lloyd på Iso Omena bibliotek", "en": "\n Reading Dog Lloyd at Iso Omena Library" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5c5kssy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5c5kthq", "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/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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5c5kt4q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385697, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T09:29:05.443525Z", "last_modified_time": "2026-08-05T09:29:05.443543Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8da7c510-a11c-481f-aece-cdcb8adfee76.png", "name": "", "cropping": "285,0,915,630", "photographer_name": "", "alt_text": "Musta koira jolla on kaulassa pinkki bandana -huivi. Nimi: Lukukoira Lloyd", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385697/?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-08-05T09:46:17.653327Z", "last_modified_time": "2026-08-05T09:46:17.653341Z", "date_published": null, "start_time": "2026-09-08T15:00:00Z", "end_time": "2026-09-08T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Saturiutta", "sv": "Saturiutta", "en": "Saturiutta" }, "provider": { "fi": "Ison Omenan kirjasto", "sv": "Iso Omena bibliotek", "en": "Iso Omena library" }, "name": { "fi": "Lukukoira Lloyd", "sv": "Läshunden Lloyd", "en": "Reading pet Lloyd" }, "description": { "fi": "<p>Lukuoira Lloyd rakastaa tarinoita ja kuuntelee niitä mielellään. Tule opettelemaan lukemista lloydin kanssa. Kiltti karvakuono kirjastossa tiistaisin 8.9. 6.10 3.11. 8.12.</p><p>Lloyd Ison Omenan kirjaston Saturiutassa kello 18-19</p><p><br></p>", "sv": "<p>Läshunden Lloyd älskar berättelser och lyssnar gärna på dem. Kom och öva läsning tillsammans med Lloyd. Den snälla lurviga nosen finns på biblioteket på tisdagar: 8.9, 6.10, 3.11 och 8.12.</p><p><br></p><p>Lloyd finns i Sagorummet (Saturiutta) på Iso Omenas bibliotek kl. 18.00–19.00.</p>", "en": "<p>Reading Dog Lloyd loves stories and enjoys listening to them. Come and practise reading with Lloyd. This gentle furry friend will be at the library on Tuesdays: 8 September, 6 October, 3 November and 8 December.</p><p><br></p><p>Lloyd will be in the Story Room (saturiutta) at Iso Omena Library from 6.00 pm to 7.00 pm.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Lukukoira Lloyd Ison Omenan kirjastossa", "sv": "Läshunden Lloyd på Iso Omena bibliotek", "en": "\n Reading Dog Lloyd at Iso Omena Library" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5c5kthq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5cb5yc4", "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: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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb6ala/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493990, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-02T12:09:04.698885Z", "last_modified_time": "2025-12-02T12:09:04.698902Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c7d9463d-5783-40a5-b7df-7619becba8fa.jpg", "name": "", "cropping": "213,0,1067,854", "photographer_name": "", "alt_text": "Kuvassa on kyniä ja pensseleitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493990/?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-08-05T07:48:36.619327Z", "last_modified_time": "2026-08-05T07:54:47.505471Z", "date_published": null, "start_time": "2026-08-11T11:00:00Z", "end_time": "2026-08-11T12: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, "location_extra_info": { "fi": "Kajuutta (poikkeuksellisesti Paja 6.10., 20.10., 17.11. & 15.12.)", "sv": "Kajuutta ( undantagsvis Paja 6.10., 20.10., 17.11. & 15.12.)", "en": "Kajuutta (exceptionally Paja 6.10., 20.10., 17.11. & 15.12.)" }, "provider": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaiva biblioteket", "en": "Lippulaiva library" }, "name": { "fi": "Luovan kirjoittamisen ryhmä senioreille : “Kirjoitan, siis olen ja hengitän.”", "sv": "Kreativ skrivargrupp för äldre: ”Jag skriver, alltså finns jag och andas.” (evenemanget hålls på finska)", "en": "Creative writing group for the senior citizens: “I write, therefore I am and I breathe.” (the event is in finnish)" }, "description": { "fi": "<p>Heittäydy kokeilemaan luovia kirjoitusharjoituksia hauskassa ja kannustavassa ilmapiirissä!</p><p>Luovan kirjoittamisen ryhmäkokoontumiset senioreille jatkuvat</p><p>Lippulaivan kirjastossa syksyllä 2026 joka toinen tiistai kl 14.00-15.30.</p><p><br></p><p>Tulevat kerrat:</p><p>1 1 . 8 . K A J U U T T A</p><p>2 5 . 8 . K A J U U T T A</p><p>8 . 9 . K A J U U T T A</p><p>2 2 . 9 . K A J U U T T A</p><p>6 . 1 0 . P A J A</p><p>2 0 . 1 0 . P A J A</p><p>3 . 1 1 . K A J U U T T A</p><p>1 7 . 1 1 . P A J A</p><p>2 . 1 2 . K A J U U T T A</p><p>1 5 . 1 2 . P A J A</p><p><br></p><p>Voit tulla kesken kauden tai käydä vaikka vain kerran kokeilemassa luovia, hauskoja harjoituksia.</p><p>Lämpimästi tervetuloa! Aiempaa kirjoittamiskokemusta ei tarvita, vain utelias ja avoin mieli.</p><p>P.S. jumpparyhmäläiset voivat liittyä seuraan heti jumpan jälkeen</p>", "sv": "<p>Kom och prova på övningar i kreativt skrivande i en rolig och stödjande miljö!</p><p>Gruppträffarna i kreativt skrivande för seniorer fortsätter på Lippulaiva-biblioteket under hösten 2026, varannan tisdag kl. 14.00–15.30.</p><p>Du är välkommen att hoppa in mitt i terminen eller till och med bara titta in en gång för att prova på dessa kreativa och roliga övningar.</p><p>Ett varmt välkomnande till er alla! Ingen tidigare skriv erfarenhet krävs – bara nyfikenhet och ett öppet sinne.</p><p>P.S. Deltagare i övningsgruppen är välkomna att stanna kvar direkt efter sitt möte.</p><p>Evenemanget hålls på finska.</p>", "en": "<p>Come along and give creative writing exercises a go in a fun and supportive atmosphere!</p><p>Creative writing group sessions for seniors are continuing at Lippulaiva Library in autumn 2026, every other Tuesday from 2.00 pm to 3.30 pm.</p><p>You’re welcome to join mid-term or even just pop in once to try out these creative, fun exercises.</p><p>A warm welcome to you all! No previous writing experience is needed, just a curious and open mind.</p><p>P.S. Members of the tuolijumppa are welcome to join us straight after their session.</p><p>The event is in finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa senioreiden luovan kirjoittamisen ryhmään 11.8. alkaen. Ryhmä kokoontuu joka toinen tiistai klo 14.00 - 15.30 Kajuutassa.", "sv": "Välkommen till skrivargruppen för seniorer, som startar den 11 augusti. Gruppen träffas varannan tisdag kl. 14.00–15.30 på Kajuutta.", "en": "Welcome to the creative writing group for senior citizens, starting on 11 August. The group meets every other Tuesday from 2.00 pm to 3.30 pm at Kajuutta." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb5yc4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5cb5zem", "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: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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb6ala/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493990, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-02T12:09:04.698885Z", "last_modified_time": "2025-12-02T12:09:04.698902Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c7d9463d-5783-40a5-b7df-7619becba8fa.jpg", "name": "", "cropping": "213,0,1067,854", "photographer_name": "", "alt_text": "Kuvassa on kyniä ja pensseleitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493990/?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-08-05T07:48:36.727948Z", "last_modified_time": "2026-08-05T07:54:47.458235Z", "date_published": null, "start_time": "2026-08-25T11:00:00Z", "end_time": "2026-08-25T12: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, "location_extra_info": { "fi": "Kajuutta (poikkeuksellisesti Paja 6.10., 20.10., 17.11. & 15.12.)", "sv": "Kajuutta ( undantagsvis Paja 6.10., 20.10., 17.11. & 15.12.)", "en": "Kajuutta (exceptionally Paja 6.10., 20.10., 17.11. & 15.12.)" }, "provider": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaiva biblioteket", "en": "Lippulaiva library" }, "name": { "fi": "Luovan kirjoittamisen ryhmä senioreille : “Kirjoitan, siis olen ja hengitän.”", "sv": "Kreativ skrivargrupp för äldre: ”Jag skriver, alltså finns jag och andas.” (evenemanget hålls på finska)", "en": "Creative writing group for the senior citizens: “I write, therefore I am and I breathe.” (the event is in finnish)" }, "description": { "fi": "<p>Heittäydy kokeilemaan luovia kirjoitusharjoituksia hauskassa ja kannustavassa ilmapiirissä!</p><p>Luovan kirjoittamisen ryhmäkokoontumiset senioreille jatkuvat</p><p>Lippulaivan kirjastossa syksyllä 2026 joka toinen tiistai kl 14.00-15.30.</p><p><br></p><p>Tulevat kerrat:</p><p>1 1 . 8 . K A J U U T T A</p><p>2 5 . 8 . K A J U U T T A</p><p>8 . 9 . K A J U U T T A</p><p>2 2 . 9 . K A J U U T T A</p><p>6 . 1 0 . P A J A</p><p>2 0 . 1 0 . P A J A</p><p>3 . 1 1 . K A J U U T T A</p><p>1 7 . 1 1 . P A J A</p><p>2 . 1 2 . K A J U U T T A</p><p>1 5 . 1 2 . P A J A</p><p><br></p><p>Voit tulla kesken kauden tai käydä vaikka vain kerran kokeilemassa luovia, hauskoja harjoituksia.</p><p>Lämpimästi tervetuloa! Aiempaa kirjoittamiskokemusta ei tarvita, vain utelias ja avoin mieli.</p><p>P.S. jumpparyhmäläiset voivat liittyä seuraan heti jumpan jälkeen</p>", "sv": "<p>Kom och prova på övningar i kreativt skrivande i en rolig och stödjande miljö!</p><p>Gruppträffarna i kreativt skrivande för seniorer fortsätter på Lippulaiva-biblioteket under hösten 2026, varannan tisdag kl. 14.00–15.30.</p><p>Du är välkommen att hoppa in mitt i terminen eller till och med bara titta in en gång för att prova på dessa kreativa och roliga övningar.</p><p>Ett varmt välkomnande till er alla! Ingen tidigare skriv erfarenhet krävs – bara nyfikenhet och ett öppet sinne.</p><p>P.S. Deltagare i övningsgruppen är välkomna att stanna kvar direkt efter sitt möte.</p><p>Evenemanget hålls på finska.</p>", "en": "<p>Come along and give creative writing exercises a go in a fun and supportive atmosphere!</p><p>Creative writing group sessions for seniors are continuing at Lippulaiva Library in autumn 2026, every other Tuesday from 2.00 pm to 3.30 pm.</p><p>You’re welcome to join mid-term or even just pop in once to try out these creative, fun exercises.</p><p>A warm welcome to you all! No previous writing experience is needed, just a curious and open mind.</p><p>P.S. Members of the tuolijumppa are welcome to join us straight after their session.</p><p>The event is in finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa senioreiden luovan kirjoittamisen ryhmään 11.8. alkaen. Ryhmä kokoontuu joka toinen tiistai klo 14.00 - 15.30 Kajuutassa.", "sv": "Välkommen till skrivargruppen för seniorer, som startar den 11 augusti. Gruppen träffas varannan tisdag kl. 14.00–15.30 på Kajuutta.", "en": "Welcome to the creative writing group for senior citizens, starting on 11 August. The group meets every other Tuesday from 2.00 pm to 3.30 pm at Kajuutta." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb5zem/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5cb5z4i", "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: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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb6ala/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493990, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-02T12:09:04.698885Z", "last_modified_time": "2025-12-02T12:09:04.698902Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c7d9463d-5783-40a5-b7df-7619becba8fa.jpg", "name": "", "cropping": "213,0,1067,854", "photographer_name": "", "alt_text": "Kuvassa on kyniä ja pensseleitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493990/?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-08-05T07:48:36.828490Z", "last_modified_time": "2026-08-05T07:54:47.415156Z", "date_published": null, "start_time": "2026-09-08T11:00:00Z", "end_time": "2026-09-08T12: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, "location_extra_info": { "fi": "Kajuutta (poikkeuksellisesti Paja 6.10., 20.10., 17.11. & 15.12.)", "sv": "Kajuutta ( undantagsvis Paja 6.10., 20.10., 17.11. & 15.12.)", "en": "Kajuutta (exceptionally Paja 6.10., 20.10., 17.11. & 15.12.)" }, "provider": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaiva biblioteket", "en": "Lippulaiva library" }, "name": { "fi": "Luovan kirjoittamisen ryhmä senioreille : “Kirjoitan, siis olen ja hengitän.”", "sv": "Kreativ skrivargrupp för äldre: ”Jag skriver, alltså finns jag och andas.” (evenemanget hålls på finska)", "en": "Creative writing group for the senior citizens: “I write, therefore I am and I breathe.” (the event is in finnish)" }, "description": { "fi": "<p>Heittäydy kokeilemaan luovia kirjoitusharjoituksia hauskassa ja kannustavassa ilmapiirissä!</p><p>Luovan kirjoittamisen ryhmäkokoontumiset senioreille jatkuvat</p><p>Lippulaivan kirjastossa syksyllä 2026 joka toinen tiistai kl 14.00-15.30.</p><p><br></p><p>Tulevat kerrat:</p><p>1 1 . 8 . K A J U U T T A</p><p>2 5 . 8 . K A J U U T T A</p><p>8 . 9 . K A J U U T T A</p><p>2 2 . 9 . K A J U U T T A</p><p>6 . 1 0 . P A J A</p><p>2 0 . 1 0 . P A J A</p><p>3 . 1 1 . K A J U U T T A</p><p>1 7 . 1 1 . P A J A</p><p>2 . 1 2 . K A J U U T T A</p><p>1 5 . 1 2 . P A J A</p><p><br></p><p>Voit tulla kesken kauden tai käydä vaikka vain kerran kokeilemassa luovia, hauskoja harjoituksia.</p><p>Lämpimästi tervetuloa! Aiempaa kirjoittamiskokemusta ei tarvita, vain utelias ja avoin mieli.</p><p>P.S. jumpparyhmäläiset voivat liittyä seuraan heti jumpan jälkeen</p>", "sv": "<p>Kom och prova på övningar i kreativt skrivande i en rolig och stödjande miljö!</p><p>Gruppträffarna i kreativt skrivande för seniorer fortsätter på Lippulaiva-biblioteket under hösten 2026, varannan tisdag kl. 14.00–15.30.</p><p>Du är välkommen att hoppa in mitt i terminen eller till och med bara titta in en gång för att prova på dessa kreativa och roliga övningar.</p><p>Ett varmt välkomnande till er alla! Ingen tidigare skriv erfarenhet krävs – bara nyfikenhet och ett öppet sinne.</p><p>P.S. Deltagare i övningsgruppen är välkomna att stanna kvar direkt efter sitt möte.</p><p>Evenemanget hålls på finska.</p>", "en": "<p>Come along and give creative writing exercises a go in a fun and supportive atmosphere!</p><p>Creative writing group sessions for seniors are continuing at Lippulaiva Library in autumn 2026, every other Tuesday from 2.00 pm to 3.30 pm.</p><p>You’re welcome to join mid-term or even just pop in once to try out these creative, fun exercises.</p><p>A warm welcome to you all! No previous writing experience is needed, just a curious and open mind.</p><p>P.S. Members of the tuolijumppa are welcome to join us straight after their session.</p><p>The event is in finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa senioreiden luovan kirjoittamisen ryhmään 11.8. alkaen. Ryhmä kokoontuu joka toinen tiistai klo 14.00 - 15.30 Kajuutassa.", "sv": "Välkommen till skrivargruppen för seniorer, som startar den 11 augusti. Gruppen träffas varannan tisdag kl. 14.00–15.30 på Kajuutta.", "en": "Welcome to the creative writing group for senior citizens, starting on 11 August. The group meets every other Tuesday from 2.00 pm to 3.30 pm at Kajuutta." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb5z4i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5cb52wq", "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: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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb6ala/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493990, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-02T12:09:04.698885Z", "last_modified_time": "2025-12-02T12:09:04.698902Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c7d9463d-5783-40a5-b7df-7619becba8fa.jpg", "name": "", "cropping": "213,0,1067,854", "photographer_name": "", "alt_text": "Kuvassa on kyniä ja pensseleitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493990/?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-08-05T07:48:36.934206Z", "last_modified_time": "2026-08-05T07:54:47.368113Z", "date_published": null, "start_time": "2026-09-22T11:00:00Z", "end_time": "2026-09-22T12: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, "location_extra_info": { "fi": "Kajuutta (poikkeuksellisesti Paja 6.10., 20.10., 17.11. & 15.12.)", "sv": "Kajuutta ( undantagsvis Paja 6.10., 20.10., 17.11. & 15.12.)", "en": "Kajuutta (exceptionally Paja 6.10., 20.10., 17.11. & 15.12.)" }, "provider": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaiva biblioteket", "en": "Lippulaiva library" }, "name": { "fi": "Luovan kirjoittamisen ryhmä senioreille : “Kirjoitan, siis olen ja hengitän.”", "sv": "Kreativ skrivargrupp för äldre: ”Jag skriver, alltså finns jag och andas.” (evenemanget hålls på finska)", "en": "Creative writing group for the senior citizens: “I write, therefore I am and I breathe.” (the event is in finnish)" }, "description": { "fi": "<p>Heittäydy kokeilemaan luovia kirjoitusharjoituksia hauskassa ja kannustavassa ilmapiirissä!</p><p>Luovan kirjoittamisen ryhmäkokoontumiset senioreille jatkuvat</p><p>Lippulaivan kirjastossa syksyllä 2026 joka toinen tiistai kl 14.00-15.30.</p><p><br></p><p>Tulevat kerrat:</p><p>1 1 . 8 . K A J U U T T A</p><p>2 5 . 8 . K A J U U T T A</p><p>8 . 9 . K A J U U T T A</p><p>2 2 . 9 . K A J U U T T A</p><p>6 . 1 0 . P A J A</p><p>2 0 . 1 0 . P A J A</p><p>3 . 1 1 . K A J U U T T A</p><p>1 7 . 1 1 . P A J A</p><p>2 . 1 2 . K A J U U T T A</p><p>1 5 . 1 2 . P A J A</p><p><br></p><p>Voit tulla kesken kauden tai käydä vaikka vain kerran kokeilemassa luovia, hauskoja harjoituksia.</p><p>Lämpimästi tervetuloa! Aiempaa kirjoittamiskokemusta ei tarvita, vain utelias ja avoin mieli.</p><p>P.S. jumpparyhmäläiset voivat liittyä seuraan heti jumpan jälkeen</p>", "sv": "<p>Kom och prova på övningar i kreativt skrivande i en rolig och stödjande miljö!</p><p>Gruppträffarna i kreativt skrivande för seniorer fortsätter på Lippulaiva-biblioteket under hösten 2026, varannan tisdag kl. 14.00–15.30.</p><p>Du är välkommen att hoppa in mitt i terminen eller till och med bara titta in en gång för att prova på dessa kreativa och roliga övningar.</p><p>Ett varmt välkomnande till er alla! Ingen tidigare skriv erfarenhet krävs – bara nyfikenhet och ett öppet sinne.</p><p>P.S. Deltagare i övningsgruppen är välkomna att stanna kvar direkt efter sitt möte.</p><p>Evenemanget hålls på finska.</p>", "en": "<p>Come along and give creative writing exercises a go in a fun and supportive atmosphere!</p><p>Creative writing group sessions for seniors are continuing at Lippulaiva Library in autumn 2026, every other Tuesday from 2.00 pm to 3.30 pm.</p><p>You’re welcome to join mid-term or even just pop in once to try out these creative, fun exercises.</p><p>A warm welcome to you all! No previous writing experience is needed, just a curious and open mind.</p><p>P.S. Members of the tuolijumppa are welcome to join us straight after their session.</p><p>The event is in finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa senioreiden luovan kirjoittamisen ryhmään 11.8. alkaen. Ryhmä kokoontuu joka toinen tiistai klo 14.00 - 15.30 Kajuutassa.", "sv": "Välkommen till skrivargruppen för seniorer, som startar den 11 augusti. Gruppen träffas varannan tisdag kl. 14.00–15.30 på Kajuutta.", "en": "Welcome to the creative writing group for senior citizens, starting on 11 August. The group meets every other Tuesday from 2.00 pm to 3.30 pm at Kajuutta." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb52wq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }