Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time
.
Default full text search ordering is based on search relevance rank and id (-rank,id
).
You may also order results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=221
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=222", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=220" }, "data": [ { "id": "kulke:65327", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153579, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T09:15:27.089728Z", "last_modified_time": "2024-12-31T09:15:27.089752Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758488.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153579/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T09:15:27.043022Z", "last_modified_time": "2025-02-26T12:14:30.568643Z", "date_published": null, "start_time": "2025-02-04T11:30:00Z", "end_time": "2025-02-04T13: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_contact_info": null, "short_description": { "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/398B78D328585AECC3B7569CD7C7F84B/Taidetta_taaperoille", "sv": "http://www.caisa.fi/sv/evenemang/event/398B78D328585AECC3B7569CD7C7F84B/Oppen_konst_studio_for_smabarn", "en": "http://www.caisa.fi/en/events/event/398B78D328585AECC3B7569CD7C7F84B/Open_Art_studio_for_Toddlers_and_their_Parents" }, "name": { "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen", "sv": "Öppen konst studio för småbarn", "en": "Open Art studio for Toddlers and their Parents" }, "description": { "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65327/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65326", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153587, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T10:13:57.924495Z", "last_modified_time": "2024-12-31T10:13:57.924511Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758507.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153587/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T10:13:57.900199Z", "last_modified_time": "2025-02-26T12:14:29.396517Z", "date_published": null, "start_time": "2025-01-30T08:00:00Z", "end_time": "2025-01-30T10: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_contact_info": null, "short_description": { "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/EE5104A92C23FF057204151C3C0FF81B/Taidetta_taaperoille", "sv": "http://www.caisa.fi/sv/evenemang/event/EE5104A92C23FF057204151C3C0FF81B/Oppen_konst_studio_for_smabarn", "en": "http://www.caisa.fi/en/events/event/EE5104A92C23FF057204151C3C0FF81B/Open_Art_studio_for_Toddlers_and_their_Parents" }, "name": { "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen", "sv": "Öppen konst studio för småbarn", "en": "Open Art studio for Toddlers and their Parents" }, "description": { "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65326/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65325", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153578, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T09:15:25.465446Z", "last_modified_time": "2024-12-31T09:15:25.465464Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758487.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153578/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T09:15:25.421340Z", "last_modified_time": "2025-02-26T12:14:28.689812Z", "date_published": null, "start_time": "2025-01-28T11:30:00Z", "end_time": "2025-01-28T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/353E4BCF59750B48BAE4633F6E33D07A/Taidetta_taaperoille", "sv": "http://www.caisa.fi/sv/evenemang/event/353E4BCF59750B48BAE4633F6E33D07A/Oppen_konst_studio_for_smabarn", "en": "http://www.caisa.fi/en/events/event/353E4BCF59750B48BAE4633F6E33D07A/Open_Art_studio_for_Toddlers_and_their_Parents" }, "name": { "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen", "sv": "Öppen konst studio för småbarn", "en": "Open Art studio for Toddlers and their Parents" }, "description": { "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65325/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65324", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153586, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T10:13:55.825702Z", "last_modified_time": "2024-12-31T10:13:55.825717Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758506.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153586/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T10:13:55.797955Z", "last_modified_time": "2025-02-26T12:14:26.838618Z", "date_published": null, "start_time": "2025-01-23T08:00:00Z", "end_time": "2025-01-23T10: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_contact_info": null, "short_description": { "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/8C7D242C8F76D19A7E8E92A190396D5D/Taidetta_taaperoille", "sv": "http://www.caisa.fi/sv/evenemang/event/8C7D242C8F76D19A7E8E92A190396D5D/Oppen_konst_studio_for_smabarn", "en": "http://www.caisa.fi/en/events/event/8C7D242C8F76D19A7E8E92A190396D5D/Open_Art_studio_for_Toddlers_and_their_Parents" }, "name": { "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen", "sv": "Öppen konst studio för småbarn", "en": "Open Art studio for Toddlers and their Parents" }, "description": { "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65324/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65323", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153577, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T09:15:22.977740Z", "last_modified_time": "2024-12-31T09:15:22.977757Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758486.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153577/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T09:15:22.937252Z", "last_modified_time": "2025-02-26T12:14:25.959843Z", "date_published": null, "start_time": "2025-01-21T11:30:00Z", "end_time": "2025-01-21T13: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_contact_info": null, "short_description": { "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/1FB3AD5D6B24AFC1B4ACBFEDA5F1EFA2/Taidetta_taaperoille", "sv": "http://www.caisa.fi/sv/evenemang/event/1FB3AD5D6B24AFC1B4ACBFEDA5F1EFA2/Oppen_konst_studio_for_smabarn", "en": "http://www.caisa.fi/en/events/event/1FB3AD5D6B24AFC1B4ACBFEDA5F1EFA2/Open_Art_studio_for_Toddlers_and_their_Parents" }, "name": { "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen", "sv": "Öppen konst studio för småbarn", "en": "Open Art studio for Toddlers and their Parents" }, "description": { "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65323/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65322", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153585, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T10:13:54.131015Z", "last_modified_time": "2024-12-31T10:13:54.131031Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758505.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153585/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T10:13:54.083635Z", "last_modified_time": "2025-02-26T12:14:24.881134Z", "date_published": null, "start_time": "2025-01-16T08:00:00Z", "end_time": "2025-01-16T10: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_contact_info": null, "short_description": { "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/A79E2D58CF94493FDD0B19F68D508D29/Taidetta_taaperoille", "sv": "http://www.caisa.fi/sv/evenemang/event/A79E2D58CF94493FDD0B19F68D508D29/Oppen_konst_studio_for_smabarn", "en": "http://www.caisa.fi/en/events/event/A79E2D58CF94493FDD0B19F68D508D29/Open_Art_studio_for_Toddlers_and_their_Parents" }, "name": { "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen", "sv": "Öppen konst studio för småbarn", "en": "Open Art studio for Toddlers and their Parents" }, "description": { "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65322/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65321", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153576, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T09:15:21.191405Z", "last_modified_time": "2024-12-31T09:15:21.191423Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758485.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153576/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T09:15:21.132217Z", "last_modified_time": "2025-02-26T12:14:24.322021Z", "date_published": null, "start_time": "2025-01-14T11:30:00Z", "end_time": "2025-01-14T13: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_contact_info": null, "short_description": { "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/D983B56670D8AF909C1F9D556E3AAB9E/Taidetta_taaperoille", "sv": "http://www.caisa.fi/sv/evenemang/event/D983B56670D8AF909C1F9D556E3AAB9E/Oppen_konst_studio_for_smabarn", "en": "http://www.caisa.fi/en/events/event/D983B56670D8AF909C1F9D556E3AAB9E/Open_Art_studio_for_Toddlers_and_their_Parents" }, "name": { "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen", "sv": "Öppen konst studio för småbarn", "en": "Open Art studio for Toddlers and their Parents" }, "description": { "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65321/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65631", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 236069, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T15:13:20.468518Z", "last_modified_time": "2025-02-17T15:13:20.468532Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765721.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/236069/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T15:13:20.420530Z", "last_modified_time": "2025-02-25T17:14:29.427083Z", "date_published": null, "start_time": "2025-03-07T15: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_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/214CB566BC07190D90A0BE3E3E44B08A/Savoy_JAZZFest_Keskustelutilaisuus_teemana_UMO_Helsinki_ja_big_band_-musiikki_Suomessa" }, "name": { "fi": "Savoy JAZZFest: Keskustelutilaisuus teemana UMO Helsinki ja big band -musiikki Suomessa" }, "description": { "fi": "<p>Perjantaina 7.3. Savoy JAZZFestissä järjestetään keskustelutilaisuus teemana UMO Helsinki Jazz Orchestra, joka viettää 50-vuotisjuhlakauttaan kesästä 2025 kevääseen 2026. Keskustelussa katsotaan suomalaisen big band -musiikin historiaan, nykytilaan ja tulevaisuudennäkymiin.</p><p>Keskustelemassa ovat UMO Helsinki Jazz Orchestran tuore toimitusjohtaja Henriika Steidel-Luoto, suomalaisen jazzin merkkihahmo, saksofonisti Eero Koivistoinen, vuonna 2023 UMOn riveissä vakituisena aloittanut saksofonisti Max Zenger sekä Sointi Jazz ry:n hallituksen jäsen, big band -säveltäjä Oskari Siirtola. Paneelikeskustelun vetäjänä toimii toimittaja Katri Kallionpää.</p><p>Tilaisuus kestää n. 50 min, ja sinne on vapaa pääsy. Keskustelu pidetään Savoy-teatterin salissa.</p>" }, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65631/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65647", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 268207, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-25T15:14:35.669201Z", "last_modified_time": "2025-02-25T15:14:35.669217Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765845.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/268207/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-25T15:14:35.626506Z", "last_modified_time": "2025-02-25T15:14:35.746640Z", "date_published": null, "start_time": "2025-05-09", "end_time": "2025-06-08", "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_contact_info": null, "short_description": { "fi": "Näyttely koostuu 16 maalauksesta, joiden inspiraationa ovat olleet Suomeen eri maista muuttaneet naiset.", "sv": "Utställningen består av sexton målningar inspirerade av kvinnor som har flyttat till Finland från olika länder.", "en": "The exhibition consists of 16 paintings inspired by women who have moved to Finland from different countries." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/75BD63425E82ACF9F2002188AE500B77/Carolina_Mac-Iver_Lilian_Mac-Iver_Women_of_the_World_in_Finland_", "sv": "http://www.stoa.fi/sv/evenemang/event/75BD63425E82ACF9F2002188AE500B77/Carolina_Mac-Iver_Lilian_Mac-Iver_Women_of_the_World_in_Finland_", "en": "http://www.stoa.fi/en/events/event/75BD63425E82ACF9F2002188AE500B77/Carolina_Mac-Iver_Lilian_Mac-Iver_Women_of_the_World_in_Finland_" }, "name": { "fi": "Carolina Mac-Iver & Lilian Mac-Iver: Women of the World in Finland", "sv": "Carolina Mac-Iver & Lilian Mac-Iver: Women of the World in Finland", "en": "Carolina Mac-Iver & Lilian Mac-Iver: Women of the World in Finland" }, "description": { "fi": "<p>Näyttely koostuu 16 maalauksesta, joiden inspiraationa ovat olleet Suomeen eri maista muuttaneet naiset.</p><p>Lisäksi yhden maalauksen aiheena on nuori kantasuomalaisnainen. Kaikki taulut ovat öljyvärimaalauksia.</p><p>Women of the World in Finland on taideprojekti, jonka ovat luoneet sisarukset Carolina Mac-Iver ja Lilian Mac-Iver. Idea syntyi jo noin 15 vuotta sitten, kun sisarukset muuttivat Suomeen. He tutustuivat Suomessa eri maalaisiin naisiin ja heidän kulttuureihinsa.</p><p>”Jokaisen maalauksen takana on maahanmuuttajan tarina. Tarina heidän rakkaudestaan synnyinmaahan ja tarina uudesta kotimaasta. Halusimme vangita kankaalle nämä tarinat naisista, jotka loivat uuden elämän ja perheen tähän kauniiseen pohjoiseen maahan.</p><p>Tarkoituksemme on tämän kokoelman värien kautta osoittaa näiden naisten rakkauden ja juurten kauneuden vaikutus monikulttuuriseen Suomeen. Projekti on toteutettu heidän kunniakseen.”</p><p>Vapaa pääsy.</p>", "sv": "<p>Utställningen består av sexton målningar inspirerade av kvinnor som har flyttat till Finland från olika länder.</p><p>En av målningarna föreställer också en ung kvinna med finländska rötter. Alla målningar är oljemålningar.</p><p>Women of the World in Finland är ett konstprojekt som skapats av systrarna Carolina Mac-Iver och Lilian Mac-Iver. Idén uppstod för ungefär femton år sedan, när syskonen flyttade till Finland. I Finland lärde de känna olika kvinnor från olika länder och deras kulturer.</p><p>”Bakom varje målning finns en invandrares berättelse. En berättelsen om deras kärlek till det land där de föddes och en berättelse om deras nya hemland. Vi ville fånga de här berättelserna om kvinnor som skapade ett nytt liv och en ny familj i detta vackra nordliga land.</p><p>Med hjälp av färgerna i den här samlingen vill vi visa hur skönheten i de här kvinnornas kärlek och rötter påverkar det mångkulturella Finland. Projektet är gjort för att hedra dem.”</p>", "en": "<p>The exhibition consists of 16 paintings inspired by women who have moved to Finland from different countries.</p><p>In addition, the subject of one of the paintings is a young native Finnish woman. All paintings are oil paintings.</p><p>Women of the World in Finland is an art project created by sisters Carolina Mac-Iver and Lilian Mac-Iver. The idea was born approximately 15 years ago as they moved to Finland. In Finland, they became acquainted with women from different countries and their cultures.</p><p>“Behind every painting is the story of an immigrant. A story of their love for their native country and a story of their new homeland. We wanted to capture the stories of these women who created a new life and family in this beautiful northern country.</p><p>Through the colours of this collection, we intend to demonstrate the impact of the love of these women and the beauty of their roots on multicultural Finland. The project is implemented in their honour.”</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65647/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65008", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153553, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-30T07:14:16.531669Z", "last_modified_time": "2024-12-30T07:14:16.531696Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763470.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153553/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-30T07:14:16.492403Z", "last_modified_time": "2025-02-25T14:14:24.157760Z", "date_published": null, "start_time": "2025-03-28T16:30:00Z", "end_time": "2025-03-28T19: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_contact_info": null, "short_description": { "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.", "sv": "Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.", "en": "Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/72FA1479845332E9869D30593AB1CEA4/Pimienta_Negra_ja_Postel_Codes", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/72FA1479845332E9869D30593AB1CEA4/Pimienta_Negra_och_Postel_Codes", "en": "http://www.kanneltalo.fi/en/events/event/72FA1479845332E9869D30593AB1CEA4/Pimienta_Negra_and_Postel_Codes" }, "name": { "fi": "Pimienta Negra ja Postel Codes – Global Club Nights", "sv": "Pimienta Negra och Postel Codes – Global Club Nights", "en": "Pimienta Negra and Postel Codes – Global Club Nights" }, "description": { "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Maksuttomat klubi-illat alkavat ajoissa, joten lapsetkin ovat tervetulleita aikuisen seurassa. Aloitetaan viikonloppu yhdessä!</p><p><b>Postel Codes</b><br>Rafa Postel (USA), Hector Lepe (MEX), Tuomo Purhonen (FI) ja Kasper Halttunen (FI) tutustuivat toisiinsa Sibelius-Akatemiassa. Heitä yhdistää avoin ja improvisatorinen lähestymistapa, syvä rakkaus jazzperinteeseen sekä kokemus ja uteliaisuus muita musiikkigenrejä kohtaan, mikä luo raikasta ja mukaansatempaavaa musiikkia. Nämä muusikot nauttivat musiikin tekemisestä yhdessä. Tämä erityiskonsertti sisältää heidän omia sävellyksiään sekä vanhoja suosikkikappaleita.</p><p><b>Pimienta Negra</b><br>Helsingissä toimivan latinalaisbändin vastustamattomat rytmit hurmaavat kuulijat! Lahjakkaaseen kokoonpanoon kuuluvat Leandro Roco (laulu ja kitara), Jani Lehtioksa (rummut ja perkussiot), Gorky Alvarado (basso) sekä José Robelo (kitara). Tämä yhtye yhdistää kiehtovalla tavalla latinalaisia rytmejä ja jazz-vaikutteita, vieden yleisönsä suoraan Etelä-Amerikan eläväisille kaduille. Salsan ja cumbian sykkivistä rytmeistä latinalaisen rockin ja jazzin sielukkaisiin säveliin, Pimienta Negra kattaa koko latinalaisen musiikin kirjon.</p><p>Global Club Nights -klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen ja siltojen rakentaminen kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja Kanneltalon kanssa.</p><p>Tapahtumilla pyritään rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Kulttuurikeskus Kanneltalo tuottaa Global Club Nights (GCN) -illat yhteistyössä Sibelius-Akatemian Global Music -koulutusohjelman ja Maailman musiikin keskuksen kanssa.</p>", "sv": "<p>Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.</p><p><b>Postel Codes</b><br>Rafa Postel (USA), Hector Lepe (MEX), Tuomo Purhonen (FI) och Kasper Halttunen (FI) lärde känna varandra i Sibelius-Akademin. Gemensamt för dem är ett öppet och improvisatoriskt grepp, en djup kärlek till jazztraditionen samt erfarenhet av och nyfikenhet gentemot andra musikgenrer, vilket skapar fräsch och medryckande musik. Dessa musiker njuter av att göra musik tillsammans. Denna specialkonsert innefattar deras egna kompositioner samt gamla favoritlåtar.</p><p><b>Pimienta Negra</b><br>De oemotståndliga rytmerna hos detta Helsingforsbaserade latinband förtrollar åhörarna! Den begåvade ensemblen inkluderar Leandro Roco (sång och gitarr), Jani Lehtioksa (trummor och percussion), Gorky Alvarado (bas) och José Robelo (gitarr).</p><p>Detta band kombinerar latinska rytmer och jazzintryck på ett fascinerande sätt, och tar med sin publik direkt till Sydamerikas livliga gator. Från salsans och cumbians pulserande rytmer till latinsk rock och själfulla jazzmelodier, Pimienta Negra täcker hela den latinska musikens spektrum.</p><p>Syftet med klubbarna är att skapa en trygg, inkluderande och kreativ miljö och bygga broar mellan alla musikälskare och deras gemenskaper. Global Club Nights har producerats i samarbete med avdelningen för global musik vid Sibelius-Akademin och Gamlasgården.</p><p>Evenemangen syftar till att bygga broar mellan alla musikälskare och deras gemenskaper. Kulturcentret Gamlasgården producerar Global Club Nights (GCN)-kvällarna i samarbete med Sibelius-Akademins utbildningsprogram Global Music.</p>", "en": "<p>Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music.</p><p><b>Pimienta Negra</b> <br>The irresistible sounds of a Latin band based in Helsinki! With talented members featuring: Leandro Roco on vocals and guitar, Jani Lehtioksa on drums and percussion, Gorky Alvarado on bass, and José Robelo on guitar.</p><p>With their captivating blend of Latin rhythms and jazz influences, this band will transport audiences straight to the vibrant streets of South America. From the pulsating beats of salsa and cumbia to the soulful sounds of Latin rock and jazz, Pimienta Negra covers the complete spectrum of the Latin music scene.</p><p><b>Postel Codes</b><br>Rafa Postel (US), Hector Lepe (MX), Tuomo Purhonen (FI), and Kasper Halttunen met as colleagues at the Sibelius Academy. They share an open-minded, improvisational approach, a deep love of the jazz tradition, as well as experience in and curiosity about other genres, which results in fresh and engaging music. These musicians have a joyful time making music together. This special concert will include original compositions as well as some old favorite songs.</p><p>Global Club Nights aims to create a safe, inclusive and creative environment and build bridges between all music lovers and their communities. Global Club Nights has been produced in cooperation with the Sibelius Academy’s Global Music Department and Kanneltalo.</p><p>The events aim to build bridges between all music lovers and their communities. Cultural Centre Kanneltalo produces Global Club Nights (GCN) evenings in cooperation with the Sibelius Academy’s Global Music study programme and the World Music Centre.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65008/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65234", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 165100, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T13:15:46.618651Z", "last_modified_time": "2025-01-23T13:15:46.618671Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764253.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165100/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-23T13:15:46.592508Z", "last_modified_time": "2025-02-25T14:14:21.970143Z", "date_published": null, "start_time": "2025-03-22T09:00:00Z", "end_time": "2025-03-22T12: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_contact_info": null, "short_description": { "fi": "Hurraa! - Taidelauantaihin kutsumme erityisesti isovanhempia lastenlasten kanssa, mutta pajaan ovat tervetulleita kaikki aikuiset ja lapset.", "sv": "Till Hurra!-konstlördagen bjuder vi särskilt in mor- och farföräldrar med sina barnbarn, men alla vuxna och barn är välkomna till workshoppen.", "en": "We especially invite grandparents with grandchildren to Hurraa! Art Saturday, but all adults and children are welcome to the workshop." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/70018E867B54DAFAE6C819C010C592EA/Annantalon_taidelauantai_Aarrehetkia", "sv": "http://www.annantalo.fi/sv/evenemang/event/70018E867B54DAFAE6C819C010C592EA/Annegardens_konstlordag_Skattstunder_", "en": "http://www.annantalo.fi/en/events/event/70018E867B54DAFAE6C819C010C592EA/Annantalo_Art_Saturday_Treasure_moments_" }, "name": { "fi": "Annantalon taidelauantai: Aarrehetkiä – Hurraa! -teatteriviikot", "sv": "Annegårdens konstlördag: Skattstunder – Hurraa!-teaterveckor", "en": "Annantalo Art Saturday: Treasure moments – Hurraa! theatre weeks" }, "description": { "fi": "<p>Hurraa! - Taidelauantaihin kutsumme erityisesti isovanhempia lastenlasten kanssa, mutta pajaan ovat tervetulleita kaikki aikuiset ja lapset.</p><p>Jenni Viljanderin vetämässä työpajassa aikuinen ja lapsi kohtaavat muistelurasioiden äärellä ja kertovat toisilleen itselleen merkityksellisistä asioista. Rasioista löytyy monipuolisesti pienesineitä ja luonnonmateriaaleja.</p><p>Kukin osallistuja valitsee kolme itselleen merkityksellistä esinettä/asiaa ja kertoo niistä parilleen. Pari sommittelee yhdessä kokeillen kummankin valitsemat esineet mieluisaksi asetelmaksi paperille ja antaa asetelmalle nimen. Asetelmia tarkastellaan yhdessä ja niistä voi ottaa kuvan muistoksi.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Annantalon taidelauantai on maksuton.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b><br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Lue lisää kansainvälisestä lastenteatterikampanjasta: www.assitejinternational.org</p>", "sv": "<p>Till Hurra!-konstlördagen bjuder vi särskilt in mor- och farföräldrar med sina barnbarn, men alla vuxna och barn är välkomna till workshoppen.</p><p>I workshoppen möts vuxna och barn vid minnesaskar och berättar för varandra om föremål som är betydelsefulla för dem. Askarna innehåller en mängd olika små föremål och naturmaterial. Varje deltagare väljer tre föremål som är betydelsefulla för honom/henne och berättar om dem för sin partner. Tillsammans experimenterar paret med att arrangera de föremål de har valt till ett fint stilleben på papper och ger det ett namn. Vi tittar på stillebenen tillsammans och tar ett foto av dem som minne.</p><p>Inga förkunskaper krävs för att delta. Undervisningsspråket på verkstäderna är finska, men alla språk och språkkunskaper är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum.</p><p>Konstlördagen på Annegården är avgiftsfri.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>We especially invite grandparents with grandchildren to Hurraa! Art Saturday, but all adults and children are welcome to the workshop.</p><p>In this workshop, the adult and child meet in front of reminiscence boxes and tell each other about the things that matter to them. The boxes contain a wide range of small items and natural materials.</p><p>Each participant selects three items/things that are relevant to them and tells their partner about them. The couple, experimenting together, composes their chosen items into a pleasing arrangement on paper and gives the arrangement a name. The arrangements are then examined together. Feel free to take a photo of them as a souvenir!</p><p>No advance skills are required to participate. The language of instruction in the workshops is Finnish, but all languages and language skills are welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space.</p><p>The Annantalo Art Saturday is free of charge.</p><p>A warm welcome to Annantalo on Saturdays!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65234/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65668", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 268033, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-25T14:14:17.618521Z", "last_modified_time": "2025-02-25T14:14:17.618536Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765876.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/268033/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2025-02-25T14:14:17.563830Z", "last_modified_time": "2025-02-25T14:14:17.713836Z", "date_published": null, "start_time": "2025-03-13T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Teaterföreningen Svalan framför föreställningen Lyckans minut – dikter om kärlek. Programmet innehåller musik och är regisserat av Cris af Enehielm.", "sv": "Teaterföreningen Svalan framför föreställningen Lyckans minut – dikter om kärlek. Programmet innehåller musik och är regisserat av Cris af Enehielm.", "en": "Teaterföreningen Svalan framför föreställningen Lyckans minut – dikter om kärlek. Programmet innehåller musik och är regisserat av Cris af Enehielm." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/77467CB419F9C69456C5AE11901EC803/Teaterforeningen_Svalan_Lyckans_minut_dikter_om_karlek", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/77467CB419F9C69456C5AE11901EC803/Teaterforeningen_Svalan_Lyckans_minut_dikter_om_karlek", "en": "http://www.kanneltalo.fi/en/events/event/77467CB419F9C69456C5AE11901EC803/Teaterforeningen_Svalan_Lyckans_minut_dikter_om_karlek" }, "name": { "fi": "Teaterföreningen Svalan: Lyckans minut – dikter om kärlek – Seniornätverksevenemang", "sv": "Teaterföreningen Svalan: Lyckans minut – dikter om kärlek – Seniornätverksevenemang", "en": "Teaterföreningen Svalan: Lyckans minut – dikter om kärlek – Seniornätverksevenemang" }, "description": { "fi": "<p>Teaterföreningen Svalan framför föreställningen Lyckans minut – dikter om kärlek. Programmet innehåller musik och är regisserat av Cris af Enehielm.</p><p>Fri entré, ingen förhandsanmälan behövs. Infotorg och kaffe ingår i programmen.</p><p>Mer info: Seniorinfo vardagar kl. 9–15 tfn 09 310 44556 och Facebook: https://www.facebook.com/seniornatverkethelsingfors/</p><p>Varmt välkommen med!</p><p>Arr. Seniornätverket i Helsingfors i samarbete med Gamlasgården.</p>", "sv": "<p>Teaterföreningen Svalan framför föreställningen Lyckans minut – dikter om kärlek. Programmet innehåller musik och är regisserat av Cris af Enehielm.</p><p>Fri entré, ingen förhandsanmälan behövs. Infotorg och kaffe ingår i programmen.</p><p>Mer info: Seniorinfo vardagar kl. 9–15 tfn 09 310 44556 och Facebook: https://www.facebook.com/seniornatverkethelsingfors/</p><p>Varmt välkommen med!</p><p>Arr. Seniornätverket i Helsingfors i samarbete med Gamlasgården.</p>", "en": "<p>Teaterföreningen Svalan framför föreställningen Lyckans minut – dikter om kärlek. Programmet innehåller musik och är regisserat av Cris af Enehielm.</p><p>Fri entré, ingen förhandsanmälan behövs. Infotorg och kaffe ingår i programmen.</p><p>Mer info: Seniorinfo vardagar kl. 9–15 tfn 09 310 44556 och Facebook: https://www.facebook.com/seniornatverkethelsingfors/</p><p>Varmt välkommen med!</p><p>Arr. Seniornätverket i Helsingfors i samarbete med Gamlasgården.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65668/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65371", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153647, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-02T13:14:16.584568Z", "last_modified_time": "2025-01-02T13:14:16.584584Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759555.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153647/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-02T13:14:16.534444Z", "last_modified_time": "2025-02-25T13:14:15.048057Z", "date_published": null, "start_time": "2025-02-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kevään 2025 ensimmäisessä Flyygelikuussa kuullaan Mozartia ja Lisztin klassikoita nuoren pianistilupauksen Ilona Liimanin soittamana.", "sv": "På den första Flyygelikuu-konserten på våren 2025 hörs klassiker av Mozart och Liszt framförda av den unga lovande pianisttalangen Ilona Liiman.", "en": "In the first Flyygelikuu of spring 2025, we will hear classics from Mozart and Liszt by the young pianist Ilona Liiman." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5C269048AD733ECD1D3AEBC70341ACE4/Flyygelikuu_Ilona_Liiman", "sv": "http://www.vuotalo.fi/sv/evenemang/event/5C269048AD733ECD1D3AEBC70341ACE4/Flyygelikuu_Ilona_Liiman", "en": "http://www.vuotalo.fi/en/events/event/5C269048AD733ECD1D3AEBC70341ACE4/Flyygelikuu_Ilona_Liiman" }, "name": { "fi": "Flyygelikuu – Ilona Liiman", "sv": "Flyygelikuu – Ilona Liiman", "en": "Flyygelikuu – Ilona Liiman" }, "description": { "fi": "<p>Kevään 2025 ensimmäisessä Flyygelikuussa kuullaan Mozartia ja Lisztin klassikoita nuoren pianistilupauksen Ilona Liimanin soittamana.</p><p>Juuri Saksaan muuttanut pianisti on valinnut ohjelmaan uudessa kotimaassaan syntyneiden tai siellä asuneiden säveltäjien teoksia.</p><p>Ilona Liiman on Mäntsälässä kasvanut, nykyään Berliinissä asuva 20-vuotias pianisti. Hän opiskeli monen vuoden ajan Sibelius-Akatemian nuorisokoulutuksessa Niklas Pokin johdolla ja jatkaa syksystä 2024 opintojaan Hanns Eisler -musiikkikorkeakoulussa Berliinissä Eldar Nebolsinin luokalla.</p><p>Ilona on esiintynyt solistina muun muassa Radion Sinfoniaorkesterin ja Avanti! -kamariorkesterin kanssa, sekä esiintynyt soolopianistina mm. Nummisten Pianofestivaalilla, Porvoo-festivaalilla ja Mäntän Musiikkijuhlilla. Lisäksi Ilona on ansainnut palkintoja pianokilpailuissa Suomessa ja Virossa.</p><p>Ohjelma:<br>Mozart: D-duurisonaatin nro. 9 K.311 <br>Liszt: Pianosonaatti h-molli</p><p>Vapaa pääsy</p>", "sv": "<p>På den första Flyygelikuu-konserten på våren 2025 hörs klassiker av Mozart och Liszt framförda av den unga lovande pianisttalangen Ilona Liiman.</p><p>Pianisten, som nyligen flyttat till Tyskland, har valt till sin repertoar verk av kompositörer som är födda i hennes nya hemland eller har bott där.</p><p>Ilona Liiman är en 20-årig pianist som växte upp i Mäntsälä och nu bor i Berlin. Hon studerade många år under ledning av Niklas Pokki i ungdomsutbildningen vid Sibelius-Akademin och fortsätter sina studier under ledning av Eldar Nebolsin från och med hösten 2024 vid musikhögskolan Hanns Eisler i Berlin. Ilona har uppträtt som solist bland annat med Radions symfoniorkester och kammarorkestern Avanti! samt uppträtt som solopianist bland annat på Nummis Pianofestival, Borgåfestivalen och Musikfestivalen i Mänttä. Ilona har också vunnit priser i pianotävlingar i Finland och Estland.</p><p>Program:<br>Mozart: PIanosonat i d-dur nro 9 K.311 <br>Liszt: Pianosonat h-moll<br>Fritt inträde</p>", "en": "<p>In the first Flyygelikuu of spring 2025, we will hear classics from Mozart and Liszt by the young pianist Ilona Liiman.</p><p>The pianist, who has just moved to Germany, has chosen works by composers who were born or lived in her new home country. <br>Ilona Liiman grew up in Mäntsälä and is today a 20-year-old pianist living in Berlin. She studied at the Sibelius Junior Academy for many years in under Niklas Pokki and is continuing her studies in autumn 2024 at the School of Music Hanns Eisler Berlin in Eldar Nebolsin’s class.</p><p>Ilona has performed as a soloist with the Finnish Radio Symphony Orchestra and Avanti! Chamber Orchestra as well as solo pianist at the Numminen Piano Festival, Porvoo Festival and Mänttä Music Festival, among others. In addition, Ilona has earned prizes in piano competitions in Finland and Estonia.</p><p>Programme:<br>Mozart: Piano Sonata in D major nro. 9 K.311 <br>Liszt: Piano Sonata in B minor</p><p>Free admission</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65371/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agkrrif2yq", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45928/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": { "fi": "" } } ], "data_source": "helsinki", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" } ], "created_time": "2025-02-18T10:35:41.649853Z", "last_modified_time": "2025-02-25T10:12:40.852334Z", "date_published": null, "start_time": "2025-02-20T07:00:00Z", "end_time": "2025-03-29T07:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 5, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "testi taas" }, "info_url": { "fi": "" }, "name": { "fi": "Paloheinän rieha" }, "description": { "fi": "<p>Tää on tapahtuman kuvaus-kenttä.</p><p>Jooga on kokonaisvaltainen liikuntamuoto.</p>" }, "location_extra_info": { "fi": "Paikan lisätiedot on tämä kenttä, seksti" }, "provider": { "fi": "" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agkrrif2yq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "tet:agktpv3nyi", "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/tet:3/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" }, "info_url": null } ], "data_source": "tet", "publisher": "ahjo:00001", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2025-02-24T12:03:40.142761Z", "last_modified_time": "2025-02-24T12:03:40.142779Z", "date_published": "2025-02-24T12:03:39.547000Z", "start_time": "2025-02-28", "end_time": "2025-03-01", "custom_data": { "spots": "1", "org_name": "Testipiste", "website_url": "", "contact_email": "etusuku@localhost.local", "contact_phone": "0400000000", "contact_last_name": "Sukutestihenkilö", "contact_first_name": "Etutestihenkilö" }, "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_contact_info": null, "short_description": { "fi": "Testitettipaikka" }, "info_url": null, "name": { "fi": "Testi" }, "description": { "fi": "Testitettipaikka" }, "location_extra_info": null, "provider": { "fi": "Activenakusteri Oy", "sv": "7769480-5" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agktpv3nyi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dpaq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dp2m/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-20T15:21:44.490519Z", "last_modified_time": "2025-02-24T07:08:58.512087Z", "date_published": null, "start_time": "2025-05-21T14:00:00Z", "end_time": "2025-05-21T16: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_contact_info": null, "short_description": { "fi": "Lukupiirissä päästään yhdessä muodostamaan vilkasta keskustelua jokaisen teoksen aihepiiristä.", "sv": " I läsecirkeln får deltagarna tillsammans skapa livliga diskussioner om varje boks tema", "en": " In the book club, participants will have the opportunity to engage in lively discussions about the themes of each work." }, "info_url": null, "name": { "fi": "PERUTTU: Yhteiskunnallinen lukupiiri", "sv": "INSTÄLLD: samhällelig läsecirkel (På Finska) ", "en": "CANCELED: Book club on societal issues (In Finnish)" }, "description": { "fi": "<p>Syksyllä aloitettu lukupiiri jatkuu koko kevään 2025. Yhteiskunnallista lukupiiriä fasilitoi hallintotieteiden maisteri, ja kirjallisuuteen ja lukemiseen innokkaasti suhtautuva Henri Ahokas. Keskustelu on suomen kielellä.</p><p>KE 22.1 Maanalainen imperiumi (Farrel, Henry & Newman, Abraham 2023)</p><p>KE 19.2 Euro, voiko Eurooppa selvitä hengissä yhteisestä valuutasta (Stiglitz, Joseph E. 2017)</p><p>KE 26.3 Rahan tulevaisuus (Prasad, Eswar S 2021)</p><p>KE 21.5. Pääoma ja Ideologia (Piketty, Thomas 2020)</p><p>lukupiiriin ei tarvitse ilmoittautua ja mukaan saa tulla, vaikka ei olisi ehtinyt lukemaan päivän teosta.</p>", "sv": "<p>Hösten påbörjat bokcirkel fortsätter hela våren 2025. Den samhälleliga läsecirkeln leds av Henri Ahokas, magister i förvaltningsvetenskap och entusiastisk bokälskare. Diskussion är på finska.</p><p><br></p><p>KE 22.1 Maanalainen imperiumi (Farrel, Henry & Newman, Abraham 2023)</p><p>KE 19.2 Euro, voiko Eurooppa selvitä hengissä yhteisestä valuutasta (Stiglitz, Joseph E. 2017)</p><p>KE 26.3 Rahan tulevaisuus (Prasad, Eswar S 2021)</p><p>KE 21.5. Pääoma ja Ideologia (Piketty, Thomas 2020)</p><p>Man behöver inte anmäla sig till läsecirkeln, och det är fritt fram att delta även om man inte hunnit läsa dagens verk.</p>", "en": "<p>The book club started at the fall of 2024 will continue throughout the spring of 2025. The societal book club is facilitated by Henri Ahokas, a Master of Administrative Sciences and an enthusiast about literature. Discussion is in Finnish.</p><p>KE 22.1 Maanalainen imperiumi (Farrel, Henry & Newman, Abraham 2023)</p><p>KE 19.2 Euro, voiko Eurooppa selvitä hengissä yhteisestä valuutasta (Stiglitz, Joseph E. 2017)</p><p>KE 26.3 Rahan tulevaisuus (Prasad, Eswar S 2021)</p><p>KE 21.5. Pääoma ja Ideologia (Piketty, Thomas 2020)</p><p>No registration is required for the book club, and everyone is welcome to join, even if they haven’t had the chance to read the book of the day.</p>" }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dpaq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dp2m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dpaq/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-20T15:21:41.927297Z", "last_modified_time": "2025-02-24T07:08:57.828832Z", "date_published": null, "start_time": "2025-01-22T15:00:00Z", "end_time": "2025-05-21T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Lukupiirissä päästään yhdessä muodostamaan vilkasta keskustelua jokaisen teoksen aihepiiristä.", "sv": " I läsecirkeln får deltagarna tillsammans skapa livliga diskussioner om varje boks tema", "en": " In the book club, participants will have the opportunity to engage in lively discussions about the themes of each work." }, "info_url": null, "name": { "fi": "PERUTTU: Yhteiskunnallinen lukupiiri", "sv": "INSTÄLLD: samhällelig läsecirkel (På Finska) ", "en": "CANCELED: Book club on societal issues (In Finnish)" }, "description": { "fi": "<p>Syksyllä aloitettu lukupiiri jatkuu koko kevään 2025. Yhteiskunnallista lukupiiriä fasilitoi hallintotieteiden maisteri, ja kirjallisuuteen ja lukemiseen innokkaasti suhtautuva Henri Ahokas. Keskustelu on suomen kielellä.</p><p>KE 22.1 Maanalainen imperiumi (Farrel, Henry & Newman, Abraham 2023)</p><p>KE 19.2 Euro, voiko Eurooppa selvitä hengissä yhteisestä valuutasta (Stiglitz, Joseph E. 2017)</p><p>KE 26.3 Rahan tulevaisuus (Prasad, Eswar S 2021)</p><p>KE 21.5. Pääoma ja Ideologia (Piketty, Thomas 2020)</p><p>lukupiiriin ei tarvitse ilmoittautua ja mukaan saa tulla, vaikka ei olisi ehtinyt lukemaan päivän teosta.</p>", "sv": "<p>Hösten påbörjat bokcirkel fortsätter hela våren 2025. Den samhälleliga läsecirkeln leds av Henri Ahokas, magister i förvaltningsvetenskap och entusiastisk bokälskare. Diskussion är på finska.</p><p><br></p><p>KE 22.1 Maanalainen imperiumi (Farrel, Henry & Newman, Abraham 2023)</p><p>KE 19.2 Euro, voiko Eurooppa selvitä hengissä yhteisestä valuutasta (Stiglitz, Joseph E. 2017)</p><p>KE 26.3 Rahan tulevaisuus (Prasad, Eswar S 2021)</p><p>KE 21.5. Pääoma ja Ideologia (Piketty, Thomas 2020)</p><p>Man behöver inte anmäla sig till läsecirkeln, och det är fritt fram att delta även om man inte hunnit läsa dagens verk.</p>", "en": "<p>The book club started at the fall of 2024 will continue throughout the spring of 2025. The societal book club is facilitated by Henri Ahokas, a Master of Administrative Sciences and an enthusiast about literature. Discussion is in Finnish.</p><p>KE 22.1 Maanalainen imperiumi (Farrel, Henry & Newman, Abraham 2023)</p><p>KE 19.2 Euro, voiko Eurooppa selvitä hengissä yhteisestä valuutasta (Stiglitz, Joseph E. 2017)</p><p>KE 26.3 Rahan tulevaisuus (Prasad, Eswar S 2021)</p><p>KE 21.5. Pääoma ja Ideologia (Piketty, Thomas 2020)</p><p>No registration is required for the book club, and everyone is welcome to join, even if they haven’t had the chance to read the book of the day.</p>" }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dp2m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65641", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 247482, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-20T14:14:07.625142Z", "last_modified_time": "2025-02-20T14:14:07.625159Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760156.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/247482/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-20T14:14:07.573256Z", "last_modified_time": "2025-02-20T14:14:07.708971Z", "date_published": null, "start_time": "2025-02-26T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Aikuisuutta kurotteleva skånelainen Frederik rakastaa kahta asiaa: syntikkamusiikkia ja Tukholmasta muuttanutta valokuvaajaa Ninaa.", "sv": "Synthmusik, kärlek och såriga familjerelationer i övertygande coming of age-drama förlagt till den skånska vischan.", "en": "The worlds first feature film that centers around synth music and new romantics, set in the 1980:s in rural Sweden." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/66559D9F2D30DA7399B8C3F178AB6540/D_sseldorf_Skane_12_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/66559D9F2D30DA7399B8C3F178AB6540/D_sseldorf_Skane_12_", "en": "http://www.vuotalo.fi/en/events/event/66559D9F2D30DA7399B8C3F178AB6540/D_sseldorf_Skane_12_" }, "name": { "fi": "Düsseldorf, Skåne (12) – Onsdagsbio", "sv": "Düsseldorf, Skåne (12) – Onsdagsbio", "en": "Düsseldorf, Skåne (12) – Onsdagsbio" }, "description": { "fi": "<p>Aikuisuutta kurotteleva skånelainen Frederik rakastaa kahta asiaa: syntikkamusiikkia ja Tukholmasta muuttanutta valokuvaajaa Ninaa.</p><p>Intohimojen ylle uhkakuvia luo Frederikin äiti, joka juo liikaa alkoholia, sekä isä, joka syö liikaa makkaraa. Pelastaako rakkaus kaiken? Mikä pelastaa rakkauden?</p><p>Patrik Blomberg Bookin debyyttielokuva Love Will Save Us (Düsseldorf, Skåne) vie mukanaan aikamatkalle syntetisaattoreita, kajaalia ja kasvukipuja hohkaavalle 80-luvulle Ruotsin sumuiselle syrjäseudulle. Se on ajaton kuvaus ulkopuolisuudesta, teinirakkauden riipivyydestä ja perhesuhteiden kiemuraisuudesta.</p><p>Elokuvantekijän oma ääni kuuluu tarinassa paitsi ohjauksessa ja käsikirjoituksessa myös elokuvan ääniraidassa, joka on oodi syntikkamusiikille.</p><p>Lähde: Sanni Majamaa/Espoo Ciné</p><p>Genre: Drama <br>Ohjaus: Patrik Blomberg Book <br>Päärooleissa: Erik Svedberg-Zelman, Rebecca Plymholt ja Anna Blomberg.<br>Ruotsi, 2024.</p><p>Kieli: Ruotsi, suomenkielinen tekstitys.</p><p>K12, 95 min.</p>", "sv": "<p>Synthmusik, kärlek och såriga familjerelationer i övertygande coming of age-drama förlagt till den skånska vischan.</p><p>Året är 1986 och Fredrik bor i en liten by på Österlen med sin alkoholiserade mamma. Vore det inte för synthmusiken och kärleken till Nina, en inflyttad tjej med fotografambitioner, hade tillvaron varit outhärdlig. Om några dagar väntar den framemotsedda första spelningen med egna synthbandet, men när förhållandet med Nina börjar knaka samtidigt som relationen med föräldrarna försämras laddas den kommande spelningen med än högre förväntningar.</p><p>Patrik Blomberg Books långfilmsdebut om ungdomlig frigörelse och strävan kastar oss tillbaka till 1980-talet och fångar med skärpa och detaljrikedom dess tidsanda och inte minst spirande synthkultur.</p><p>Källa: Tobias Åkesson/Göteborgs filmfestival</p><p>Genre: Drama <br>Regi: Patrik Blomberg Book<br>I huvudrollerna: Erik Svedberg-Zelman, Rebecca Plymholt och Anna Blomberg.<br>Sverige, 2024.</p><p>Språk: svenska<br>Tekst: finska</p><p>F12, 95 min.</p>", "en": "<p>The worlds first feature film that centers around synth music and new romantics, set in the 1980:s in rural Sweden.</p><p>The film is about a boy (Fredrik) and a girl (Nina), both aged 18. They live in a small village in rural Sweden (Smedstorp, Skåne, inhabitants 363).</p><p>The year is 1984 and they are both new romantics, heavily into synth music and Fredrik is the singer in the local synth band. The film takes place from Friday to Sunday. Fredriks synth band will play their debut gig in the village on Saturday evening, but things happen that will completely turn Fredriks life upside down.<br> <br>Genre: Drama<br>Director: Patrik Blomberg Book <br>In the headparts: Erik Svedberg-Zelman, Rebecca Plymholt and Anna Blomberg.</p><p>Sweden, 2024.</p><p>Language: Swedish<br>Subtitles: Finnish<br>K/F12, 95 min.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65641/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65233", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 223980, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-14T08:15:22.171545Z", "last_modified_time": "2025-02-14T08:15:22.171571Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764251.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/223980/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-02-14T08:15:22.132018Z", "last_modified_time": "2025-02-19T12:14:11.692658Z", "date_published": null, "start_time": "2025-03-08T09:00:00Z", "end_time": "2025-03-08T12: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_contact_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken.", "en": "At Annantalo Art Saturday, the whole family can spend their free time with art." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FB6A9780414C22619B46A805F0260428/Annantalon_taidelauantai_Tilkkuverhot", "sv": "http://www.annantalo.fi/sv/evenemang/event/FB6A9780414C22619B46A805F0260428/Annegardens_konstlordag_Lapptacksgardiner", "en": "http://www.annantalo.fi/en/events/event/FB6A9780414C22619B46A805F0260428/Annantalo_Art_Saturday_Patchwork_Curtains" }, "name": { "fi": "Annantalon taidelauantai: Tilkkuverhot", "sv": "Annegårdens konstlördag: Lapptäcksgardiner", "en": "Annantalo Art Saturday: Patchwork Curtains" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Tilkkuverhot</b> <br> <br>Tilkkuiset verhot huojahtelevat ikkunan takaista maisemaa reunustaen. Tule mukaan luomaan yhteistä taideteosta Tilkkuverhot-työpajaan! Työpajassa tuunataan teeman inspiroimana oma tilkku, joista ohjaajat ompelevat yhtenäisiä verhoja. Innostamme osallistujia pehmeiden materiaalien äärelle käsityötaidoista riippumatta!</p><p>Työpajan ohjaavat Aalto-yliopiston Taiteen ja median laitoksen opiskelijat. Voit hakea tilkkuusi inspiraatiota Aalto-yliopiston opiskelijoiden Pumpulimuisto-näyttelystä, joka on esillä Annantalon 2. kerroksessa.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Työpajan kieli on pääosin suomi ja englanti, mutta kaikki ovat tervetulleita kielitaidosta riippumatta.<br> <br>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken.</p><p><b>Lapptäcksgardiner</b></p><p>Lapptäcksgardiner vaggar mjukt och ramar in utsikten utanför fönstret. Kom med och skapa ett gemensamt konstverk i Lapptäcksgardiner-verkstaden! I verkstaden designar du din egen tygbit inspirerad av temat, och sedan syr handledarna ihop dem till en enhetlig gardin. Inga förkunskaper i hantverk behövs – bara ta med din kreativitet och njut av att arbeta med mjuka material!</p><p>Verkstaden leds av studenter från Aalto-universitetets institution för konst och media. Du kan hitta inspiration till din tygbit i utställningen Bomullsminnen, skapad av Aalto-universitetets studenter och visad på andra våningen i Annantalo.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshopens språk är huvudsakligen finska och engelska, men alla är välkomna oavsett språkkunskaper.</p>", "en": "<p>At Annantalo Art Saturday, the whole family can spend their free time with art.</p><p><b>Patchwork Curtains</b></p><p>Patchwork curtains sway gently, framing the view beyond the window. Join us in creating a collective artwork at the Patchwork Curtains workshop! In this workshop, you’ll design your own fabric patch inspired by the theme, which will later be sewn together into unified curtains by the instructors. No prior craft skills are needed—just bring your creativity and enjoy working with soft materials!</p><p>The workshop is led by students from Aalto University’s Department of Art and Media. You can find inspiration for your patch from Cotton Memories, an exhibition by Aalto University students, displayed on the 2nd floor of Annantalo.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop language is mainly Finnish and English, but everyone is welcome regardless of language skills.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65233/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65232", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153664, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-03T12:15:16.455631Z", "last_modified_time": "2025-01-03T12:15:16.455648Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764250.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153664/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-01-03T12:15:16.430147Z", "last_modified_time": "2025-02-19T12:14:07.237336Z", "date_published": null, "start_time": "2025-02-22T09:00:00Z", "end_time": "2025-02-22T12: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_contact_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D208323D22D44C2DD0AFD65667C07E74/Annantalon_taidelauantai_Luonnon_naamiot", "sv": "http://www.annantalo.fi/sv/evenemang/event/D208323D22D44C2DD0AFD65667C07E74/Annegardens_konstlordag_Naturens_masker", "en": "http://www.annantalo.fi/en/events/event/D208323D22D44C2DD0AFD65667C07E74/Annantalo_Art_Saturday_Nature_s_masks" }, "name": { "fi": "Annantalon taidelauantai: Luonnon naamiot", "sv": "Annegårdens konstlördag: Naturens masker", "en": "Annantalo Art Saturday: Nature’s masks" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p>Millainen naamio kuvastaisi juuri sinua? Työpajassa tutkiskellaan, ihmetellään ja hypistellään erilaisia luonnon- ja kierrätysmateriaaleja kuten käpyjä, oksia ja sammalta. Näistä syntyvät osallistujien omat, uniikit ja luonnon inspiroimat naamiot!</p><p>Työpajan ohjaajana toimii taiteilija ja taidepedagogi Kristina Laine. Hänen yksityisnäyttelynsä Taidenaamiot – Ajatukset Artefakteiksi on nähtävillä Annantalon 2. kerroksessa. Näyttelystä pääset hakemaan inspiraatiota ja ideoita oman naamiosi valmistamiseen.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Työpajan kieli on pääosin suomi ja englanti, mutta kaikki ovat tervetulleita mukaan kielitaidosta riippumatta.</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p>Vilken slags mask skulle återspegla just dig? På verkstaden studerar vi, förundras vi av och petar vi på olika natur- och återbruksmaterial, som kottar, grenar och mossa. Av dem får deltagarna göra egna och unika masker inspirerade av naturen!</p><p>Verkstaden leds av konstnären och konstpedagogen Kristina Laine. Hennes privata utställning ”Konstmasker –Tankar till artefakter” finns på andra våningen i Annegården. På utställningen kan du hämta inspiration och få idéer för att skapa din egen mask.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Verkstadens språk är huvudsakligen finska och engelska, men alla är välkomna oavsett språkkunskaper.</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p>What kind of mask would best represent you? In this workshop, we’ll investigate, explore and handle various of natural and recycled materials, such as pine cones, twigs and moss. Using these materials, participants will create their own unique and nature-inspired masks!</p><p>The workshop will be led by artist and art educator, Kristina Laine. Her solo exhibition, Taidenaamiot – Ajatukset Artefakteiksi (Art Masks – Turning Ideas into Artefacts), is on display on the second floor of Annantalo. The exhibition is your chance to get inspiration and ideas for making your own mask.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The language of the workshop is mainly Finnish and English, but everyone is welcome regardless of language skills.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65232/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 24633, "next": "