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&is_free=true&page=268
{ "meta": { "count": 28063, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=269", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=267" }, "data": [ { "id": "espoo_le:agmk2z6wwa", "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:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "name": "", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-14T05:57:35.259681Z", "last_modified_time": "2025-08-14T05:57:35.259697Z", "date_published": null, "start_time": "2025-09-18T14:30:00Z", "end_time": "2025-09-18T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "info_url": null, "name": { "fi": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6wwa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6xdu", "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:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "name": "", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-14T05:57:34.927282Z", "last_modified_time": "2025-08-14T05:57:34.927298Z", "date_published": null, "start_time": "2025-09-11T14:30:00Z", "end_time": "2025-09-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "info_url": null, "name": { "fi": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6xdu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6xri", "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:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "name": "", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-14T05:57:34.534880Z", "last_modified_time": "2025-08-14T05:57:34.534896Z", "date_published": null, "start_time": "2025-09-04T14:30:00Z", "end_time": "2025-09-04T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "info_url": null, "name": { "fi": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6xri/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6x6u", "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:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "name": "", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-14T05:57:34.151166Z", "last_modified_time": "2025-08-14T05:57:34.151188Z", "date_published": null, "start_time": "2025-08-21T14:30:00Z", "end_time": "2025-08-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, "provider": null, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "info_url": null, "name": { "fi": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6x6u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6yna", "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:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "name": "", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-14T05:57:33.729930Z", "last_modified_time": "2025-08-14T05:57:33.729952Z", "date_published": null, "start_time": "2025-08-14T14:30:00Z", "end_time": "2025-08-14T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "info_url": null, "name": { "fi": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6yna/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6y3e", "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:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6raq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6rpm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6r5q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6sle/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6syu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6thi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6tuy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6ucu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6uqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6u6e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6vma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6vz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6wh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6wwa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6xdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6xri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6x6u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6yna/?format=api" } ], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "name": "", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-14T05:57:30.187064Z", "last_modified_time": "2025-08-14T05:57:30.187081Z", "date_published": null, "start_time": "2025-08-14T14:30:00Z", "end_time": "2025-12-18T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "info_url": null, "name": { "fi": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6zjy", "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:p2625/?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, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-14T05:43:09.425802Z", "last_modified_time": "2025-08-14T05:43:09.425819Z", "date_published": null, "start_time": "2025-10-01T13:00:00Z", "end_time": "2025-10-01T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "KulttuuriEspoo, Teatteri ILMI Ö", "sv": "KulturEsbo, Teatteri ILMI Ö", "en": "CultureEspoo, Teatteri ILMI Ö" }, "short_description": { "fi": "Juhlat metsässä on mukaansatempaava, toiminnallinen yleisöä osallistava esitys.", "sv": "Juhlat metsässä (Fest i skogen) är en medryckande och interaktiv föreställning där publiken får delta aktivt.", "en": "Juhlat metsässä (Forest Party) is a captivating, interactive performance that engages the audience through participation." }, "description": { "fi": "<p>Juhlat metsässä on mukaansatempaava, toiminnallinen yleisöä osallistava esitys. Mustikka-Citykani ja kaveri kohtaavat lapset ja aikuiset ja johdattavat heidät mielikuvituksellista reittiä pitkin Mustikka-Citykanin kotiin. </p><p>Yhdessä yleisön kanssa tutustutaan Mustikan upeaan kirjahyllyyn ja lelulaatikkoon ja päästetään mielikuvitus valloilleen. Uusien ystävien kunniaksi vietetään myös riemukkaat juhlat, joista ei puutu musiikkia, tanssia, juhlaherkkuja eikä leikkiä! Perustetaanpa myös metsäneläinten soinnukas kuorokin! </p><p>Kesken kaiken retkeilijä ilmaantuu paikalle ja yhdessä saadaan miettiä kierrätystä ja opastaa retkeilijää. Ja sitten juhlat voivat jatkua yhdessä tehtyjen ympäristötaideteosten merkeissä. </p><p>Juhlat metsässä -osallistava esitys on kokemuksellinen, elämyksellinen, yhteistoiminnallinen, liikunnallinen sekä lasten ja aikuisten mielikuvitusta monin tavoin aktivoiva riemukas esitys. Esityksessä käsitellään luontosuhdetta yhteisen teatterileikin kautta ja ideoidaan mukavaa, ekologista ja kaikille hyvää elämää ja tulevaisuutta. </p><p>Käsikirjoitus ja ohjaus devising-prosessissa: Anne Korhonen, Minna Savin, </p><p>Outi Sädekallio-Snellman </p><p>Näyttelijät: </p><p>Mustikka-Citykani: Minna Savin/ Outi Sädekallio-Snellman </p><p>Kaveri ja retkeilijä: Anne Korhonen/Minna Savin </p><p>Puvustus: Työryhmä </p><p>Kesto: 30 min + ohjattu aika näyttämöllä </p><p>Aikataulu:</p><p>26.9. klo 17 ja klo 18.30 / Pakkasmäen ulkoilmanäyttämö</p><p>1.10. klo 14.30 ja 16 / Lippulaivan kirjasto (Salonki)</p><p><br></p><p>Tulevaisuustarinoita</p>", "sv": "<p>Juhlat metsässä (Fest i skogen) är en medryckande och interaktiv föreställning där publiken får delta aktivt. Stadskaninen Mustikka och hens vän möter både barn och vuxna och leder dem längs en fantasifull stig hem till stadskaninen. </p><p>Tillsammans med publiken utforskar vi Mustikkas fantastiska bokhylla och leksakslåda samt låter fantasin flöda! För att fira de nya vännerna ordnar vi en festlig tillställning med musik, dans, godsaker och lek. Vi bildar till och med en klingande kör med skogens djur! </p><p>Mitt i allt dyker en vandrare upp och tillsammans funderar vi på återvinning och hjälper vandraren att hitta rätt. Sedan fortsätter festen med gemensamt skapade miljökonstverk. </p><p>Fest i skogen är en upplevelserik, deltagande och fantasifull föreställning full av rörelse och samarbete, som engagerar både barn och vuxna på många sätt. Föreställningen utforskar vår relation till naturen genom gemensam teaterlek och inspirerar till reflektion över ett trevligt, ekologiskt och hållbart liv och en framtid för alla. </p><p>Föreställningens språk är finska. </p><p>Manus och regi: Anne Korhonen, Minna Savin, Outi Sädekallio-Snellman </p><p>Skådespelare: </p><p>Stadskaninen Mustikka: Minna Savin/ Outi Sädekallio-Snellman </p><p>Vännen och Vandraren: Anne Korhonen/Minna Savin </p><p>Kostym: Arbetsgruppen </p><p>Längd: 30 minuter + tid på scen under ledning </p><p>Schema:</p><p>26.9 kl. 17 och kl. 18.30 / Pakkasmäen ulkoilmanäyttämö</p><p>1.10 kl. 14.30 och 16 / Lippulaivabiblioteket (Salonki)</p><p><br></p><p>Tulevaisuustarinoita</p>", "en": "<p>Juhlat metsässä (Forest Party) is a captivating, interactive performance that engages the audience through participation. A bunny called Mustikka and their friend meet children and adults, leading them along an imaginative path to the bunny’s home. </p><p>Together with the audience, they explore Mustikka’s wonderful bookshelf and toy box, letting their imagination run wild. To celebrate new friendships, a joyful party is held, complete with music, dancing, treats, and playful fun! Even a harmonious forest animal choir is formed! </p><p>In the middle of it all, a hiker appears, sparking discussions about recycling. The festivities continue with collaboratively created environmental artworks. </p><p>A Party in the Forest is an immersive, joyful, and engaging performance that activates the imagination of both children and adults in many ways. Through theatrical play, the performance explores our relationship with nature and encourages ideas for a fun, ecological, and inclusive life and future. </p><p>The language of the performance is Finnish. </p><p>Writers and directors: Anne Korhonen, Minna Savin, Outi Sädekallio-Snellman </p><p>Actors: </p><p>Mustikka: Minna Savin/ Outi Sädekallio-Snellman </p><p>Friend and hiker: Anne Korhonen/Minna Savin </p><p>Costume design: Working group </p><p>Duration: 30 min + directed time on stage </p><p>Schedule:</p><p>September 26 at 5:00 PM and 6:30 PM / Pakkasmäki Outdoor Stage,</p><p>October 1 at 2:30 PM and 4:00 PM / Lippulaiva Library (Salonki)</p><p><br></p><p>Tulevaisuustarinoita</p>" }, "info_url": null, "name": { "fi": "Juhlat metsässä ", "sv": " Juhlat metsässä (Fest i skogen) ", "en": "Juhlat metsässä (Forest Party)" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6zjy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6z4y", "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:p2625/?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, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-14T05:42:30.735779Z", "last_modified_time": "2025-08-14T05:42:30.735796Z", "date_published": null, "start_time": "2025-10-01T11:30:00Z", "end_time": "2025-10-01T12: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, "provider": { "fi": "KulttuuriEspoo, Teatteri ILMI Ö", "sv": "KulturEsbo, Teatteri ILMI Ö", "en": "CultureEspoo, Teatteri ILMI Ö" }, "short_description": { "fi": "Juhlat metsässä on mukaansatempaava, toiminnallinen yleisöä osallistava esitys.", "sv": "Juhlat metsässä (Fest i skogen) är en medryckande och interaktiv föreställning där publiken får delta aktivt.", "en": "Juhlat metsässä (Forest Party) is a captivating, interactive performance that engages the audience through participation." }, "description": { "fi": "<p>Juhlat metsässä on mukaansatempaava, toiminnallinen yleisöä osallistava esitys. Mustikka-Citykani ja kaveri kohtaavat lapset ja aikuiset ja johdattavat heidät mielikuvituksellista reittiä pitkin Mustikka-Citykanin kotiin. </p><p>Yhdessä yleisön kanssa tutustutaan Mustikan upeaan kirjahyllyyn ja lelulaatikkoon ja päästetään mielikuvitus valloilleen. Uusien ystävien kunniaksi vietetään myös riemukkaat juhlat, joista ei puutu musiikkia, tanssia, juhlaherkkuja eikä leikkiä! Perustetaanpa myös metsäneläinten soinnukas kuorokin! </p><p>Kesken kaiken retkeilijä ilmaantuu paikalle ja yhdessä saadaan miettiä kierrätystä ja opastaa retkeilijää. Ja sitten juhlat voivat jatkua yhdessä tehtyjen ympäristötaideteosten merkeissä. </p><p>Juhlat metsässä -osallistava esitys on kokemuksellinen, elämyksellinen, yhteistoiminnallinen, liikunnallinen sekä lasten ja aikuisten mielikuvitusta monin tavoin aktivoiva riemukas esitys. Esityksessä käsitellään luontosuhdetta yhteisen teatterileikin kautta ja ideoidaan mukavaa, ekologista ja kaikille hyvää elämää ja tulevaisuutta. </p><p>Käsikirjoitus ja ohjaus devising-prosessissa: Anne Korhonen, Minna Savin, </p><p>Outi Sädekallio-Snellman </p><p>Näyttelijät: </p><p>Mustikka-Citykani: Minna Savin/ Outi Sädekallio-Snellman </p><p>Kaveri ja retkeilijä: Anne Korhonen/Minna Savin </p><p>Puvustus: Työryhmä </p><p>Kesto: 30 min + ohjattu aika näyttämöllä </p><p>Aikataulu:</p><p>26.9. klo 17 ja klo 18.30 / Pakkasmäen ulkoilmanäyttämö</p><p>1.10. klo 14.30 ja 16 / Lippulaivan kirjasto (Salonki)</p><p><br></p><p>Tulevaisuustarinoita</p>", "sv": "<p>Juhlat metsässä (Fest i skogen) är en medryckande och interaktiv föreställning där publiken får delta aktivt. Stadskaninen Mustikka och hens vän möter både barn och vuxna och leder dem längs en fantasifull stig hem till stadskaninen. </p><p>Tillsammans med publiken utforskar vi Mustikkas fantastiska bokhylla och leksakslåda samt låter fantasin flöda! För att fira de nya vännerna ordnar vi en festlig tillställning med musik, dans, godsaker och lek. Vi bildar till och med en klingande kör med skogens djur! </p><p>Mitt i allt dyker en vandrare upp och tillsammans funderar vi på återvinning och hjälper vandraren att hitta rätt. Sedan fortsätter festen med gemensamt skapade miljökonstverk. </p><p>Fest i skogen är en upplevelserik, deltagande och fantasifull föreställning full av rörelse och samarbete, som engagerar både barn och vuxna på många sätt. Föreställningen utforskar vår relation till naturen genom gemensam teaterlek och inspirerar till reflektion över ett trevligt, ekologiskt och hållbart liv och en framtid för alla. </p><p>Föreställningens språk är finska. </p><p>Manus och regi: Anne Korhonen, Minna Savin, Outi Sädekallio-Snellman </p><p>Skådespelare: </p><p>Stadskaninen Mustikka: Minna Savin/ Outi Sädekallio-Snellman </p><p>Vännen och Vandraren: Anne Korhonen/Minna Savin </p><p>Kostym: Arbetsgruppen </p><p>Längd: 30 minuter + tid på scen under ledning </p><p>Schema:</p><p>26.9 kl. 17 och kl. 18.30 / Pakkasmäen ulkoilmanäyttämö</p><p>1.10 kl. 14.30 och 16 / Lippulaivabiblioteket (Salonki)</p><p><br></p><p>Tulevaisuustarinoita</p>", "en": "<p>Juhlat metsässä (Forest Party) is a captivating, interactive performance that engages the audience through participation. A bunny called Mustikka and their friend meet children and adults, leading them along an imaginative path to the bunny’s home. </p><p>Together with the audience, they explore Mustikka’s wonderful bookshelf and toy box, letting their imagination run wild. To celebrate new friendships, a joyful party is held, complete with music, dancing, treats, and playful fun! Even a harmonious forest animal choir is formed! </p><p>In the middle of it all, a hiker appears, sparking discussions about recycling. The festivities continue with collaboratively created environmental artworks. </p><p>A Party in the Forest is an immersive, joyful, and engaging performance that activates the imagination of both children and adults in many ways. Through theatrical play, the performance explores our relationship with nature and encourages ideas for a fun, ecological, and inclusive life and future. </p><p>The language of the performance is Finnish. </p><p>Writers and directors: Anne Korhonen, Minna Savin, Outi Sädekallio-Snellman </p><p>Actors: </p><p>Mustikka: Minna Savin/ Outi Sädekallio-Snellman </p><p>Friend and hiker: Anne Korhonen/Minna Savin </p><p>Costume design: Working group </p><p>Duration: 30 min + directed time on stage </p><p>Schedule:</p><p>September 26 at 5:00 PM and 6:30 PM / Pakkasmäki Outdoor Stage,</p><p>October 1 at 2:30 PM and 4:00 PM / Lippulaiva Library (Salonki)</p><p><br></p><p>Tulevaisuustarinoita</p>" }, "info_url": null, "name": { "fi": "Juhlat metsässä ", "sv": " Juhlat metsässä (Fest i skogen) ", "en": "Juhlat metsässä (Forest Party)" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6z4y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z62om", "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:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-13T11:33:06.555673Z", "last_modified_time": "2025-08-14T05:27:12.728395Z", "date_published": "2025-08-13T11:28:00Z", "start_time": "2025-09-09T15:00:00Z", "end_time": "2025-09-09T16: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, "provider": { "fi": "Espoon Kalevalaiset ry", "sv": "Espoon Kalevalaiset ry", "en": "Espoon Kalevalaiset ry" }, "short_description": { "fi": "Tervetuloa Espoon Kalevalaiset ry:n järjestämään kirjailijailtaan, jossa vieraana on dekkarikirjailija Helena Lehtovirta.", "sv": "Välkommen till en författarkväll arrangerad av Espoon Kalevalaiset rf, där deckarförfattaren Helena Lehtovirta är kvällens gäst.", "en": "Welcome to an author evening organized by Espoon Kalevalaiset Association, featuring crime novelist Helena Lehtovirta as the guest." }, "description": { "fi": "<p>Tervetuloa Espoon Kalevalaiset ry:n järjestämään kirjailijailtaan, jossa vieraana on dekkarikirjailija Helena Lehtovirta.</p><p>Helena Lehtovirran esikoisdekkari ’Koskaan et voi tietää’ (Docendo Crime Time) ilmestyi helmikuussa 2025. Maaliskuussa 2025 kirja oli Kirjakauppaliiton kokoamalla myydyimmän kotimaisen kaunokirjallisuuden TOP-10 -listalla.</p><p>Helena on syntyperäinen espoolainen, joka on asunut eri puolilla Espoota: Kivenlahdessa, Tillinmäessä, Tapiolassa, Otaniemessä, Kilossa, Perkkaalla ja Lintuvaarassa. Tätä taustaa vasten onkin luonnollista, että kirjan tapahtumat sijoittuvat juuri Espooseen.</p><p>Koulutukseltaan Helena on juristi. Hän on tehnyt pitkän työuran henkilöstöhallinnon ja juridiikan tehtävissä mm. Teknillisessä korkeakoulussa, Ulkopoliittisessa instituutissa sekä eduskunnassa.</p>", "sv": "<p>Välkommen till en författarkväll arrangerad av Espoon Kalevalaiset rf, där deckarförfattaren Helena Lehtovirta är kvällens gäst.</p>", "en": "<p>Welcome to an author evening organized by Espoon Kalevalaiset Association, featuring crime novelist Helena Lehtovirta as the guest.</p>" }, "info_url": { "fi": "https://espoonkalevalaiset.yhdistysavain.fi/", "sv": "https://espoonkalevalaiset.yhdistysavain.fi/", "en": "https://espoonkalevalaiset.yhdistysavain.fi/" }, "name": { "fi": "Kirjailijavieraana Helena Lehtovirta", "sv": "Författarbesök med Helena Lehtovirta", "en": "Author Visit: Helena Lehtovirta" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kaija", "sv": "Kaija", "en": "Kaija" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z62om/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65811", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@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, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 404314, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-25T15:13:53.473787Z", "last_modified_time": "2025-03-25T15:13:53.473805Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767259.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/404314/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-03-25T15:13:53.444591Z", "last_modified_time": "2025-08-13T15:13:49.259362Z", "date_published": null, "start_time": "2025-08-16T09:00:00Z", "end_time": "2025-08-16T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tapahtumakesän lasten lauantai on täynnä riemastuttavaa touhua koko perheelle!", "sv": "Barnens lördag under evenemangssommaren är full av spännande aktiviteter för hela familjen!", "en": "The children’s Saturday of the Summer of Events is full of delightful activities for the entire family!" }, "description": { "fi": "<p>Tapahtumakesän lasten lauantai on täynnä riemastuttavaa touhua koko perheelle!</p><p>Luvassa on Suomen suosituin vatsastapuhuja Sari Aalto puhuvien eläinten kanssa, lastenkonsertti Tuubakimalaiselta, eläinnaamareiden tekoa ja puhutaan Peikkoa -työpaja. Päivän aikana mietitään myös eläinten kannalta, kuinka Longinojan puistikkoa tulisi kehittää.</p><p><b>Aikataulu</b><br>11–15 Malmin seurakunta: Liikunnallinen toimintarata<br>12.30–15 Ponihaka: Ponitalutusta<br>13–15 Kirjasto: Eläinnaamari-työpaja<br>13–16 Malmin tuulenkävijät esittelevät toimintaansa<br>13.30, 14.30 ja 15.45 Pienperheyhdistys/Mummila: Puhutaan peikkoa -työpaja<br>14–16.15 Pohjois-Helsingin kuvataidekoulu: Katuliidut eläinteemalla<br>14–14.30 Vatsastapuhuja Sari Aalto<br>14–16 Forum Virium: Toislajisten neuvosto<br>15–15.45 Tuubakimalainen</p><p><b>klo 11–15 Malmin seurakunta: Liikunnallinen toimintarata</b><br>Malmin seurakunta tarjoaa liikunnallisen toimintaradan, luontopisteen ja elokuista askartelua. Sijainti: Tapahtumakesän viheralue</p><p><b>klo 13.30, 14.30 ja 15.45 <br>Pienperheyhdistys/Mummila: Puhutaan peikkoa -työpaja</b><br>Tutkija Into Metsämieli on laatimassa tutkijakollegoidensa ja Peikko Sammaleisen kanssa opaskirjaa peikkokielen alkeista. Avukseen tutkimusryhmä tarvitsee lapsia, sillä lapset osaavat peikkokieltä usein luontaisesti paremmin kuin aiheeseen perehtyneet tutkijat. Tule puhumaan peikkoa! <br>Työpajan kesto: Noin 15–20 min.<br>Kieli: suomi</p><p><b>klo 14-16<br>Forum Virium Helsinki: Toislajisten neuvosto</b><br>Toislajisten neuvostossa eri eläinlajien edustajat kokoontuvat pohtimaan kuinka Longinojan puistoa tulisi kehittää, ja minne puita pitäisi saada lisää. Neuvostossa eläydytään vaikka sorsan, sammakon tai oravan rooliin ja mietitään miten eläimet voivat auttaa toisiaan, ratkaista ongelmia ja tehdä puistosta paremman paikan kaikille!<br>Kieli: suomi</p><p><b>klo 14-16.15 Pohjois-Helsingin kuvataidekoulu: Eläinten kesäloma-katuliitutyöpaja</b><br>Tule mukaan toteuttamaan katuliiduilla ryhmätaideteos Ala-Malmin puistoon, aiheena ”Eläinten kesäloma”</p><p><b>klo 14.00–14.30<br>Vatsastapuhuja Sari Aalto</b><br>Suomen suosituin vatsastapuhuja ja TikTok-stara Sari Aalto valloittaa hulvattoman räiskyvillä koko perheen esityksillään!</p><p>Tapahtumaesiintymisissään Sari yhdistää raikkaalla tavalla koomista vatsastapuhumista ja musiikkia. Kaiken ikäiset katsojat ihastuvat hulvattomien nukkehahmojen edesottamuksiin: Simpanssi-Anssi, Oskari Olematon ja aidon kokoinen strutsineito Lulu esittävät huulenheiton lisäksi näyttäviä taikatemppuja ja meneviä musiikkinumeroita. Hulvattomassa avustajanumerossa Sari muuttaa yleisöstä valitsemansa avustajan eläväksi vatsastapuhujannuksekseen. Sarin ohjelmistossa kolme erilaista 20 minuutin mittaista naurupommia. Sari räätälöi esityksen aina tapahtuman luonteeseen sopivaksi.</p><p>Esitysten jälkeen Sari pitää mielellään Meet & Greetejä, jolloin lapset pääsevät tapaamaan somestaran henkilökohtaisesti, ja saavat muistoksi fanikortin tai kaverikuvan.</p><p><b>klo 15.00–15.45<br>Tuubakimalainen</b><br>Tuubakimalainen on yli 3000 lastenkonsertin yhtye, joka konsertoi kautta maan. Suosion salaisuus on se, että näissä konserteissa saa osallistua ja nauraa mukana. Odotettavissa on tuttuja juttuja ja pientä hauskaa suurella soittimella kaiken ikäisille.</p><p>Tapahtumiin on vapaa pääsy.</p>", "sv": "<p>Barnens lördag under evenemangssommaren är full av spännande aktiviteter för hela familjen!</p><p>Finlands populäraste buktalare Sari Aalto med de talande djur utlovas, samt en barnkonsert av Tuubakimalainen och verkstäder där vi skapar djurmasker och talar troll. Under dagen funderar vi också hur Stickelbackaparken ska utvecklas med tanke på djuren.</p><p><b>Tidtabell</b><br>11.00–15.00 Malms församling: Motionsbana<br>12.30–15 Ponihaka: Ponnyridning<br>13–15 Biblioteket: Djurmask-verkstad<br>13.30, 14.30 och 15.45 Pienperheyhdistys ry/Mummila: Verkstaden Vi talar troll<br>14–14.30 Buktalare Sari Aalto<br>14–16 Forum Virium: Rådet för sekundära arter<br>15–15.45 Tuubakimalainen</p><p><b>kl. 11.00–15.00 Malms församling: Motionsbana</b><br>Malms församling ordnar en motionsbana, en naturpunkt och augustipyssel.<br>Plats: Grönområde</p><p><b>kl. 13.30, 14.30 och 15.45<br>Pienperheyhdistys ry/Mummila: Verkstaden Vi talar troll</b><br>Forskaren Into Metsämieli håller tillsammans med sina forskarkolleger och Peikko Sammaleinen på att utarbeta en handbok om grunderna i trollspråk. Forskningsgruppen behöver barn, eftersom barnen på ett naturligt sätt ofta kan trollspråket bättre än forskare som är insatta i ämnet. Kom och tala troll!<br>Verkstadens längd: Cirka 15–20 min.<br>Språk: finska</p><p><b>kl. 14–16<br>Forum Virium Helsinki: Rådet för sekundära arter</b><br>I rådet för sekundära arter samlas representanter för olika djurarter för att fundera på hur Stickelbackaparken borde utvecklas och var man borde plantera fler träd. I rådet lever man sig in i rollen som en and, groda eller ekorre och funderar på hur djuren kan hjälpa varandra, lösa problem och göra parken till en bättre plats för alla!<br>Språk: finska</p><p><b>kl. 14–14.30<br>Buktalare Sari Aalto</b><br>Finlands populäraste buktalare och TikTok-stjärna Sari Aalto erövrar scenen med sin fantastiska uppsluppna föreställning för hela familjen!</p><p>I sina evenemangsframträdanden kombinerar Sari komiskt buktalande och musik på ett fräscht sätt. Åskådare i alla åldrar blir förtjusta i de roliga dockfigurers förehavanden: Schimpans-Anssi, Oskari Olematon och strutsfröken Lulu i äkta storlek framför förutom vitsmakeri även spektakulära trollkonster och fartfyllda musiknummer. I det roliga assistentnumret förvandlar Sari den assistent hon valt från publiken till en levande buktalare. Sari har tre olika 20 minuter långa skrattbomber i sin repertoar. Sari skräddarsyr alltid föreställningen så att den passar evenemangets karaktär.</p><p>Efter föreställningarna har Sari gärna Meet & Greet, där barnen får träffa stjärnan på sociala medier personligen och får ett fankort eller en kompisbild som minne.</p><p><b>kl. 15–15.45<br>Tuubakimalainen</b><br>Tuubakimalainen är en grupp som uppträtt på över 3 000 barnkonserter i hela landet. Hemligheten bakom populariteten är att man får delta och skratta i dessa konserter. Man kan förvänta sig bekanta saker och lite roligt med det stora instrumentet för personer i alla åldrar.</p><p>Evenemangen har fritt inträde.</p>", "en": "<p>The children’s Saturday of the Summer of Events is full of delightful activities for the entire family!</p><p>Get ready for the most popular ventriloquist in Finland, Sari Aalto and her talking animals, a children’s concert by Tuubakimalainen, an animal mask workshop and the ‘Puhutaan peikkoa’ (let’s speak goblin) workshop. The day also includes a discussion on how animals would like Longinoja Park to be developed.</p><p><b>Programme</b><br>11–15 Malmi Parish: Physical activity track<br>12.30–15.00 Ponihaka: Pony walking<br>13.30, 14.30 and 15.45 Single Parents’ Association/Grandma’s: Puhutaan peikkoa (let’s speak goblin) workshop<br>14.00–14.30 Ventriloquist Sari Aalto<br>15.00–15.45 Tuubakimalainen<br>13.00–15.00 Library: Animal mask workshop<br>14.00–16.00 Forum Virium: Toislajisten neuvosto (Council of other species)</p><p><b>11.00–15.00 <br>Malmi Parish: Physical activity track</b><br>Malmi Parish offers a physical activity track, a nature point, and August-themed crafts.<br>Location: Green area</p><p><b>13.30, 14.30 and 15.45<br>Single Parents’ Association/Grandma’s: Puhutaan peikkoa (let’s speak goblin) workshop</b><br>Researcher Into Metsämieli is drafting a guidebook on the basics of goblin language with her colleagues and goblin Peikko Sammaleinen. The research group needs children to help them, because children often have a natural ability to speak the goblin language better than researches who have devoted their lives to the topic. Come and speak goblin!<br>Workshop duration: Approximately 15–20 min.<br>Language: Finnish</p><p><b>14.00–16.00<br>Forum Virium Helsinki Toislajisten neuvosto (Council of other species)</b><br>In the council of other species, representatives for different animal species come together to discuss how Longinoja Park should be developed and where trees should be planted. The council looks at things through the perspective of a duck, frog or squirrel and discusses how animals can help each other, solve problems and make the park a better place for everyone!<br>Language: Finnish</p><p><b>14.00–14.30<br>Ventriloquist Sari Aalto</b><br>The most popular ventriloquist in Finland and TikTok star Sari Aalto will entertain the audience with her hilarious performances for the entire family!</p><p>In her event performances, Sari delivers a fresh combination of comical ventriloquism and music. The antics of the hilarious puppet characters will enchant audience members of all ages: Simpanssi-Anssi, Oskari Olematon and the life-size ostrich Lulu will perform impressive magic tricks and groovy musical numbers in addition to engaging in banter. In the hilarious assistant number, Sari will turn a volunteer assistant from the audience into a living ventriloquist doll. Sari’s repertoire contains three different 20-minute laugh fests. Sari will customise the performance to the vibe of the event.</p><p>After the show, Sari will be happy to attend a meet & greet and provide children with the chance to meet the social media star in person and have a fan card or selfie as a memento.</p><p><b>15.00–15.45<br>Tuubakimalainen</b><br>Tuubakimalainen has played more than 3,000 concerts for children throughout Finland. The group’s popularity is based on participation and laughter. The audience is in for familiar activities and small surprises with a big instrument for people of all ages.</p><p>Entry to the events is free of charge.</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/46F74373E37ED07C86A72F7784B3995F/Lasten_lauantai_Vatsastapuhuja_Sari_Aalto_Tuubakimalainen_poneja_ja_tyopajoja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/46F74373E37ED07C86A72F7784B3995F/Buktalare_Sari_Aalto_Tuubakimalainen_ponnyer_och_verkstader", "en": "http://www.malmitalo.fi/en/events/event/46F74373E37ED07C86A72F7784B3995F/Ventriloquist_Sari_Aalto_Tuubakimalainen_ponies_and_workshops" }, "name": { "fi": "Lasten lauantai: Vatsastapuhuja Sari Aalto, Tuubakimalainen, poneja ja työpajoja – Malmin tapahtumakesä", "sv": "Buktalare Sari Aalto, Tuubakimalainen, ponnyer och verkstäder – Malms evenemangssommar", "en": "Ventriloquist Sari Aalto, Tuubakimalainen, ponies and workshops – Malmi Summer of Events" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65811/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66848", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1476539, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-13T13:14:15.524543Z", "last_modified_time": "2025-08-13T13:14:15.524559Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775416.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1476539/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-13T13:14:15.375231Z", "last_modified_time": "2025-08-13T13:14:15.693367Z", "date_published": null, "start_time": "2025-11-08", "end_time": "2025-12-31", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Kun aika on -näyttely pyrkii haastamaan vakiintuneita käsityksiämme kuoleman visuaalisesta tapakulttuurista.", "sv": "Utställningen När tiden är kommen strävar efter att utmana våra sedvanliga uppfattningar om dödens visuella seder och bruk.", "en": "The Kun aika on (When it’s time) exhibition aims to challenge our established views of the visual culture of death." }, "description": { "fi": "<p>Kun aika on -näyttely pyrkii haastamaan vakiintuneita käsityksiämme kuoleman visuaalisesta tapakulttuurista.</p><p>Tämä pitää sisällään yhteiskunnan viimeaikaiset muutokset, kuten monikulttuurisuuden sekä arvojen ja elämänkatsomusten monimuotoistumisen. Näyttelyn teemaa ei ole sidottu tiettyyn uskontokuntaan tai kulttuuriin. Taiteen kautta voidaan avata keskusteluväylä uudentyyppiseen kuoleman ja hautajaisten käsittelyyn sekä vainajan muistamiseen ja kunnioittamiseen, olipa kysymys sitten tunnustuksettomuudesta, uskonno(i)sta tai vaikkapa menninkäisiin ja enkeleihin uskomisesta. <br> <br>Näyttelyn kuraattori <b>Petri Kaverma</b>(KuT) pyrkii luomaan vuoropuhelua teosten ja erilaisten ympäristöjen välillä. Kaverma väitteli kuvataiteen tohtoriksi vuonna 2012. Kriittisen designin alueelle sijoittuvassa postdoc-tutkimuksessaan hän on käsitellyt kuoleman kulttuurisia ja visuaalisia näkökohtia sekä pyrkinyt löytämään uusia ratkaisuja yleisön kohtaamiseen.<br> <br><b>Taiteilijat</b><br>Synnove Dickhof | Riitta Forsman | Sirpa Hannele Heinonen | Soile Hovila | Hanna van Ingen | Minja Kolehmainen | Mirja Marsch | Eeva Mäkinen | Leena Mäki-Patola | Harri Piispanen | Tuulikki Päällysaho | Piia Rossi | Eeva Rönkä | Anna-Mari Vierikko | Mervi Vuolas<br> <br>Näyttelyn ohessa järjestetään sen nimeä kantava minifestivaali, työpajoja sekä taiteilijatapaamisia. Näyttelyn ja sen oheisohjelman tuotannosta vastaa materiaalipohjaista nykytaidetta edistävä Taiteilijat O ry.</p><p>Avajaiset Stoan galleriassa 7.11. klo 17–19, tervetuloa!</p><p>Vapaa pääsy</p>", "sv": "<p>Utställningen När tiden är kommen strävar efter att utmana våra sedvanliga uppfattningar om dödens visuella seder och bruk.</p><p>Detta omfattar samhällets senaste förändringar, så som den kulturella mångfalden samt mångfalden av värden och livsåskådningen. Temat för utställningen är inte bundet till en viss religion eller kultur. Med hjälp av konst kan man öppna ett diskussionsled för en ny typ av hantering av död och begravning samt ihågkommande och hedrande av den avlidne, vare sig det är fråga om konfessionslöshet, religioner eller förslagsvis tro på vättar och änglar. <br> <br>Utställningens kurator <b>Petri Kaverma</b>(KuT) strävar efter att skapa en dialog mellan verken och de olika miljöerna. Kaverma disputerade till doktor i bildkonst 2012. I sin postdoc-forskning inom kritisk design har han hanterat kulturella och visuella synpunkter om döden samt strävat efter att finna nya lösningar för att möta publiken.<br> <br><b>Konstnärer:</b><br>Synnove Dickhof | Riitta Forsman | Sirpa Hannele Heinonen | Soile Hovila | Hanna van Ingen | Minja Kolehmainen | Mirja Marsch | Eeva Mäkinen | Leena Mäki-Patola | Harri Piispanen | Tuulikki Päällysaho | Piia Rossi | Eeva Rönkä | Anna-Mari Vierikko | Mervi Vuolas<br> <br>Vid sidan av utställningen ordnas en minifestival som bär dess namn, verkstäder och konstnärsmöten. Taiteilijat O ry, som främjar materialbaserad nutida konst, ansvarar för utställningen och dess sidoprogram.</p><p>Öppningsceremonin i Stoas galleri 7.11 kl. 17–19, välkommen!</p><p>Fritt inträde</p>", "en": "<p>The Kun aika on (When it’s time) exhibition aims to challenge our established views of the visual culture of death.</p><p>This includes the recent changes in society, such as multiculturalism and the diversification of values and beliefs. The theme of the exhibition is not tied to a particular religion or culture. Through art, we can open a new channel for discussing death and funerals and remembering and honouring the deceased, regardless of questions of non-denomination, religion(s) or even belief in goblins and angels. <br> <br>The curator of the exhibition, <b>Petri Kaverma</b> (DFA), aims to foster a dialogue between the pieces and the different environments. Kaverma received his PhD in fine arts in 2012. In his post-doctoral research in the field of critical design, he has explored the cultural and visual aspects of death and sought to find new solutions to encountering his audience.<br> <br><b>Artists:</b><br>Synnove Dickhof | Riitta Forsman | Sirpa Hannele Heinonen | Soile Hovila | Hanna van Ingen | Minja Kolehmainen | Mirja Marsch | Eeva Mäkinen | Leena Mäki-Patola | Harri Piispanen | Tuulikki Päällysaho | Piia Rossi | Eeva Rönkä | Anna-Mari Vierikko | Mervi Vuolas<br> <br>The exhibition will be held together with a mini-festival of the same name, workshops and artist meetings. The exhibition and its accompanying programme are produced by Taiteilijat O, an association promoting material-based contemporary art.</p><p>Opening ceremony in Stoa Gallery on 7 November at 17:00–19:00, welcome!</p><p>Free entry</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6D84206B889CA1ED9DD7919A85E6C5BB/Taiteilijat_O_Kun_aika_on", "sv": "http://www.stoa.fi/sv/evenemang/event/6D84206B889CA1ED9DD7919A85E6C5BB/Taiteilijat_O_Nar_tiden_ar_kommen", "en": "http://www.stoa.fi/en/events/event/6D84206B889CA1ED9DD7919A85E6C5BB/Taiteilijat_O_Kun_aika_on_When_it_s_time_" }, "name": { "fi": "Taiteilijat O: Kun aika on – kuolemaan, hautaukseen ja muistotilaisuuksiin liittyvää taidetta", "sv": "Taiteilijat O: När tiden är kommen – konst i anslutning till död, begravning och minnesstunder", "en": "Taiteilijat O: Kun aika on (When it’s time) – art related to death, burials and memorial services" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66848/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z7aja", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:agmk2z7a4i/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490099, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T12:13:56.085264Z", "last_modified_time": "2025-08-13T12:42:13.026623Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg", "name": "", "cropping": "315,0,1125,810", "photographer_name": "Joni Luumi", "alt_text": "Kirjastoauto Välkky ilta-auringossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-13T12:17:57.981090Z", "last_modified_time": "2025-08-13T12:17:57.981109Z", "date_published": null, "start_time": "2025-08-25T10:15:00Z", "end_time": "2025-08-25T11:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": 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!" }, "description": { "fi": "<p>Kirjastoauto Välkky saapuu Karakallion asukaspuistolle viitenä maanantaina klo 13:15 - 14:15</p><p>25.8.</p><p>22.9. </p><p>20.10. </p><p>17.11. </p><p>15.12.</p>", "sv": "<p>Välkky kör till Karakallios invånarpark!</p><p>En gång i månaden på måndag kl. 13.15 - 14.15</p><p>25.8.</p><p>22.9. </p><p>20.10. </p><p>17.11. </p><p>15.12.</p>", "en": "<p>Välkky arrives at the Karakallio residents' park!</p><p>Once a month on Monday at 13:15 - 14:15.</p><p>25.8.</p><p>22.9. </p><p>20.10. </p><p>17.11. </p><p>15.12.</p>" }, "info_url": { "fi": "http://espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "name": { "fi": "Välkky Karakallion asukaspuistossa", "sv": "Välkky på rutten", "en": "Välkky on the route" }, "provider_contact_info": null, "location_extra_info": { "fi": "Välkky", "sv": "Välkky", "en": "Välkky" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7aja/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z7myq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": 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": "2025-08-11T11:42:43.085566Z", "last_modified_time": "2025-08-13T11:07:25.135995Z", "date_published": null, "start_time": "2025-09-27T13:00:00Z", "end_time": "2025-09-27T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tervetuloa koko perheen kanssa hauskaan ajanviettoon, jossa luemme satuja lapsille ja kaikille arabian kielestä kiinnostuneille!\n" }, "description": { "fi": "<p>Tervetuloa koko perheen kanssa hauskaan ajanviettoon, jossa luemme satuja lapsille ja kaikille arabian kielestä kiinnostuneille!</p>" }, "info_url": null, "name": { "fi": "Arabiankielinen satutunti" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7myq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66838", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1475654, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-13T10:15:21.801418Z", "last_modified_time": "2025-08-13T10:15:21.801441Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776105.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1475654/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-13T10:15:21.649460Z", "last_modified_time": "2025-08-13T10:15:21.997953Z", "date_published": null, "start_time": "2025-09-17T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Näkymätön reppu on raikas, riehakas ja syvällinen nukketeatterisatu herkän lapsen omaperäisestä tavasta kokea maailmaa.", "sv": "Den osynliga ryggsäcken är en fräsch, munter och djup dockteatersaga om barnets speciella sätt att uppleva världen.", "en": "Näkymätön reppu is a fresh, jubilant and deep puppet theatre show about a sensitive child’s peculiar way of experiencing the world." }, "description": { "fi": "<p>Näkymätön reppu on raikas, riehakas ja syvällinen nukketeatterisatu herkän lapsen omaperäisestä tavasta kokea maailmaa.</p><p>Rosalilla on reppu, joka ei olekaan ihan tavallinen. Se on näkymätön. Reppuun Rosali kerää kaikkea sitä, mitä hän päivän aikana kokee possuystävänsä kanssa. Joskus reppu tulee kuitenkin liian täyteen, ja silloin saattaa tapahtua ihan mitä tahansa! Onneksi Rosalin Isällä on sellainen hengitys, joka saa olon rauhoittumaan.</p><p>Herkkyys on näkynyt lastenkulttuurissa melko vähän, vaikka lasten kuormittuminen puhuttaa kodeissa ja varhaiskasvatuksessa. Nukketeatterin keinoilla herkkyyteen liittyvät kokemukset saavat muodon: Kutittava paidansauma, linnun sirkutus, älämölö, auringonsäde ja muu repun sisältö heräävät eloon. Herkkyys on myös supervoima, jonka avulla elämän voi kokea kaikissa vivahteissaan.</p><p>Esityksen kautta voi tunnistaa kuormitusta kerryttäviä asioita ja se haastaa myös pohtimaan, miten omaa reppuaan voisi keventää. Esitys perustuu Maria Viljan samannimiseen kirjaan ja se ohjaa tunnistamaan ja arvostamaan herkkyyttä, joka ilmiönä koskettaa valtavan suurta ihmisjoukkoa. Pelkästään erityisherkkiä on ihmisistä 15–20 prosenttia.</p><p>Ohjaus, dramatisointi, lavastus ja nukenrakennus: Maria-Elina Koivula<br>Apulaisohjaaja: Perrine Ferrafiat<br>Valosuunnittelu: Jere Suontausta<br>Äänisuunnittelu: Roosa Halme<br>Esiintyjät: Linda Lemmetty, Mila Nirhamo, Maria-Elina Koivula<br>Kuvat: Pauli Tapola</p><p>Ikäsuositus: 5 v +<br>Kesto: 30–40 min<br>Kieli: suomi<br>Maksuton<br>Varhaiskasvatuksen ryhmien paikkavaraus: kultus.hel.fi 15.8. alkaen</p><p>Esitystä ovat tukeneet: Otto A. Malmin lahjoitusrahasto, Jenny ja Antti Wihurin rahasto, Suomen kulttuurirahasto, Metropolitan Puppets ry, Aura of Puppets</p>", "sv": "<p>Den osynliga ryggsäcken är en fräsch, munter och djup dockteatersaga om barnets speciella sätt att uppleva världen.</p><p>Rosali har en ryggsäck, som inte är någon vanlig ryggsäck. Den är osynlig. I ryggsäcken samlar Rosali allt som hon under dagen upplever tillsammans med sina griskompisar. Men ibland blir ryggsäcken överfull, och då kan vad som helst hända! Lyckligtvis kan Rosalis pappa andas på ett sätt som gör en lugn.</p><p>Känslighet har synts ganska lite i barnkulturen, fastän det pratas om den stress som barnen upplever både i hemmen och inom småbarnspedagogiken. Genom dockteatern får de upplevelser som anknyter till känsligheten en form: En kliande söm i tröjan, fågelkvitter, rabalder, solsken och annat i ryggsäcken väcks till liv. Känsligheten är också en superkraft genom vilken man kan uppleva livet i alla dess skiftningar. <br> <br>Genom föreställningen kan man känna igen sådant som kan orsaka stress, och den utmanar oss också att fundera på hur vi kan göra vår egen ryggsäck lättare. Föreställningen baserar sig på Maria Viljas bok med samma namn och leder oss att känna igen och uppskatta känslighet, som är ett fenomen som berör väldigt många. Bara de högkänsliga utgör 15–20 procent av befolkningen.</p><p>Regi, dramatisering, iscensättning och dockbyggande Maria-Elina Koivula<br>Assisterande regissör: Perrine Ferrafiat<br>Ljusdesign: Jere Suontausta<br>Ljudplanering: Roosa Halme<br>På scenen: Linda Lemmetty, Mila Nirhamo, Maria-Elina Koivula<br>Foton: Pauli Tapola<br> <br>Åldersrekommendation: 5 år +<br>Längd: 30–40 min<br>Språk: finska<br>Avgiftsfritt<br>Platsbokning för grupper inom småbarnspedagogiken: kultus.hel.fi från 15.8.</p><p>Föreställningen har fått stöd av: Otto A. Malms donationsfond, Jenny ja Antti Wihurin rahasto, Finska kulturfonden, Metropolitan Puppets ry, Aura of Puppets</p>", "en": "<p>Näkymätön reppu is a fresh, jubilant and deep puppet theatre show about a sensitive child’s peculiar way of experiencing the world.</p><p>Rosali has a backpack that’s not quite usual. It’s invisible! In her backpack, Rosali stores everything she and her piglet friend experience during the day. Sometimes, her backpack gets too full, and then anything can happen! Luckily, Rosali’s Dad has a way of breathing that makes her feel calm.</p><p>Sensitivity is seen quite rarely in children’s culture even when the stress levels of children are a common topic at homes and in early childhood education. The experiences related to sensitivity gain a new form through the means of puppet theatre: An itchy shirt seam, bird song, general noise, a sunbeam and other contents of the backpack come to life. Sensitivity is also a superpower that allows experiencing life in all its colours and shades. <br> <br>The performance may help recognise issues that add to stress and it also challenges to think about how you could lighten your own backpack. The show is based on a book of the same name by Maria Vilja, and it helps to identify and appreciate sensitivity, a phenomenon that touches a large group of people. The description of Highly Sensitive People alone applies to about 15–20% of people.</p><p>Direction, dramatisation, staging and puppet-making: Maria-Elina Koivula<br>Assistant Director: Perrine Ferrafiat<br>Lighting: Jere Suontausta<br>Sound design: Roosa Halme<br>Performers: Linda Lemmetty, Mila Nirhamo, Maria-Elina Koivula<br>Images: Pauli Tapola<br> <br>Recommended age: 5+<br>Duration: 30–40 minutes<br>Language: Finnish<br>Free of charge<br>Bookings for early childhood education groups: kultus.hel.fi, starting 15 August</p><p>The show is supported by: The Otto A. Malm Foundation, Jenny and Antti Wihuri Foundation, Finnish Cultural Foundation, Metropolitan Puppets ry, Aura of Puppets</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F6FB69F83075CF755FBCA94AE881FB27/Poiesis-kollektiivi_Nakymaton_reppu", "sv": "http://www.annantalo.fi/sv/evenemang/event/F6FB69F83075CF755FBCA94AE881FB27/Poiesis-kollektivet_Den_osynliga_ryggsacken", "en": "http://www.annantalo.fi/en/events/event/F6FB69F83075CF755FBCA94AE881FB27/Poiesis_collective_Nakymaton_reppu_Invisible_backpack" }, "name": { "fi": "Poiesis-kollektiivi: Näkymätön reppu – ilmoittautuminen kultus.hel.fi", "sv": "Poiesis-kollektivet: Den osynliga ryggsäcken – pllatsbokning kultus.hel.fi", "en": "Poiesis collective: Näkymätön reppu – Invisible backpack – bookings kultus.hel.fi" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66838/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66837", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1475653, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-13T10:15:21.208854Z", "last_modified_time": "2025-08-13T10:15:21.208874Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776104.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1475653/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-13T10:15:21.061870Z", "last_modified_time": "2025-08-13T10:15:21.405559Z", "date_published": null, "start_time": "2025-09-17T06:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Näkymätön reppu on raikas, riehakas ja syvällinen nukketeatterisatu herkän lapsen omaperäisestä tavasta kokea maailmaa.", "sv": "Den osynliga ryggsäcken är en fräsch, munter och djup dockteatersaga om barnets speciella sätt att uppleva världen.", "en": "Näkymätön reppu is a fresh, jubilant and deep puppet theatre show about a sensitive child’s peculiar way of experiencing the world." }, "description": { "fi": "<p>Näkymätön reppu on raikas, riehakas ja syvällinen nukketeatterisatu herkän lapsen omaperäisestä tavasta kokea maailmaa.</p><p>Rosalilla on reppu, joka ei olekaan ihan tavallinen. Se on näkymätön. Reppuun Rosali kerää kaikkea sitä, mitä hän päivän aikana kokee possuystävänsä kanssa. Joskus reppu tulee kuitenkin liian täyteen, ja silloin saattaa tapahtua ihan mitä tahansa! Onneksi Rosalin Isällä on sellainen hengitys, joka saa olon rauhoittumaan.</p><p>Herkkyys on näkynyt lastenkulttuurissa melko vähän, vaikka lasten kuormittuminen puhuttaa kodeissa ja varhaiskasvatuksessa. Nukketeatterin keinoilla herkkyyteen liittyvät kokemukset saavat muodon: Kutittava paidansauma, linnun sirkutus, älämölö, auringonsäde ja muu repun sisältö heräävät eloon. Herkkyys on myös supervoima, jonka avulla elämän voi kokea kaikissa vivahteissaan.</p><p>Esityksen kautta voi tunnistaa kuormitusta kerryttäviä asioita ja se haastaa myös pohtimaan, miten omaa reppuaan voisi keventää. Esitys perustuu Maria Viljan samannimiseen kirjaan ja se ohjaa tunnistamaan ja arvostamaan herkkyyttä, joka ilmiönä koskettaa valtavan suurta ihmisjoukkoa. Pelkästään erityisherkkiä on ihmisistä 15–20 prosenttia.</p><p>Ohjaus, dramatisointi, lavastus ja nukenrakennus: Maria-Elina Koivula<br>Apulaisohjaaja: Perrine Ferrafiat<br>Valosuunnittelu: Jere Suontausta<br>Äänisuunnittelu: Roosa Halme<br>Esiintyjät: Linda Lemmetty, Mila Nirhamo, Maria-Elina Koivula<br>Kuvat: Pauli Tapola</p><p>Ikäsuositus: 5 v +<br>Kesto: 30–40 min<br>Kieli: suomi<br>Maksuton<br>Varhaiskasvatuksen ryhmien paikkavaraus: kultus.hel.fi 15.8. alkaen</p><p>Esitystä ovat tukeneet: Otto A. Malmin lahjoitusrahasto, Jenny ja Antti Wihurin rahasto, Suomen kulttuurirahasto, Metropolitan Puppets ry, Aura of Puppets</p>", "sv": "<p>Den osynliga ryggsäcken är en fräsch, munter och djup dockteatersaga om barnets speciella sätt att uppleva världen.</p><p>Rosali har en ryggsäck, som inte är någon vanlig ryggsäck. Den är osynlig. I ryggsäcken samlar Rosali allt som hon under dagen upplever tillsammans med sina griskompisar. Men ibland blir ryggsäcken överfull, och då kan vad som helst hända! Lyckligtvis kan Rosalis pappa andas på ett sätt som gör en lugn.</p><p>Känslighet har synts ganska lite i barnkulturen, fastän det pratas om den stress som barnen upplever både i hemmen och inom småbarnspedagogiken. Genom dockteatern får de upplevelser som anknyter till känsligheten en form: En kliande söm i tröjan, fågelkvitter, rabalder, solsken och annat i ryggsäcken väcks till liv. Känsligheten är också en superkraft genom vilken man kan uppleva livet i alla dess skiftningar. <br> <br>Genom föreställningen kan man känna igen sådant som kan orsaka stress, och den utmanar oss också att fundera på hur vi kan göra vår egen ryggsäck lättare. Föreställningen baserar sig på Maria Viljas bok med samma namn och leder oss att känna igen och uppskatta känslighet, som är ett fenomen som berör väldigt många. Bara de högkänsliga utgör 15–20 procent av befolkningen.</p><p>Regi, dramatisering, iscensättning och dockbyggande Maria-Elina Koivula<br>Assisterande regissör: Perrine Ferrafiat<br>Ljusdesign: Jere Suontausta<br>Ljudplanering: Roosa Halme<br>På scenen: Linda Lemmetty, Mila Nirhamo, Maria-Elina Koivula<br>Foton: Pauli Tapola<br> <br>Åldersrekommendation: 5 år +<br>Längd: 30–40 min<br>Språk: finska<br>Avgiftsfritt<br>Platsbokning för grupper inom småbarnspedagogiken: kultus.hel.fi från 15.8.</p><p>Föreställningen har fått stöd av: Otto A. Malms donationsfond, Jenny ja Antti Wihurin rahasto, Finska kulturfonden, Metropolitan Puppets ry, Aura of Puppets</p>", "en": "<p>Näkymätön reppu is a fresh, jubilant and deep puppet theatre show about a sensitive child’s peculiar way of experiencing the world.</p><p>Rosali has a backpack that’s not quite usual. It’s invisible! In her backpack, Rosali stores everything she and her piglet friend experience during the day. Sometimes, her backpack gets too full, and then anything can happen! Luckily, Rosali’s Dad has a way of breathing that makes her feel calm.</p><p>Sensitivity is seen quite rarely in children’s culture even when the stress levels of children are a common topic at homes and in early childhood education. The experiences related to sensitivity gain a new form through the means of puppet theatre: An itchy shirt seam, bird song, general noise, a sunbeam and other contents of the backpack come to life. Sensitivity is also a superpower that allows experiencing life in all its colours and shades. <br> <br>The performance may help recognise issues that add to stress and it also challenges to think about how you could lighten your own backpack. The show is based on a book of the same name by Maria Vilja, and it helps to identify and appreciate sensitivity, a phenomenon that touches a large group of people. The description of Highly Sensitive People alone applies to about 15–20% of people.</p><p>Direction, dramatisation, staging and puppet-making: Maria-Elina Koivula<br>Assistant Director: Perrine Ferrafiat<br>Lighting: Jere Suontausta<br>Sound design: Roosa Halme<br>Performers: Linda Lemmetty, Mila Nirhamo, Maria-Elina Koivula<br>Images: Pauli Tapola<br> <br>Recommended age: 5+<br>Duration: 30–40 minutes<br>Language: Finnish<br>Free of charge<br>Bookings for early childhood education groups: kultus.hel.fi, starting 15 August</p><p>The show is supported by: The Otto A. Malm Foundation, Jenny and Antti Wihuri Foundation, Finnish Cultural Foundation, Metropolitan Puppets ry, Aura of Puppets</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/64645EB1E873691D09365066788E7C19/Poiesis-kollektiivi_Nakymaton_reppu", "sv": "http://www.annantalo.fi/sv/evenemang/event/64645EB1E873691D09365066788E7C19/Poiesis-kollektivet_Den_osynliga_ryggsacken", "en": "http://www.annantalo.fi/en/events/event/64645EB1E873691D09365066788E7C19/Poiesis_collective_Nakymaton_reppu_Invisible_backpack" }, "name": { "fi": "Poiesis-kollektiivi: Näkymätön reppu – ilmoittautuminen kultus.hel.fi", "sv": "Poiesis-kollektivet: Den osynliga ryggsäcken – pllatsbokning kultus.hel.fi", "en": "Poiesis collective: Näkymätön reppu – Invisible backpack – bookings kultus.hel.fi" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66837/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66839", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1475652, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-13T10:15:20.295503Z", "last_modified_time": "2025-08-13T10:15:20.295527Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776103.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1475652/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-13T10:15:20.158071Z", "last_modified_time": "2025-08-13T10:15:20.509892Z", "date_published": null, "start_time": "2025-09-16T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Näkymätön reppu on raikas, riehakas ja syvällinen nukketeatterisatu herkän lapsen omaperäisestä tavasta kokea maailmaa.", "sv": "Den osynliga ryggsäcken är en fräsch, munter och djup dockteatersaga om barnets speciella sätt att uppleva världen.", "en": "Näkymätön reppu is a fresh, jubilant and deep puppet theatre show about a sensitive child’s peculiar way of experiencing the world" }, "description": { "fi": "<p>Näkymätön reppu on raikas, riehakas ja syvällinen nukketeatterisatu herkän lapsen omaperäisestä tavasta kokea maailmaa.</p><p>Rosalilla on reppu, joka ei olekaan ihan tavallinen. Se on näkymätön. Reppuun Rosali kerää kaikkea sitä, mitä hän päivän aikana kokee possuystävänsä kanssa. Joskus reppu tulee kuitenkin liian täyteen, ja silloin saattaa tapahtua ihan mitä tahansa! Onneksi Rosalin Isällä on sellainen hengitys, joka saa olon rauhoittumaan.</p><p>Herkkyys on näkynyt lastenkulttuurissa melko vähän, vaikka lasten kuormittuminen puhuttaa kodeissa ja varhaiskasvatuksessa. Nukketeatterin keinoilla herkkyyteen liittyvät kokemukset saavat muodon: Kutittava paidansauma, linnun sirkutus, älämölö, auringonsäde ja muu repun sisältö heräävät eloon. Herkkyys on myös supervoima, jonka avulla elämän voi kokea kaikissa vivahteissaan.</p><p>Esityksen kautta voi tunnistaa kuormitusta kerryttäviä asioita ja se haastaa myös pohtimaan, miten omaa reppuaan voisi keventää. Esitys perustuu Maria Viljan samannimiseen kirjaan ja se ohjaa tunnistamaan ja arvostamaan herkkyyttä, joka ilmiönä koskettaa valtavan suurta ihmisjoukkoa. Pelkästään erityisherkkiä on ihmisistä 15–20 prosenttia.</p><p>Ohjaus, dramatisointi, lavastus ja nukenrakennus: Maria-Elina Koivula<br>Apulaisohjaaja: Perrine Ferrafiat<br>Valosuunnittelu: Jere Suontausta<br>Äänisuunnittelu: Roosa Halme<br>Esiintyjät: Linda Lemmetty, Mila Nirhamo, Maria-Elina Koivula<br>Kuvat: Pauli Tapola</p><p>Ikäsuositus: 5 v +<br>Kesto: 30–40 min<br>Kieli: suomi<br>Maksuton<br>Varhaiskasvatuksen ryhmien paikkavaraus: kultus.hel..fi 15.8. alkaen.</p><p>Esitystä ovat tukeneet: Otto A. Malmin lahjoitusrahasto, Jenny ja Antti Wihurin rahasto, Suomen kulttuurirahasto, Metropolitan Puppets ry, Aura of Puppets</p>", "sv": "<p>Den osynliga ryggsäcken är en fräsch, munter och djup dockteatersaga om barnets speciella sätt att uppleva världen.</p><p>Rosali har en ryggsäck, som inte är någon vanlig ryggsäck. Den är osynlig. I ryggsäcken samlar Rosali allt som hon under dagen upplever tillsammans med sina griskompisar. Men ibland blir ryggsäcken överfull, och då kan vad som helst hända! Lyckligtvis kan Rosalis pappa andas på ett sätt som gör en lugn.<br>Känslighet har synts ganska lite i barnkulturen, fastän det pratas om den stress som barnen upplever både i hemmen och inom småbarnspedagogiken. Genom dockteatern får de upplevelser som anknyter till känsligheten en form: En kliande söm i tröjan, fågelkvitter, rabalder, solsken och annat i ryggsäcken väcks till liv. Känsligheten är också en superkraft genom vilken man kan uppleva livet i alla dess skiftningar. <br> <br>Genom föreställningen kan man känna igen sådant som kan orsaka stress, och den utmanar oss också att fundera på hur vi kan göra vår egen ryggsäck lättare. Föreställningen baserar sig på Maria Viljas bok med samma namn och leder oss att känna igen och uppskatta känslighet, som är ett fenomen som berör väldigt många. Bara de högkänsliga utgör 15–20 procent av befolkningen.</p><p>Regi, dramatisering, iscensättning och dockbyggande Maria-Elina Koivula<br>Assisterande regissör: Perrine Ferrafiat<br>Ljusdesign: Jere Suontausta<br>Ljudplanering: Roosa Halme<br>På scenen: Linda Lemmetty, Mila Nirhamo, Maria-Elina Koivula<br>Foton: Pauli Tapola<br> <br>Åldersrekommendation: 5 år +<br>Längd: 30–40 min<br>Språk: finska<br>Avgiftsfritt<br>Platsbokning för grupper inom småbarnspedagogiken: kultus.hel.fi från 15.8.</p><p>Föreställningen har fått stöd av: Otto A. Malms donationsfond, Jenny ja Antti Wihurin rahasto, Finska kulturfonden, Metropolitan Puppets ry, Aura of Puppets</p>", "en": "<p>Näkymätön reppu is a fresh, jubilant and deep puppet theatre show about a sensitive child’s peculiar way of experiencing the world</p><p>Rosali has a backpack that’s not quite usual. It’s invisible! In her backpack, Rosali stores everything she and her piglet friend experience during the day. Sometimes, her backpack gets too full, and then anything can happen! Luckily, Rosali’s Dad has a way of breathing that makes her feel calm.<br>Sensitivity is seen quite rarely in children’s culture even when the stress levels of children are a common topic at homes and in early childhood education. The experiences related to sensitivity gain a new form through the means of puppet theatre: An itchy shirt seam, bird song, general noise, a sunbeam and other contents of the backpack come to life. Sensitivity is also a superpower that allows experiencing life in all its colours and shades. <br> <br>The performance may help recognise issues that add to stress and it also challenges to think about how you could lighten your own backpack. The show is based on a book of the same name by Maria Vilja, and it helps to identify and appreciate sensitivity, a phenomenon that touches a large group of people. The description of Highly Sensitive People alone applies to about 15–20% of people.</p><p>Direction, dramatisation, staging and puppet-making: Maria-Elina Koivula<br>Assistant Director: Perrine Ferrafiat<br>Lighting: Jere Suontausta<br>Sound design: Roosa Halme<br>Performers: Linda Lemmetty, Mila Nirhamo, Maria-Elina Koivula<br>Images: Pauli Tapola<br> <br>Recommended age: 5+<br>Duration: 30–40 minutes<br>Language: Finnish<br>Free of charge<br>Bookings for early childhood education groups: kultus.hel.fi, starting 15 August</p><p>The show is supported by: The Otto A. Malm Foundation, Jenny and Antti Wihuri Foundation, Finnish Cultural Foundation, Metropolitan Puppets ry, Aura of Puppets</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8800474FB3A44A842D91A91A9AEDFEB9/Poiesis-kollektiivi_Nakymaton_reppu_", "sv": "http://www.annantalo.fi/sv/evenemang/event/8800474FB3A44A842D91A91A9AEDFEB9/Poiesis-kollektivet_Den_osynliga_ryggsacken", "en": "http://www.annantalo.fi/en/events/event/8800474FB3A44A842D91A91A9AEDFEB9/Poiesis_collective_Nakymaton_reppu_Invisible_backpack" }, "name": { "fi": "Poiesis-kollektiivi: Näkymätön reppu – ilmoittautuminen kultus.hel.fi", "sv": "Poiesis-kollektivet: Den osynliga ryggsäcken – platsbokning kultus.hel.fi", "en": "Poiesis collective: Näkymätön reppu – Invisible backpack – bookings at kultus.hel.fi" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66839/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66836", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1475651, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-13T10:15:19.761599Z", "last_modified_time": "2025-08-13T10:15:19.761620Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776102.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1475651/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-13T10:15:19.601996Z", "last_modified_time": "2025-08-13T10:15:19.984561Z", "date_published": null, "start_time": "2025-09-16T06:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Näkymätön reppu on raikas, riehakas ja syvällinen nukketeatterisatu herkän lapsen omaperäisestä tavasta kokea maailmaa.", "sv": "Den osynliga ryggsäcken är en fräsch, munter och djup dockteatersaga om barnets speciella sätt att uppleva världen.", "en": "Näkymätön reppu is a fresh, jubilant and deep puppet theatre show about a sensitive child’s peculiar way of experiencing the world" }, "description": { "fi": "<p>Näkymätön reppu on raikas, riehakas ja syvällinen nukketeatterisatu herkän lapsen omaperäisestä tavasta kokea maailmaa.</p><p>Rosalilla on reppu, joka ei olekaan ihan tavallinen. Se on näkymätön. Reppuun Rosali kerää kaikkea sitä, mitä hän päivän aikana kokee possuystävänsä kanssa. Joskus reppu tulee kuitenkin liian täyteen, ja silloin saattaa tapahtua ihan mitä tahansa! Onneksi Rosalin Isällä on sellainen hengitys, joka saa olon rauhoittumaan.</p><p>Herkkyys on näkynyt lastenkulttuurissa melko vähän, vaikka lasten kuormittuminen puhuttaa kodeissa ja varhaiskasvatuksessa. Nukketeatterin keinoilla herkkyyteen liittyvät kokemukset saavat muodon: Kutittava paidansauma, linnun sirkutus, älämölö, auringonsäde ja muu repun sisältö heräävät eloon. Herkkyys on myös supervoima, jonka avulla elämän voi kokea kaikissa vivahteissaan.</p><p>Esityksen kautta voi tunnistaa kuormitusta kerryttäviä asioita ja se haastaa myös pohtimaan, miten omaa reppuaan voisi keventää. Esitys perustuu Maria Viljan samannimiseen kirjaan ja se ohjaa tunnistamaan ja arvostamaan herkkyyttä, joka ilmiönä koskettaa valtavan suurta ihmisjoukkoa. Pelkästään erityisherkkiä on ihmisistä 15–20 prosenttia.</p><p>Ohjaus, dramatisointi, lavastus ja nukenrakennus: Maria-Elina Koivula<br>Apulaisohjaaja: Perrine Ferrafiat<br>Valosuunnittelu: Jere Suontausta<br>Äänisuunnittelu: Roosa Halme<br>Esiintyjät: Linda Lemmetty, Mila Nirhamo, Maria-Elina Koivula<br>Kuvat: Pauli Tapola</p><p>Ikäsuositus: 5 v +<br>Kesto: 30–40 min<br>Kieli: suomi<br>Maksuton<br>Varhaiskasvatuksen ryhmien paikkavaraus: kultus.hel..fi 15.8. alkaen.</p><p>Esitystä ovat tukeneet: Otto A. Malmin lahjoitusrahasto, Jenny ja Antti Wihurin rahasto, Suomen kulttuurirahasto, Metropolitan Puppets ry, Aura of Puppets</p>", "sv": "<p>Den osynliga ryggsäcken är en fräsch, munter och djup dockteatersaga om barnets speciella sätt att uppleva världen.</p><p>Rosali har en ryggsäck, som inte är någon vanlig ryggsäck. Den är osynlig. I ryggsäcken samlar Rosali allt som hon under dagen upplever tillsammans med sina griskompisar. Men ibland blir ryggsäcken överfull, och då kan vad som helst hända! Lyckligtvis kan Rosalis pappa andas på ett sätt som gör en lugn.<br>Känslighet har synts ganska lite i barnkulturen, fastän det pratas om den stress som barnen upplever både i hemmen och inom småbarnspedagogiken. Genom dockteatern får de upplevelser som anknyter till känsligheten en form: En kliande söm i tröjan, fågelkvitter, rabalder, solsken och annat i ryggsäcken väcks till liv. Känsligheten är också en superkraft genom vilken man kan uppleva livet i alla dess skiftningar. <br> <br>Genom föreställningen kan man känna igen sådant som kan orsaka stress, och den utmanar oss också att fundera på hur vi kan göra vår egen ryggsäck lättare. Föreställningen baserar sig på Maria Viljas bok med samma namn och leder oss att känna igen och uppskatta känslighet, som är ett fenomen som berör väldigt många. Bara de högkänsliga utgör 15–20 procent av befolkningen.</p><p>Regi, dramatisering, iscensättning och dockbyggande Maria-Elina Koivula<br>Assisterande regissör: Perrine Ferrafiat<br>Ljusdesign: Jere Suontausta<br>Ljudplanering: Roosa Halme<br>På scenen: Linda Lemmetty, Mila Nirhamo, Maria-Elina Koivula<br>Foton: Pauli Tapola<br> <br>Åldersrekommendation: 5 år +<br>Längd: 30–40 min<br>Språk: finska<br>Avgiftsfritt<br>Platsbokning för grupper inom småbarnspedagogiken: kultus.hel.fi från 15.8.</p><p>Föreställningen har fått stöd av: Otto A. Malms donationsfond, Jenny ja Antti Wihurin rahasto, Finska kulturfonden, Metropolitan Puppets ry, Aura of Puppets</p>", "en": "<p>Näkymätön reppu is a fresh, jubilant and deep puppet theatre show about a sensitive child’s peculiar way of experiencing the world</p><p>Rosali has a backpack that’s not quite usual. It’s invisible! In her backpack, Rosali stores everything she and her piglet friend experience during the day. Sometimes, her backpack gets too full, and then anything can happen! Luckily, Rosali’s Dad has a way of breathing that makes her feel calm.<br>Sensitivity is seen quite rarely in children’s culture even when the stress levels of children are a common topic at homes and in early childhood education. The experiences related to sensitivity gain a new form through the means of puppet theatre: An itchy shirt seam, bird song, general noise, a sunbeam and other contents of the backpack come to life. Sensitivity is also a superpower that allows experiencing life in all its colours and shades. <br> <br>The performance may help recognise issues that add to stress and it also challenges to think about how you could lighten your own backpack. The show is based on a book of the same name by Maria Vilja, and it helps to identify and appreciate sensitivity, a phenomenon that touches a large group of people. The description of Highly Sensitive People alone applies to about 15–20% of people.</p><p>Direction, dramatisation, staging and puppet-making: Maria-Elina Koivula<br>Assistant Director: Perrine Ferrafiat<br>Lighting: Jere Suontausta<br>Sound design: Roosa Halme<br>Performers: Linda Lemmetty, Mila Nirhamo, Maria-Elina Koivula<br>Images: Pauli Tapola<br> <br>Recommended age: 5+<br>Duration: 30–40 minutes<br>Language: Finnish<br>Free of charge<br>Bookings for early childhood education groups: kultus.hel.fi, starting 15 August</p><p>The show is supported by: The Otto A. Malm Foundation, Jenny and Antti Wihuri Foundation, Finnish Cultural Foundation, Metropolitan Puppets ry, Aura of Puppets</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FA3E1F269719670DD9FAC3471E3CD958/Poiesis-kollektiivi_Nakymaton_reppu_", "sv": "http://www.annantalo.fi/sv/evenemang/event/FA3E1F269719670DD9FAC3471E3CD958/Poiesis-kollektivet_Den_osynliga_ryggsacken", "en": "http://www.annantalo.fi/en/events/event/FA3E1F269719670DD9FAC3471E3CD958/Poiesis_collective_Nakymaton_reppu_Invisible_backpack" }, "name": { "fi": "Poiesis-kollektiivi: Näkymätön reppu – ilmoittautuminen kultus.hel.fi", "sv": "Poiesis-kollektivet: Den osynliga ryggsäcken – platsbokning kultus.hel.fi", "en": "Poiesis collective: Näkymätön reppu – Invisible backpack – bookings at kultus.hel.fi" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66836/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66693", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1203860, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-07T14:14:10.641766Z", "last_modified_time": "2025-07-07T14:14:10.641790Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774644.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203860/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-07T14:14:10.518437Z", "last_modified_time": "2025-08-13T10:15:13.812628Z", "date_published": null, "start_time": "2025-08-30T10:00:00Z", "end_time": "2025-08-30T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Festivaalin toinen päivä on täynnä palestiinalaiseen kulttuuriin liittyviä työpajoja, ruokaa, runoutta ja taidetta!", "sv": "Festivalens andra dag är full av verkstäder, mat, poesi och konst med anknytning till den palestinska kulturen.", "en": "The second day of the festival will be full of workshops, food, poetry and art related to Palestinian culture!" }, "description": { "fi": "<p>Festivaalin toinen päivä on täynnä palestiinalaiseen kulttuuriin liittyviä työpajoja, ruokaa, runoutta ja taidetta!</p><p><b>Ohjelmassa mm:</b> <br>• Tatreez-työpaja: Tutustumme palestiinalaiseen kirjontaperinteeseen ja sen symboliikkaan.<br>• Ruoka: Nautimme palestiinalaisen keittiön mauista, jotka kertovat alueen historiasta ja elämäntavasta.<br>• Elävä kirjasto: vierailijat voivat \"lainata\" palestiinalaisia ja kuulla heidän tarinoitaan.<br>• Crafts4Gaza: Käsitöitä<br>• Hennaajat<br>• Lapsille Crafts4Gaza-askartelunurkka ja piirrustus</p><p><b>Päivän ohjelma Kino Caisassa:</b></p><p><b>klo 13.30 Kirjailijavieras ja keskustelutilaisuus</b><br>Keskustelemme palestiinalaisesta kirjallisuudesta ja historiasta. Kirjailijavieras haastattelussa. Kirjailijavieraana amerikkalaispalestiinalainen Khalil Abu Sharekh ja suomalais-palestiinalainen kirjailija Irene Zidan.<br>Kesto: 1 tunti<br>Kieli: suomi</p><p><b>klo 16.00 Luento: aiheena tatreez ja palestiinalainen kulttuuriperintö </b><br>Kesto: 45min<br>Kielet: englanti / suomi</p><p><b>Päivän ohjelma Caisan Salissa:</p><p>klo 14.45 Spoken word-runotilaisuus</b><br>Esitämme palestiinalaisia runoja sekä alkuperäiskielellä että käännöksinä. Mukana myös Suomessa asuvia palestiinalaisrunoilijoita. <br>Kesto: 1 tunti <br> <br><b>klo 17 Muotinäytös</b><br>Lavalla esitellään perinteisiä palestiinalaisia asuja ja niiden tarinat. <br>Kesto: 45-60min</p><p><b>klo 18.15 Dabke-esitys ja tanssityöpaja - Al Huriyat</b><br>Opimme perinteisen dabke-tanssin askeleet ja sen merkityksen kulttuurissa. <br>Kesto: 1,5 tuntia</p><p><b>klo 20 Musiikkiesitys: Meera & Band</b><br>Liput 15 € / 7 €</p><p>Tapahtuma on maksuton, ainoastaan illan konserttiin on maksulliset pääsyliput.</p>", "sv": "<p>Festivalens andra dag är full av verkstäder, mat, poesi och konst med anknytning till den palestinska kulturen.</p><p><b>Programmet består bland annat av:</b><br>• Tatreez-verkstad: Vi får lära oss om den palestinska broderitraditionen och dess symbolik.<br>• Mat: Vi njuter av smakerna från det palestinska köket som berättar om områdets historia och livsstil.<br>• Levande bibliotek: besökarna kan ”låna” palestinier och höra deras berättelser.<br>• Crafts4Gaza: Hantverk<br>• Hennafärgning<br>• Crafts4Gaza pysselhörna och teckning för barn</p><p><b>Dagens program i Kino Caisa:</b></p><p><b>kl. 13.30 Författargäst och diskussionstillfälle</b><br>Vi diskuterar palestinsk litteratur och historia. Intervju med en författargäst. <br>Längd: 1 timme<br>Språk: finska</p><p><b>16.00 Föreläsning med temat tatreez och det palestinska kulturarvet</b><br>Längd: 45 minuter<br>Språk: engelska/finska</p><p><b>Dagens program i Caisas sal:</b></p><p><b>kl. 14.45 Poesievenemanget Spoken word</b><br>Vi presenterar palestinska dikter både på originalspråket och i översättning. <br>Palestinska poeter som bor i Finland deltar också. <br>Längd: 1 timme</p><p><b>kl. 17 Modevisning</b><br>Traditionella palestinska dräkter och deras historier presenteras på scenen. <br>Längd: 45–60 minuter</p><p><b>kl. 18.15 Dabke-föreställning och dansverkstad – Al Huriyat</b><br>Vi lär oss stegen i den traditionella dansen dabke och dess betydelse i kulturen. <br>Längd: 1,5 timmar</p><p><b>kl. 20.00 Musikföreställning: Meera & The Band</b><br>Biljetter: 15€ / 7€</p>", "en": "<p>The second day of the festival will be full of workshops, food, poetry and art related to Palestinian culture!</p><p><b>The programme includes events such as:</b><br>• Tatreez workshop: we will delve into the Palestinian embroidery tradition and its symbolism.<br>• Food: we will enjoy tastes of Palestinian cuisine, which tell us about the history and way of life of the region.<br>• Living library: visitors can “borrow” Palestinians and hear their stories.<br>• Crafts4Gaza: handicrafts<br>• Henna artists<br>• For children: Crafts4Gaza arts and crafts corner and drawing</p><p><b>The day’s programme at Kino Caisa:</b></p><p><b>13.30 Author guest and discussion</b><br>We will discuss Palestinian literature and history. Interview with an author guest. <br>Duration: 1 hour<br>Language: Finnish</p><p><b>16.00 Lecture: tatreez and Palestinian cultural heritage</b> <br>Duration: 45 min<br>Languages: English / Finnish</p><p><b>The day’s programme in Caisa’s Hall:</b></p><p><b>14.45 Spoken word poetry event</b><br>We will recite Palestinian poems in both the original language and as translations. <br>The performers include Palestinian poets living in Finland. <br>Duration: 1 hour</p><p><b>17.00 Fashion show</b><br>The stage show will feature presentations of traditional Palestinian costumes and their stories. <br>Duration: 45–60 min</p><p><b>18.15 Dabke performance and dance workshop – Al Huriyat</b><br>We will learn the steps of the traditional dabke dance and its cultural importance. <br>Duration: 1.5 hours</p><p><b>20.00 Musical performance: Meera & Band</b><br>Tickets: 15 € / 7 €</p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/E62C8CBC7C9B475E0CB50CA76F246CAF/Palestiinalaisen_kulttuurin_festivaali", "sv": "http://www.caisa.fi/sv/evenemang/event/E62C8CBC7C9B475E0CB50CA76F246CAF/Palestinsk_kulturfestival", "en": "http://www.caisa.fi/en/events/event/E62C8CBC7C9B475E0CB50CA76F246CAF/Palestinian_Culture_Festival" }, "name": { "fi": "Palestiinalaisen kulttuurin festivaali", "sv": "Palestinsk kulturfestival", "en": "Palestinian Culture Festival" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66693/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z7odu", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7py4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490115, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-13T09:33:01.316390Z", "last_modified_time": "2025-08-13T09:33:01.316408Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2df29594-117b-4a0c-9bcf-3165b71ca149.png", "name": "", "cropping": "64,0,490,425", "photographer_name": "", "alt_text": "keltaisella pohjalla riemukas lapsilauma laulaa ja askartelee. Tapahtuman otsikko vietnamiksi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490115/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-13T09:41:17.059176Z", "last_modified_time": "2025-08-13T09:41:17.059193Z", "date_published": null, "start_time": "2025-12-07T13:30:00Z", "end_time": "2025-12-07T15: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, "provider": { "fi": "VPF Parenting club", "sv": "VPF Parenting club", "en": "VPF Parenting club" }, "short_description": { "fi": "Tule & nauti lastenkirjoista ja lauluista vietnamiksi lastesi kanssa.", "sv": "Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn.", "en": "Come and enjoy children's books and songs in Vietnamese with your kids." }, "description": { "fi": "<p>Tule & nauti lastenkirjoista ja lauluista vietnamiksi lastesi kanssa. Valituissa tilaisuuksissa lukutuokion jälkeen on kausiteemaista askartelua ja piirtämistä. Valmistelemme joitakin vietnamilaisia lastenkirjoja ja -lauluja, mutta voit vapaasti tuoda oman suosikkisi jaettavaksi muiden kanssa. </p><p>Kuukausittain sunnuntaina klo 16-17.30 Stagella </p><p><br></p><p>Järjestäjänä: VPF Parenting Club</p>", "sv": "<p>Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn.</p><p>Vid utvalda tillfällen ordnas säsongsbetonat pyssel och teckning efter lässtunden.</p><p>Vi förbereder några vietnamesiska barnböcker och sånger, men du är varmt välkommen att ta med din egen favorit att dela med gruppen.</p><p>En gång i månaden på söndagar kl. 16–17.30 på Stage.</p><p>Arrangör: VPF Parenting Club</p>", "en": "<p>Come and enjoy children’s books and songs in Vietnamese with your kids.</p><p>At selected sessions, seasonal-themed crafts and drawing activities will follow the reading time.</p><p>We’ll prepare some Vietnamese children’s books and songs, but feel free to bring your own favorite to share with the group.</p><p>Monthly on Sundays from 4 PM to 5:30 PM on the Stage.</p><p>Organized by: VPF Parenting Club</p>" }, "info_url": null, "name": { "fi": "Vietnaminkielinen luku- ja laulupiiri", "sv": "Vietnamesisk läs- och sångstund", "en": "Vietnamese reading and singing circle" }, "provider_contact_info": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7odu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z7oqi", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7py4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490115, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-13T09:33:01.316390Z", "last_modified_time": "2025-08-13T09:33:01.316408Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2df29594-117b-4a0c-9bcf-3165b71ca149.png", "name": "", "cropping": "64,0,490,425", "photographer_name": "", "alt_text": "keltaisella pohjalla riemukas lapsilauma laulaa ja askartelee. Tapahtuman otsikko vietnamiksi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490115/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-13T09:41:16.901675Z", "last_modified_time": "2025-08-13T09:41:16.901692Z", "date_published": null, "start_time": "2025-11-02T13:30:00Z", "end_time": "2025-11-02T15: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, "provider": { "fi": "VPF Parenting club", "sv": "VPF Parenting club", "en": "VPF Parenting club" }, "short_description": { "fi": "Tule & nauti lastenkirjoista ja lauluista vietnamiksi lastesi kanssa.", "sv": "Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn.", "en": "Come and enjoy children's books and songs in Vietnamese with your kids." }, "description": { "fi": "<p>Tule & nauti lastenkirjoista ja lauluista vietnamiksi lastesi kanssa. Valituissa tilaisuuksissa lukutuokion jälkeen on kausiteemaista askartelua ja piirtämistä. Valmistelemme joitakin vietnamilaisia lastenkirjoja ja -lauluja, mutta voit vapaasti tuoda oman suosikkisi jaettavaksi muiden kanssa. </p><p>Kuukausittain sunnuntaina klo 16-17.30 Stagella </p><p><br></p><p>Järjestäjänä: VPF Parenting Club</p>", "sv": "<p>Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn.</p><p>Vid utvalda tillfällen ordnas säsongsbetonat pyssel och teckning efter lässtunden.</p><p>Vi förbereder några vietnamesiska barnböcker och sånger, men du är varmt välkommen att ta med din egen favorit att dela med gruppen.</p><p>En gång i månaden på söndagar kl. 16–17.30 på Stage.</p><p>Arrangör: VPF Parenting Club</p>", "en": "<p>Come and enjoy children’s books and songs in Vietnamese with your kids.</p><p>At selected sessions, seasonal-themed crafts and drawing activities will follow the reading time.</p><p>We’ll prepare some Vietnamese children’s books and songs, but feel free to bring your own favorite to share with the group.</p><p>Monthly on Sundays from 4 PM to 5:30 PM on the Stage.</p><p>Organized by: VPF Parenting Club</p>" }, "info_url": null, "name": { "fi": "Vietnaminkielinen luku- ja laulupiiri", "sv": "Vietnamesisk läs- och sångstund", "en": "Vietnamese reading and singing circle" }, "provider_contact_info": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7oqi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }