Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=1223
{ "meta": { "count": 28024, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=1224", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=1222" }, "data": [ { "id": "kulke:60468", "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: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: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" }, { "@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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-3/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4255, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:21.935068Z", "last_modified_time": "2023-09-07T14:22:21.935086Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725255.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4255/?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": "2023-09-07T14:22:21.785603Z", "last_modified_time": "2023-11-14T06:13:08.707662Z", "date_published": null, "start_time": "2023-09-21T07:00:00Z", "end_time": "2023-09-21T09: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/73EB1596180216A3A565DC4E4A297E5B/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/73EB1596180216A3A565DC4E4A297E5B/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/73EB1596180216A3A565DC4E4A297E5B/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "provider": null, "description": { "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<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>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. Ingen 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>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 cahnge 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>" }, "short_description": { "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.", "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." }, "location_extra_info": null, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Taidetta Taaperoille – Open Art Studio for Toddlers-verkstäder (", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60468/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60119", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4249, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:17.935546Z", "last_modified_time": "2023-09-07T14:22:17.935569Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733059.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4249/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:17.787150Z", "last_modified_time": "2023-11-14T06:13:08.197761Z", "date_published": null, "start_time": "2023-09-20T15: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/BFEE1C46EF71B0BEEEFDE132E32F37B4/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/BFEE1C46EF71B0BEEEFDE132E32F37B4/Stoas_kor_", "en": "http://www.stoa.fi/en/events/event/BFEE1C46EF71B0BEEEFDE132E32F37B4/Stoa_Choir_" }, "provider": null, "description": { "fi": "<p>Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?</p><p>Tervetuloa mukaan kansainväliseen Stoan kuoroon, jossa voit laulaa ja oppia suomen kieltä, ääntämistä, uusia sanoja ja puhekielen sanontoja. Samalla voit nauttia musiikista, ilmaisusta ja liikkumisesta musiikin mukana. Tule, vaikka osaisit vain vähän suomea! Ryhmää johtaa MuM, kuoronjohtaja-musiikinopettaja Johanna Lehtinen-Schnabel.</p><p>Kuoro harjoittelee Stoan musiikkisalissa keskiviikkoisin klo 18-19.30.</p><p>Lämpimästi tervetuloa!</p><p>Lisätiedot ja Ilmoittautuminen: sanna.nuutinen@hel.fi</p><p>Kuorokerrat: <br>6.9.<br>13.9.<br>20.9.<br>27.9.<br>11.10.<br>25.10.<br>1.11.<br>15.11.<br>22.11.<br>29.11.</p>", "sv": "<p>Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?</p><p>Välkommen med i Stoas internationella kör, där du kan lära dig sjunga och uttala finska, samt lära dig nya ord och uttryck. Kom med, även om du inte kan så mycket finska ännu! Gruppen leds av MuM, körledare-musiklärare Johanna Lehtinen-Schnabel. <br>Varmt välkommen!</p><p>På onsdagar kl. 18-19.30.<br>Datum: <br>6.9.<br>13.9.<br>20.9.<br>27.9.<br>11.10.<br>25.10.<br>1.11.<br>15.11.<br>22.11.<br>29.11.</p><p>Fråga mer och registrera: sanna.nuutinen@hel.fi</p>", "en": "<p>Would you like to learn Finnish by singing in Finnish?</p><p>If so, please join us! <br>We are a friendly group of Finnish-learners who sing together to improve our Finnish language skills. We are led by accomplished Finnish musician, singer, and choir leader, Johanna Lehtinen-Schnabel.<br>Rehearsals on Wednesdays 6-7.30pm at Stoa music hall.</p><p>Autumn season: <br>6 Sept <br>13 Sept<br>20 Sept<br>27 Sept<br>11 Oct<br>25 Oct<br>1 Nov<br>15 Nov<br>22 Nov<br>29 Nov</p>" }, "short_description": { "fi": "Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?", "sv": "Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?", "en": "Would you like to learn Finnish by singing in Finnish?" }, "location_extra_info": null, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60119/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60674", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?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:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4247, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:15.628056Z", "last_modified_time": "2023-09-07T14:22:15.628076Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735262.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4247/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-09-07T14:22:15.304008Z", "last_modified_time": "2023-11-14T06:13:08.054032Z", "date_published": null, "start_time": "2023-09-20T14:00:00Z", "end_time": "2023-09-20T16: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/90F6F208ABBFE0B3478DDFE67C322762/Sanapaja_Wordshop_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/90F6F208ABBFE0B3478DDFE67C322762/Sanapaja_Wordshop_", "en": "http://www.vuotalo.fi/en/events/event/90F6F208ABBFE0B3478DDFE67C322762/Sanapaja_Wordshop_" }, "provider": null, "description": { "fi": "<p>Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?</p><p>Haluatko harrastaa kirjoittamista mukavassa seurassa? Tervetuloa Sanapaja / Wordshop -kirjoittajatyöpajoihin!<br> <br>Voit kirjoittaa millä kielellä haluat. Kieliopilla ei ole väliä, vaan sillä mitä haluat sanoa! <br>Pajoissa puhutaan suomea ja englantia.</p><p>Voit osallistua pajoihin vaikka joka kerta, tai silloin kuin sinulle sopii. <br>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Ole ylpeä kaikista kielistä, joita osaat!<br> <br>Järjestäjät: Vuotalo, Nuoren Voiman Liitto ja Operaatio Pulssi <br>Ikäsuositus: 13-19v (mutta ei tarkkaa ikärajaa) <br>Paikka: Kirjaston kokoushuone 2</p>", "sv": "<p>Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?</p><p>Vill du skriva i ett härligt gäng? Välkommen till skrivarverkstäderna Sanapaja / Wordshop!</p><p>Du kan skriva på vilket språk som helst. Det viktigaste är inte grammatiken utan det du vill säga!</p><p>I verkstäderna talas finska och engelska. <br>Du kan delta i verkstäderna varje gång eller då det passar dig. <br>Fritt inträde, ingen förhandsanmälan.</p><p>Var stolt över alla språk du kan!</p><p>Arrangörer: Nordhuset, Nuoren Voiman Liitto ry och Operaatio Pulssi <br>Åldersrekommendation: 13–19 (ingen specifik åldersgräns) <br>Plats: Bibliotekets mötesrum 2</p>", "en": "<p>Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?</p><p>Do you want to do some writing in good company? Welcome to the Wordshop writers’ workshops! <br> <br>You can write in any language you want. It's not the grammar that counts. It's what you want to say. The workshops are conducted in Finnish and English.</p><p>You can participate in the workshops every time or whenever it suits you.</p><p>Free admission, no pre-registration required.</p><p>Be proud of all the languages you know!</p><p>Organisers: Vuosaari House, Nuoren Voiman Liitto and Operation Pulse <br>Age recommendation: 13–19 (no specific age limit)<br>Location: Meeting room 2 in Vuosaari Library</p>" }, "short_description": { "fi": "Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?", "sv": "Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?", "en": "Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?" }, "location_extra_info": null, "name": { "fi": "Sanapaja / Wordshop", "sv": "Sanapaja / Wordshop", "en": "Sanapaja / Wordshop" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60674/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60288", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4241, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:11.441855Z", "last_modified_time": "2023-09-07T14:22:11.441877Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734658.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4241/?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": "2023-09-07T14:22:11.283845Z", "last_modified_time": "2023-11-14T06:13:07.659980Z", "date_published": null, "start_time": "2023-09-20T06: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/08E188A6DD66B5FE53174757658730AE/Osiris-teatteri_Vaahteramatka_" }, "provider": null, "description": { "fi": "<p>Vaahteramatka on esityksellinen seikkailuretki lähiluonnossa 1.–2.-luokkalaisille.</p><p>Vaahteramatka on luonnossa kiertävä elämyksellinen esitys, joka herättää lapsen mielikuvituksen ja tuo uudenlaisia näkökulmia lähiluontoon. Vaahteramatka tukee lapsen luontosuhteen kehittymistä ja osallisuutta taiteeseen konkreettisella tavalla. Teoksen kulkeva muoto osallistaa lapset liikkumaan esityksen mukana.<br> <br>Säävaraus: Vaahteramatka toteutuu myös sadesäällä, mutta kovalla myrskyllä se joudutaan perumaan.<br> <br>Suunnittelu, ohjaus ja toteutus: Hanna Pihko ja Riikka Siirala<br>Musiikki: Charlotta Hagfors<br>Tuotanto: OSIRIS teatteri<br>Valokuvat: Ahmed Alalousi<br>Tukijat: Helsingin kaupunki ja Taiteen edistämiskeskus<br> <br>Kohderyhmä: 1.–2.-luokat<br>Paikka: Matokallion metsä<br>kesto: 60–75 min<br>kieli: suomi<br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>" }, "short_description": { "fi": "Vaahteramatka on esityksellinen seikkailuretki lähiluonnossa 1.–2.-luokkalaisille." }, "location_extra_info": null, "name": { "fi": "Osiris-teatteri: Vaahteramatka" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60288/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60455", "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: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: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" }, { "@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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-2/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4236, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:07.885944Z", "last_modified_time": "2023-09-07T14:22:07.885967Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725180.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4236/?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": "2023-09-07T14:22:07.736595Z", "last_modified_time": "2023-11-14T06:13:07.424158Z", "date_published": null, "start_time": "2023-09-19T10:30:00Z", "end_time": "2023-09-19T12: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/60A0D9921A811051580CFDACC36D5707/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/60A0D9921A811051580CFDACC36D5707/Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/60A0D9921A811051580CFDACC36D5707/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "provider": null, "description": { "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<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>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. Ingen 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>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 cahnge 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>" }, "short_description": { "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.", "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." }, "location_extra_info": null, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Open Art Studio for Toddlers-verkstäder", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60455/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60287", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4235, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:07.476348Z", "last_modified_time": "2023-09-07T14:22:07.476370Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734656.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4235/?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": "2023-09-07T14:22:06.963712Z", "last_modified_time": "2023-11-14T06:13:07.350701Z", "date_published": null, "start_time": "2023-09-19T09: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4C5698D338AE7891E90C46C092C23F61/Osiris-teatteri_Vaahteramatka", "sv": "http://www.stoa.fi/sv/evenemang/event/4C5698D338AE7891E90C46C092C23F61/Osiris-teatern_Vaahteramatka_", "en": "http://www.stoa.fi/en/events/event/4C5698D338AE7891E90C46C092C23F61/Osiris_Theatre_The_Maple_Journey_" }, "provider": null, "description": { "fi": "<p>Vaahteramatka on esityksellinen seikkailuretki lähiluonnossa 1.–2.-luokkalaisille.</p><p>Vaahteramatka on luonnossa kiertävä elämyksellinen esitys, joka herättää lapsen mielikuvituksen ja tuo uudenlaisia näkökulmia lähiluontoon. Vaahteramatka tukee lapsen luontosuhteen kehittymistä ja osallisuutta taiteeseen konkreettisella tavalla. Teoksen kulkeva muoto osallistaa lapset liikkumaan esityksen mukana.<br> <br>Säävaraus: Vaahteramatka toteutuu myös sadesäällä, mutta kovalla myrskyllä se joudutaan perumaan.<br> <br>Suunnittelu, ohjaus ja toteutus: Hanna Pihko ja Riikka Siirala<br>Musiikki: Charlotta Hagfors<br>Tuotanto: OSIRIS teatteri<br>Valokuvat: Ahmed Alalousi<br>Tukijat: Helsingin kaupunki ja Taiteen edistämiskeskus<br> <br>Kohderyhmä: 1.–2.-luokat<br>Paikka: Matokallion metsä<br>kesto: 60–75 min<br>kieli: suomi<br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Vaahteramatka (Lönnresan) är en kreativ äventyrsutflykt för elever i årsklasserna 1 och 2.</p><p>Vaahteramatka (Lönnresan) är en upplevelsebaserad föreställning som sker i naturen och som väcker barnets fantasi och ger nya synsätt på naturen i närheten. Vaahteramatka stöder utvecklingen av barnets förhållande till naturen och delaktigheten i konst på ett konkret sätt. Verkets vandrande form inkluderar barnen i att röra sig i takt med föreställningen. Vaahteramatka (Lönnresan) ordnas även om det regnar, men om det är storm ställs den in.</p><p>Plats: Matokallioskogen<br>På finska</p>", "en": "<p>The Maple Journey is an educational adventure in local nature for 1st and 2nd graders.</p><p>The Maple Journey is an exciting performance in nature, which awakens the child’s imagination and brings new perspectives to the local nature. The Maple Journey supports the development of children’s relationship with nature and their participation in art in a concrete way. The form of the work engages children to move with the performance. The Maple Journey will also be performed in rainy weather, but it will have to be cancelled if there is heavy rain.</p><p>Location: Matokallio forest<br>In Finnish</p>" }, "short_description": { "fi": "Vaahteramatka on esityksellinen seikkailuretki lähiluonnossa 1.–2.-luokkalaisille.", "sv": "Vaahteramatka (Lönnresan) är en kreativ äventyrsutflykt för elever i årsklasserna 1 och 2.", "en": "The Maple Journey is an educational adventure in local nature for 1st and 2nd graders." }, "location_extra_info": null, "name": { "fi": "Osiris-teatteri: Vaahteramatka", "sv": "Osiris-teatern: Vaahteramatka", "en": "Osiris Theatre: The Maple Journey" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60287/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59904", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4234, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:06.233333Z", "last_modified_time": "2023-09-07T14:22:06.233359Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731095.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4234/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:05.465212Z", "last_modified_time": "2023-11-14T06:13:07.274646Z", "date_published": null, "start_time": "2023-09-19T07:30:00Z", "end_time": "2023-09-19T08: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F0E1A691A7379AE5665A4C72FCAE9AD8/Aamupaivatanssit", "sv": "http://www.stoa.fi/sv/evenemang/event/F0E1A691A7379AE5665A4C72FCAE9AD8/Formiddagsdans", "en": "http://www.stoa.fi/en/events/event/F0E1A691A7379AE5665A4C72FCAE9AD8/Dances_in_the_Morning" }, "provider": null, "description": { "fi": "<p>Tule opettelemaan ja tanssimaan Katjan ja Jussin ammattitaitoisella ohjauksella Stoan aulaan, sään mukaan voidaan tanssia myös Stoan aukiolla.</p><p>Aiempaa osaamista et tarvitse eli olet sitten aloittelija tai mestari, tervetuloa tanssimaan!</p><p>Tanssiminen tapahtuu joko oman parin kanssa tai soolona. Vapaa pääsy. <br> <br>Ohjauskieli: suomi</p>", "sv": "<p>Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas entré.</p><p>Tidigare kunskaper behövs inte – såväl proffs som noviser är välkomna! Deltagarna dansar antingen med sin partner eller ensamma.</p><p>Språk: finska <br>Fritt inträde.</p>", "en": "<p>Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa.</p><p>No previous knowledge is required, beginners are just as welcome as experts! You can dance either with your partner or solo.</p><p>Language: Finnish <br>Free entry</p>" }, "short_description": { "fi": "Tule opettelemaan ja tanssimaan Katjan ja Jussin ammattitaitoisella ohjauksella Stoan aulaan, sään mukaan voidaan tanssia myös Stoan aukiolla.", "sv": "Danser under Katja Koukkulas och Jussi Väänänen järnhårda och professionella ledning i Stoas entré.", "en": "Dancing with professional guidance from Katja Koukkula and Jussi Väänänen in the lobby of Stoa." }, "location_extra_info": null, "name": { "fi": "Aamupäivätanssit – Jussi Väänäsen ja Katja Koukkulan kanssa", "sv": "Förmiddagsdans", "en": "Dances in the Morning" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59904/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60286", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4233, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:05.055573Z", "last_modified_time": "2023-09-07T14:22:05.055593Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734655.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4233/?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": "2023-09-07T14:22:04.900687Z", "last_modified_time": "2023-11-14T06:13:07.194024Z", "date_published": null, "start_time": "2023-09-19T06: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/B1FBADA9DEF0399EF4697E406249FC22/Osiris-teatteri_Vaahteramatka", "sv": "http://www.stoa.fi/sv/evenemang/event/B1FBADA9DEF0399EF4697E406249FC22/Osiris-teatern_Vaahteramatka_", "en": "http://www.stoa.fi/en/events/event/B1FBADA9DEF0399EF4697E406249FC22/Osiris_Theatre_The_Maple_Journey_" }, "provider": null, "description": { "fi": "<p>Vaahteramatka on esityksellinen seikkailuretki lähiluonnossa 1.–2.-luokkalaisille.</p><p>Vaahteramatka on luonnossa kiertävä elämyksellinen esitys, joka herättää lapsen mielikuvituksen ja tuo uudenlaisia näkökulmia lähiluontoon. Vaahteramatka tukee lapsen luontosuhteen kehittymistä ja osallisuutta taiteeseen konkreettisella tavalla. Teoksen kulkeva muoto osallistaa lapset liikkumaan esityksen mukana.<br> <br>Säävaraus: Vaahteramatka toteutuu myös sadesäällä, mutta kovalla myrskyllä se joudutaan perumaan.<br> <br>Suunnittelu, ohjaus ja toteutus: Hanna Pihko ja Riikka Siirala<br>Musiikki: Charlotta Hagfors<br>Tuotanto: OSIRIS teatteri<br>Valokuvat: Ahmed Alalousi<br>Tukijat: Helsingin kaupunki ja Taiteen edistämiskeskus<br> <br>Kohderyhmä: 1.–2.-luokat<br>Paikka: Matokallion metsä<br>kesto: 60–75 min<br>kieli: suomi<br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Vaahteramatka (Lönnresan) är en kreativ äventyrsutflykt för elever i årsklasserna 1 och 2.</p><p>Vaahteramatka (Lönnresan) är en upplevelsebaserad föreställning som sker i naturen och som väcker barnets fantasi och ger nya synsätt på naturen i närheten. Vaahteramatka stöder utvecklingen av barnets förhållande till naturen och delaktigheten i konst på ett konkret sätt. Verkets vandrande form inkluderar barnen i att röra sig i takt med föreställningen. Vaahteramatka (Lönnresan) ordnas även om det regnar, men om det är storm ställs den in.</p><p>Plats: Matokallioskogen<br>På finska</p>", "en": "<p>The Maple Journey is an educational adventure in local nature for 1st and 2nd graders.</p><p>The Maple Journey is an exciting performance in nature, which awakens the child’s imagination and brings new perspectives to the local nature. The Maple Journey supports the development of children’s relationship with nature and their participation in art in a concrete way. The form of the work engages children to move with the performance. The Maple Journey will also be performed in rainy weather, but it will have to be cancelled if there is heavy rain.</p><p>Location: Matokallio forest<br>In Finnish</p>" }, "short_description": { "fi": "Vaahteramatka on esityksellinen seikkailuretki lähiluonnossa 1.–2.-luokkalaisille.", "sv": "Vaahteramatka (Lönnresan) är en kreativ äventyrsutflykt för elever i årsklasserna 1 och 2.", "en": "The Maple Journey is an educational adventure in local nature for 1st and 2nd graders." }, "location_extra_info": null, "name": { "fi": "Osiris-teatteri: Vaahteramatka", "sv": "Osiris-teatern: Vaahteramatka", "en": "Osiris Theatre: The Maple Journey" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60286/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59902", "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: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: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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?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, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4232, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:04.675186Z", "last_modified_time": "2023-09-07T14:22:04.675208Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731045.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4232/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:22:04.522258Z", "last_modified_time": "2023-11-14T06:13:07.115795Z", "date_published": null, "start_time": "2023-09-19", "end_time": "2023-10-12", "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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CC8CD4398C1077C994FA26B4213081EF/Annantalo_valkokankaalla_Elavat_kuvat_2", "sv": "http://www.annantalo.fi/sv/evenemang/event/CC8CD4398C1077C994FA26B4213081EF/Pa_vita_duken_i_Annegarden_Levande_bilder_2", "en": "http://www.annantalo.fi/en/events/event/CC8CD4398C1077C994FA26B4213081EF/Annantalo_on_the_Big_Screen_Moving_Pictures_2" }, "provider": null, "description": { "fi": "<p>Annantalon toisen kerroksen pohjoinen galleria muuttuu elokuvasaliksi, jossa nähdään animaatioita, videoita ja lyhytelokuvaa.</p><p>Perinteistä sekä kokeellista, uutta ja vanhaa sopivassa suhteessa. Esillä oleva kokoelma koostuu Annantalon oppilaiden tekemistä videoista vuosilta 2020–2023.</p><p>Yhden näytöskierroksen kokonaiskesto on noin 30 minuuttia. Videot pyörivät nonstoppina galleriatilassa.</p><p>Ota mukava asento sohvalta ja nauti!</p><p>Paikka: pohjoinen lasigalleria<br>Kielet: Suomi / sanaton<br>Kaikenikäisille</p><p>Elävät kuvat 2 Annantalossa 19.9.2023–12.10.2023 ja 8.11.2023–20.1.2024.</p>", "sv": "<p>Det norra galleriet på andra våningen i Annegården förvandlas till biosalong, där vi får se animationer, videor och en kortfilmer.</p><p>En lagom blandning av traditionellt och experimentellt, nytt och gammalt. Den utställda samlingen består av videor skapade av Annegårdens elever från åren 2020–2023.</p><p>Den totala längden på en utställningsrunda är cirka 30 minuter. Videorna rullar nonstop i gallerilokalen.</p><p>Inta en bekväm ställning på soffan och njut!</p><p>Språk: finska / ordlös<br>För alla åldrar</p>", "en": "<p>The northern gallery on the second floor of Annantalo is transformed into a cinema presenting animations, videos and short films.</p><p>It is an ecletic mix of traditional and experimental, new and old. The collection on display consists of videos made by the students of Annantalo between 2020 and 2023.</p><p>The total duration is approximately 30 minutes. The videos run non-stop in the gallery.</p><p>Take a seat on the couch, lie back and enjoy!</p><p>Language: Finnish / non-verbal<br>For all ages</p>" }, "short_description": { "fi": "Annantalon toisen kerroksen pohjoinen galleria muuttuu elokuvasaliksi, jossa nähdään animaatioita, videoita ja lyhytelokuvaa.", "sv": "Det norra galleriet på andra våningen i Annegården förvandlas till biosalong, där vi får se animationer, videor och en kortfilmer.", "en": "The northern gallery on the second floor of Annantalo is transformed into a cinema presenting animations, videos and short films." }, "location_extra_info": null, "name": { "fi": "Annantalo valkokankaalla: Elävät kuvat 2", "sv": "På vita duken i Annegården: Levande bilder 2", "en": "Annantalo on the Big Screen: Moving Pictures 2" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59902/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60427", "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:104/?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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4230, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:03.626681Z", "last_modified_time": "2023-09-07T14:22:03.626713Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730676.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4230/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:22:02.962786Z", "last_modified_time": "2023-11-14T06:13:06.960574Z", "date_published": null, "start_time": "2023-09-18T15: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, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/DBE592D4AEA1AE8CC71FB6B42C88564B/Kirjailijavieraana_Maria_Turtschaninoff", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/DBE592D4AEA1AE8CC71FB6B42C88564B/Maria_Turtschaninoff_ar_forfattargast", "en": "http://www.kanneltalo.fi/en/events/event/DBE592D4AEA1AE8CC71FB6B42C88564B/Author_Guest_Maria_Turtschaninoff" }, "provider": null, "description": { "fi": "<p>Suomaa (Tammi, 2022) on lumoava episodiromaani metsän voimasta ja suomalaisten elävästä luontosuhteesta, joka kannattelee meitä sukupolvesta toiseen.</p><p>Haastattelijana FM Tuija Takala</p><p>Uurna sylissään nainen saapuu hiljaiseen taloon metsän keskellä. Kun viimeinenkin nokare äidin puolukkahillosta on syöty, on tyttären vuoro olla sukunsa vanhin. Ottaa haltuun talo ja maa sen ympärillä.</p><p>Maria Turtschaninoff on suomenruotsalainen fantasiakirjailija ja freelance-toimittaja. Nykyisin Turtschaninoff asuu Karjaalla ja työskentelee vapaana kirjailijana. Hän voitti vuonna 2014 Finland Junior -palkinnon teoksellaan Maresi: Punaisen luostarin kronikoita. Vuonna 2023 Turtschaninoff sai Kiitos kirjasta -palkinnon teoksellaan Suomaa (Arvejord).</p><p>Yhteistyössä Kannelmäen kirjaston ja Työväenopiston kanssa.</p><p>Kieli: Haastattelu tehdään suomeksi, mutta kirjailijan kanssa voi käydä yleisökeskustelua myös hänen äidinkielellään ruotsiksi. <br>Vapaa pääsy<br>Kahvilan stagella</p><p>Maksuttomat maanantait on sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Tutustu tapahtumiin alempaa ja käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p>Suomaa (Tammi, 2022) är en förtrollande episodisk roman om skogens kraft och finländarnas levande naturförhållande, som bär oss från en generation till nästa.</p><p>FM Tuija Takala som intervjuare.</p><p>Maria Turtschaninoff är en finlandssvensk fantasyförfattare och frilansjournalist. Numera bor Turtschaninoff i Karis och arbetar som frilansskribent.<br>I samarbete med Gamlas bibliotek och Arbetarinstitutet.</p><p>Intervjun hålls på finska, men det går bra om publiken vill prata med henne på hennes modersmål svenska.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Läs mer om evenemangen nedan och starta din vecka med kultur i Gamlasgården!</p>", "en": "<p>Suomaa (Tammi, 2022) is an enchanting episodic novel about the power of the forest and the Finns’ living relationship with nature that carries us from generation to generation.</p><p>FM Tuija Takala som intervjuare.</p><p>Maria Turtschaninoff är en finlandssvensk fantasyförfattare och frilansjournalist. Numera bor Turtschaninoff i Karis och arbetar som frilansskribent.<br>I samarbete med Gamlas bibliotek och Arbetarinstitutet.</p><p>Intervjun hålls på finska, men det går bra om publiken vill prata med henne på hennes modersmål svenska.</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Explore the events in further detail below and start your week with a dose of culture at Kanneltalo!</p>" }, "short_description": { "fi": "Suomaa (Tammi, 2022) on lumoava episodiromaani metsän voimasta ja suomalaisten elävästä luontosuhteesta, joka kannattelee meitä sukupolvesta toiseen.", "sv": "Suomaa (Tammi, 2022) är en förtrollande episodisk roman om skogens kraft och finländarnas levande naturförhållande, som bär oss från en generation till nästa.", "en": "Suomaa (Tammi, 2022) is an enchanting episodic novel about the power of the forest and the Finns’ living relationship with nature that carries us from generation to generation." }, "location_extra_info": null, "name": { "fi": "Kirjailijavieraana Maria Turtschaninoff – Maksuttomat maanantait", "sv": "Maria Turtschaninoff är författargäst – Konstadsfria måndagar", "en": "Author Guest Maria Turtschaninoff – Free Mondays" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60427/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60492", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4229, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:02.228873Z", "last_modified_time": "2023-09-07T14:22:02.228895Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731771.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4229/?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": "2023-09-07T14:22:01.881031Z", "last_modified_time": "2023-11-14T06:13:06.884374Z", "date_published": null, "start_time": "2023-09-18T07:15:00Z", "end_time": "2023-09-18T08: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/B99C750E15998DEBC2A4C2D777CF59C2/Tanssi_ja_leikki_-tyopajat_Leikki-ikaiset", "sv": "http://www.caisa.fi/sv/evenemang/event/B99C750E15998DEBC2A4C2D777CF59C2/Dans_och_lek_verkstad_Barn_i_lekaldern", "en": "http://www.caisa.fi/en/events/event/B99C750E15998DEBC2A4C2D777CF59C2/Dance_and_play_workshops_Play-age" }, "provider": null, "description": { "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.<br>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen 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ä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>", "sv": "<p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>", "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>" }, "short_description": { "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "en": "The dance and play workshop introduces children to the world of dance through movement, music and play." }, "location_extra_info": null, "name": { "fi": "Tanssi ja leikki -työpajat | Leikki-ikäiset – Leikki-ikäisille (3–5 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek verkstad | Barn i lekåldern – För barn i lekåldern (3–5 år) och deras föräldrar", "en": "Dance and play workshops | Play-age – For play-age children (3–5 years) and their parents" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60492/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60480", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4228, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:22:01.635294Z", "last_modified_time": "2023-09-07T14:22:01.635360Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731755.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4228/?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": "2023-09-07T14:22:01.482961Z", "last_modified_time": "2023-11-14T06:13:06.801441Z", "date_published": null, "start_time": "2023-09-18T06:15:00Z", "end_time": "2023-09-18T07: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/2B967BE880C93A0F764D25251C046B5F/Tanssi_ja_leikki_-tyopaja_Taaperot", "sv": "http://www.caisa.fi/sv/evenemang/event/2B967BE880C93A0F764D25251C046B5F/Dans_och_lek_verkstad_Smabarn", "en": "http://www.caisa.fi/en/events/event/2B967BE880C93A0F764D25251C046B5F/Dance_and_play_workshops_Toddlers" }, "provider": null, "description": { "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan.</p><p>Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.</p><p>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen 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ä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>", "sv": "<p>Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>", "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>" }, "short_description": { "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "sv": "Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.", "en": "The dance and play workshop introduces children to the world of dance through movement, music and play." }, "location_extra_info": null, "name": { "fi": "Tanssi ja leikki -työpaja | Taaperot – Taaperoille (1–3 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek verkstad | Småbarn – För småbarn (1–3 år) och deras föräldrar", "en": "Dance and play workshops / Toddlers – For toddlers (1–3 years) and their parents" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60480/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60908", "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:32/?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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4220, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:55.426986Z", "last_modified_time": "2023-09-07T14:21:55.427006Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736551.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4220/?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": "2023-09-07T14:21:55.078848Z", "last_modified_time": "2023-11-14T06:13:06.145866Z", "date_published": null, "start_time": "2023-09-16T11: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/87E286ACA09648BAEA6D2BEC4266D8A7/DanceAbility_Lasten_inklusiivinen_tanssitunti_", "en": "http://www.annantalo.fi/en/events/event/87E286ACA09648BAEA6D2BEC4266D8A7/DanceAbility_Children_s_inclusive_dance_class" }, "provider": null, "description": { "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Tiedustelut ja ilmoittautumiset sähköpostitse osoitteeseen daf@danceabilityfinland.com.</p><p>www.danceabilityfinland.com/daf/</p>", "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Bookings: daf@danceabilityfinland.com</p><p>https://www.danceabilityfinland.com/daf/</p>" }, "short_description": { "fi": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do." }, "location_extra_info": null, "name": { "fi": "DanceAbility: Lasten inklusiivinen tanssitunti", "en": "DanceAbility: Children's inclusive dance class" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60908/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60351", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4218, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:54.443088Z", "last_modified_time": "2023-09-07T14:21:54.443120Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731337.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4218/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:54.283446Z", "last_modified_time": "2023-11-14T06:13:05.978309Z", "date_published": null, "start_time": "2023-09-16T10:00:00Z", "end_time": "2023-09-16T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/27544A107CA1BEB25379D9533A642B8A/Debatti_1970-luvun_arkkitehtuurin_aatteet_ja_arki_tanaan_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/27544A107CA1BEB25379D9533A642B8A/Debatt_Ideologier_inom_1970-talets_arkitektur_och_vardagen_idag", "en": "http://www.vuotalo.fi/en/events/event/27544A107CA1BEB25379D9533A642B8A/Debate_1970s_architectural_ideologies_and_everyday_life_today" }, "provider": null, "description": { "fi": "<p>Keskustelua arkkitehtuurista, aatteista ja arjesta 1970-luvun debatointikulttuurin hengessä.</p><p>Dialogiin perustuvassa, osallistavassa tapahtumassa keskustellaan arkkitehtuurista, aatteista ja arjesta 1970-luvun debatointikulttuurin hengessä. Tapahtuman järjestävät yhteistyössä Docomomo Suomi Finland ry, Arkkitehti-lehti, Architectural Democracy -kollektiivi ja Vuotalo.</p><p>Paikka: Vuosali, Vuotalo (Mosaiikkitori 2, Vuosaari, 00980 Helsinki)<br>Kieli: suomi ja englanti<br>Osallistuminen: maksuton, pakollinen ennakkoilmoittautuminen</p><p>Debatti 1: 1970-luvun rakennusperintö – uhka vai mahdollisuus? <br>Debatti 2: Arkkitehtuurin aatteet ja arki vuonna 2023<br>Debatti 3: Meidän on parannettava osallistavaa kaupunkisuunnittelua!</p><p><b>Osallistuminen</b><br>Ilmoittautuminen tapahtumaan avatttu! Tapahtumaan voidaan ottaa yhteensä 200 osallistujaa. Huomioithan, että ilmoittautuminen on sitova ja henkilökohtainen: yhdellä lomakkeella voi tehdä ainoastaan yhden ilmoittautumisen yhdelle henkilölle. Lomakkeen onnistunut lähettäminen on merkki onnistuneesta ilmoittautumisesta. Jos joutuisit perumaan osallistumisesi, ilmoita siitä sähköpostitse osoitteeseen: jemina.lindholm@mfa.fi. Tieto mahdollisesta esteestä on tärkeä, jotta voimme antaa paikkasi jonotuslistalla seuraavalle.</p><p><b>Saavutettavuus</b><br>Tapahtuma on kaikille avoin ja maksuton. Tapahtuma järjestetään suomeksi ja englanniksi. Tapahtumassa on tarjolla virvokkeita. Tapahtuma striimataan kokonaisuudessaan Helsinki-kanavalle, josta se on mahdollista katsoa reaaliajassa tai tallenteena jälkikäteen kahden viikon ajan.</p><p>Vuotalo on liikuntaesteetön. Lisätietoja Vuotalon saavutettavuudesta löydät <u><a href=\"https://www.vuotalo.fi/yhteystiedot\">täältä</a></u>.</p><p>Arkkitehtuurimuseossa on käytössä turvallisemman tilan periaatteet, joihin sitoudutaan kaikessa museon toiminnassa. Lisätietoja Arkkitehtuurimuseon turvallisemman tilan periaatteista löydät <u><a href=\"https://www.mfa.fi/tule-meille/arkkitehtuurimuseon-turvallisemman-tilan-periaatteet/\">täältä</u></a>.</p><p><b>Lisätietoja:</b><br>Jemina Lindholm, yleisötyövastaava, Arkkitehtuurimuseo <br>+358 45 7731 0476, jemina.lindholm@mfa.fi</p>", "sv": "<p>Diskussion om arkitektur, ideologier och vardagen i andan av 1970-talets debattkultur.</p><p>Vid detta inkluderande evenemang som baseras på dialog, diskuterar vi arkitektur, ideologier och vardagen i andan av 1970-talets debattkultur.</p><p>Debatt 1: 1970-talets byggnadstradition – ett hot eller en möjlighet? <br>Debatt 2: Ideologier inom arkitektur och vardagen 2023<br>Debatt 3: Vi måste förbättra den inkluderande stadsplaneringen!</p><p>Evenemanget är gratis och öppet för alla. Evenemanget ordnas på finska och engelska. Se deltagaranvisningarna och tillgänglighetsuppgifterna på Finlands arkitekturmuseums webbplats:<br>på finska https://www.mfa.fi/tapahtumat/debatti-1970-luvun-arkkitehtuurin-aatteet-ja-arki-tanaan/<br>på engelska https://www.mfa.fi/en/events/debate-1970s-architectures-ideas-and-everyday-life-today/</p><p>Nordhuset är tillgängligt. Ytterligare information om Nordhusets tillgänglighet hittar du här: https://www.vuotalo.fi/sv/kontaktuppgifter.</p><p>På Finlands arkitekturmuseum tillämpas principerna för tryggare rum, vilka man förbinder sig till i all verksamhet på museet. Ytterligare information om Finlands arkitekturmuseums principer för tryggare rum hittar du här: https://www.mfa.fi/sv/valkommen-till-arkitekturmuseet/finlands-arkitekturmuseums-principer-for-ett-tryggare-utrymme/</p>", "en": "<p>Discussion on architecture, ideas, and everyday life in the spirit of 1970s debating culture.</p><p>Date: Saturday, September 16th, 2023, from 1:00 PM to 5:00 PM - Helsinki Design Week 2023 Location: Vuosali, Vuotalo (Mosaiikkitori 2, Vuosaari, 00980 Helsinki) <br>Language: Finnish and English <br>Participation: Free | Pre-registration required</p><p>Debate: \"The Ideas and Everyday Life of 1970s Architecture Today\" is a participatory and dialogue-based event where architecture, ideas, and everyday life are discussed in the spirit of the 1970s debating culture. The event is organized in cooperation by Docomomo Suomi Finland ry, Finnish Architectural Review, Architectural Democracy collective, and Vuotalo.</p><p>Debate 1: The Built Heritage of the 1970s - A Threat or an Opportunity?<br>Debate 2: Architecture's Ideas and Everyday Life in 2023<br>Debate 3: We Need to Improve Participatory Urban Planning!</p><p><b>Participation</b><br>Registration for the event is now open. A total of 200 participants can be admitted to the event. Please note that the registration is binding and personal: you can only make one registration for one person with one form. Successful submission of the form is a sign of successful registration. If you have to cancel your participation, please notify us by email to: jemina.lindholm@mfa.fi. Information about a possible cancellation is important so that we can give your place to the next person on the waiting list.</p><p><b>Accessibility</b><br>The event is open to everyone and free of charge. The event is organized in Finnish and English. Refreshments are available at the event. The event will be streamed in its entirety on the Helsinki channel, where it is possible to watch it in real time or as a recording afterwards for two weeks.</p><p>Vuotalo is physically accessible. You can find more information about Vuotalo's accessibility <u><a href=\"https://www.vuotalo.fi/en/contact-information\">here</u></a>.</p><p>The Museum of Finnish Architecture is committed to the principles for a safer space in all museum activities. You can find more information about the Museum of Finnish Architecture's principles for a safer space <u><a href=\"https://www.mfa.fi/en/visit-us/the-museum-of-finnish-architecture-principles-for-a-safer-space/\">here</u></a>.</p><p><b>For more information</b><br>Jemina Lindholm, Manager of Learning and Public Programmes, Museum of Finnish Architecture<br>+358 45 7731 0476, jemina.lindholm@mfa.fi</p>" }, "short_description": { "fi": "Keskustelua arkkitehtuurista, aatteista ja arjesta 1970-luvun debatointikulttuurin hengessä.", "sv": "Diskussion om arkitektur, ideologier och vardagen i andan av 1970-talets debattkultur.", "en": "Discussion on architecture, ideas, and everyday life in the spirit of 1970s debating culture." }, "location_extra_info": null, "name": { "fi": "Debatti: 1970-luvun arkkitehtuurin aatteet ja arki tänään – Helsinki Design Week 2023", "sv": "Debatt: Ideologier inom 1970-talets arkitektur och vardagen idag – Helsinki Design Week 2023", "en": "Debate: 1970s architectural ideologies and everyday life today – Helsinki Design Week 2023" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60351/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59874", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923", "sv": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923", "en": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923" }, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4216, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:52.840890Z", "last_modified_time": "2023-09-07T14:21:52.840914Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730789.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4216/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:52.251930Z", "last_modified_time": "2023-11-14T06:13:05.808410Z", "date_published": null, "start_time": "2023-09-15T16: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A48345A3F7E67702E7F61962A07490F9/Itakuskus_stand_up_-klubi", "sv": "http://www.stoa.fi/sv/evenemang/event/A48345A3F7E67702E7F61962A07490F9/Itakuskus_stand_up-klubb", "en": "http://www.stoa.fi/en/events/event/A48345A3F7E67702E7F61962A07490F9/Itakuskus_Stand-up_Club" }, "provider": null, "description": { "fi": "<p>Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"</p><p>Klubilla unohdat murheet ja stressit. Tämä ainutlaatuinen show vie sinut idän matkalle ja tarjoaa hulvatonta komiikkaa, ainutlaatuisia havaintoja kulttuurieroista ja suomen kielestä. Joka keikalla on useampi vaihtuva maahanmuuttajataustainen koomikko – ja totta kai joka illassa esiintyy myös vaihtuva nimekäs kiintiösuomalainen koomikko.<br> <br>Kaikilla klubeilla esiintyy viihdetähti Fabe. Et ole voinut välttyä Faben videoilta, sillä kuukausittain niitä katsotaan yli miljoonaa kertaa Suomessa ja jaetaan yli 50 000 kertaa. Miksi klubista on tullut ilmiö? Fabe vastaa: ”Koska suomalaiset rakastavat mun käsikarvoja ja niistä vitsailua. Huumorin avulla voi käsitellä kaikkia aiheita ja yhdistää kulttuureita. Tämä on jotain aivan ainutlaatuista ja uskomatonta. Kannattaa tulla paikalle!”<br> <br>Klubi-iltojen isäntänä toimii yksi suomen monipuolisimpia koomikoita: Koomikko Mebe! Mebe on tuottaja, koomikko sekä MC! Hän on sympaattinen ja muistuttaa nallekarhua, joka hurmaa yleisön terävillä heitoilla ja vitseillä! ”Tätä ei näe ja kuule muualla, hulvaton Itäkuskus show on täynnä ullatuksia ja ainutlaatuisia vitsejä ja havaintoja. Tämä on kuin Fazerin maitosuklaa, kerrasta jää koukkuun!! Tule ja koe ainutlaatuinen Itäkuskus-show, monet käy joka kerta.\"<br> <br>Klubilla osansa saavat Verovirasto, Alko, Vantaa, maahanmuuttajien kulttuurierot sekä suomenkieliset fraasit, joita kantasuomalaisetkaan eivät osaa lausua itse oikein.<br> <br>Yleisön suusta:<br>\"Haluamme tukea maahanmuuttajaesiintyjiä.\" <br>\"Täällä kuulen erinomaista läppää, mitä muualla en kuule.\" <br>\"Loistavaa konsepti ja ilta on täynnä hyviä esiintyjiä, jokainen esiintyjä on niin erilainen ja omalla tavalla hyvä.\" <br> <br>Tule kokemaan itse ja tuo kaverit mukaan!<br>Liput kannattaa ostaa hyvissä ajoin ennen, kun ne myydään loppuun.<br> <br>www.instagram.com/comedyfabe/ <br>www.instagram.com/mebekoomikko/, www.tiktok.com/@comedyfabe/ <br> <br>Kesto: n. 2,5 t <br>Ikäraja: K18<br>Kieli: suomi, välillä huono soomi ja ehkä joskus yksi esiintyjä vetää englanniksi<br> <br>Klubi-illan tarjoiluista vastaa ravintola Skutta.<br> <br>Paikka: teatterisali <br>Liput: 20/15 €</p>", "sv": "<p>Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”</p><p>I klubben glömmer du dina bekymmer och stress. Denna unika show tar dig på en resa österut och bjuder på uppsluppen komedi, unika observationer av kulturskillnader och finska språket. Under varje show uppträder flera olika komiker med invandrarbakgrund – och givetvis uppträder även olika, kända kvotfinländska komiker under dessa kvällar.</p><p>I klubben skämtas det friskt om såväl Skatteförvaltningen som Alko, Vanda, invandrarnas kulturskillnader samt finska fraser, som inte ens infödda finländare kan uttala rätt.</p><p>Kom och upplev detta själv och ta med dig en kompis! Det lönar sig att köpa biljetter i god tid.</p>", "en": "<p>Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”</p><p>You will forget your worries and stresses at the club. This unique show will take you on a journey to the East, offering hilarious comedy and unique insights into cultural differences and the Finnish language. Each show will feature a different comedian from an immigrant background – and of course, each night will also feature a different renowned comedian from Finland.</p><p>The club will feature comedy about the Finnish Tax Administration, Alko, Vantaa, immigrants’ cultural differences and Finnish phrases that even native Finns can’t pronounce correctly themselves.</p><p>Come and experience the show for yourself and bring your friends! Make sure to buy your tickets in good time before they sell out.</p>" }, "short_description": { "fi": "Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"", "sv": "Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”", "en": "Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”" }, "location_extra_info": null, "name": { "fi": "Itäkuskus stand up -klubi", "sv": "Itäkuskus stand up-klubb", "en": "Itäkuskus Stand-up Club" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59874/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60743", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4212, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:50.257944Z", "last_modified_time": "2023-09-07T14:21:50.257966Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735831.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4212/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:49.559683Z", "last_modified_time": "2023-11-14T06:13:05.471774Z", "date_published": null, "start_time": "2023-09-15T14: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, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3BF06D9C5D3F6484F6DDE14FB3E8F39C/Machu_Picchu_-yhtye_tietokirjailija_Jaana_Kanninen" }, "provider": null, "description": { "fi": "<p>Kanneltalon galleriassa esiintyy Macchu Picchu -yhtye klo 17–18, jonka jälkeen klo 18–19 tietokirjailija Jaana Kanninen kertoo kirjastaan Kaunis kuolema.</p><p>Machu Picchu –yhtyeessä esiintyvät Rodrigo Rodríguez, Tito Chauca, Pedro Castellón, Mikko Nousiainen ja Roberto Cueto.</p><p>Galleriassa on esillä edesmenneiden Soledad Chuaqui Lahiattin (1937–2018), Héctor Wistuba Lorcan (1932–2018) ja Luis Baudrandin (1951–2021) teoksia. Kaikki kolme asuivat Suomessa vuosikymmeniä poliittisina pakolaisina, koska olivat joutuneet lähtemään kotimaastaan vuoden 1973 vallankaappauksen seurauksena.</p><p>Soledad Chuaqui tuli tunnetuksi omintakeisen paperinleikkaustekniikkansa sekä rautalangasta tehtyjen reliefien vuoksi. Hän myös opetti monia tulevia taiteilijoita Taideteollisessa korkeakoulussa.</p><p>Héctor Wistuba puolestaan yhdisti chileläisen ja suomalaisen kulttuurin taidokkailla vesiväri- ja öljymaalauksillaan, joiden aiheen hän usein löysi suomalaisesta luonnosta.</p><p>Luis Baudrand oli dokumenttivalokuvaaja, jonka tuotanto keskittyy ihmisoikeuksiin; hän pyrki antamaan äänen niille, joilla sitä ei muutoin ollut. Näyttelyn kuvat kertovat Guatemalan alkuperäiskansojen kulttuurin voimasta pitkän sisällissodan jälkeen.</p><p><i>Kokonaisuus on osa tapahtumasarjaa, jonka Suomen chileläisyhteisö tarjoaa muistellakseen puolen vuosisadan takaisia Chilen vallankaappauksen tapahtumia.</i></p>" }, "short_description": { "fi": "Kanneltalon galleriassa esiintyy Macchu Picchu -yhtye klo 17–18, jonka jälkeen klo 18–19 tietokirjailija Jaana Kanninen kertoo kirjastaan Kaunis kuolema." }, "location_extra_info": null, "name": { "fi": "Machu Picchu -yhtye & tietokirjailija Jaana Kanninen" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60743/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60234", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4208, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:47.538593Z", "last_modified_time": "2023-09-07T14:21:47.538615Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734249.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4208/?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": "2023-09-07T14:21:47.167828Z", "last_modified_time": "2023-11-14T06:13:05.221756Z", "date_published": null, "start_time": "2023-09-15T07:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/16067E52A0BA0E5838B359F094D144BA/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/16067E52A0BA0E5838B359F094D144BA/Skidikino", "en": "http://www.stoa.fi/en/events/event/16067E52A0BA0E5838B359F094D144BA/Skidikino" }, "provider": null, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Muut Skidikinot pe 6.10. ja 17.11.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>" }, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "location_extra_info": null, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60234/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60233", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4207, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:46.531220Z", "last_modified_time": "2023-09-07T14:21:46.531239Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734248.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4207/?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": "2023-09-07T14:21:45.652726Z", "last_modified_time": "2023-11-14T06:13:05.139858Z", "date_published": null, "start_time": "2023-09-15T06:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7C332965F1128ED9A66381DAA9BD037E/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/7C332965F1128ED9A66381DAA9BD037E/Skidikino", "en": "http://www.stoa.fi/en/events/event/7C332965F1128ED9A66381DAA9BD037E/Skidikino" }, "provider": null, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Muut Skidikinot pe 6.10. ja 17.11.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>" }, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "location_extra_info": null, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60233/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60791", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [ { "name": "link", "link": "https://helsinkidesignweek.com/events/visioita-tulevaisuuden-kaduista/", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4188, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:32.215074Z", "last_modified_time": "2023-09-07T14:21:32.215101Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735479.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4188/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:32.072186Z", "last_modified_time": "2023-11-14T06:13:05.059999Z", "date_published": null, "start_time": "2023-09-13", "end_time": "2023-09-15", "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, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A6CC0BA69D998986A7113D5F61269A27/Helsinki_Design_Week_Visioita_tulevaisuuden_kaduista" }, "provider": null, "description": { "fi": "<p>Kuinka muotoillaan tulevaisuuden katu? Miten muotoilulla voidaan lisätä kaupungin viihtyisyyttä? Mitä kaupunkimuotoilijat tekevät?</p><p>Näihin kysymyksiin saat vastauksen WSP Design Studion järjestämässä näyttelyssä Espan lavalla 13.–15.9. klo 12–18.</p><p>Esplanadien katukokeilu on täynnä yllättäviä yksityiskohtia, joista jokainen on tarkoin harkittu.<br>Helsinki Design Weekin yhteydessä järjestetään näyttely, jossa pääset tutustumaan Esplanadien katukokeilun suunnitelmaan, kertomaan mielipiteesi ja keskustelemaan katuympäristöjen tulevaisuudesta. Esplanadien katukokeilun lisäksi näyttelyssä on esillä Helsingin kantakaupungin uusia opastemalleja.</p><p>Tule katsomaan, miten muotoilu auttaa suunnittelemaan turvallista ja kaikille helppokulkuista katutilaa, ja kertomaan mielipiteesi opasteista.</p><p>Tapahtuma on osa Helsinki Design Weekin ohjelmaa.</p>" }, "short_description": { "fi": "Kuinka muotoillaan tulevaisuuden katu? Miten muotoilulla voidaan lisätä kaupungin viihtyisyyttä? Mitä kaupunkimuotoilijat tekevät?" }, "location_extra_info": null, "name": { "fi": "Helsinki Design Week: Visioita tulevaisuuden kaduista – Taidetta Espan lavalla" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60791/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59810", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4026, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:41.370551Z", "last_modified_time": "2023-09-07T14:19:41.370580Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728463.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4026/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:41.228100Z", "last_modified_time": "2023-11-14T06:13:04.955733Z", "date_published": null, "start_time": "2023-08-17", "end_time": "2023-09-20", "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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/66BFA464C80A77108C43A655B4E2AFD1/A_DO_Labra_pedagoginen_konttinayttely_Vuotalon_pihalla", "sv": "http://www.vuotalo.fi/sv/evenemang/event/66BFA464C80A77108C43A655B4E2AFD1/A_DO_Labb_pedagogisk_containerutstallning_utanfor_Nordhuset", "en": "http://www.vuotalo.fi/en/events/event/66BFA464C80A77108C43A655B4E2AFD1/A_DO_Lab_pedagogic_exhibition_outside_of_Vuosaari_House" }, "provider": null, "description": { "fi": "<p>Arkkitehtuurimuseon ja Designmuseon yhteinen A&DO Labra -näyttely on kiertänyt Suomea jo kahden vuoden ajan.</p><p>AVOIMET YLEISÖOPASTUKSET LAUANTAISIN klo 13 ja 14!</p><p>Nyt kahteen konttiin rakennettu arkkitehtuuri- ja muotoiluoppimisen näyttely palaa Helsinkiin – kaikki kiertomatkan opit mukanaan. A&DO Labra rantautuu Vuotalon pihalle Vuosaareen, missä avautuu loistava paikka hyvän lähiympäristön tarkasteluun kaikenikäisille. Näyttely on avoinna 17.8.–20.9.2023.</p><p><b>Avajaiset Taiteiden yönä 17.8. klo 16–19 </b></p><p>A&DO Labra -näyttely haastaa pohtimaan, minkälainen arkkitehtuuri ja muotoilu tukee hyvää arkea ja kestävää kehitystä. Minkälaisessa ympäristössä sinä haluat elää tulevaisuudessa? Minkälainen on hyvä lähiympäristö? Näyttelyn tavoite on saada sinut pohtimaan kriittisesti ympäristöäsi. Voit pohtia asioita yksin, kaverin kanssa tai ryhmässä. Valmiita ratkaisuja ei tarjota. Tavoite on osoittaa, että tulevaisuus ei ole ennalta määrätty. Voimme jokainen vaikuttaa siihen, minkälainen tulevaisuuden ympäristö on.</p><p>Ilmoita ryhmäsi vierailulle Kultuksessa!</p><p>Työryhmä<br>Vastaava tuottaja: Hanna Kapanen<br>Näyttelyarkkitehtuuri: Marjut Alitalo<br>Graafinen suunnittelu: Dog Design, Salla Bedard<br>Kuvitukset: Hanna Kutvonen<br>Oppimateriaalin palvelumuotoilu: Riikka Jalava</p><p>Näyttelytuotanto: A&DO – Arkkitehtuurin ja muotoilun oppimisen keskus<br>Yhteistyössä: Arkkitehtuurimuseo, Designmuseo<br>Kiitos: Suomen kulttuurirahasto, Konttivuokraus oy ja kaikki yhteissuunnitteluun osallistuneet</p><p>A&DO Labra -näyttely on tuotettu yhteistyössä Konttivuokraus Oy:n kanssa.</p>", "sv": "<p>Arkitekturmuseets och Designmuseets gemensamma utställning A&DO Labb har turnerat i Finland redan i två års tid.</p><p>Nu återvänder utställningen om arkitektur- och designinlärning som är uppbyggd i två containrar till Helsingfors – med alla lärdomar från rundresan i bagaget. A&DO Labb parkeras utanför Nordhuset i Nordsjö som bjuder på en fantastisk plats för studier i en bra näromgivning. Utställningen passar alla åldrar. <br> <br>Utställningen A&DO Labb utmanar besökaren att fundera på hurdan arkitektur och design som stödjer en bra vardag och hållbar utveckling. I en hurdan miljö vill du leva i framtiden? Hurdan är en bra närmiljö? Utställningens syfte är att få dig att kritiskt granska din omgivning. Du kan reflektera över saken för dig själv, med en vän eller i en grupp. Det finns inga färdiga lösningar. Målet är att visa att framtiden inte alltid är förutbestämd. Var och en av oss kan påverka vår framtida miljö.</p>", "en": "<p>The joint A&DO Labra exhibition of the Museum of Finnish Architecture and Design Museum Helsinki has been touring Finland for two years.</p><p>Now, the exhibition of architectural and design learning set up in two shipping containers returns to Helsinki – with all of the lessons learned during the tour. A&DO Labra will arrive at Vuotalo courtyard in Vuosaari, which will provide an excellent location for people of all ages to examine the nearby environment. <br> <br>The A&DO Labra challenges visitors to consider what kind of architecture and design ensures good day-to-day living and sustainable development. What would you like your living environment to be like in the future? What is a good local environment like? The aim of the exhibition is to get you to think about your environment critically. You can think about these things alone, with a friend or in a group. No ready-made solutions will be available. The aim is to show that the future is not predetermined. We can all impact the environment of the future.</p>" }, "short_description": { "fi": "Arkkitehtuurimuseon ja Designmuseon yhteinen A&DO Labra -näyttely on kiertänyt Suomea jo kahden vuoden ajan.", "sv": "Arkitekturmuseets och Designmuseets gemensamma utställning A&DO Labb har turnerat i Finland redan i två års tid.", "en": "The joint A&DO Labra exhibition of the Museum of Finnish Architecture and Design Museum Helsinki has been touring Finland for two years." }, "location_extra_info": null, "name": { "fi": "A&DO Labra – pedagoginen konttinäyttely Vuotalon pihalla", "sv": "A&DO Labb – pedagogisk containerutställning utanför Nordhuset", "en": "A&DO Lab – pedagogic exhibition outside of Vuosaari House" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59810/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }