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
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=25
{ "meta": { "count": 25080, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=26", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=24" }, "data": [ { "id": "espoo_le:agnab4pjqa", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pk24/?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": 1491126, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-20T08:47:32.190721Z", "last_modified_time": "2025-10-20T08:47:32.190746Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/20cbcab9-81b0-47bc-bf45-773d0632ba89.png", "cropping": "180,0,639,459", "photographer_name": "", "alt_text": "vesivärejä ja siveltimiä värikkään taustan edessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491126/?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-10-20T09:01:44.411899Z", "last_modified_time": "2025-10-20T09:01:44.411925Z", "date_published": null, "start_time": "2025-11-15T12:00:00Z", "end_time": "2025-11-15T13: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, "description": { "fi": "<p>Lapset oppivat piirtämään ja luomaan omia ainutlaatuisia teoksia. He saavat taiteilla lyijykynillä, väreillä ja vesiväreillä. He oppivat ilmaisemaan mielikuvitustaan turvallisessa ja kannustavassa ympäristössä pitäen samalla hauskaa ja löytäen ehkä uusia ystäviä. </p><p>Ei tarvitse ilmoittautua etukäteen. Tule vain paikalle. </p><p>Tapahtuma on ilmainen. </p><p>Opettajana toimi Arlinsa Azemi Zymberi.</p><p><br></p>", "sv": "<p>Barnen lär sig att rita och skapa sina egna unika konstverk. De får använda pennor, kritor och vattenfärger. De lär sig att uttrycka sin fantasi i en trygg och uppmuntrande miljö samtidigt som de har roligt och kanske får nya vänner. </p><p>Du behöver inte anmäla dig i förväg. Kom bara dit.</p><p>Evenemanget är gratis. </p><p>Arlinsa Azemi Zymberi är läraren.</p>", "en": "<p>Children learn to draw and create their own unique works of art. They get to use pencils, crayons, and watercolors. They learn to express their imagination in a safe and encouraging environment while having fun and perhaps making new friends. </p><p>No need to register in advance. Just come along.</p><p>The event is free of charge. </p><p>Arlinsa Azemi Zymberi is the teacher.</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Piirustuskursseja lapsille 5-12 v", "sv": "Ritkurser för barn i åldern 5–12 år", "en": "Drawing courses for children aged 5-12" }, "location_extra_info": { "fi": "Paja", "sv": "Verkstaden ", "en": "Maker Space" }, "short_description": { "fi": "Lähde taianomaiselle matkalle värien ja mielikuvituksen maailmaan!", "sv": "Ge dig ut på en magisk resa in i en värld full av färger och fantasi!", "en": "Embark on a magical journey into a world of colors and imagination!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pjqa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnab4pj34", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pk24/?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": 1491126, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-20T08:47:32.190721Z", "last_modified_time": "2025-10-20T08:47:32.190746Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/20cbcab9-81b0-47bc-bf45-773d0632ba89.png", "cropping": "180,0,639,459", "photographer_name": "", "alt_text": "vesivärejä ja siveltimiä värikkään taustan edessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491126/?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-10-20T09:01:44.261715Z", "last_modified_time": "2025-10-20T09:01:44.261733Z", "date_published": null, "start_time": "2025-11-08T12:00:00Z", "end_time": "2025-11-08T13: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, "description": { "fi": "<p>Lapset oppivat piirtämään ja luomaan omia ainutlaatuisia teoksia. He saavat taiteilla lyijykynillä, väreillä ja vesiväreillä. He oppivat ilmaisemaan mielikuvitustaan turvallisessa ja kannustavassa ympäristössä pitäen samalla hauskaa ja löytäen ehkä uusia ystäviä. </p><p>Ei tarvitse ilmoittautua etukäteen. Tule vain paikalle. </p><p>Tapahtuma on ilmainen. </p><p>Opettajana toimi Arlinsa Azemi Zymberi.</p><p><br></p>", "sv": "<p>Barnen lär sig att rita och skapa sina egna unika konstverk. De får använda pennor, kritor och vattenfärger. De lär sig att uttrycka sin fantasi i en trygg och uppmuntrande miljö samtidigt som de har roligt och kanske får nya vänner. </p><p>Du behöver inte anmäla dig i förväg. Kom bara dit.</p><p>Evenemanget är gratis. </p><p>Arlinsa Azemi Zymberi är läraren.</p>", "en": "<p>Children learn to draw and create their own unique works of art. They get to use pencils, crayons, and watercolors. They learn to express their imagination in a safe and encouraging environment while having fun and perhaps making new friends. </p><p>No need to register in advance. Just come along.</p><p>The event is free of charge. </p><p>Arlinsa Azemi Zymberi is the teacher.</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Piirustuskursseja lapsille 5-12 v", "sv": "Ritkurser för barn i åldern 5–12 år", "en": "Drawing courses for children aged 5-12" }, "location_extra_info": { "fi": "Paja", "sv": "Verkstaden ", "en": "Maker Space" }, "short_description": { "fi": "Lähde taianomaiselle matkalle värien ja mielikuvituksen maailmaan!", "sv": "Ge dig ut på en magisk resa in i en värld full av färger och fantasi!", "en": "Embark on a magical journey into a world of colors and imagination!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pj34/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnab4pkhq", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pk24/?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": 1491126, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-20T08:47:32.190721Z", "last_modified_time": "2025-10-20T08:47:32.190746Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/20cbcab9-81b0-47bc-bf45-773d0632ba89.png", "cropping": "180,0,639,459", "photographer_name": "", "alt_text": "vesivärejä ja siveltimiä värikkään taustan edessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491126/?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-10-20T09:01:44.138445Z", "last_modified_time": "2025-10-20T09:01:44.138463Z", "date_published": null, "start_time": "2025-11-01T12:00:00Z", "end_time": "2025-11-01T13: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, "description": { "fi": "<p>Lapset oppivat piirtämään ja luomaan omia ainutlaatuisia teoksia. He saavat taiteilla lyijykynillä, väreillä ja vesiväreillä. He oppivat ilmaisemaan mielikuvitustaan turvallisessa ja kannustavassa ympäristössä pitäen samalla hauskaa ja löytäen ehkä uusia ystäviä. </p><p>Ei tarvitse ilmoittautua etukäteen. Tule vain paikalle. </p><p>Tapahtuma on ilmainen. </p><p>Opettajana toimi Arlinsa Azemi Zymberi.</p><p><br></p>", "sv": "<p>Barnen lär sig att rita och skapa sina egna unika konstverk. De får använda pennor, kritor och vattenfärger. De lär sig att uttrycka sin fantasi i en trygg och uppmuntrande miljö samtidigt som de har roligt och kanske får nya vänner. </p><p>Du behöver inte anmäla dig i förväg. Kom bara dit.</p><p>Evenemanget är gratis. </p><p>Arlinsa Azemi Zymberi är läraren.</p>", "en": "<p>Children learn to draw and create their own unique works of art. They get to use pencils, crayons, and watercolors. They learn to express their imagination in a safe and encouraging environment while having fun and perhaps making new friends. </p><p>No need to register in advance. Just come along.</p><p>The event is free of charge. </p><p>Arlinsa Azemi Zymberi is the teacher.</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Piirustuskursseja lapsille 5-12 v", "sv": "Ritkurser för barn i åldern 5–12 år", "en": "Drawing courses for children aged 5-12" }, "location_extra_info": { "fi": "Paja", "sv": "Verkstaden ", "en": "Maker Space" }, "short_description": { "fi": "Lähde taianomaiselle matkalle värien ja mielikuvituksen maailmaan!", "sv": "Ge dig ut på en magisk resa in i en värld full av färger och fantasi!", "en": "Embark on a magical journey into a world of colors and imagination!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pkhq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnab4pkrm", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pk24/?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": 1491126, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-20T08:47:32.190721Z", "last_modified_time": "2025-10-20T08:47:32.190746Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/20cbcab9-81b0-47bc-bf45-773d0632ba89.png", "cropping": "180,0,639,459", "photographer_name": "", "alt_text": "vesivärejä ja siveltimiä värikkään taustan edessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491126/?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-10-20T09:01:43.987258Z", "last_modified_time": "2025-10-20T09:01:43.987279Z", "date_published": null, "start_time": "2025-10-25T11:00:00Z", "end_time": "2025-10-25T12: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, "description": { "fi": "<p>Lapset oppivat piirtämään ja luomaan omia ainutlaatuisia teoksia. He saavat taiteilla lyijykynillä, väreillä ja vesiväreillä. He oppivat ilmaisemaan mielikuvitustaan turvallisessa ja kannustavassa ympäristössä pitäen samalla hauskaa ja löytäen ehkä uusia ystäviä. </p><p>Ei tarvitse ilmoittautua etukäteen. Tule vain paikalle. </p><p>Tapahtuma on ilmainen. </p><p>Opettajana toimi Arlinsa Azemi Zymberi.</p><p><br></p>", "sv": "<p>Barnen lär sig att rita och skapa sina egna unika konstverk. De får använda pennor, kritor och vattenfärger. De lär sig att uttrycka sin fantasi i en trygg och uppmuntrande miljö samtidigt som de har roligt och kanske får nya vänner. </p><p>Du behöver inte anmäla dig i förväg. Kom bara dit.</p><p>Evenemanget är gratis. </p><p>Arlinsa Azemi Zymberi är läraren.</p>", "en": "<p>Children learn to draw and create their own unique works of art. They get to use pencils, crayons, and watercolors. They learn to express their imagination in a safe and encouraging environment while having fun and perhaps making new friends. </p><p>No need to register in advance. Just come along.</p><p>The event is free of charge. </p><p>Arlinsa Azemi Zymberi is the teacher.</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Piirustuskursseja lapsille 5-12 v", "sv": "Ritkurser för barn i åldern 5–12 år", "en": "Drawing courses for children aged 5-12" }, "location_extra_info": { "fi": "Paja", "sv": "Verkstaden ", "en": "Maker Space" }, "short_description": { "fi": "Lähde taianomaiselle matkalle värien ja mielikuvituksen maailmaan!", "sv": "Ge dig ut på en magisk resa in i en värld full av färger och fantasi!", "en": "Embark on a magical journey into a world of colors and imagination!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pkrm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnab4pk24", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "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:agnab4phpu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pigm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pisa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pi4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pjgm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pjqa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pj34/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pkhq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pkrm/?format=api" } ], "images": [ { "id": 1491126, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-20T08:47:32.190721Z", "last_modified_time": "2025-10-20T08:47:32.190746Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/20cbcab9-81b0-47bc-bf45-773d0632ba89.png", "cropping": "180,0,639,459", "photographer_name": "", "alt_text": "vesivärejä ja siveltimiä värikkään taustan edessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491126/?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-10-20T09:01:42.527306Z", "last_modified_time": "2025-10-20T09:01:42.527326Z", "date_published": null, "start_time": "2025-10-25T11:00:00Z", "end_time": "2025-12-20T13: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, "description": { "fi": "<p>Lapset oppivat piirtämään ja luomaan omia ainutlaatuisia teoksia. He saavat taiteilla lyijykynillä, väreillä ja vesiväreillä. He oppivat ilmaisemaan mielikuvitustaan turvallisessa ja kannustavassa ympäristössä pitäen samalla hauskaa ja löytäen ehkä uusia ystäviä. </p><p>Ei tarvitse ilmoittautua etukäteen. Tule vain paikalle. </p><p>Tapahtuma on ilmainen. </p><p>Opettajana toimi Arlinsa Azemi Zymberi.</p><p><br></p>", "sv": "<p>Barnen lär sig att rita och skapa sina egna unika konstverk. De får använda pennor, kritor och vattenfärger. De lär sig att uttrycka sin fantasi i en trygg och uppmuntrande miljö samtidigt som de har roligt och kanske får nya vänner. </p><p>Du behöver inte anmäla dig i förväg. Kom bara dit.</p><p>Evenemanget är gratis. </p><p>Arlinsa Azemi Zymberi är läraren.</p>", "en": "<p>Children learn to draw and create their own unique works of art. They get to use pencils, crayons, and watercolors. They learn to express their imagination in a safe and encouraging environment while having fun and perhaps making new friends. </p><p>No need to register in advance. Just come along.</p><p>The event is free of charge. </p><p>Arlinsa Azemi Zymberi is the teacher.</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Piirustuskursseja lapsille 5-12 v", "sv": "Ritkurser för barn i åldern 5–12 år", "en": "Drawing courses for children aged 5-12" }, "location_extra_info": { "fi": "Paja", "sv": "Verkstaden ", "en": "Maker Space" }, "short_description": { "fi": "Lähde taianomaiselle matkalle värien ja mielikuvituksen maailmaan!", "sv": "Ge dig ut på en magisk resa in i en värld full av färger och fantasi!", "en": "Embark on a magical journey into a world of colors and imagination!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnab4pk24/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67163", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" } ], "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": 1491123, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-18T13:13:53.403456Z", "last_modified_time": "2025-10-18T13:13:53.403471Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774925.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491123/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-18T13:13:53.289464Z", "last_modified_time": "2025-10-18T13:13:53.541523Z", "date_published": null, "start_time": "2025-10-21T11: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, "description": { "fi": "<p>FM Matti Lipponen kertoo itä-helsingin varhaishistoriasta.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/13D4E6BCB53F823732EE61CDB93B730A/FM_Matti_Lipponen_Itaisen_Helsingin_varhaishistoriaa" }, "name": { "fi": "FM Matti Lipponen: Itäisen Helsingin varhaishistoriaa – Työväenopiston luennot" }, "location_extra_info": null, "short_description": { "fi": "FM Matti Lipponen kertoo itä-helsingin varhaishistoriasta." }, "provider": { "fi": "Työväenopisto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67163/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm7fr523i", "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/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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:agm7fr56vq/?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": 1491121, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-10-17T14:27:20.273288Z", "last_modified_time": "2025-10-17T14:27:20.273303Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/558523d5-82a0-44ad-978f-d012f4cee3a5.png", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Opetuksen kerho", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491121/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-17T14:51:46.791913Z", "last_modified_time": "2025-10-17T14:55:16.586763Z", "date_published": null, "start_time": "2025-10-17T14:00:00Z", "end_time": "2025-10-17T16: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, "description": { "fi": "<p>Tervetuloa arabiankieliseen kerhoon oppimaan, askartelemaan ja saamaan tukea koulunkäyntiin!</p><p> </p><p>Kerho on suunnattu arabian kielen taitoisille kouluikäisille lapsille ja nuorille. Vetäjänä vapaaehtoinen opettaja.</p><p> </p><p>Kerho järjestetään joka perjantai klo 17-19. Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p>#Hello Espoo</p><p> </p>", "en": "<p>Welcome to Arabic learning club, where you could enjoy learning Arabic language, and doing different activities like craft and getting support in your studies!</p><p> </p><p>The club is aimed for school. No pre-registration. Welcome!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "ARABIANKIELINEN OPETUSKERHO LAPSILLE JA NUORILLE ", "en": "EDUCATIONAL CLUB FOR CHILDREN AND YOUTH IN ARABIC" }, "location_extra_info": null, "short_description": { "fi": "\nTervetuloa arabiankieliseen kerhoon oppimaan, askartelemaan ja saamaan tukea koulunkäyntiin!\n", "en": "Welcome in a club in Arabic to learn, craft and to get support in your studies! " }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr523i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm7fr53pq", "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/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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:agm7fr56vq/?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": 1491121, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-10-17T14:27:20.273288Z", "last_modified_time": "2025-10-17T14:27:20.273303Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/558523d5-82a0-44ad-978f-d012f4cee3a5.png", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Opetuksen kerho", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491121/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-17T14:51:46.911622Z", "last_modified_time": "2025-10-17T14:55:16.530747Z", "date_published": null, "start_time": "2025-10-24T14:00:00Z", "end_time": "2025-10-24T16: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, "description": { "fi": "<p>Tervetuloa arabiankieliseen kerhoon oppimaan, askartelemaan ja saamaan tukea koulunkäyntiin!</p><p> </p><p>Kerho on suunnattu arabian kielen taitoisille kouluikäisille lapsille ja nuorille. Vetäjänä vapaaehtoinen opettaja.</p><p> </p><p>Kerho järjestetään joka perjantai klo 17-19. Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p>#Hello Espoo</p><p> </p>", "en": "<p>Welcome to Arabic learning club, where you could enjoy learning Arabic language, and doing different activities like craft and getting support in your studies!</p><p> </p><p>The club is aimed for school. No pre-registration. Welcome!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "ARABIANKIELINEN OPETUSKERHO LAPSILLE JA NUORILLE ", "en": "EDUCATIONAL CLUB FOR CHILDREN AND YOUTH IN ARABIC" }, "location_extra_info": null, "short_description": { "fi": "\nTervetuloa arabiankieliseen kerhoon oppimaan, askartelemaan ja saamaan tukea koulunkäyntiin!\n", "en": "Welcome in a club in Arabic to learn, craft and to get support in your studies! " }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr53pq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm7fr5324", "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/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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:agm7fr56vq/?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": 1491121, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-10-17T14:27:20.273288Z", "last_modified_time": "2025-10-17T14:27:20.273303Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/558523d5-82a0-44ad-978f-d012f4cee3a5.png", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Opetuksen kerho", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491121/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-17T14:51:47.030913Z", "last_modified_time": "2025-10-17T14:55:16.477088Z", "date_published": null, "start_time": "2025-10-31T15:00:00Z", "end_time": "2025-10-31T17: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, "description": { "fi": "<p>Tervetuloa arabiankieliseen kerhoon oppimaan, askartelemaan ja saamaan tukea koulunkäyntiin!</p><p> </p><p>Kerho on suunnattu arabian kielen taitoisille kouluikäisille lapsille ja nuorille. Vetäjänä vapaaehtoinen opettaja.</p><p> </p><p>Kerho järjestetään joka perjantai klo 17-19. Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p>#Hello Espoo</p><p> </p>", "en": "<p>Welcome to Arabic learning club, where you could enjoy learning Arabic language, and doing different activities like craft and getting support in your studies!</p><p> </p><p>The club is aimed for school. No pre-registration. Welcome!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "ARABIANKIELINEN OPETUSKERHO LAPSILLE JA NUORILLE ", "en": "EDUCATIONAL CLUB FOR CHILDREN AND YOUTH IN ARABIC" }, "location_extra_info": null, "short_description": { "fi": "\nTervetuloa arabiankieliseen kerhoon oppimaan, askartelemaan ja saamaan tukea koulunkäyntiin!\n", "en": "Welcome in a club in Arabic to learn, craft and to get support in your studies! " }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7fr5324/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66830", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": 1434091, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-07T15:14:19.615377Z", "last_modified_time": "2025-08-07T15:14:19.615392Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774943.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1434091/?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-07T15:14:19.489668Z", "last_modified_time": "2025-10-17T13:13:23.516860Z", "date_published": null, "start_time": "2025-11-20T08: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, "description": { "fi": "<p>Itä-Helsingin musiikkiopisto tarjoaa tarinallisen joulukonsertin päiväkotiyleisölle ja koululaisille.</p><p>Itä-Helsingin musiikkiopisto (IHMO) on musiikin taiteen perusopetusta laajan oppimäärän mukaan antava oppilaitos, jonka juuret ovat länsimaisessa taidemusiikissa.</p><p>Klo 10:00 Konsertti päiväkotiyleisölle<br>Klo 11:30 Konsertti koululaisille</p><p>Rakastamme musiikkia ja tarjoamme monenlaisen musiikin tekemisen mahdollisuuksia. Tehtävämme on luoda iloa ja hyvinvointia niin, että tulevaisuudessa musiikki kuuluu kaikille. Lue lisää ihmo.fi</p><p>Vapaa pääsy</p><p>Ryhmille ennakkoilmoittautuminen osoitteessa https://kultus.hel.fi/fi</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/284662684E70607AFA48D02B25A0EF31/Lastenkulttuuria_jokaiselle_Tarinallinen_konsertti_jouluisissa_tunnelmissa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/284662684E70607AFA48D02B25A0EF31/Tarinallinen_konsertti_jouluisissa_tunnelmissa", "en": "http://www.vuotalo.fi/en/events/event/284662684E70607AFA48D02B25A0EF31/Tarinallinen_konsertti_jouluisissa_tunnelmissa" }, "name": { "fi": "Lastenkulttuuria jokaiselle! Tarinallinen konsertti jouluisissa tunnelmissa", "sv": "Tarinallinen konsertti jouluisissa tunnelmissa", "en": "Tarinallinen konsertti jouluisissa tunnelmissa" }, "location_extra_info": null, "short_description": { "fi": "Itä-Helsingin musiikkiopisto tarjoaa tarinallisen joulukonsertin päiväkotiyleisölle ja koululaisille." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66830/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67017", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490769, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-12T09:13:02.913286Z", "last_modified_time": "2025-09-12T09:13:02.913299Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777398.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490769/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-12T09:13:02.855245Z", "last_modified_time": "2025-10-17T12:13:58.691512Z", "date_published": null, "start_time": "2025-11-15T17: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, "description": { "fi": "<p>Paikkasensitiivisessä teoksessaan Sakko palaa muistamaan viime vuoden työskentelyään kysyen, minkä tulee muuttua ajan ja paikan ollessa toinen.</p><p>Syksyllä 2024 Todellisuuden tutkimuskeskus kutsui tanssitaiteilija Alina Sakon muistamaan Matilda Aaltosen ja Veli Lehtovaaran teoksen Performing Animalities – A Praxis sen arkistomateriaalien kautta. Työskentelyn pohjalta syntynyt esitysele jaettiin yleisölle Sörnäisten metroasemalla Liikkeellä marraskuussa -festivaalin puitteissa.</p><p>Paikkasensitiivisessä teoksessaan Exercise on empathy [a score for performing a human] Alina Sakko palaa muistamaan viime vuoden työskentelyään kysyen, minkä tulee muuttua ajan ja paikan ollessa toinen.</p><p>Kesto: 30min</p><p>Teos esitetään Stoan aulassa ja esitykseen on vapaa pääsy.</p><p>Teos on osa Focus on the Local Landscape - Paikallisjälkiä -ohjelmaa Liikkeellä marraskuussa -festivaalin kehyksessä 6.–16.11.2025. Osana festivaalia Sakko osallistuu avoimeen Soup Talk -tilaisuuteen 16.11. Eskuksen tiloissa.</p>", "sv": "<p>Sakko återvänder i sitt platskänsliga arbete från det senaste året till minnen och frågar sig vad som måste förändras när tid och plats är annorlunda.</p><p>Hösten 2024 bjöd Todellisuuden tutkimuskeskus in danskonstnären Alina Sako för att genom sitt arkivmaterial minnas Matilda Aaltonens och Veli Lehtovaaras Performing Animalities – A Praxis. Resultatet av arbetet delades ut till allmänheten på Sörnäs metrostation inom ramen för festivalen Liikkeellä marraskuussa.</p><p>I sitt platskänsliga verk Exercise on empathy [a score for performing a human] återvänder Alina Sakko till sitt arbete från det senaste året och frågar sig vad som måste förändras när tid och plats är annorlunda.</p><p>Längd: 30 minuter</p><p>Arbetet kommer att utföras i Stoas lobby och inträdet är gratis.</p><p>Verket är en del av programmet Focus on the Local Landscape - Paikallisjälkiä inom ramen för festivalen Liikkeellä marraskuussa som äger rum 6–16.11.2025. Som en del av festivalen kommer Sakko att delta i det öppna Soup Talk-evenemanget den 16 november i Eskus lokaler.</p>", "en": "<p>Alina Sakko returns to remember her work from last year, asking what needs to change when the time and the place change.</p><p>In autumn 2024, Reality Research Center invited dance artist Alina Sakko to remember Performing Animalities – A Praxis by Matilda Aaltonen and Veli Lehtovaara through its archive materials. As a result of the process, she shared a performance gesture at Sörnäinen metro station in the frame of Moving in November.</p><p>Exercise on empathy [a score for performing a human] is a site-sensitive performance through which Alina Sakko returns to remember her work from last year, asking what needs to change when the time and the place change.</p><p>The performance will happen in the Stoa foyer and admission is free.</p><p>Duration: 30min</p><p>This performance is a part of the Focus on the Local Landscape within the frame of Moving in November 6.-16.11.2024. As part of the festival, Sakko will take part in an open Soup Talks discussion on the 16th of November at Eskus.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/EE016716AB10A08E21D64DEC7096AB05/Liikkeella_marraskuussa_Alina_Sakko_Exercise_on_empathy_a_score_for_performing_a_human_", "sv": "http://www.stoa.fi/sv/evenemang/event/EE016716AB10A08E21D64DEC7096AB05/Liikkeella_marraskuussa_Alina_Sakko_Exercise_on_empathy_a_score_for_performing_a_human_", "en": "http://www.stoa.fi/en/events/event/EE016716AB10A08E21D64DEC7096AB05/Moving_in_November_Alina_Sakko_Exercise_on_empathy_a_score_for_performing_a_human_" }, "name": { "fi": "Liikkeellä marraskuussa – Alina Sakko: Exercise on empathy [a score for performing a human]", "sv": "Liikkeellä marraskuussa – Alina Sakko: Exercise on empathy [a score for performing a human]", "en": "Moving in November – Alina Sakko: Exercise on empathy [a score for performing a human]" }, "location_extra_info": null, "short_description": { "fi": "Paikkasensitiivisessä teoksessaan Sakko palaa muistamaan viime vuoden työskentelyään kysyen, minkä tulee muuttua ajan ja paikan ollessa toinen.", "sv": "Sakko återvänder i sitt platskänsliga arbete från det senaste året till minnen och frågar sig vad som måste förändras när tid och plats är annorlunda.", "en": "Alina Sakko returns to remember her work from last year, asking what needs to change when the time and the place change." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67017/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67016", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490764, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-12T09:13:01.641920Z", "last_modified_time": "2025-09-12T09:13:01.641934Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777397.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490764/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-12T09:13:01.586130Z", "last_modified_time": "2025-10-17T12:13:56.931241Z", "date_published": null, "start_time": "2025-11-13T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Paikkasensitiivisessä teoksessaan Sakko palaa muistamaan viime vuoden työskentelyään kysyen, minkä tulee muuttua ajan ja paikan ollessa toinen.</p><p>Syksyllä 2024 Todellisuuden tutkimuskeskus kutsui tanssitaiteilija Alina Sakon muistamaan Matilda Aaltosen ja Veli Lehtovaaran teoksen Performing Animalities – A Praxis sen arkistomateriaalien kautta. Työskentelyn pohjalta syntynyt esitysele jaettiin yleisölle Sörnäisten metroasemalla Liikkeellä marraskuussa -festivaalin puitteissa.</p><p>Paikkasensitiivisessä teoksessaan Exercise on empathy [a score for performing a human] Alina Sakko palaa muistamaan viime vuoden työskentelyään kysyen, minkä tulee muuttua ajan ja paikan ollessa toinen.</p><p>Kesto: 30min</p><p>Teos esitetään Stoan aulassa ja esitykseen on vapaa pääsy.</p><p>Teos on osa Focus on the Local Landscape - Paikallisjälkiä -ohjelmaa Liikkeellä marraskuussa -festivaalin kehyksessä 6.–16.11.2025. Osana festivaalia Sakko osallistuu avoimeen Soup Talk -tilaisuuteen 16.11. Eskuksen tiloissa.</p>", "sv": "<p>Sakko återvänder i sitt platskänsliga arbete från det senaste året till minnen och frågar sig vad som måste förändras när tid och plats är annorlunda.</p><p>Hösten 2024 bjöd Todellisuuden tutkimuskeskus in danskonstnären Alina Sako för att genom sitt arkivmaterial minnas Matilda Aaltonens och Veli Lehtovaaras Performing Animalities – A Praxis. Resultatet av arbetet delades ut till allmänheten på Sörnäs metrostation inom ramen för festivalen Liikkeellä marraskuussa.</p><p>I sitt platskänsliga verk Exercise on empathy [a score for performing a human] återvänder Alina Sakko till sitt arbete från det senaste året och frågar sig vad som måste förändras när tid och plats är annorlunda.</p><p>Längd: 30 minuter</p><p>Arbetet kommer att utföras i Stoas lobby och inträdet är gratis.</p><p>Verket är en del av programmet Focus on the Local Landscape - Paikallisjälkiä inom ramen för festivalen Liikkeellä marraskuussa som äger rum 6–16.11.2025. Som en del av festivalen kommer Sakko att delta i det öppna Soup Talk-evenemanget den 16 november i Eskus lokaler.</p>", "en": "<p>Alina Sakko returns to remember her work from last year, asking what needs to change when the time and the place change.</p><p>In autumn 2024, Reality Research Center invited dance artist Alina Sakko to remember Performing Animalities – A Praxis by Matilda Aaltonen and Veli Lehtovaara through its archive materials. As a result of the process, she shared a performance gesture at Sörnäinen metro station in the frame of Moving in November.</p><p>Exercise on empathy [a score for performing a human] is a site-sensitive performance through which Alina Sakko returns to remember her work from last year, asking what needs to change when the time and the place change.</p><p>The performance will happen in the Stoa foyer and admission is free.</p><p>Duration: 30min</p><p>This performance is a part of the Focus on the Local Landscape within the frame of Moving in November 6.-16.11.2024. As part of the festival, Sakko will take part in an open Soup Talks discussion on the 16th of November at Eskus.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9D7F5AA72B77D18AFD06ED7778A883C4/Liikkeella_marraskuussa_Alina_Sakko_Exercise_on_empathy_a_score_for_performing_a_human_", "sv": "http://www.stoa.fi/sv/evenemang/event/9D7F5AA72B77D18AFD06ED7778A883C4/Liikkeella_marraskuussa_Alina_Sakko_Exercise_on_empathy_a_score_for_performing_a_human_", "en": "http://www.stoa.fi/en/events/event/9D7F5AA72B77D18AFD06ED7778A883C4/Moving_in_November_Alina_Sakko_Exercise_on_empathy_a_score_for_performing_a_human_" }, "name": { "fi": "Liikkeellä marraskuussa – Alina Sakko: Exercise on empathy [a score for performing a human]", "sv": "Liikkeellä marraskuussa – Alina Sakko: Exercise on empathy [a score for performing a human]", "en": "Moving in November – Alina Sakko: Exercise on empathy [a score for performing a human]" }, "location_extra_info": null, "short_description": { "fi": "Paikkasensitiivisessä teoksessaan Sakko palaa muistamaan viime vuoden työskentelyään kysyen, minkä tulee muuttua ajan ja paikan ollessa toinen.", "sv": "Sakko återvänder i sitt platskänsliga arbete från det senaste året till minnen och frågar sig vad som måste förändras när tid och plats är annorlunda.", "en": "Alina Sakko returns to remember her work from last year, asking what needs to change when the time and the place change." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67016/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmykv7hry", "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:agggfz66aa/?format=api" }, { "@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:agggfz66fq/?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: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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490920, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-26T08:04:44.278227Z", "last_modified_time": "2025-09-26T08:04:44.278244Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/274214f6-03d5-47d2-bef5-b65cbc481a08.png", "cropping": "102,0,670,569", "photographer_name": "", "alt_text": "Tummanpuhuva kuva jossa 8 bändin jäsentä seisovat nuolimuodostelmassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490920/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-09-26T08:16:58.092296Z", "last_modified_time": "2025-10-17T11:10:46.250171Z", "date_published": null, "start_time": "2025-10-20T15:00:00Z", "end_time": "2025-10-20T15: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, "description": { "fi": "<p>Die Technogruppe näyttää että technoa voi soittaa torvella. Tästä hulluudesta ette halua jäädä paitsi, tulkaapa siis tanssimaan ja aloittakaa viikko eins zwei drei tuuban tahtiin.</p><p>Evenemanget ordnas av Hela Helmet läser, ett projekt som sprider läslust och -inspiration bland svenskspråkiga vuxna. Vi ordnar program på Helmet-biblioteken i Helsingfors, Esbo, Grankulla och Vanda.</p>", "sv": "<p> Die Technogruppe visar att det går att spela techno på blåsinstrument. Det här är ungefär det underligaste du kan uppleva på ett bibliotek, så ta tillfället i akt och inled din vecka med att fira måndag kväll i takt till eins zwei drei, på horn.</p><p>Die Technogruppe auf Düffeldorff sind die weltbesten cybernetische partybängerspielen trommel-und-blechblasbände aus Düffeldorff, Otnäs. Wir sprechen manchmal Deutch, und haben über ganzen Otnäs und Helßinki Bereich ansteigen machen.</p><p>Evenemanget ordnas av Hela Helmet läser, ett projekt som sprider läslust och -inspiration bland svenskspråkiga vuxna. Vi ordnar program på Helmet-biblioteken i Helsingfors, Esbo, Grankulla och Vanda.</p>", "en": "<p>Die Technogruppe will show you that techno can be played with brass instruments. You don’t want to miss this madness – so come dance and start your week eins zwei drei to the rhythm of the tuba!</p><p>Evenemanget ordnas av Hela Helmet läser, ett projekt som sprider läslust och -inspiration bland svenskspråkiga vuxna. Vi ordnar program på Helmet-biblioteken i Helsingfors, Esbo, Grankulla och Vanda.</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Die Technogruppe Ison Omenan kirjastossa", "sv": "Die Technogruppe på Iso Omenas bibliotek", "en": "Die Technogruppe at the Iso Omena Library" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "short_description": { "fi": "Technoa torvella? Tule bilettämään suomenruotsalaisen opiskelijayhtyeen Die Technogruppenin tahtiin", "sv": "Techno på tuba? Kom och festa loss med studerandekollektivet Die Technogruppe", "en": "Brass band techno? Come party to the beats of the studentcollective Die Technogruppe" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmykv7hry/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67002", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:646/?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/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": 1490717, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-10T11:14:53.527700Z", "last_modified_time": "2025-09-10T11:14:53.527719Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777074.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490717/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-10T11:14:53.379562Z", "last_modified_time": "2025-10-17T10:14:01.733414Z", "date_published": null, "start_time": "2025-11-29T09: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, "description": { "fi": "<p>Kun on aika päästää irti rakkaasta lemmikistä, muistojen vaaliminen auttaa surussa.</p><p>Tervetuloa työpajaan, jossa voit jakaa ajatuksia ja tunteita muiden samassa tilanteessa olevien kanssa ja luoda samalla kauniin, käsintehdyn muistoesineen sydänystävällesi - pussin, rasian tai pesän.</p><p><b>Mitä työpajassa tapahtuu?</b></p><p>Tapahtuma alkaa keskustelulla, jossa jaetaan kokemuksia ja ideoita. Näiden ideoiden pohjalta pääset suunnittelemaan ja valmistamaan pussin, rasian tai pesän, joka on tarkoitettu lemmikin tuhkan säilyttämiseen tai maahan hautaamiseen. Tässä työpajassa emme tavoittele teknisesti vaativia ratkaisuja, vaan luovuutta ja yhteisöllisyyttä.<br> <br>Työpajaa ohjaavat kokeneet muotoilun, taiteen ja käsityön ammattilaiset: keramiikkataiteilija Leena Mäki-Patola, tekstiilitaiteilija Mervi Vuolas ja muotoilija Hanna van Ingen. He kaikki ovat mukana myös KUN AIKA ON -näyttelyssä, joten tämä on ainutlaatuinen tilaisuus tavata heidät ja kuulla heidän ajatuksiaan.</p><p><b> Aikataulut</b></p><p>klo 11–12 Death Café - Kuolemankahvila<br>klo 12–15 Kumppanieläin-työpaja</p><p><b>Osallistuminen ja materiaalit</b></p><p>Työpaja on maksuton ja toimii nyyttikesti-periaatteella. Materiaaleja on käytössä rajoitetusti, joten tuo mukanasi maatuvia materiaaleja esim. kangasta, narua, puunpalasia, pahvisia rasioita sekä pieniä työvälineitä kuten sakset, neula, viivoitin, liima, jaettavaksi muiden osallistujien kanssa. <br> <br>Paikkoja on rajoitetusti, joten ilmoittaudu nopeasti! Mukaan mahtuu 10 henkilöä ilmoittautumisjärjestyksessä.<br> <br><b>Death Café - Kuolemankahvila ennen työpajaa</b><br>Ennen työpajaa on mahdollista osallistua Death Caféen, jota uskontotieteilijä Pauli Jyrkinewsky isännöi. Kuolemankahvila on avoin keskustelutilaisuus, jossa ihmiset kokoontuvat keskustelemaan kumppanieläinten menettämisestä ja surun käsittelystä. Tavoitteena on lisätä kuoleman kohtaamisen luonnollisuutta.<br> <br>Voit osallistua kumppanieläin-työpajaan ilman kahvilaa tai tulla vain kahvilaan ilman työpajaa. Valitse itsellesi sopivin vaihtoehto ja saavu paikalle kokemaan ja keskustelemaan.<br> <br><b>Ilmoittautumiset työpajaan:</b></p><p>23.11.2025 mennessä osoitteeseen nayttelyt@taiteilijato.fi</p><p>Tapahtuman tuottaa <br>Taiteilijat O ry https://taiteilijato.fi/<br> <br>Yhteistyössä <br>Kulttuurikeskus Stoa https://www.stoa.fi/ <br>Death Café https://deathcafe.com/what/</p>", "sv": "<p>När det är dags att släppa taget om ett älskat husdjur kan det vara en hjälp i sorgens stund att vårda minnena.</p><p>Välkommen till en verkstad där du kan dela dina tankar och känslor med andra i samma situation och skapa en vacker, handgjord minnessak för din älskling – en påse, ask eller ett bo.</p><p>Vad händer i verkstaden?</p><p>Evenemanget inleds med en debatt där vi utbyter erfarenheter och idéer. Dessa idéer hjälper dig att designa och tillverka en påse, låda eller ett bo för förvaring av askan efter dit husdjur eller för att begrava det.I den här verkstaden är vi inte ute efter tekniskt krävande lösningar, utan efter kreativitet och gemenskap.</p><p>Verkstaden leds av de erfarna design-, konst- och hantverksproffsen Leena Mäki-Patola, keramiker, Mervi Vuolas, textilkonstnär och Hanna van Ingen, formgivare. De deltar även alla i NÄR TIDEN ÄR KoMMEN-utställningen, så det här är ett unikt tillfälle att träffa dem och höra deras tankar.</p><p>Tidtabeller</p><p>11–12 Death Café - Dödskaféet<br>12–15 Verkstad för sällskapsdjur</p><p>Deltagande och material</p><p>Verkstaden är avgiftsfri och fungerar enligt knytkalasprincipen. Materialen är begränsade, så ta med nedbrytbart material som tyg, snöre, träbitar, kartonger och små verktyg som sax, nål, linjal, lim för att dela med dig av till andra deltagare.</p><p>Antalet platser är begränsat, så anmäl dig snabbt! 10 personer ryms med i anmälningsordning.</p><p>Death Café – Ett dödskafé före verkstaden<br>Före verkstaden kommer det att finnas möjlighet att delta i Death Café, som leds av religionsvetaren Pauli Jyrkinewsky. Death Café är ett öppet diskussionsforum där människor träffas för att diskutera förlusten av ett sällskapsdjur och hur man hanterar sorgen. Syftet är att göra det mer naturligt att möta döden.</p><p>Du kan delta i verkstaden om sällskapsdjur utan att delta i kaféet eller bara komma till kaféet utan verkstaden. Välj det alternativ som passar dig bäst och kom med för att uppleva och diskutera.</p><p>Anmälan till verkstaden:</p><p>Senast den 25 november 2025 till nayttelyt@taiteilijato.fi</p><p>Evenemanget produceras av<br>Taiteilijat O ry https://taiteilijato.fi/</p><p>I samarbete med<br>Kulturcentrum Stoa https://www.stoa.fi/<br>Death Café https://deathcafe.com/what/</p>", "en": "<p>When it is time to let go of a beloved pet, cherishing fond memories can help deal with the grief.</p><p>In this workshop, you can share your thoughts and feelings with others in the same situation and create a beautiful, handmade memento for your dearly departed friend – a bag, box or nest.</p><p>What happens in the workshop?</p><p>The event will start with a discussion aimed at sharing experiences and ideas. These ideas will help you to design and make a bag, box or nest for storing your pet's ashes or burying them in the ground. In this workshop, we are not looking for technically demanding solutions, but for creativity and a sense of community.</p><p>The workshop is hosted by experienced design, art and craft professionals: ceramic artist Leena Mäki-Patola, textile artist Mervi Vuolas and designer Hanna van Ingen. All three of them are also featured in the Kun aika on (When it’s time) exhibition, so this is a unique opportunity to meet the artists and hear their thoughts.</p><p>Timetables</p><p>11.00–12.00 Death Café<br>12.00–15.00 Companion animal workshop</p><p>Participation and materials</p><p>The workshop is free of charge and works on a ‘bring your own materials’ principle. Materials are limited, so please bring along decomposable materials, such as fabric, string, pieces of wood, cardboard boxes, and small tools, such as scissors, a needle, a ruler and glue, to share with other participants.</p><p>Places are limited, so sign up soon! The event has a capacity of 10 people on a first-come, first-served basis.</p><p>Death Café before the workshop<br>Before the workshop, you can participate in the Death Café hosted by religious scholar Pauli Jyrkinewsky. A Death Café is an open discussion event where people come together to discuss the loss of a companion animal and how to deal with grief. The aim is to make facing death more natural.</p><p>You can participate in the companion animal workshop without participating in the café or come to the café without participating in the workshop. Choose the option that suits you best and come on by to share experiences and engage in discuss.</p><p>Registration for the workshop:</p><p>Register your participation by 23 November 2025 by sending a message to nayttelyt@taiteilijato.fi</p><p>The event is produced by<br>Taiteilijat O ry https://taiteilijato.fi/</p><p>In cooperation with<br>Cultural Centre Stoa https://www.stoa.fi/<br>Death Café https://deathcafe.com/what/</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9BA0CB8166065D1D280F65B7679EE77C/Kumppanielain-tyopaja_Death_Cafe", "sv": "http://www.stoa.fi/sv/evenemang/event/9BA0CB8166065D1D280F65B7679EE77C/Verkstad_kring_kompisdjur_Death_Cafe", "en": "http://www.stoa.fi/en/events/event/9BA0CB8166065D1D280F65B7679EE77C/Companion_animal_workshop_Death_Caf_" }, "name": { "fi": "Kumppanieläin-työpaja & Death Cafe – Kun aika on -näyttelyn oheisohjelmaa", "sv": "Verkstad kring kompisdjur & Death Cafe – Kompletterande program till utställningen När tiden är kommen", "en": "Companion animal workshop & Death Café – Kun aika on (When it’s time) exhibition side programme" }, "location_extra_info": null, "short_description": { "fi": "Kun on aika päästää irti rakkaasta lemmikistä, muistojen vaaliminen auttaa surussa.", "sv": "När det är dags att släppa taget om ett älskat husdjur kan det vara en hjälp i sorgens stund att vårda minnena.", "en": "When it is time to let go of a beloved pet, cherishing fond memories can help deal with the grief." }, "provider": { "fi": "Taiteilijat O ry https://taiteilijato.fi/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67002/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm5yqe5ru", "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/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm5yqfanm/?format=api" }, "event_status": "EventCancelled", "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": 1491029, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-08T07:45:06.398951Z", "last_modified_time": "2025-10-08T07:45:06.398966Z", "name": "Kirjastokaveri.", "url": "https://tapahtumasyotto.espoo.fi/media/images/d5447785-399b-4a30-8c8f-49c0a38675a6.png", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Viisi erilaista piirrettyä ihmishahmoa. Eri-ikäisiä, eri kulttuuritaustoista.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491029/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-13T06:01:51.537600Z", "last_modified_time": "2025-10-17T10:01:37.898924Z", "date_published": null, "start_time": "2025-11-27T15:00:00Z", "end_time": "2025-11-27T17: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, "description": { "fi": "Tervetuloa kirjastoon!\nTapaa kirjastokaveri omalla kielelläsi!<p><br></p><p>Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!</p><p>Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p><br></p><p><br></p><p>BENGALIN-, HINDIN-, NEPALIN- JA PUNJABINKIELINEN KIRJASTOKAVERI TAVATTAVISSA:</p><p><br></p><p><strong>Joka torstai klo 17–19:</strong></p><ul><li>torstaisin 23.10 - 18.12.2025.</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "Welcome to the library!\nMeet a library buddy in your own language!<p><br></p><p>Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language.</p><p>No pre-registration, you are most warmly welcome!</p><p><br></p><p>MEET A BENGALI, HINDI, NEPALI AND PUNJABI SPEAKING LIBRARY BUDDY:</p><p><br></p><p><strong>Every Thursday at 17-19:</strong></p><ul><li>Thursdays 23.10. - 18.12.2025</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": " PERUTTU! Kirjastokaveri: BENGALI, HINDI, NEPALI, PUNJABI", "en": "CANCELLED! Library buddy: BENGALI, HINDI, NEPALI, PUNJABI" }, "location_extra_info": { "fi": "Aula", "en": "Lobby" }, "short_description": { "fi": "Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!", "en": "Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language. " }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm5yqe5ru/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm62m6irm", "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:agggfz67dq/?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/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p6062/?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": [ { "id": 1491117, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-17T09:53:10.485627Z", "last_modified_time": "2025-10-22T06:40:28.855329Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2af3392b-c092-46d4-bae9-2068f1bcba87.jpg", "cropping": "420,0,1500,1080", "photographer_name": "Ari Vannas", "alt_text": "Peliviikko 1.-9.11.2025. Satuhahmot pelaavat tietokoneella.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491117/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-16T12:37:32.068022Z", "last_modified_time": "2025-10-17T09:53:52.463149Z", "date_published": null, "start_time": "2025-11-03T14:00:00Z", "end_time": "2025-11-03T16: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, "description": { "fi": "<p>Biljarditurnaus alle 12-vuotiaille kirjaston Vox-tilassa. Ilmoittautuminen turnaukseen paikan päällä.</p>", "sv": "<p>Biljardturnering för under 12-åringar i bibliotekets Vox-utrymme. Anmälan till turneringen sker på plats.</p>", "en": "<p>Billiards tournament for children under 12 in the library’s Vox space. Registration for the tournament takes place on site.</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Peliviikko: Biljarditurnaus alle 12-vuotiaille", "sv": "Spelvecka: Biljardturnering för barn under 12 år", "en": "Game Week: Billiards Tournament for Children Under 12" }, "location_extra_info": { "fi": "Vox", "sv": "Vox", "en": "Vox" }, "short_description": { "fi": "Peliviikon biljarditurnaus Ison Omenan kirjastossa alle 12-vuotiaille.", "sv": "Spelveckans biljardturnering på Iso Omena bibliotek för barn under 12 år.", "en": "Game Week billiards tournament at Iso Omena Library for children under 12." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm62m6irm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm7dnigvq", "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:agggfz67dq/?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/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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": [ { "id": 1491117, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-17T09:53:10.485627Z", "last_modified_time": "2025-10-22T06:40:28.855329Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2af3392b-c092-46d4-bae9-2068f1bcba87.jpg", "cropping": "420,0,1500,1080", "photographer_name": "Ari Vannas", "alt_text": "Peliviikko 1.-9.11.2025. Satuhahmot pelaavat tietokoneella.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491117/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-17T09:29:15.778138Z", "last_modified_time": "2025-10-17T09:53:19.892395Z", "date_published": null, "start_time": "2025-11-05T14:00:00Z", "end_time": "2025-11-05T16: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, "description": { "fi": "<p>Biljarditurnaus 12-17 -vuotiaille nuorille kirjaston Vox-tilassa. Kaksi parasta pääsevät kirjastojen välisten biljarditurnauksen finaalipeleihin, jotka pelataan Lippulaivan kirjastossa lauantaina 8.11 klo 12-14.</p><p>Ilmoittautumine turnaukseen paikan päällä.</p>", "sv": "<p>Biljardturnering för ungdomar i åldern 12–17 år i bibliotekets Vox-utrymme. De två bästa går vidare till finalspelen i bibliotekens gemensamma biljardturnering, som spelas i biblioteket Lippulaiva lördagen den 8.11 kl. 12–14.</p><p>Anmälan till turneringen sker på plats.</p>", "en": "<p>Billiards tournament for youth aged 12–17 in the library’s Vox space. The two best players will advance to the finals of the inter-library billiards tournament, which will take place at the Lippulaiva Library on Saturday, November 8, from 12:00 to 14:00.</p><p>Registration for the tournament takes place on-site.</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Peliviikko: Biljarditurnaus 12-17 -vuotiaille", "sv": "Spelveckan: Biljardturnering för ungdomar i åldern 12–17 år.", "en": "Game Week: Billiards Tournament for Youth Aged 12–17." }, "location_extra_info": { "fi": "Vox", "sv": "Vox", "en": "Vox" }, "short_description": { "fi": "Peliviikon biljarditurnaus Ison Omenan kirjastossa 12-17 -vuotiaille nuorille.", "sv": "Spelveckans biljardturnering i biblioteket Iso Omena för ungdomar i åldern 12–17 år.", "en": "Game Week billiards tournament at the Iso Omena Library for youth aged 12–17." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7dnigvq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm7dnihoq", "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:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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": [ { "id": 1491118, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-17T09:40:53.486946Z", "last_modified_time": "2025-10-17T09:40:53.486961Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2f92d145-b648-4a60-a017-e4005af8d8cf.png", "cropping": "253,0,903,650", "photographer_name": "", "alt_text": "Peliviikko 1.-9.11.2025. Satuhahmot pelaavat Seal Splash -peliä tietokoneella.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491118/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-17T09:51:40.669923Z", "last_modified_time": "2025-10-17T09:51:40.669941Z", "date_published": null, "start_time": "2025-11-03T12:30:00Z", "end_time": "2025-11-09T15: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, "description": { "fi": "<p>Osallistu peliviikon huikeaan Seal Splash -hyljepeliturnaukseen kirjaston Vox tilassa. Peliä pelataan tietokoneella selaimessa. Parhaan pelaajan yhteystiedot ilmoitetaan luvalla Kansalliselle audiovisuaaliselle instituutille. Suomen kolmelle parhaalle pelaajalle on luvassa huikeita pelipalkintoja!</p><p><br></p>", "sv": "<p>Delta i Spelveckans fantastiska Seal Splash – sälspelturnering i bibliotekets Vox-utrymme. Spelet spelas på datorn i webbläsaren. Kontaktuppgifterna för den bästa spelaren kommer att delas med Finlands nationella audiovisuella institut med tillstånd. De tre bästa spelarna i Finland får fantastiska spelpriser!</p>", "en": "<p>Join the amazing Seal Splash – Seal Game Tournament during Game Week in the library’s Vox space. The game is played on a computer in a web browser. The contact details of the top player will be shared with the National Audiovisual Institute with permission. The top three players in Finland will receive amazing gaming prizes!</p>" }, "provider_contact_info": null, "info_url": { "fi": "https://www.peliviikko.fi/", "sv": "https://www.peliviikko.fi/", "en": "https://www.peliviikko.fi/" }, "name": { "fi": "Peliviikko: Seal Splash -hyljepeliturnaus", "sv": "Spelveckan: Seal Splash – sälspelturnering", "en": "Game Week: Seal Splash – Seal Game Tournament" }, "location_extra_info": { "fi": "Vox", "sv": "Vox", "en": "Vox" }, "short_description": { "fi": "Peliviikon Seal Splash -hyljepeliturnaus Ison Omenan kirjastossa. ", "sv": "Spelveckans Seal Splash – sälspelturnering i biblioteket Iso Omena.", "en": "Game Week's Seal Splash – Seal Game Tournament at the Iso Omena Library." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7dnihoq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm7dnih3a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?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": [ { "id": 1491119, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-17T09:21:09.725709Z", "last_modified_time": "2025-10-17T09:21:09.725726Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/9f9c23c0-ba65-4fbc-b09b-8286ae72e131.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ella Immonen, Ida-Susanna Pöllänen, Hilkka Ahde ja Pirjo Hilakari", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491119/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-17T09:22:08.802093Z", "last_modified_time": "2025-10-17T09:22:08.802111Z", "date_published": null, "start_time": "2025-10-27T16:00:00Z", "end_time": "2025-10-27T17: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, "description": { "fi": "<p>Kaikille avoin lukupiiri kokoontuu maanantaina 27.10 klo 18 Sellon kirjaston aulan lavalla. Tapaamisessa keskustellaan Salla Vuorikosken tietokirjallisuuden Finlandia-palkintoehdokas 2024-kirjasta \"Sanna Marin. Poikkeuksellinen pääministeri\". Tilaisuutta alustetaan paneelikeskustelulla, jonka aiheena on “Naispoliitikot Suomessa - millaista on olla nuori nainen politiikassa”. Panelisteina muun muassa kaupungin- ja hyvinvointialueen valtuutettu (SD) Ella Immonen, puolustustoimiala-asiantuntija (SD) Ida-Susanna Pöllänen ja kaupunginvaltuutettu (SD) Hilkka Ahde. Tilaisuuden juontaa toimittaja Pirjo Hilakari.</p>", "sv": "<p>Mötet kommer att diskutera Salla Vuorikoskis fackbok ”Sanna Marin. En exceptionell statsminister”, som har nominerats till Finlandiapriset 2024. Evenemanget inleds med en paneldiskussion på temat ”Kvinnliga politiker i Finland – hur är det att vara en ung kvinna i politiken?” </p>", "en": "<p>The meeting will discuss Salla Vuorikoski's non-fiction book \"Sanna Marin. An Exceptional Prime Minister,\" which has been nominated for the 2024 Finlandia Prize. The event will begin with a panel discussion on the topic \"Female politicians in Finland – what is it like to be a young woman in politics?\" </p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Naispoliitikot Suomessa - millaista on olla nuori nainen politiikassa", "sv": "Kvinnliga politiker i Finland – hur är det att vara en ung kvinna i politiken? Evengeman är på finka.", "en": "Female politicians in Finland – what is it like to be a young woman in politics? Event is in Finnish." }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "short_description": { "fi": "Tapaamisessa keskustellaan Salla Vuorikosken tietokirjallisuuden Finlandia-palkintoehdokas 2024-kirjasta \"Sanna Marin. Poikkeuksellinen pääministeri\". ", "sv": "Mötet kommer att diskutera Salla Vuorikoskis fackbok ”Sanna Marin. En exceptionell statsminister”. Evenemanget inleds med en paneldiskussion.", "en": "The meeting will discuss Salla Vuorikoski's non-fiction book \"Sanna Marin. An Exceptional Prime Minister\". The event will begin with a panel discussion." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm7dnih3a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67062", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p39492/?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": 1490896, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-24T13:13:45.542300Z", "last_modified_time": "2025-09-24T13:13:45.542315Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777732.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490896/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-24T13:13:45.388230Z", "last_modified_time": "2025-10-17T09:13:42.742129Z", "date_published": null, "start_time": "2025-11-23T11:00:00Z", "end_time": "2025-11-23T15: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, "description": { "fi": "<p>Kun aika on -minifestivaali avaa uusia näkökulmia kuolemaan ja sen merkityksiin taiteen ja tieteen kautta.</p><p>Festivaaliohjelma kutsuu pohtimaan kuolemaa, kuolemanjälkeisyyttä ja elämän jatkumoa niin asiantuntijoiden puheenvuoroissa kuin taiteen keinoin. Teemoja lähestytään muun muassa vainajan tuhkaan liittyvän symboliikan ja juridisen aseman, populaarikulttuurin tarjoamien myötätuntoisten kohtaamismallien, sekä shamanismin kautta. Festivaalilla koetaan Harri Piispasen vaikuttava It’s a job -performanssi sekä syvennytään Kun aika on -näyttelyn taiteilijoiden teoksiin ja ajatuksiin. Tapahtuma on osa Kun aika on -näyttelyn oheisohjelmaa. Osallistuminen ei edellytä rekisteröintiä eikä ilmoittautumista ennakkoon. Vapaa pääsy!<br> <br><b> Ohjelma</b></p><p><b>13.00 Musiikkisali</b><br>Tervetuloa, festivaaliohjelman esittely<br>Taiteilija Piia Rossi, Taiteilijat O ry</p><p><b>13.15 Musiikkisali </b> <br>Kuolema loppuna vai muutoksena? Uskonnottomien käsitykset kuolemasta ja kuolemanjälkeisyydestä<br>Roosa Haimila, FT, uskontotieteen tutkijatohtori, Helsingin yliopisto<br>Uskonnottomuus ei välttämättä tarkoita kuolemanpelkoa, eikä kuolemaa usein nähdä yksiselitteisesti vain loppuna. Haimila esittelee uusinta tutkimusta siitä, millaisia moninaisia merkityksiä uskonnottomat liittävät kuolemaan ja sen jälkeisyyteen.</p><p><b>13.45 Musiikkisali </b> <br>Mitä meistä jää? Oikeudellinen katsaus vainajan tuhkaan<br>Matias A. Stubbe, OTM<br>Esitelmä avaa tuhkan symboliikkaa ja asemaa länsimaisessa oikeusperinteessä sekä suomalaisessa lainsäädännössä. Miksi tuhkaa ei saa säilyttää kotona ja millaisia haasteita hautauskulttuurin monipuolistuminen tuo tulevaisuudessa?</p><p><b>14.15 tauko </b></p><p><b>14.30-16.30 Galleria </b> <br>It´s a Job -performanssi<br>Taiteilija Harri Piispanen<br>Esitys käsittelee suhdettamme kuolevaisuuteen. Teoksen lähtökohtana on Ars Moriendi – taito muistaa oma kuolevaisuus ja harjoittaa siihen liittyvää taitoa. Osana prosessia taiteilija on rakentanut itselleen arkun, esineen viimeiselle matkalle. Samalla hän tutkii tätä ruumiille tarkoitettua viimeistä ja äärimmäisen henkilökohtaista tilaa.</p><p><b>14.45 Galleria </b> <br>Kun aika on -näyttelyyn tutustuminen<br>Taiteilijat kertovat näyttelyn teoksista ja niiden taustoista</p><p><b>15.15 Musiikkisali </b> <br>Kuoleman myötätuntoinen kohtaaminen mediassa<br>Enni Salo, FM, väitöskirjatutkija, Turun yliopisto<br>Miten fiktiiviset kuolemankuvaukset mediassa voivat auttaa katsojaa käsittelemään elämän loppua? Salo tarkastelee muun muassa Disneyn animaatioita ja televisioviihdettä, joissa kuolemaa käsitellään myötätuntoisesti ja samalla luodaan valmiuksia terveempään suhtautumiseen kuolemaan.</p><p><b>15.45 Musiikkisali </b> <br>Tuonilmaisista – ajatuksia elämän–kuoleman rajoilta<br>Jaana Kouri, FT, kirjailija, shamanismin tutkija ja harjoittaja <br>Esityksessä kerrotaan shamaanin syntymiseen ja kuolemaan liittyvistä tehtävistä ja käsityksistä. Shamaanius on animistinen elämänpolku, jonka kulkijan yhtenä tehtävänä on saattaa sieluja niin maanpäälliseen elämään kuin sieltä eteenpäinkin.</p><p><b>16.15-17.00 Musiikkisali ja galleria </b> <br>Keskustelua, Kun aika on -näyttelyyn tutustuminen jatkuu<br>Taiteilija Piia Rossi, Taiteilijat O ry</p>", "sv": "<p>Minifestivalen När tiden är kommen öppnar nya perspektiv på döden och dess innebörd genom konst och vetenskap.</p><p>Festivalprogrammet bjuder in dig att reflektera över döden, livet efter döden och livets kontinuitet, både genom expertföreläsningar och genom konst. Temana behandlas genom symboliken och den juridiska statusen för askan efter den avlidne samt modeller för medmänskliga möten som erbjuds av populärkulturen och shamanismen. Festivalen visar Harri Piispanens imponerande performans It's a job och fördjupar sig i konstnärernas verk och idéer i utställningen När tiden är kommen. Evenemanget är en del av det kompletterande programmet till utställningen När tiden är kommen. Deltagandet kräver ingen registrering eller förhandsbokning. Fritt inträde!</p><p>Program</p><p>13.00 Musiksalen<br>Välkommen, presentation av festivalprogrammet<br>Konstnär Piia Rossi, Taiteilijat O ry</p><p>13.15 Musiksalen<br>Döden som ett slut eller som en förändring? Icke-religiösa föreställningar om döden och livet efter detta<br>Roosa Haimila, FD, postdoktoral forskare i religionsvetenskap, Helsingfors universitet<br>Att vara icke-religiös behöver inte betyda att man är rädd för döden, och döden ses ofta inte enbart som ett slut. Haimila kommer att presentera den senaste forskningen om de många betydelser som icke-religiösa människor fäster vid döden och dess efterverkningar.</p><p>13.45 Musiksalen<br>Vad blir kvar av oss? En rättslig insikt av askan efter den avlidne<br>Matias A. Stubbe, JM<br>I presentationen redogörs för askans symbolik och ställning i den västerländska rättstraditionen och i den finländska lagstiftningen. Varför ska vi inte förvara askan hemma och vilka utmaningar kommer diversifieringen av begravningskulturen att medföra i framtiden?</p><p>14.15 paus</p><p>14.30–16.30 Galleriet<br>It´s a Job-performansen<br>Konstnär Harri Piispanen<br>Föreställningen handlar om vår relation till dödligheten. Utgångspunkten för verket är Ars Moriendi – konsten att komma ihåg sin egen dödlighet och att öva upp de färdigheter som är förknippade med den. Som en del av processen har konstnären byggt en kista åt sig själv, ett föremål för sin sista resa. Samtidigt utforskar han denna sista och ytterst personliga boning för kroppen.</p><p>14.45 Galleriet<br>Lär känna utställningen När tiden är kommen<br>Konstnärer berättar om sina verk och sin bakgrund</p><p>15.15 Musiksalen<br>Att möta döden med medkänsla i media<br>Enni Salo, M.Sc., FD Forskare, Åbo universitet<br>Hur kan fiktiva skildringar om döden i medier hjälpa tittarna att hantera livets slutskede? Salo tittar bland annat på Disney-animationer och tv-underhållning, som behandlar döden med medkänsla , samtidigt som de skapar en sundare inställning till döden.</p><p>15.45 Musiksalen<br>Från underjorden - tankar från gränsen mellan liv och död<br>Jaana Kouri, FD, författare, shamanismforskare och utövare<br>Presentationen kommer att förklara de uppgifter och övertygelser som är relaterade till en shamans födelse och död. Shamanism är en animistisk livsväg, där en av resenärens uppgifter är att föra själar både till och från livet på jorden.</p><p>16.15–17.00 Musiksal och galleri<br>Diskussion, bekantskapen med utställningen \"När tiden är kommen\" fortsätter<br>Konstnär Piia Rossi, Taiteilijat O ry</p>", "en": "<p>The Kun aika on (When it’s time) mini-festival offers new perspectives on death and its meanings through art and science.</p><p>The festival programme invites you to reflect on death, the afterlife and the continuum of life, through both expert talks and art. The themes are explored through e.g. the symbolism and legal status of the ashes of the deceased, compassionate approaches to facing death offered by popular culture and shamanism. The festival features Harri Piispanen's impressive performance It's a Job and delves into the works and ideas of the artists featured in the Kun aika on (When it’s time) exhibition. The event is part of the side programme of the Kun aika on (When it’s time) exhibition. Participation does not require registration or pre-booking. Free entry!</p><p>Programme</p><p>13.00 Music hall<br>Opening speech, presentation of the festival programme<br>Artist Piia Rossi, Taiteilijat O ry</p><p>13.15 Music hall<br>Death as an end or as a change? Non-religious beliefs about death and the afterlife<br>Roosa Haimila, PhD, postdoctoral researcher in religious studies, University of Helsinki<br>Being non-religious does not necessarily mean that you fear death, and death is often not explicitly seen as an end. Haimila will present the latest research on the multiple meanings that non-religious people attach to death and its aftermath.</p><p>13.45 Music hall<br>What do we leave behind? A legal review of the ashes of the deceased<br>Matias A. Stubbe, Master of Laws<br>This presentation explores the symbolism and status of ashes in the Western legal tradition and in Finnish legislation. Why are you not allowed to keep ashes at home and what challenges will the diversification of burial culture bring in the future?</p><p>14.15 break</p><p>14.30–16.30 Gallery<br>It’s a Job performance<br>Artist Harri Piispanen<br>This performance explores our relationship with mortality. It is based on the Ars moriendi – the art of remembering one's own mortality and practising the skill associated with it. As part of the process, the artist has built himself a coffin, an object for his final journey. At the same time, he explores this final and extremely personal space for the body.</p><p>14.45 Gallery<br>Introduction to the Kun aika on (When it’s time) exhibition<br>The artists talk about their featured works and their backgrounds</p><p>15.15 Music hall<br>Facing death with compassion in the media<br>Enni Salo, MA, doctoral researcher, University of Turku<br>How can fictional depictions of death in the media help viewers to deal with the end of life? Salo examines Disney animation and television entertainment, among other things, which deal with death in a compassionate way, creating a basis for a healthier attitude towards death.</p><p>15.45 Music hall<br>From the underworld – thoughts from the borders of life and death<br>Jaana Kouri, PhD, author, researcher and practitioner of shamanism<br>This presentation explores a shaman’s tasks and beliefs related to birth and death. Shamanism is an animistic path of life, and one of the tasks of a shaman is to bring souls to this life and take them beyond it.</p><p>16.15–17.00 Music hall and gallery<br>Discussion, introduction to the Kun aika on (When it’s time) exhibition continues<br>Artist Piia Rossi, Taiteilijat O ry</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/B41577DA7F4BCA52C3B6C03473997FC0/Kun_aika_on_-minifestivaali", "sv": "http://www.stoa.fi/sv/evenemang/event/B41577DA7F4BCA52C3B6C03473997FC0/Kun_aika_on_Nar_tiden_ar_kommen_-minifestival", "en": "http://www.stoa.fi/en/events/event/B41577DA7F4BCA52C3B6C03473997FC0/Kun_aika_on_When_it_s_time_mini-festival_" }, "name": { "fi": "Kun aika on -minifestivaali", "sv": "Kun aika on (När tiden är kommen)-minifestival", "en": "Kun aika on (When it’s time) mini-festival" }, "location_extra_info": null, "short_description": { "fi": "Kun aika on -minifestivaali avaa uusia näkökulmia kuolemaan ja sen merkityksiin taiteen ja tieteen kautta.", "sv": "Minifestivalen När tiden är kommen öppnar nya perspektiv på döden och dess innebörd genom konst och vetenskap.", "en": "The Kun aika on (When it’s time) mini-festival offers new perspectives on death and its meanings through art and science." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67062/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }