Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=804
{ "meta": { "count": 33209, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=805", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=803" }, "data": [ { "id": "kulke:63675", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151635, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-03T14:13:18.624043Z", "last_modified_time": "2024-07-03T14:13:18.624058Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751970.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151635/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-03T14:13:18.573580Z", "last_modified_time": "2024-07-03T14:13:18.688631Z", "date_published": null, "start_time": "2024-09-04", "end_time": "2024-09-27", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Ihmisiksi on Elviira Davidowin luoma rauhankasvatuksellinen näyttely-, esitys- ja työpajakokonaisuus. Kuinka elää hyvää elämää tavalla, joka olisi hyväksi myös muille ihmisille ja planeetallemme?", "sv": "Ihmisiksi är en utställnings-, performans- och workshophelhet om fredsfostran skapad av Elviira Davidow. Hur lever man ett gott liv på ett sätt som också är bra för andra människor och vår planet?", "en": "Ihmisiksi is an exhibition, performance and workshop ensemble on peace education by Elviira Davidow. How do you live a good life in a way that is also good for other people and our planet?" }, "description": { "fi": "<p>Ihmisiksi on Elviira Davidowin luoma rauhankasvatuksellinen näyttely-, esitys- ja työpajakokonaisuus. Kuinka elää hyvää elämää tavalla, joka olisi hyväksi myös muille ihmisille ja planeetallemme?</p><p>Kuinka löytää keinoja vaikuttaa asioihin, jotka liittyvät minun kotimaahani, sen yhteiskuntaan ja ympäristöön – tai jopa koko maapalloon?</p><p>Paperinukketeatterin sekä varjoteatterin keinoin toteutettava näyttely koostuu pienoisnäyttämöistä, sätkynukeista, kurkistuslaatikoista, työpajojen kautta syntyneestä materiaalista sekä informatiivisesta osiosta.</p><p>Näyttely sukeltaa Hanna Niittymäen kirjan <i>Ihmisiksi elämisen taito</i> (Umpihanki, 2021) teemoihin, joita ovat esimerkiksi ihmisyys, arvot, dialogisuus, syrjintä, sota ja rauha sekä ekokriisi ja rakkaus.</p><p>Yhteistyössä: Suomen Rauhapuolustajat, Aura of puppets ry, PAND – taiteilijat rauhan puolesta sekä Rauhankasvatusneuvola</p>", "sv": "<p>Ihmisiksi är en utställnings-, performans- och workshophelhet om fredsfostran skapad av Elviira Davidow. Hur lever man ett gott liv på ett sätt som också är bra för andra människor och vår planet?</p><p>Hur hittar man sätt att påverka frågor som relaterar till ens land, dess samhälle och miljö – eller till och med hela planeten?</p><p>Utställningen som genomförs med hjälp av pappersdockteater och skuggteater består av miniscener, marionetter, tittskåp, material som skapats vid workshoppar och en informativ del.</p><p>Utställningen fördjupar sig i teman från Hanna Niittymäkis bok <i>Ihmisiksi elämisen taito</i> (Umpihanki, 2021), såsom mänsklighet, värderingar, dialogicitet, diskriminering, krig och fred, ekokrisen och kärlek.</p><p>I samarbete: Fredskämparna i Finland, Aura of puppets ry, PAND – konstnärer för fred och Rauhankasvatusneuvola</p>", "en": "<p>Ihmisiksi is an exhibition, performance and workshop ensemble on peace education by Elviira Davidow. How do you live a good life in a way that is also good for other people and our planet?</p><p>How do you find ways to influence issues that impact your home country, its society and environment – or even the whole planet?</p><p>The exhibition, which is carried out by means of paper puppet theatre and shadow play, consists of mini stages, puppets, peek boxes, material created in the workshops, as well as an informative section.</p><p>The exhibition is a deep dive into the themes of Hanna Niittymäki’s book <I>Ihmisiksi elämisen taito</I> (Umpihanki, 2021), such as humanity, values, dialogue, discrimination, war and peace, as well as the climate crisis and love.</p><p>In cooperation with: Suomen Rauhanpuolustajat, Aura of puppets ry, PAND – Artists for Peace and the Peace Education Clinic</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2D05CBFE1813A3813BD8E600E71A7722/Elviira_Davidow_Ihmisiksi", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2D05CBFE1813A3813BD8E600E71A7722/Elviira_Davidow_Ihmisiksi_Vara_som_folk_", "en": "http://www.kanneltalo.fi/en/events/event/2D05CBFE1813A3813BD8E600E71A7722/Elvira_Davidow_Ihmisiksi" }, "name": { "fi": "Elviira Davidow: Ihmisiksi", "sv": "Elviira Davidow: Ihmisiksi (Vara som folk)", "en": "Elvira Davidow: Ihmisiksi" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63675/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63860", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151616, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-03T13:13:11.466345Z", "last_modified_time": "2024-07-03T13:13:11.466360Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753235.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151616/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-03T13:13:11.426863Z", "last_modified_time": "2024-07-03T13:13:11.526269Z", "date_published": null, "start_time": "2024-06-03", "end_time": "2024-07-31", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Kesän vitriininäyttely on omistettu modernin tanssin ja tanssiterapian äidille Riitta Vainiolle." }, "description": { "fi": "<p>Kesän vitriininäyttely on omistettu modernin tanssin ja tanssiterapian äidille Riitta Vainiolle.</p><p>Taiteilijana Aija Johansson Haagan Taideseurasta.<br> <br>Haagan Taideseura on Helsingissä yli 50 vuotta toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F33236985AA3DA8C7CD99BA00267E887/Aija_Johanssonin_batiikkiteoksia" }, "name": { "fi": "Aija Johanssonin batiikkiteoksia – Haagan Taideseura" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63860/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:4e42cd1d-6a26-4ea7-9fb8-c41dfc062b6d", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?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:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p12297/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?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:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?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:p3670/?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:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?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:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?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": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=TL-DG020720241572087713" }, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 151615, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-07-03T06:57:05.366985Z", "last_modified_time": "2024-07-03T06:57:05.367002Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e15bb5dd-9b16-ef11-9f89-0022489e55b1", "name": "Testi", "cropping": "", "photographer_name": "Testi", "alt_text": "Testi", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151615/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?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:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p12297/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?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:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?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:p3670/?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:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?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:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "created_time": "2024-07-03T06:40:59.818754Z", "last_modified_time": "2024-07-03T06:57:06.179337Z", "date_published": "2024-07-03T06:30:15Z", "start_time": "2024-09-01T10:28:00Z", "end_time": "2024-09-01T12:28:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-07-02T08:00:00+03:00", "enrolment_end_time": "2024-08-26T08:00:00+03:00", "local": false, "replaced_by": null, "provider": { "fi": "Tomi" }, "short_description": { "fi": "TL-DG.03.07.2024" }, "description": { "fi": "<div><p>TL-DG.03.07.2024</p></div>" }, "info_url": null, "name": { "fi": "TL-DG.03.07.2024" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:4e42cd1d-6a26-4ea7-9fb8-c41dfc062b6d/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:6a56deb6-854d-4028-8e70-f5d14558495c", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?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": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=TL-DG020720242404307361" }, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-07-02T10:21:34.047502Z", "last_modified_time": "2024-07-02T14:32:12.176780Z", "date_published": "2024-07-02T10:20:31Z", "start_time": "2024-09-01T10:28:00Z", "end_time": "2024-09-01T12:28:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-07-02T08:00:00+03:00", "enrolment_end_time": "2024-08-26T08:00:00+03:00", "local": false, "replaced_by": null, "provider": { "fi": "Tomi" }, "short_description": { "fi": "TL-DG.02.07.2024" }, "description": { "fi": "<div><p>TL-DG.02.07.2024</p></div>" }, "info_url": null, "name": { "fi": "TL-DG.02.07.2024" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:6a56deb6-854d-4028-8e70-f5d14558495c/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64161", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151612, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-02T13:13:11.885666Z", "last_modified_time": "2024-07-02T13:13:11.885677Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751208.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151612/?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": "2024-07-02T13:13:11.876287Z", "last_modified_time": "2024-07-02T13:13:11.928142Z", "date_published": null, "start_time": "2024-09-18T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories." }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille<br>Kesto: n. 45 min<br>Kieli: suomi<br>Vapaa pääsy</p><p>Tarkoitettu päiväkotiryhmille ja perheille. Ryhmille ennakkoilmoittautumiset osoitteessa https://kultus.fi/fi</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på https://kultus.fi/fi</p>", "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip.</p><p>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds<br>Duration: approx. 45 min<br>Language: Finnish<br>Free of charge</p><p>Intended for day-care groups and families. Advance registration for groups at https://kultus.fi/fi</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/59EF70A91071E5CD871120D1E60BE070/Jussi_Ollilan_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/59EF70A91071E5CD871120D1E60BE070/Skogssagostunder_med_Jussi_Ollila", "en": "http://www.vuotalo.fi/en/events/event/59EF70A91071E5CD871120D1E60BE070/Jussi_Ollila_s_forest_fairy_tales" }, "name": { "fi": "Jussi Ollilan metsäsatutuokiot – Päiväkotiryhmille ja perheille", "sv": "Skogssagostunder med Jussi Ollila – För daghemsgrupper och familjer", "en": "Jussi Ollila's forest fairy tales – For day-care groups and families" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64161/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64160", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151611, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-02T13:13:11.808746Z", "last_modified_time": "2024-07-02T13:13:11.808758Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751207.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151611/?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": "2024-07-02T13:13:11.799165Z", "last_modified_time": "2024-07-02T13:13:11.847368Z", "date_published": null, "start_time": "2024-09-18T06:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories." }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille<br>Kesto: n. 45 min<br>Kieli: suomi<br>Vapaa pääsy</p><p>Tarkoitettu päiväkotiryhmille ja perheille. Ryhmille ennakkoilmoittautumiset osoitteessa https://kultus.fi/fi</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på https://kultus.fi/fi</p>", "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip.</p><p>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds<br>Duration: approx. 45 min<br>Language: Finnish<br>Free of charge</p><p>Intended for day-care groups and families. Advance registration for groups at https://kultus.fi/fi</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E079BD77FC734C3E73574D745BDAC6AA/Jussi_Ollilan_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E079BD77FC734C3E73574D745BDAC6AA/Skogssagostunder_med_Jussi_Ollila", "en": "http://www.vuotalo.fi/en/events/event/E079BD77FC734C3E73574D745BDAC6AA/Jussi_Ollila_s_forest_fairy_tales" }, "name": { "fi": "Jussi Ollilan metsäsatutuokiot – Päiväkotiryhmille ja perheille", "sv": "Skogssagostunder med Jussi Ollila – För daghemsgrupper och familjer", "en": "Jussi Ollila's forest fairy tales – For day-care groups and families" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64160/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64159", "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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151608, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-02T13:13:10.725746Z", "last_modified_time": "2024-07-02T13:13:10.725760Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751205.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151608/?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": "2024-07-02T13:13:10.711695Z", "last_modified_time": "2024-07-02T13:13:10.778192Z", "date_published": null, "start_time": "2024-09-04T07:30:00Z", "end_time": "2024-09-04T08:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories." }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille<br>Kesto: n. 45 min<br>Kieli: suomi<br>Vapaa pääsy</p><p>Tarkoitettu päiväkotiryhmille ja perheille. Ryhmille ennakkoilmoittautumiset osoitteessa https://kultus.fi/fi</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på https://kultus.fi/fi</p>", "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip.</p><p>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds<br>Duration: approx. 45 min<br>Language: Finnish<br>Free of charge</p><p>Intended for day-care groups and families. Advance registration for groups at https://kultus.fi/fi</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D0E2F2CA641F0CE0ECE58CB12F99A697/Jussi_Ollilan_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D0E2F2CA641F0CE0ECE58CB12F99A697/Skogssagostunder_med_Jussi_Ollila", "en": "http://www.vuotalo.fi/en/events/event/D0E2F2CA641F0CE0ECE58CB12F99A697/Jussi_Ollila_s_forest_fairy_tales" }, "name": { "fi": "Jussi Ollilan metsäsatutuokiot – Päiväkotiryhmille ja perheille", "sv": "Skogssagostunder med Jussi Ollila – För daghemsgrupper och familjer", "en": "Jussi Ollila's forest fairy tales – For day-care groups and families" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64159/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64158", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151607, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-02T13:13:10.609988Z", "last_modified_time": "2024-07-02T13:13:10.610002Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751204.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151607/?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": "2024-07-02T13:13:10.596120Z", "last_modified_time": "2024-07-02T13:13:10.676004Z", "date_published": null, "start_time": "2024-09-04T06:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.", "en": "Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories." }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille<br>Kesto: n. 45 min<br>Kieli: suomi<br>Vapaa pääsy</p><p>Tarkoitettu päiväkotiryhmille ja perheille. Ryhmille ennakkoilmoittautumiset osoitteessa https://kultus.fi/fi</p>", "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är klippskogen i Nybondas. Vi ger oss av från parkeringsplatsen mellan café Kampela och Nybondasskogen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska<br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer. Förhandsanmälan för grupper på https://kultus.fi/fi</p>", "en": "<p>Jussi Ollila takes people to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Suitable for children over 3 years of age, or children who can walk the distance of a small forest trip.</p><p>The location is the rocky forest of Uutela. Departure from the parking area between the café Kampela and the Uutela forest.</p><p>Age recommendation: 3–7-year-olds<br>Duration: approx. 45 min<br>Language: Finnish<br>Free of charge</p><p>Intended for day-care groups and families. Advance registration for groups at https://kultus.fi/fi</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5C64E131AED705E49E55E9A91BD10F54/Jussi_Ollilan_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/5C64E131AED705E49E55E9A91BD10F54/Skogssagostunder_med_Jussi_Ollila", "en": "http://www.vuotalo.fi/en/events/event/5C64E131AED705E49E55E9A91BD10F54/Jussi_Ollila_s_forest_fairy_tales" }, "name": { "fi": "Jussi Ollilan metsäsatutuokiot – Päiväkotiryhmille ja perheille", "sv": "Skogssagostunder med Jussi Ollila – För daghemsgrupper och familjer", "en": "Jussi Ollila's forest fairy tales – For day-care groups and families" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64158/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64157", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151606, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-02T13:13:10.369512Z", "last_modified_time": "2024-07-02T13:13:10.369534Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_748950.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151606/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-02T13:13:10.332103Z", "last_modified_time": "2024-07-02T13:13:10.439358Z", "date_published": null, "start_time": "2024-09-03", "end_time": "2024-09-28", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Valokuvataiteilija Hanne Kiiverin teokset kutsuvat katsojan pohtimaan, mitä enkelit ovat ja miltä ne voivat näyttää tänä päivänä.", "sv": "Fotografen Hanne Kiiveris verk inbjuder betraktaren att begrunda vad änglar är och hur de kan se ut i dag.", "en": "Photographer Hanne Kiiveri's works invite the viewer to reflect on what angels are and what they might look like today." }, "description": { "fi": "<p>Valokuvataiteilija Hanne Kiiverin teokset kutsuvat katsojan pohtimaan, mitä enkelit ovat ja miltä ne voivat näyttää tänä päivänä.</p><p>Kenen enkelit? -taidenäyttely kiertää pääkaupunkiseutua vuonna 2024. Kiiverin enkeleitä voi kohdata ostarilla, galleriassa, kirkossa ja internetissä. Valokuvat kuuluvat hankkeeseen, jossa luodaan ja tutkitaan nykyaikaisia mielikuvia enkeleistä.</p><p>Tule katsomaan näyttelyn kuvat ja keskustele niistä kanssamme. Miltä sinun enkelisi näyttää? Osallistu hankkeeseen myös suunnittelemalla oma enkelikuvasi taiteilijan kanssa.</p><p>Näyttelyvieraiden ajatukset ja kerätään tutkimusaineistoksi sähköisellä kyselyllä. Tutkimus toteutetaan Helsingin yliopistossa. Projektin rahoittaa Koneen Säätiö.</p><p>Näyttelyn avajaiset ke 4.9. klo 18–19:30</p><p>Lisätiedot ja tarkemmat osallistumisohjeet: <br>https://blogs.helsinki.fi/kenenenkelit/</p>", "sv": "<p>Fotografen Hanne Kiiveris verk inbjuder betraktaren att begrunda vad änglar är och hur de kan se ut i dag.</p><p>Konstutställningen Kenen enkelit? turnerar i huvudstadsregionen under 2024. Du kan råka på Kiiveris änglar i köpcentra, gallerier, kyrkor och på internet. Fotografierna är en del av ett projekt för att skapa och utforska samtida fantasibilder av änglar.</p><p>Kom och titta på utställningens bilder och diskutera dem med oss. Hur ser din ängel ut? Du kan också delta i projektet genom att designa en egen ängelbild tillsammans med konstnären.<br>Utställningsbesökarnas tankar samlas in genom en elektronisk enkät. Forskningen utförs vid Helsingfors universitet. Projektet finansieras av Konestiftelsen.</p><p>Utställningens vernissage äger rum ons 4.9. kl. 18–19:30</p><p>Du hittar mer information och detaljerade anvisningar för att delta på: <br>https://blogs.helsinki.fi/kenenenkelit/</p>", "en": "<p>Photographer Hanne Kiiveri's works invite the viewer to reflect on what angels are and what they might look like today.</p><p>Whose Angels? art exhibition will tour the Helsinki metropolitan area in 2024. You can find Kiiveri’s angels at the mall, gallery, church and on the Internet. Photographs are part of a project to create and explore contemporary angel images.</p><p>Come and check out the exhibition photos and discuss them with us. What does your angel look like? You can also participate in the project by designing your own angel image with the artist.<br>The artist will collect the exhibition guests’ ideas as research material with an electronic survey. The study will be carried out at the University of Helsinki. The project is funded by Kone Foundation.</p><p>Opening of the exhibition on Wed 4 September at 6–7:30 pm</p><p>Additional information and detailed instructions for participants: <br>https://blogs.helsinki.fi/kenenenkelit/en/</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DAE496C7E21310154F10383B5FA488C8/Kenen_enkelit_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/DAE496C7E21310154F10383B5FA488C8/Vems_anglar_", "en": "http://www.vuotalo.fi/en/events/event/DAE496C7E21310154F10383B5FA488C8/Whose_Angels_" }, "name": { "fi": "Kenen enkelit? – Taidetta, tutkimusta ja lumoa", "sv": "Vems änglar? – Konst, forskning och förtrollning", "en": "Whose Angels? – Art, research and enchantment" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64157/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agihgz3chm", "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: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:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agihgz3b4m/?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": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-02T11:30:27.206413Z", "last_modified_time": "2024-07-02T11:30:27.206461Z", "date_published": "2024-07-02T11:30:00Z", "start_time": "2024-08-20T14:00:00Z", "end_time": "2024-08-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tule parsimaan ja paikkaamaan omia projektejasi Sellon kirjaston pajaan. ", "sv": "Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad", "en": "Patch up your own projects in a nice group in Sello Library´s Maker Space. " }, "description": { "fi": "<p>Tule parsimaan ja paikkaamaan omia projektejasi kivassa porukassa Sellon pajaan. Voit käyttää omien välineidesi lisäksi kirjaston ompelukonetta ja saumuri. <br>Maksuton, ei ennakkoilmoittautumista. <br>3.9 on kirjaston puolesta on vinyylileikkurin opastusta sitä haluaville. <br></p>", "sv": "<p>Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad (paja). Förutom dina egna sytillbehör kan du använda dig av bibliotekets symaskiner och overlockmaskin (saumuri).<br>Avgiftsfri. Ingen förhandsanmälan.<br>3.9 finns en vinylskärarhandledning för den som vill ha det.<br></p>", "en": "<p>Come and improve and patch up your own projects in a nice group in Sello's workshop. You can use the library's sewing machine and overlock in addition to your own tools. <br>Free of charge, no pre-registration. <br>3.9 There will be a Vinylcutter tutorial on behalf of the library for those who want one. <br></p>" }, "info_url": null, "name": { "fi": "Parsi ja paikkaa", "sv": "Stoppa och lappa", "en": "Patching and repairing " }, "provider_contact_info": null, "location_extra_info": { "fi": "Sellon kirjaston pajatila", "sv": "Sello biblioteks verkstaden ", "en": "Sello Library´s Maker Space" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agihgz3chm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agihgz3cxa", "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: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:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agihgz3b4m/?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": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-02T11:30:26.710219Z", "last_modified_time": "2024-07-02T11:30:26.710240Z", "date_published": "2024-07-02T11:30:00Z", "start_time": "2024-10-01T14:00:00Z", "end_time": "2024-10-01T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tule parsimaan ja paikkaamaan omia projektejasi Sellon kirjaston pajaan. ", "sv": "Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad", "en": "Patch up your own projects in a nice group in Sello Library´s Maker Space. " }, "description": { "fi": "<p>Tule parsimaan ja paikkaamaan omia projektejasi kivassa porukassa Sellon pajaan. Voit käyttää omien välineidesi lisäksi kirjaston ompelukonetta ja saumuri. <br>Maksuton, ei ennakkoilmoittautumista. <br>3.9 on kirjaston puolesta on vinyylileikkurin opastusta sitä haluaville. <br></p>", "sv": "<p>Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad (paja). Förutom dina egna sytillbehör kan du använda dig av bibliotekets symaskiner och overlockmaskin (saumuri).<br>Avgiftsfri. Ingen förhandsanmälan.<br>3.9 finns en vinylskärarhandledning för den som vill ha det.<br></p>", "en": "<p>Come and improve and patch up your own projects in a nice group in Sello's workshop. You can use the library's sewing machine and overlock in addition to your own tools. <br>Free of charge, no pre-registration. <br>3.9 There will be a Vinylcutter tutorial on behalf of the library for those who want one. <br></p>" }, "info_url": null, "name": { "fi": "Parsi ja paikkaa", "sv": "Stoppa och lappa", "en": "Patching and repairing " }, "provider_contact_info": null, "location_extra_info": { "fi": "Sellon kirjaston pajatila", "sv": "Sello biblioteks verkstaden ", "en": "Sello Library´s Maker Space" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agihgz3cxa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agihgz3c5m", "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: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:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agihgz3b4m/?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": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-02T11:30:26.632930Z", "last_modified_time": "2024-07-02T11:30:26.632952Z", "date_published": "2024-07-02T11:30:00Z", "start_time": "2024-09-17T14:00:00Z", "end_time": "2024-09-17T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tule parsimaan ja paikkaamaan omia projektejasi Sellon kirjaston pajaan. ", "sv": "Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad", "en": "Patch up your own projects in a nice group in Sello Library´s Maker Space. " }, "description": { "fi": "<p>Tule parsimaan ja paikkaamaan omia projektejasi kivassa porukassa Sellon pajaan. Voit käyttää omien välineidesi lisäksi kirjaston ompelukonetta ja saumuri. <br>Maksuton, ei ennakkoilmoittautumista. <br>3.9 on kirjaston puolesta on vinyylileikkurin opastusta sitä haluaville. <br></p>", "sv": "<p>Kom med och stoppa och lappa dina egna projekt i vårt trevliga gäng i Sellos verkstad (paja). Förutom dina egna sytillbehör kan du använda dig av bibliotekets symaskiner och overlockmaskin (saumuri).<br>Avgiftsfri. Ingen förhandsanmälan.<br>3.9 finns en vinylskärarhandledning för den som vill ha det.<br></p>", "en": "<p>Come and improve and patch up your own projects in a nice group in Sello's workshop. You can use the library's sewing machine and overlock in addition to your own tools. <br>Free of charge, no pre-registration. <br>3.9 There will be a Vinylcutter tutorial on behalf of the library for those who want one. <br></p>" }, "info_url": null, "name": { "fi": "Parsi ja paikkaa", "sv": "Stoppa och lappa", "en": "Patching and repairing " }, "provider_contact_info": null, "location_extra_info": { "fi": "Sellon kirjaston pajatila", "sv": "Sello biblioteks verkstaden ", "en": "Sello Library´s Maker Space" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agihgz3c5m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agihevbnue", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le: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/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-07-02T07:00:49.469590Z", "last_modified_time": "2024-07-02T09:53:55.304199Z", "date_published": null, "start_time": "2024-10-15T11:00:00Z", "end_time": "2024-10-15T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "tapahtumat toteutetaan yhdessä Kulttuuriketjun kanssa", "sv": "Evenemangen genomförs i samarbete med Kulturkedjan.", "en": "The events are carried out in collaboration with the Cultural Chain." }, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.", "en": "The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries." }, "description": { "fi": "<p>Suomen Kello- ja korumuseo Kruunu Ison Omenan kirjaston Stagella 15.10. klo 14.00 <br>Pelituokio <br>Pelattava koru Kukkaketo toimii muistelun, yhteisöllisyyden ja vuorovaikutuksen välineenä. Pelin edetessä pelaajat vastaavat korteissa esiin tulleisiin kysymyksiin ja muistoistaan koruista. Tai he saavat tietoa kelloihin ja koruihin liittyen. <br>Peli toimii jäänsärkijänä ja inspiraationa muisteltaessa koru- tai kellotarinoita. Korua pelattaessa myös pelin eteneminen, pelaamisen ilo ja taktikointi virkistävät osallistujia. Pelaajat saavat kokea pelaamisen ilon lisäksi hyvin suunniteltua pelimuotoilua ja korutaidetta, ja muistelun sekä seurustelun kautta aivoille hyvää aktivaatiota. <br><br><br>Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.<br>Kulttuuriketjun esityksiä järjestetään syksyn puolella elokuusta marraskuulle.<br>Kirjastoihin Kulttuuriketju tuo upeat 31 esitystä. Esitykset rantautuvat tapahtumakirjastojen; Entressen-, Ison Omenan-, Lippulaivan-, Sellon- ja Tapiolan kirjastojen lisäksi myös Kalajärvelle Kalajärvi-Saliin.<br><br><br>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".<br><br><br>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.<br>Tervetuloa nauttimaan kulttuurista!<br><br><br>Tapahtumat toteutetaan yhdessä Kulttuuriketjun kanssa<br></p>", "sv": "<p>Suomen Kello- ja korumuseo Kruunu i Iso Omena bibliotek Stage den 15.10. kl. 14.00<br>Spelstund <br>Spelet \"Kukkaketo\" fungerar som ett medel för minnen, gemenskap och interaktion. Under spelets gång svarar spelarna på frågor som dyker upp på korten och delar sina minnen om smycken. Alternativt får de information om klockor och smycken. <br>Spelet fungerar som en isbrytare och inspiration för att minnas historier om smycken eller klockor. När man spelar spelet, bidrar spelets framsteg, glädjen av att spela och taktikerandet till att pigga upp deltagarna. Förutom spelglädje får spelarna uppleva välgenomtänkt speldesign och smyckeskonst, och genom minnen och samtal får hjärnan bra stimulans. <br> <br>Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.<br>Kulturkedjans föreställningar arrangeras under hösten från augusti till november.<br>Kulturkedjan bjuder på fantastiska 31 föreställningar till biblioteken. Förutom biblioteken som arrangerar evenemang; Entresse, Iso Omena, Lippulaiva, Sello och Tapiola, kommer föreställningarna även till Kalajärvi-Salen i Kalajärvi.<br><br><br>Du hittar alla föreställningar med sökordet \"kulturkedjan\".<br><br><br>Alla evenemang är öppna för alla och gratis.<br>Välkommen att njuta av kultur!<br><br><br>Evenemangen genomförs i samarbete med Kulturkedjan.<br></p>", "en": "<p>Suomen Kello- ja korumuseo Kruunu at Iso Omena Library's Stage on 15.10. at 14.00<br>Game Session <br>The game \"Kukkaketo\" serves as a tool for reminiscence, community, and interaction. As the game progresses, players answer questions that appear on the cards and share their memories about jewelry. Alternatively, they receive information about watches and jewelry. <br>The game acts as an icebreaker and inspiration for recalling jewelry or watch stories. Playing the game, along with the progress, joy of playing, and strategizing, invigorates the participants. Besides the joy of playing, players experience well-designed game mechanics and jewelry art, and through reminiscing and socializing, their brains receive beneficial activation. <br> <br>The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries.<br>Cultural Chain performances are organized from August to November. The Cultural Chain brings an impressive 31 performances to libraries. In addition to the event libraries; Entresse, Iso Omena, Lippulaiva, Sello, and Tapiola, performances will also be held at Kalajärvi-Sali in Kalajärvi.<br><br><br>You can find all performances by searching with the keyword \"cultural chain\".<br><br><br>All events are open to everyone and free of charge.<br>Welcome to enjoy the culture!<br><br><br>The events are carried out in collaboration with the Cultural Chain.<br></p>" }, "info_url": { "fi": "https://helmet.finna.fi/", "sv": "https://helmet.finna.fi/?lng=sv", "en": "https://helmet.finna.fi/?lng=en-gb" }, "name": { "fi": "Kulttuuriketju - Suomen Kello- ja korumuseo Kruunu Ison Omenan kirjastossa", "sv": "Kulturkedjan - Suomen Kello- ja korumuseo Kruunu i Iso Omena bibliotek", "en": "Cultural Chain - Suomen Kello- ja korumuseo Kruunu at Iso Omena Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agihevbnue/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agihevbnqu", "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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-07-02T07:04:56.446851Z", "last_modified_time": "2024-07-02T09:53:26.764011Z", "date_published": null, "start_time": "2024-09-18T10:00:00Z", "end_time": "2024-09-18T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "tapahtumat toteutetaan yhdessä Kulttuuriketjun kanssa", "sv": "Evenemangen genomförs i samarbete med Kulturkedjan.", "en": "The events are carried out in collaboration with the Cultural Chain." }, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.", "en": "The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries." }, "description": { "fi": "<p>Suomen Kello- ja korumuseo Kruunu Entressen kirjaston Sinisessä huoneessa 18.9. klo 13.00 <br>Pelituokio <br>Pelattava koru Kukkaketo toimii muistelun, yhteisöllisyyden ja vuorovaikutuksen välineenä. Pelin edetessä pelaajat vastaavat korteissa esiin tulleisiin kysymyksiin ja muistoistaan koruista. Tai he saavat tietoa kelloihin ja koruihin liittyen. <br>Peli toimii jäänsärkijänä ja inspiraationa muisteltaessa koru- tai kellotarinoita. Korua pelattaessa myös pelin eteneminen, pelaamisen ilo ja taktikointi virkistävät osallistujia. Pelaajat saavat kokea pelaamisen ilon lisäksi hyvin suunniteltua pelimuotoilua ja korutaidetta, ja muistelun sekä seurustelun kautta aivoille hyvää aktivaatiota. <br><br><br>Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.<br>Kulttuuriketjun esityksiä järjestetään syksyn puolella elokuusta marraskuulle.<br>Kirjastoihin Kulttuuriketju tuo upeat 31 esitystä. Esitykset rantautuvat tapahtumakirjastojen; Entressen-, Ison Omenan-, Lippulaivan-, Sellon- ja Tapiolan kirjastojen lisäksi myös Kalajärvelle Kalajärvi-Saliin.<br><br><br>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".<br><br><br>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.<br>Tervetuloa nauttimaan kulttuurista!<br><br><br>Tapahtumat toteutetaan yhdessä Kulttuuriketjun kanssa<br></p>", "sv": "<p>Suomen Kello- ja korumuseo Kruunu i Entresse bibliotek den 18.9. kl. 13.00 (Sininen huone)<br>Spelstund <br>Spelet \"Kukkaketo\" fungerar som ett medel för minnen, gemenskap och interaktion. Under spelets gång svarar spelarna på frågor som dyker upp på korten och delar sina minnen om smycken. Alternativt får de information om klockor och smycken. <br>Spelet fungerar som en isbrytare och inspiration för att minnas historier om smycken eller klockor. När man spelar spelet, bidrar spelets framsteg, glädjen av att spela och taktikerandet till att pigga upp deltagarna. Förutom spelglädje får spelarna uppleva välgenomtänkt speldesign och smyckeskonst, och genom minnen och samtal får hjärnan bra stimulans. <br> <br>Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.<br>Kulturkedjans föreställningar arrangeras under hösten från augusti till november.<br>Kulturkedjan bjuder på fantastiska 31 föreställningar till biblioteken. Förutom biblioteken som arrangerar evenemang; Entresse, Iso Omena, Lippulaiva, Sello och Tapiola, kommer föreställningarna även till Kalajärvi-Salen i Kalajärvi.<br><br><br>Du hittar alla föreställningar med sökordet \"kulturkedjan\".<br><br><br>Alla evenemang är öppna för alla och gratis.<br>Välkommen att njuta av kultur!<br><br><br>Evenemangen genomförs i samarbete med Kulturkedjan.<br></p>", "en": "<p>Suomen Kello- ja korumuseo Kruunu at Entresse Library's on 18.9. at 13.00 (Sininen huone) <br>Game Session <br>The game \"Kukkaketo\" serves as a tool for reminiscence, community, and interaction. As the game progresses, players answer questions that appear on the cards and share their memories about jewelry. Alternatively, they receive information about watches and jewelry. <br>The game acts as an icebreaker and inspiration for recalling jewelry or watch stories. Playing the game, along with the progress, joy of playing, and strategizing, invigorates the participants. Besides the joy of playing, players experience well-designed game mechanics and jewelry art, and through reminiscing and socializing, their brains receive beneficial activation. <br> <br>The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries.<br>Cultural Chain performances are organized from August to November. The Cultural Chain brings an impressive 31 performances to libraries. In addition to the event libraries; Entresse, Iso Omena, Lippulaiva, Sello, and Tapiola, performances will also be held at Kalajärvi-Sali in Kalajärvi.<br><br><br>You can find all performances by searching with the keyword \"cultural chain\".<br><br><br>All events are open to everyone and free of charge.<br>Welcome to enjoy the culture!<br><br><br>The events are carried out in collaboration with the Cultural Chain.<br></p>" }, "info_url": { "fi": "https://helmet.finna.fi/", "sv": "https://helmet.finna.fi/?lng=sv", "en": "https://helmet.finna.fi/?lng=en-gb" }, "name": { "fi": "Kulttuuriketju - Suomen Kello- ja korumuseo Kruunu Entressen kirjastossa", "sv": "Kulturkedjan - Suomen Kello- ja korumuseo Kruunu i Entresse bibliotek", "en": "Cultural Chain - Suomen Kello- ja korumuseo Kruunu at Entresse Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agihevbnqu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agihevbnha", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-07-02T07:11:56.053724Z", "last_modified_time": "2024-07-02T09:51:57.491787Z", "date_published": null, "start_time": "2024-09-24T10:00:00Z", "end_time": "2024-09-24T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "tapahtumat toteutetaan yhdessä Kulttuuriketjun kanssa", "sv": "Evenemangen genomförs i samarbete med Kulturkedjan.", "en": "The events are carried out in collaboration with the Cultural Chain." }, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.", "en": "The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries." }, "description": { "fi": "<p>Suomen Kello- ja korumuseo Kruunu Tapiolan kirjaston Tapahtumatila Heikissä 24.9. klo 13.00 <br>Pelituokio <br>Pelattava koru Kukkaketo toimii muistelun, yhteisöllisyyden ja vuorovaikutuksen välineenä. Pelin edetessä pelaajat vastaavat korteissa esiin tulleisiin kysymyksiin ja muistoistaan koruista. Tai he saavat tietoa kelloihin ja koruihin liittyen. <br>Peli toimii jäänsärkijänä ja inspiraationa muisteltaessa koru- tai kellotarinoita. Korua pelattaessa myös pelin eteneminen, pelaamisen ilo ja taktikointi virkistävät osallistujia. Pelaajat saavat kokea pelaamisen ilon lisäksi hyvin suunniteltua pelimuotoilua ja korutaidetta, ja muistelun sekä seurustelun kautta aivoille hyvää aktivaatiota. <br><br><br>Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.<br>Kulttuuriketjun esityksiä järjestetään syksyn puolella elokuusta marraskuulle.<br>Kirjastoihin Kulttuuriketju tuo upeat 31 esitystä. Esitykset rantautuvat tapahtumakirjastojen; Entressen-, Ison Omenan-, Lippulaivan-, Sellon- ja Tapiolan kirjastojen lisäksi myös Kalajärvelle Kalajärvi-Saliin.<br><br><br>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".<br><br><br>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.<br>Tervetuloa nauttimaan kulttuurista!<br><br><br>Tapahtumat toteutetaan yhdessä Kulttuuriketjun kanssa<br></p>", "sv": "<p>Suomen Kello- ja korumuseo Kruunu i Tapiola bibliotek den 24.9. kl. 13.00 (Heikki)<br>Spelstund <br>Spelet \"Kukkaketo\" fungerar som ett medel för minnen, gemenskap och interaktion. Under spelets gång svarar spelarna på frågor som dyker upp på korten och delar sina minnen om smycken. Alternativt får de information om klockor och smycken. <br>Spelet fungerar som en isbrytare och inspiration för att minnas historier om smycken eller klockor. När man spelar spelet, bidrar spelets framsteg, glädjen av att spela och taktikerandet till att pigga upp deltagarna. Förutom spelglädje får spelarna uppleva välgenomtänkt speldesign och smyckeskonst, och genom minnen och samtal får hjärnan bra stimulans. <br> <br>Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.<br>Kulturkedjans föreställningar arrangeras under hösten från augusti till november.<br>Kulturkedjan bjuder på fantastiska 31 föreställningar till biblioteken. Förutom biblioteken som arrangerar evenemang; Entresse, Iso Omena, Lippulaiva, Sello och Tapiola, kommer föreställningarna även till Kalajärvi-Salen i Kalajärvi.<br><br><br>Du hittar alla föreställningar med sökordet \"kulturkedjan\".<br><br><br>Alla evenemang är öppna för alla och gratis.<br>Välkommen att njuta av kultur!<br><br><br>Evenemangen genomförs i samarbete med Kulturkedjan.<br></p>", "en": "<p>Suomen Kello- ja korumuseo Kruunu at Tapiola Library's on 24.9. at 13.00 (Heikki) <br>Game Session <br>The game \"Kukkaketo\" serves as a tool for reminiscence, community, and interaction. As the game progresses, players answer questions that appear on the cards and share their memories about jewelry. Alternatively, they receive information about watches and jewelry. <br>The game acts as an icebreaker and inspiration for recalling jewelry or watch stories. Playing the game, along with the progress, joy of playing, and strategizing, invigorates the participants. Besides the joy of playing, players experience well-designed game mechanics and jewelry art, and through reminiscing and socializing, their brains receive beneficial activation. <br> <br>The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries.<br>Cultural Chain performances are organized from August to November. The Cultural Chain brings an impressive 31 performances to libraries. In addition to the event libraries; Entresse, Iso Omena, Lippulaiva, Sello, and Tapiola, performances will also be held at Kalajärvi-Sali in Kalajärvi.<br><br><br>You can find all performances by searching with the keyword \"cultural chain\".<br><br><br>All events are open to everyone and free of charge.<br>Welcome to enjoy the culture!<br><br><br>The events are carried out in collaboration with the Cultural Chain.<br></p>" }, "info_url": { "fi": "https://helmet.finna.fi/", "sv": "https://helmet.finna.fi/?lng=sv", "en": "https://helmet.finna.fi/?lng=en-gb" }, "name": { "fi": "Kulttuuriketju - Suomen Kello- ja korumuseo Kruunu Tapiolan kirjastossa", "sv": "Kulturkedjan - Suomen Kello- ja korumuseo Kruunu i Tapiola bibliotek", "en": "Cultural Chain - Suomen Kello- ja korumuseo Kruunu at Tapiola Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapahtumatila Heikki", "sv": "Heikki", "en": "Heikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agihevbnha/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agihfcxvxm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?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:p2433/?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": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-07-02T07:19:38.577371Z", "last_modified_time": "2024-07-02T09:51:28.889327Z", "date_published": null, "start_time": "2024-11-06T10:00:00Z", "end_time": "2024-11-06T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "tapahtumat toteutetaan yhdessä Kulttuuriketjun kanssa", "sv": "Evenemangen genomförs i samarbete med Kulturkedjan.", "en": "The events are carried out in collaboration with the Cultural Chain." }, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.", "en": "The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries." }, "description": { "fi": "<p>Suomen Kello- ja korumuseo Kruunu Lippulaivan kirjaston Salonki 6.11. klo 12.00 <br>Pelituokio <br>Pelattava koru Kukkaketo toimii muistelun, yhteisöllisyyden ja vuorovaikutuksen välineenä. Pelin edetessä pelaajat vastaavat korteissa esiin tulleisiin kysymyksiin ja muistoistaan koruista. Tai he saavat tietoa kelloihin ja koruihin liittyen. <br>Peli toimii jäänsärkijänä ja inspiraationa muisteltaessa koru- tai kellotarinoita. Korua pelattaessa myös pelin eteneminen, pelaamisen ilo ja taktikointi virkistävät osallistujia. Pelaajat saavat kokea pelaamisen ilon lisäksi hyvin suunniteltua pelimuotoilua ja korutaidetta, ja muistelun sekä seurustelun kautta aivoille hyvää aktivaatiota. <br><br><br>Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.<br>Kulttuuriketjun esityksiä järjestetään syksyn puolella elokuusta marraskuulle.<br>Kirjastoihin Kulttuuriketju tuo upeat 31 esitystä. Esitykset rantautuvat tapahtumakirjastojen; Entressen-, Ison Omenan-, Lippulaivan-, Sellon- ja Tapiolan kirjastojen lisäksi myös Kalajärvelle Kalajärvi-Saliin.<br><br><br>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".<br><br><br>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.<br>Tervetuloa nauttimaan kulttuurista!<br><br><br>Tapahtumat toteutetaan yhdessä Kulttuuriketjun kanssa<br></p>", "sv": "<p>Suomen Kello- ja korumuseo Kruunu i Lippulaiva bibliotek den 6.11. kl. 12.00 (Salonki)<br>Spelstund <br>Spelet \"Kukkaketo\" fungerar som ett medel för minnen, gemenskap och interaktion. Under spelets gång svarar spelarna på frågor som dyker upp på korten och delar sina minnen om smycken. Alternativt får de information om klockor och smycken. <br>Spelet fungerar som en isbrytare och inspiration för att minnas historier om smycken eller klockor. När man spelar spelet, bidrar spelets framsteg, glädjen av att spela och taktikerandet till att pigga upp deltagarna. Förutom spelglädje får spelarna uppleva välgenomtänkt speldesign och smyckeskonst, och genom minnen och samtal får hjärnan bra stimulans. <br> <br>Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.<br>Kulturkedjans föreställningar arrangeras under hösten från augusti till november.<br>Kulturkedjan bjuder på fantastiska 31 föreställningar till biblioteken. Förutom biblioteken som arrangerar evenemang; Entresse, Iso Omena, Lippulaiva, Sello och Tapiola, kommer föreställningarna även till Kalajärvi-Salen i Kalajärvi.<br><br><br>Du hittar alla föreställningar med sökordet \"kulturkedjan\".<br><br><br>Alla evenemang är öppna för alla och gratis.<br>Välkommen att njuta av kultur!<br><br><br>Evenemangen genomförs i samarbete med Kulturkedjan.<br></p>", "en": "<p>Suomen Kello- ja korumuseo Kruunu at Lippulaiva Library's on 6.11. at 12.00 (Salonki) <br>Game Session <br>The game \"Kukkaketo\" serves as a tool for reminiscence, community, and interaction. As the game progresses, players answer questions that appear on the cards and share their memories about jewelry. Alternatively, they receive information about watches and jewelry. <br>The game acts as an icebreaker and inspiration for recalling jewelry or watch stories. Playing the game, along with the progress, joy of playing, and strategizing, invigorates the participants. Besides the joy of playing, players experience well-designed game mechanics and jewelry art, and through reminiscing and socializing, their brains receive beneficial activation. <br> <br>The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries.<br>Cultural Chain performances are organized from August to November. The Cultural Chain brings an impressive 31 performances to libraries. In addition to the event libraries; Entresse, Iso Omena, Lippulaiva, Sello, and Tapiola, performances will also be held at Kalajärvi-Sali in Kalajärvi.<br><br><br>You can find all performances by searching with the keyword \"cultural chain\".<br><br><br>All events are open to everyone and free of charge.<br>Welcome to enjoy the culture!<br><br><br>The events are carried out in collaboration with the Cultural Chain.<br></p>" }, "info_url": { "fi": "https://helmet.finna.fi/", "sv": "https://helmet.finna.fi/?lng=sv", "en": "https://helmet.finna.fi/?lng=en-gb" }, "name": { "fi": "Kulttuuriketju - Suomen Kello- ja korumuseo Kruunu Lippulaivan kirjastossa", "sv": "Kulturkedjan - Suomen Kello- ja korumuseo Kruunu i Lippulaiva bibliotek", "en": "Cultural Chain - Suomen Kello- ja korumuseo Kruunu at Lippulaiva Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agihfcxvxm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agihfcxvmm", "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/espoo_le:agggfz66w4/?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:p2433/?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": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-07-02T07:56:25.989630Z", "last_modified_time": "2024-07-02T09:50:57.421806Z", "date_published": null, "start_time": "2024-10-30T12:00:00Z", "end_time": "2024-10-30T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "tapahtumat toteutetaan yhdessä Kulttuuriketjun kanssa", "sv": "Evenemangen genomförs i samarbete med Kulturkedjan.", "en": "The events are carried out in collaboration with the Cultural Chain." }, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.", "en": "The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries." }, "description": { "fi": "<p>Suomen Kello- ja korumuseo Kruunu Sellon kirjaston Akseli-salissa (2krs) 30.10. klo 14.00 <br>Pelituokio <br>Pelattava koru Kukkaketo toimii muistelun, yhteisöllisyyden ja vuorovaikutuksen välineenä. Pelin edetessä pelaajat vastaavat korteissa esiin tulleisiin kysymyksiin ja muistoistaan koruista. Tai he saavat tietoa kelloihin ja koruihin liittyen. <br>Peli toimii jäänsärkijänä ja inspiraationa muisteltaessa koru- tai kellotarinoita. Korua pelattaessa myös pelin eteneminen, pelaamisen ilo ja taktikointi virkistävät osallistujia. Pelaajat saavat kokea pelaamisen ilon lisäksi hyvin suunniteltua pelimuotoilua ja korutaidetta, ja muistelun sekä seurustelun kautta aivoille hyvää aktivaatiota. <br><br><br>Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.<br>Kulttuuriketjun esityksiä järjestetään syksyn puolella elokuusta marraskuulle.<br>Kirjastoihin Kulttuuriketju tuo upeat 31 esitystä. Esitykset rantautuvat tapahtumakirjastojen; Entressen-, Ison Omenan-, Lippulaivan-, Sellon- ja Tapiolan kirjastojen lisäksi myös Kalajärvelle Kalajärvi-Saliin.<br><br><br>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".<br><br><br>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.<br>Tervetuloa nauttimaan kulttuurista!<br><br><br>Tapahtumat toteutetaan yhdessä Kulttuuriketjun kanssa<br></p>", "sv": "<p>Suomen Kello- ja korumuseo Kruunu i Sello bibliotek den 30.10. kl. 14.00 (Akseli-sali)<br>Spelstund <br>Spelet \"Kukkaketo\" fungerar som ett medel för minnen, gemenskap och interaktion. Under spelets gång svarar spelarna på frågor som dyker upp på korten och delar sina minnen om smycken. Alternativt får de information om klockor och smycken. <br>Spelet fungerar som en isbrytare och inspiration för att minnas historier om smycken eller klockor. När man spelar spelet, bidrar spelets framsteg, glädjen av att spela och taktikerandet till att pigga upp deltagarna. Förutom spelglädje får spelarna uppleva välgenomtänkt speldesign och smyckeskonst, och genom minnen och samtal får hjärnan bra stimulans. <br> <br>Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.<br>Kulturkedjans föreställningar arrangeras under hösten från augusti till november.<br>Kulturkedjan bjuder på fantastiska 31 föreställningar till biblioteken. Förutom biblioteken som arrangerar evenemang; Entresse, Iso Omena, Lippulaiva, Sello och Tapiola, kommer föreställningarna även till Kalajärvi-Salen i Kalajärvi.<br><br><br>Du hittar alla föreställningar med sökordet \"kulturkedjan\".<br><br><br>Alla evenemang är öppna för alla och gratis.<br>Välkommen att njuta av kultur!<br><br><br>Evenemangen genomförs i samarbete med Kulturkedjan.<br></p>", "en": "<p>Suomen Kello- ja korumuseo Kruunu at Sello Library's Akseli-sali on 30.10. at 14.00<br>Game Session <br>The game \"Kukkaketo\" serves as a tool for reminiscence, community, and interaction. As the game progresses, players answer questions that appear on the cards and share their memories about jewelry. Alternatively, they receive information about watches and jewelry. <br>The game acts as an icebreaker and inspiration for recalling jewelry or watch stories. Playing the game, along with the progress, joy of playing, and strategizing, invigorates the participants. Besides the joy of playing, players experience well-designed game mechanics and jewelry art, and through reminiscing and socializing, their brains receive beneficial activation. <br> <br>The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries.<br>Cultural Chain performances are organized from August to November. The Cultural Chain brings an impressive 31 performances to libraries. In addition to the event libraries; Entresse, Iso Omena, Lippulaiva, Sello, and Tapiola, performances will also be held at Kalajärvi-Sali in Kalajärvi.<br><br><br>You can find all performances by searching with the keyword \"cultural chain\".<br><br><br>All events are open to everyone and free of charge.<br>Welcome to enjoy the culture!<br><br><br>The events are carried out in collaboration with the Cultural Chain.<br></p>" }, "info_url": { "fi": "https://helmet.finna.fi/", "sv": "https://helmet.finna.fi/?lng=sv", "en": "https://helmet.finna.fi/?lng=en-gb" }, "name": { "fi": "Kulttuuriketju - Suomen Kello- ja korumuseo Kruunu Sellon kirjastossa", "sv": "Kulturkedjan - Suomen Kello- ja korumuseo Kruunu i Sello bibliotek", "en": "Cultural Chain - Suomen Kello- ja korumuseo Kruunu at Sello Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli-sali", "sv": "Akseli-sali", "en": "Akseli-sali" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agihfcxvmm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agihf6jjcm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-07-02T09:49:20.647945Z", "last_modified_time": "2024-07-02T09:49:20.647967Z", "date_published": null, "start_time": "2024-10-11T09:00:00Z", "end_time": "2024-10-11T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "tapahtumat toteutetaan yhdessä Kulttuuriketjun kanssa", "sv": "Evenemangen genomförs i samarbete med Kulturkedjan.", "en": "The events are carried out in collaboration with the Cultural Chain." }, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.", "en": "The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries." }, "description": { "fi": "<p>Glims & Gloms Lippulaivan kirjasto Salonki 11.10. klo 12.00 <br><br><br>PENNITÖN UNEKSIJA <br>Simo Heiskanen ja Mari Kätkä tulkitsevat vanhoja ikivihreitä. <br>Pennitön uneksija esityksen hahmo on köyhä kulkuri, joka vaeltaa ilman määränpäätä, koko omaisuus olkalaukussaan. Hän yrittää muusikkoystävänsä kanssa tienata laulaen ja tanssien muutaman kolikon päivästä selvitäkseen. Pennitön uneksija vie katsojan koomisen ilmaisun, tanssin, laulun ja taitavan musisoinnin keinoin matkalle muistojen sävelmiin, Saharan autiomaahan ja lentämään levitetyin siivin Atlantin ylle. <br>Esityksen musiikissa sukelletaan suomalaisen kevyen musiikin, rallien ja iskelmien, historiaan monille tuttuun musiikilliseen maisemaan. Esityksessä kuullaan Toivo Kärjen, Georg Malsténin ja Veikko Lavin ikivihreitä, joista siirrytään sulavasti Unto Monosen ja Astor Piazzollan tangojen kaihoon. Esityksen yllättävissä käänteissä lentoon nostavat 70- ja 80-lukujen iskelmät ja pop-kappaleet sovitetaan kansanmusiikilliseen poljentoon, joka nostattaa hymyn kuulijoiden huulille. <br>Käsikirjoitus ja ohjaus Simo Heiskanen <br>Esiintyjät Simo Heiskanen ja Mari Kätkä <br>Kesto 40 minuuttia<br>Esitys on Suomeksi <br><br><br>Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.<br>Kulttuuriketjun esityksiä järjestetään syksyn puolella elokuusta marraskuulle.<br>Kirjastoihin Kulttuuriketju tuo upeat 31 esitystä. Esitykset rantautuvat tapahtumakirjastojen; Entressen-, Ison Omenan-, Lippulaivan-, Sellon- ja Tapiolan kirjastojen lisäksi myös Kalajärvelle Kalajärvi-Saliin.<br><br><br>Kaikki esitykset löydät hakusanalla \"kulttuuriketju\".<br><br><br>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.<br>Tervetuloa nauttimaan kulttuurista!<br><br><br>Tapahtumat toteutetaan yhdessä Kulttuuriketjun kanssa<br></p>", "sv": "<p>Glims & Gloms Lippulaiva bibliotek den 11.10. kl. 12.00 (Salonki)<br><br><br>PENNITÖN UNEKSIJA<br>Simo Heiskanen och Mari Kätkä tolkar gamla odödliga sånger.<br>Karaktären i föreställningen \"Pennitön uneksija\" är en fattig luffare som vandrar utan mål med hela sin egendom i en axelväska. Tillsammans med sin musikerkompis försöker han tjäna några slantar genom att sjunga och dansa för att klara sig igenom dagen. \"Pennitön uneksija\" tar publiken med på en resa genom komisk uttryck, dans, sång och skickligt musicerande, till minnenas melodier, Saharas öken och med utsträckta vingar över Atlanten. <br>Musiken i föreställningen dyker ner i historien om finsk populärmusik, visor och schlager, till en välbekant musikalisk landskap för många. Föreställningen inkluderar evergreens av Toivo Kärki, Georg Malstén och Veikko Lavi, som smidigt övergår till tangons vemod av Unto Mononen och Astor Piazzolla. I föreställningens oväntade vändningar lyfter schlagers och poplåtar från 70- och 80-talet till folkmusikaliska rytmer som får ett leende på åhörarnas läppar. <br>Manus och regi: Simo Heiskanen Artister: Simo Heiskanen och Mari Kätkä <br>Varaktighet: 40 minuter <br>Presentation på finska <br><br><br>Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.<br>Kulturkedjans föreställningar arrangeras under hösten från augusti till november.<br>Kulturkedjan bjuder på fantastiska 31 föreställningar till biblioteken. Förutom biblioteken som arrangerar evenemang; Entresse, Iso Omena, Lippulaiva, Sello och Tapiola, kommer föreställningarna även till Kalajärvi-Salen i Kalajärvi.<br><br><br>Du hittar alla föreställningar med sökordet \"kulturkedjan\".<br><br><br>Alla evenemang är öppna för alla och gratis.<br>Välkommen att njuta av kultur!<br><br><br>Evenemangen genomförs i samarbete med Kulturkedjan.<br></p>", "en": "<p>Glims & Gloms Lippulaiva Library's Salonki on 11.10. at 12.00<br><br><br>PENNITÖN UNEKSIJA<br>Simo Heiskanen and Mari Kätkä interpret timeless classics <br><br><br>The character in the performance \"Penniless Dreamer\" is a poor vagabond who wanders aimlessly with all his belongings in a shoulder bag. Together with his musician friend, he tries to earn a few coins by singing and dancing to survive the day. \"Penniless Dreamer\" takes the audience on a journey through comical expression, dance, song, and skillful musicianship, to the melodies of memories, the Sahara desert, and soaring with open wings over the Atlantic. <br>The music in the performance dives into the history of Finnish light music, ballads, and schlager, to a familiar musical landscape for many. The performance features evergreens by Toivo Kärki, Georg Malstén, and Veikko Lavi, smoothly transitioning into the melancholic tangos of Unto Mononen and Astor Piazzolla. In the performance's surprising twists, schlagers and pop songs from the 70s and 80s are arranged in a folk musical rhythm, bringing smiles to the audience's faces. <br><br><br>Script and direction: Simo Heiskanen Performers: Simo Heiskanen and Mari Kätkä <br>Duration: 40 minutes <br>Presentation in Finnish <br> <br>The Culture Chain service offers art and culture services to elderly peopleI. Performances are also organised in libraries.<br>Cultural Chain performances are organized from August to November. The Cultural Chain brings an impressive 31 performances to libraries. In addition to the event libraries; Entresse, Iso Omena, Lippulaiva, Sello, and Tapiola, performances will also be held at Kalajärvi-Sali in Kalajärvi.<br><br><br>You can find all performances by searching with the keyword \"cultural chain\".<br><br><br>All events are open to everyone and free of charge.<br>Welcome to enjoy the culture!<br><br><br>The events are carried out in collaboration with the Cultural Chain.<br></p>" }, "info_url": { "fi": "https://helmet.finna.fi/", "sv": "https://helmet.finna.fi/?lng=sv", "en": "https://helmet.finna.fi/?lng=en-gb" }, "name": { "fi": "Kulttuuriketju - Glims & Gloms Lippulaivan kirjastossa", "sv": "Kulturkedjan - Glims & Gloms i Lippulaiva bibliotek", "en": "Cultural Chain - Glims & Gloms at Lippulaiva Library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agihf6jjcm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63339", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "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": 119586, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-10T14:13:51.770080Z", "last_modified_time": "2024-04-10T14:13:51.770097Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746194.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/119586/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-10T14:13:51.746843Z", "last_modified_time": "2024-07-02T07:12:59.947270Z", "date_published": null, "start_time": "2024-07-29T07:00:00Z", "end_time": "2024-08-02T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": 10, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Kesän 2024 taideleireillä lähdetään ihmettelyretkelle metsään!" }, "description": { "fi": "<p>Kesän 2024 taideleireillä lähdetään ihmettelyretkelle metsään!</p><p>Taideleireillä tutustutaan erilaisiin maalaamisen ja piirtämisen perustekniikoihin sekä luonnosta saataviin materiaaleihin. Niiden kanssa havainnoimme lähimetsän kuhinaa ja päästämme mielikuvituksemme liitelemään.</p><p>Taideleiri kestää viisi päivää. Kokoonnumme maanantaista perjantaihin klo 10–14 Kanneltaloon ja lähimetsään.</p><p>Huom! Poikkeuksena kokopäiväretki Seurasaareen, jolloin päivä alkaa klo 9.30 ja päättyy klo 14.30.</p><p>Taideleiri on maksuton, mutta edellyttää sitoutumista koko viikon työskentelyyn. Taideleirille otetaan enintään 10 oppilasta. Taideleirit järjestetään yhteistyössä Helsingin Taiteilijaseuran kanssa.</p><p>Opettajana toimii kuvataiteilija Piia Kokkarinen.</p><p>Opetuspaikka: Kanneltalo<br>Ikä: 7–10-vuotiaat</p><p>Ilmoittautumiset: 15.4. alkaen: liisa.paatsalo@hel.fi</p><p>HUOM! Ilmoittautumisen yhteydessä: kerro haetko paikkaa kesäkuun vai heinäkuun lopussa alkavalle leirille.</p><p><b>Muista ottaa leirille mukaan:</b><br>- säähän sopivat vaatteet, joissa on mukava liikkua<br>- päähine ja aurinkorasva<br>- omat eväät (ei karkkia, sipsejä tai limua)</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/689E576873AF4988EA42D1589BFAE711/TAYNNA_Luovasti_metsassa_-kesataideleiri" }, "name": { "fi": "TÄYNNÄ Luovasti metsässä -kesätaideleiri – 7–10-vuotiaille lapsille" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63339/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:621dc19c-fc49-4ba0-94b2-0470e5ad02ba", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?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": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/ba311138-7213-ef11-9f89-000d3ab0fc3c?readableEventId=Custom_Journey_Testing_TL-DG-100620242381574036" }, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-06-27T10:13:55.347867Z", "last_modified_time": "2024-07-01T14:30:07.278311Z", "date_published": "2024-06-10T12:26:04Z", "start_time": "2024-07-25T09:30:00Z", "end_time": "2024-07-25T09:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-06-06T08:00:00+03:00", "enrolment_end_time": "2024-06-09T08:00:00+03:00", "local": false, "replaced_by": null, "provider": { "fi": "Tomi Lepistö" }, "short_description": { "fi": "Custom Journey Testing V2 TL-DG-10.06.2024" }, "description": { "fi": "<div><p>Custom Journey Testing V2 TL-DG-10.06.2024</p></div>" }, "info_url": null, "name": { "fi": "Custom Journey Testing V2 TL-DG-27.06.2024" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:621dc19c-fc49-4ba0-94b2-0470e5ad02ba/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }