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=1220
{ "meta": { "count": 28024, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=1221", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=1219" }, "data": [ { "id": "kulke:60903", "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: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: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: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": 5156, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:30:03.411788Z", "last_modified_time": "2023-10-09T13:30:03.411808Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736326.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5156/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:30:03.266839Z", "last_modified_time": "2023-11-14T06:13:20.423635Z", "date_published": null, "start_time": "2023-10-11T06: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.annantalo.fi/fi/tapahtumat/event/08D1877FD7B1DD16116DEFB038982115/Ko-kollektiivi_Tanssikorttipakka" }, "provider": null, "description": { "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen.</p><p>Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen.</p><p>Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p><b>Mukana</b> <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen: kultus.fi</p>" }, "short_description": { "fi": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa." }, "location_extra_info": null, "name": { "fi": "Ko-kollektiivi: Tanssikorttipakka" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60903/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60537", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p16327/?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": 4385, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:07.404196Z", "last_modified_time": "2023-09-07T14:24:07.404219Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728497.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4385/?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:24:07.250773Z", "last_modified_time": "2023-11-14T06:13:20.349104Z", "date_published": null, "start_time": "2023-10-11T06: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.vuotalo.fi/fi/tapahtumat/event/9204044860B32B322169F6935DFE2663/Ylakoulukino_Tytot_tytot_tytot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/9204044860B32B322169F6935DFE2663/Hogstadiekino_Girl_Picture", "en": "http://www.vuotalo.fi/en/events/event/9204044860B32B322169F6935DFE2663/Lower_Secondary_School_Cinema_Girl_Picture" }, "provider": null, "description": { "fi": "<p>Kansainvälisen Tyttöjen päivän kunniaksi Vuotalossa näytetään elokuva Tytöt tytöt tytöt yläkoululaisille ja toisen asteen opiskelijoille.</p><p>Kolme tyttöä, kolme perjantaita.</p><p>Mimmi ja Rönkkö ovat parhaat ystävät, toistensa tukena niin hyvässä kuin pahassa. Elämän suunta ei ole aina selvillä, mutta maailma on avoin. Emma on kansainvälisille areenoille tähtäävä taitoluistelija, jolle suunta on täysin selvä, ja se on ylöspäin.</p><p>Kun kaikki kolme tyttöä kohtaavat samoissa bileissä, seuraa yllättäviä tapahtumia – eikä mikään ole niin kuin ennen. Tästä alkaa ajanjakso, jona tunteet ovat suurempia kuin elämä itse, kaikki hetket ovat täynnä energiaa, ja jokainen päivä on uusi mahdollisuus. Tytöt tekevät mitä haluavat, lupia kyselemättä.</p><p>Ohjaus: Alli Haapasalo<br>Ensi-ilta: 14.04.2022<br>Ikäraja: 12<br>Pituus: 101 min<br>Käsikirjoitus: Daniela Hakulinen ja Ilona Ahti<br>Näyttelijät: Linnea Leino (Emma), Aamu Milonoff (Mimmi) ja Eleonoora Kauhanen (Rönkkö). Muissa rooleissa nähdään mm. Bruno Baer, Amos Brotherus, Oona Airola ja Sonya Lindfors.</p><p>Ryhmille ilmoittautumiset osoitteessa <u><a href=\"https://kultus.fi/\">kultus.fi</a></u></p>", "sv": "<p>Nordhuset firar den internationella flickdagen genom att visa filmen Girl Picture till högstadieelever och studerande på andra stadiet.</p><p>Regi: Alli Haapasalo<br>Åldersgrans: 12<br>Längd: 101 min</p>", "en": "<p>To celebrate International Day of the Girl, the film ‘Girl Picture’ will be screened at Vuotalo for lower secondary school and upper secondary level students.</p><p>Director: Alli Haapasalo<br>Age limit: 12<br>Duration: 101 min</p>" }, "short_description": { "fi": "Kansainvälisen Tyttöjen päivän kunniaksi Vuotalossa näytetään elokuva Tytöt tytöt tytöt yläkoululaisille ja toisen asteen opiskelijoille.", "sv": "Nordhuset firar den internationella flickdagen genom att visa filmen Girl Picture till högstadieelever och studerande på andra stadiet.", "en": "To celebrate International Day of the Girl, the film ‘Girl Picture’ will be screened at Vuotalo for lower secondary school and upper secondary level students." }, "location_extra_info": null, "name": { "fi": "Yläkoulukino: Tytöt tytöt tytöt", "sv": "Högstadiekino: Girl Picture", "en": "Lower Secondary School Cinema: Girl Picture" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60537/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60226", "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: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: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" } ], "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": 4384, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:07.015767Z", "last_modified_time": "2023-09-07T14:24:07.015791Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734236.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4384/?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:24:06.848475Z", "last_modified_time": "2023-11-14T06:13:20.062167Z", "date_published": null, "start_time": "2023-10-11T06: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/7B2CFD499F58A55C4B04263CAB32DDD2/Ylakoulukino_Anna_joen_virrata_" }, "provider": null, "description": { "fi": "<p>1970–80-lukujen taitteessa saamelaisyhteisön johtama kansanliike nousi vastustamaan Pohjois-Norjan Altajoelle rakennettavaa vesivoimalaa – ja samalla puolustamaan saamelaisten oikeutta olla olemassa.</p><p>Elokuvassa saamelaisuutensa kätkemiseen tottunut opettaja Ester päätyy Altan tapahtumien myötä tilanteeseen, jossa oman taustan piilottaminen ympäröivältä yhteiskunnalta ei enää tunnu mahdolliselta. Lopulta Ester olisi valmis jopa uhraamaan henkensä kansansa puolesta. Ole Giæverin elokuva on pysäyttävä kuvaus oman äänen löytämisestä ja rohkeudesta nousta puolustamaan itseään ja oikeuksiaan. Se kertoo historiallisesti käänteentekevistä tapahtumista, jotka johtivat universaaliin keskusteluun alkuperäiskansojen oikeuksista.<br>(Lähde: B-Plan Distribution)</p><p>Alkuperäinen nimi: Ellos eatnu – La elva leve<br>Tuotantomaat: Norja, Ruotsi, Suomi<br>Ohjaus ja käsikirjoitus: Ole Giaever<br>Näyttelijät: Ella Marie Hætta Isaksen, Gard Emil, Sofia Jannok, Beaska Niillas<br>Levittäjä: B-Plan Distribution</p><p>Ikäsuositus: 12+<br>Paikka: teatterisali<br>Kesto: 123 min<br>Kieli: norja, pohjoissaame. Elokuvaan on saatavilla tekstitys suomeksi, ruotsiksi tai pohjoissaameksi.</p><p>Vapaa pääsy. Opiskelijaryhmille pakolliset ilmoittautumiset: <u>https://kultus.fi/event/kultus:age6jrjwni</u></p>" }, "short_description": { "fi": "1970–80-lukujen taitteessa saamelaisyhteisön johtama kansanliike nousi vastustamaan Pohjois-Norjan Altajoelle rakennettavaa vesivoimalaa – ja samalla puolustamaan saamelaisten oikeutta olla olemassa." }, "location_extra_info": null, "name": { "fi": "Yläkoulukino: Anna joen virrata" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60226/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60058", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": 4378, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:24:01.222460Z", "last_modified_time": "2023-09-07T14:24:01.222482Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732393.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4378/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:24:00.373771Z", "last_modified_time": "2023-11-14T06:13:19.826130Z", "date_published": null, "start_time": "2023-10-10T14:00:00Z", "end_time": "2023-10-10T15: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/440F9DCACA4FFFD3A5219CEB3D357642/Keskustelu_Chilelaisten_toinen_sukupolvi_", "sv": "http://www.caisa.fi/sv/evenemang/event/440F9DCACA4FFFD3A5219CEB3D357642/Samtal_Den_andra_generationens_chilenare", "en": "http://www.caisa.fi/en/events/event/440F9DCACA4FFFD3A5219CEB3D357642/Discussion_The_Second_Generation_of_Chileans" }, "provider": null, "description": { "fi": "<p>Suomen chileläinen yhteisö on muuttunut ja kasvanut vuoden 1973 jälkeen paljon. Nyt Suomessa asuu satoja chileläistaustaisia ihmisiä.</p><p>Täällä syntyneet nuoret ovat kasvaneet kahden kulttuurin välissä. Monet heistä tuntevat itsensä enemmän suomalaisiksi kuin chileläisiksi. Chileläisnuoret ovat yleisesti ottaen sopeutuneet hyvin Suomeen ja useimmat heistä ovat menestyneet erinomaisesti suomalaisessa yhteiskunnassa.</p><p>Mitä kaksi kulttuuria heille tarkoittaa – kulttuurista rikkautta vai kodittomuutta? Millaisen trauman vanhempien kokema poliittinen väkivalta on mahdollisesti heille synnyttänyt? Mukana tässä keskustelussa: <b>Sebastián Coloma</b>, <b>Marisa Aravena-Kivistö</b> ja <b>Kirsi Mallea</b>. Juontaja: <b>Jaana Kanninen</b>.</p><p>Kesto: 1,5 h<br>Ikäsuositus: sopii kaikille<br>Kieli: suomi/espanja<br>Vapaa pääsy</p><p>Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</p><p><i>Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin. Tuhansia toisinajattelijoita tapettiin, kymmeniä tuhansia kidutettiin ja sadat tuhannet lähtivät maanpakoon. Suomeenkin muodostui kiinteä chileläinen yhteisö.</p><p>Nyt, puoli vuosisataa käänteentekevien tapahtumien jälkeen, chileläisyhteisö tarjoilee laajan kulttuuritapahtumien sarjan, joka tuo esille muistoja ja tunteita tuolta ajalta. Samalla analysoidaan, miten Chilen tapahtumat vaikuttivat suomalaiseen yhteiskuntaan.</p><p>Kulttuurikeskus Caisassa on lokakuussa aiheesta näyttelyitä, keskusteluita, seminaareja, elokuvia ja lasten työpajoja. Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</i></p>", "sv": "<p>Den chilenska gemenskapen i Finland har förändrats och vuxit mycket efter år 1973. Idag bor det hundratals människor med chilenskt ursprung i Finland.</p><p>Vad betyder två kulturer för dem – kulturell rikedom eller hemlöshet? Hurdana trauman har det politiska våldet som deras föräldrar blivit utsatta för skapat hos dem? I samtalet deltar: Sebastián Coloma, Marisa Aravena-Kivistö, Kirsi Mallea. Programledare: Jaana Kanninen.</p><p>Längd: 1,5 t<br>Åldersrekommendation: för alla åldrar<br>Språk: finska/spanska<br>Fritt inträde<br>Innehållsvarning: Innehållen i evenemangen med Chile50-tema kan vara omskakande för känsliga tittare.</p><p><i>Den våldsamma militärkuppen i Chile 11.9.1973 skrotade landets demokrati och inledde en militärdiktatur som fortsatte i 17 år.</p><p>Tusentals oliktänkande dödades, tiotusentals människor torterades och hundratusentals andra flydde landet. Även i Finland bildades en fast chilensk gemenskap.</p><p>Nu, ett halvt sekel efter de omvälvande händelserna, bjuder medlemmarna i denna gemenskap på en omfattande serie av kulturevenemang som lyfter fram minnen och känslor från denna tid. Samtidigt analyseras hur händelserna i Chile påverkade det finländska samhället.</p><p>I kulturcentret Caisa hålls i oktober utställningar, samtal, seminarier och verkstäder för barn samt visas filmer om ämnet.</i></p>", "en": "<p>The Chilean community in Finland has changed and grown a lot since 1973. There are now hundreds of people of Chilean origin living in Finland.</p><p>What do two cultures mean to them – cultural richness or homelessness? What kind of trauma might the political violence experienced by their parents have created for them? Participating in the discussion are: Sebastián Coloma, Marisa Aravena-Kivistö, Kirsi Mallea. Host: Jaana Kanninen.</p><p>Duration: 1,5 h<br>Age recommendation: for all ages<br>Language: Finnish/Spanish<br>Free entry<br>Content warning: The contents of the Chile50-themed events may upset sensitive people.</p><p><i>The violent Chilean coup d’état of 11 September 1973 brought down the country’s democracy and began a 17-year military dictatorship.</p><p>Thousands of dissidents were killed, tens of thousands were tortured and hundreds of thousands went into exile. A strong Chilean community was also established in Finland.</p><p>Now, half a century after the revolutionary events, the Chilean community is offering a wide range of cultural events that will bring out memories and emotions of that time. The events in Chile will also be analysed in terms of their impact on Finnish society.</p><p>In October, Cultural Centre Caisa will host exhibitions, discussions, seminars, films and children’s workshops on the theme. </i></p>" }, "short_description": { "fi": "Suomen chileläinen yhteisö on muuttunut ja kasvanut vuoden 1973 jälkeen paljon. Nyt Suomessa asuu satoja chileläistaustaisia ihmisiä.", "sv": "Den chilenska gemenskapen i Finland har förändrats och vuxit mycket efter år 1973. Idag bor det hundratals människor med chilenskt ursprung i Finland.", "en": "The Chilean community in Finland has changed and grown a lot since 1973. There are now hundreds of people of Chilean origin living in Finland." }, "location_extra_info": null, "name": { "fi": "Keskustelu: Chileläisten toinen sukupolvi – Chile50-teemaisia tapahtumia Caisassa", "sv": "Samtal: Den andra generationens chilenare – Evenemang med Chile50-tema i Caisa", "en": "Discussion: The Second Generation of Chileans – Chile50 themed events at Caisa" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60058/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60458", "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": 4376, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:59.537397Z", "last_modified_time": "2023-09-07T14:23:59.537420Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725183.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4376/?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:23:59.381577Z", "last_modified_time": "2023-11-14T06:13:19.661510Z", "date_published": null, "start_time": "2023-10-10T10:30:00Z", "end_time": "2023-10-10T12: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/0213E65BD140A319A80199AE06DCCF36/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/0213E65BD140A319A80199AE06DCCF36/Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/0213E65BD140A319A80199AE06DCCF36/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:60458/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59905", "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": 4375, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:59.167094Z", "last_modified_time": "2023-09-07T14:23:59.167119Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731097.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4375/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:58.981349Z", "last_modified_time": "2023-11-14T06:13:19.587950Z", "date_published": null, "start_time": "2023-10-10T07:30:00Z", "end_time": "2023-10-10T08: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/5A9145E104023E21F60536D967B3B619/Aamupaivatanssit", "sv": "http://www.stoa.fi/sv/evenemang/event/5A9145E104023E21F60536D967B3B619/Formiddagsdans", "en": "http://www.stoa.fi/en/events/event/5A9145E104023E21F60536D967B3B619/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:59905/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60905", "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: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: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: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": 5155, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:59.387875Z", "last_modified_time": "2023-10-09T13:29:59.387903Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736322.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5155/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:59.097178Z", "last_modified_time": "2023-11-14T06:13:19.515915Z", "date_published": null, "start_time": "2023-10-10T07: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.annantalo.fi/fi/tapahtumat/event/7E41328D6020DB97674919E8DDC8FD50/Ko-kollektiivi_Tanssikorttipakka" }, "provider": null, "description": { "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen.</p><p>Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen.</p><p>Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p><b>Mukana</b> <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen: kultus.fi</p>" }, "short_description": { "fi": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa." }, "location_extra_info": null, "name": { "fi": "Ko-kollektiivi: Tanssikorttipakka" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60905/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60906", "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: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: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: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": 5154, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:58.887238Z", "last_modified_time": "2023-10-09T13:29:58.887259Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736323.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5154/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:58.200752Z", "last_modified_time": "2023-11-14T06:13:19.438460Z", "date_published": null, "start_time": "2023-10-10T06: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.annantalo.fi/fi/tapahtumat/event/16661EBD70A8426705374A097F97F773/Ko-kollektiivi_Tanssikorttipakka" }, "provider": null, "description": { "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen.</p><p>Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen.</p><p>Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p><b>Mukana</b> <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen: kultus.fi</p>" }, "short_description": { "fi": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa." }, "location_extra_info": null, "name": { "fi": "Ko-kollektiivi: Tanssikorttipakka" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60906/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60506", "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": 4373, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:56.629174Z", "last_modified_time": "2023-09-07T14:23:56.629201Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730678.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4373/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:56.304451Z", "last_modified_time": "2023-11-14T06:13:19.276301Z", "date_published": null, "start_time": "2023-10-09T12:00:00Z", "end_time": "2023-10-09T13: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.kanneltalo.fi/fi/tapahtumat/event/721875D3FE6AA49F6DD80F935B8A407D/Kirjailijavieraana_Marja_Kyllonen", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/721875D3FE6AA49F6DD80F935B8A407D/Forfattargast_Marja_Kyllonen", "en": "http://www.kanneltalo.fi/en/events/event/721875D3FE6AA49F6DD80F935B8A407D/Author_guest_Marja_Kyllonen" }, "provider": null, "description": { "fi": "<p>Vainajaiset (Teos, 2022) on tarina lapsettomuudesta ja sen seurauksista, sukupolvien ketjusta ja selittämättömistä voimista.</p><p>Haastattelijana FM Katri Sola.</p><p>Lasta odotettaessa jokin osaton on alati läsnä ja sen sormet kurottelevat kohti äitiä, isää, isoäitiä, naapurintyttöä, veljeä. Ihmiskohtalot kietoutuvat elliptisesti yhteen, tyhjän ympärille, ja tuota autiutta kukin heistä kokee parhaansa mukaan täyttää – kuka tihutöillä, kuka satuja sepitellen, kuka etsien syntymätöntä sisarustaan.</p><p><b>Marja Kyllönen</b> on kajaanilaislähtöinen, nykyisin Tampereella asuva kirjailija. Hänen ylistetty romaaninsa <i>Vainajaiset</i> (2022) voitti Runeberg-palkinnon ja oli ehdolla myös Finlandia-palkinnon saajaksi. Ennen Vainajaisia Kyllönen on julkaissut kaksi romaania, Helsingin Sanomien esikoiskirjapalkinnolla palkitun <i>Lyijyuuman</i> (WSOY, 1997) ja <i>Rikot</i> (WSOY, 2001). Hänen kuunnelmansa <i>Äänetön osakas</i> (2010) valittiin Suomen edustajaksi Prix Italiaan.</p><p>Yhteistyössä Kannelmäen kirjaston ja Työväenopiston kanssa.<br>Kieli: suomi</p><p>Vapaa päsy</p>", "sv": "<p>Vainajaiset (Teos, 2022) är en berättelse av barnlöshet och dess följder, om kedjan av generationer och oförklarliga krafter.</p><p>Intervjuare FM Katri Sola.</p>", "en": "<p>The Undeparted (Teos, 2022) is a story about infertility and its consequences, a chain of generations and unexplained forces.</p><p>Interviewed by MA Katri Sola.</p>" }, "short_description": { "fi": "Vainajaiset (Teos, 2022) on tarina lapsettomuudesta ja sen seurauksista, sukupolvien ketjusta ja selittämättömistä voimista.", "sv": "Vainajaiset (Teos, 2022) är en berättelse av barnlöshet och dess följder, om kedjan av generationer och oförklarliga krafter.", "en": "The Undeparted (Teos, 2022) is a story about infertility and its consequences, a chain of generations and unexplained forces." }, "location_extra_info": null, "name": { "fi": "Kirjailijavieraana Marja Kyllönen – Maksuttomat maanantait", "sv": "Författargäst Marja Kyllönen – Kostandsfria måndagar", "en": "Author guest Marja Kyllönen – Free Mondays" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60506/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60495", "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": 4372, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:56.094413Z", "last_modified_time": "2023-09-07T14:23:56.094440Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731774.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4372/?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:23:55.946044Z", "last_modified_time": "2023-11-14T06:13:19.193368Z", "date_published": null, "start_time": "2023-10-09T07:15:00Z", "end_time": "2023-10-09T08: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/C0073C76906B6D1D541879C3AE847963/Tanssi_ja_leikki_-tyopajat_Leikki-ikaiset", "sv": "http://www.caisa.fi/sv/evenemang/event/C0073C76906B6D1D541879C3AE847963/Dans_och_lek_verkstad_Barn_i_lekaldern", "en": "http://www.caisa.fi/en/events/event/C0073C76906B6D1D541879C3AE847963/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:60495/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60483", "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": 4371, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:55.620198Z", "last_modified_time": "2023-09-07T14:23:55.620220Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731758.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4371/?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:23:55.476507Z", "last_modified_time": "2023-11-14T06:13:19.114815Z", "date_published": null, "start_time": "2023-10-09T06:15:00Z", "end_time": "2023-10-09T07: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/71EE82944F7164E02C171B99B54BB369/Tanssi_ja_leikki_-tyopaja_Taaperot", "sv": "http://www.caisa.fi/sv/evenemang/event/71EE82944F7164E02C171B99B54BB369/Dans_och_lek_verkstad_Smabarn", "en": "http://www.caisa.fi/en/events/event/71EE82944F7164E02C171B99B54BB369/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:60483/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60057", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": 4364, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:49.028205Z", "last_modified_time": "2023-09-07T14:23:49.028226Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732392.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4364/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:48.704168Z", "last_modified_time": "2023-11-14T06:13:18.503937Z", "date_published": null, "start_time": "2023-10-07T14:00:00Z", "end_time": "2023-10-07T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/11D6080CBBFA9D43B06234834E88FF81/Keskustelu_Ensimmaiset_chilelaiset_pakolaiset_Suomessa", "sv": "http://www.caisa.fi/sv/evenemang/event/11D6080CBBFA9D43B06234834E88FF81/Samtal_De_forsta_chilenska_flyktingarna_i_Finland", "en": "http://www.caisa.fi/en/events/event/11D6080CBBFA9D43B06234834E88FF81/Discussion_The_First_Chilean_Refugees_in_Finland" }, "provider": null, "description": { "fi": "<p>Suomen hallitus päätti lokakuussa 1973 ottaa ryhmän Augusto Pinochetin sortoa pakenevia chileläisiä Suomeen.</p><p>He saapuivat Suomeen vielä vuoden 1973 puolella, ja heistä tuli Suomen ensimmäinen kiintiöpakolaisryhmä.</p><p>Monet alkuperäisistä chileläisistä pakolaisista ovat palanneet synnyinmaahansa asumaan sen jälkeen, kun Chile viimein siirtyi demokratiaan. Mutta moni asuu edelleen Suomessa, missä heidän perheenjäsenensäkin ovat. Mutta tuntevatko he olevansa suomalaisia vai chileläisiä? Miten 1970-luvun Suomi otti heidät vastaan ja mitä Suomi on heille antanut?</p><p>Näihin ja moniin muihin kysymyksiin etsitään vastausta alkuperäisten chileläisten pakolaisten kanssa. Keskustelemassa: <b>Adrián Soto</b> ja <b>Alfonso Padilla</b>. Juontaja: <b>Jaana Kanninen</b>.</p><p>Kesto: 1,5 h<br>Ikäsuositus: sopii kaikille<br>Kieli: suomi/espanja<br>Vapaa pääsy<br>Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</p><p><i>Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin. Tuhansia toisinajattelijoita tapettiin, kymmeniä tuhansia kidutettiin ja sadat tuhannet lähtivät maanpakoon. Suomeenkin muodostui kiinteä chileläinen yhteisö.</p><p>Nyt, puoli vuosisataa käänteentekevien tapahtumien jälkeen, chileläisyhteisö tarjoilee laajan kulttuuritapahtumien sarjan, joka tuo esille muistoja ja tunteita tuolta ajalta. Samalla analysoidaan, miten Chilen tapahtumat vaikuttivat suomalaiseen yhteiskuntaan.</p><p>Kulttuurikeskus Caisassa on lokakuussa aiheesta näyttelyitä, keskusteluita, seminaareja, elokuvia ja lasten työpajoja. Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</i></p>", "sv": "<p>Den finska regeringen beslutade i oktober 1973 att ta emot en grupp chilenare som flytt undan Augusto Pinochets förtryck till Finland.</p><p>Chilenarna kom till Finland redan under 1973 och blev Finlands första grupp av kvotflyktingar.</p><p>Känner de sig som finländare eller chilenare? Hur tog 1970-talets Finland emot dem och vad har Finland gett dem?</p><p>Vi söker ett svar på dessa och många andra frågor med de ursprungliga chilenska flyktingarna. I samtalet deltar: <b>Adrián Soto</b>, <b>Carmen Quinteros</b> (på spanska), <b>Alfonso Padilla</b>. Programledare: <b>Jaana Kanninen</b>.</p><p>Längd: 1,5 t<br>Åldersrekommendation: för alla åldrar<br>Språk: finska/spanska<br>Fritt inträde<br>Innehållsvarning: Innehållen i evenemangen med Chile50-tema kan vara omskakande för känsliga tittare.</p><p><i>Den våldsamma militärkuppen i Chile 11.9.1973 skrotade landets demokrati och inledde en militärdiktatur som fortsatte i 17 år.</p><p>Tusentals oliktänkande dödades, tiotusentals människor torterades och hundratusentals andra flydde landet. Även i Finland bildades en fast chilensk gemenskap.</p><p>Nu, ett halvt sekel efter de omvälvande händelserna, bjuder medlemmarna i denna gemenskap på en omfattande serie av kulturevenemang som lyfter fram minnen och känslor från denna tid. Samtidigt analyseras hur händelserna i Chile påverkade det finländska samhället.</p><p>I kulturcentret Caisa hålls i oktober utställningar, samtal, seminarier och verkstäder för barn samt visas filmer om ämnet.</i></p>", "en": "<p>The Finnish government decided to take in a group of Chileans fleeing Augusto Pinochet’s oppression to Finland in October 1973.</p><p>They arrived in Finland before the end of 1973 and became Finland’s first quota refugee group.</p><p>Do they identify themselves as Finns or Chileans? How did Finland in the 1970s receive them and what has Finland given them?</p><p>These and many other questions will be answered with indigenous Chilean refugees. Participating in the discussion are: <b>Adrián Soto</b>, <b>Carmen Quinteros</b> (in Spanish), <b>Alfonso Padilla</b>. Host: <b>Jaana Kanninen</b>.</p><p>Duration: 1,5 h<br>Age recommendation: for all ages<br>Language: Finnish/Spanish<br>Free entry<br>Content warning: The contents of the Chile50-themed events may upset sensitive people.</p><p><i>The violent Chilean coup d’état of 11 September 1973 brought down the country’s democracy and began a 17-year military dictatorship.</p><p>Thousands of dissidents were killed, tens of thousands were tortured and hundreds of thousands went into exile. A strong Chilean community was also established in Finland.</p><p>Now, half a century after the revolutionary events, the Chilean community is offering a wide range of cultural events that will bring out memories and emotions of that time. The events in Chile will also be analysed in terms of their impact on Finnish society.</p><p>In October, Cultural Centre Caisa will host exhibitions, discussions, seminars, films and children’s workshops on the theme. </i></p>" }, "short_description": { "fi": "Suomen hallitus päätti lokakuussa 1973 ottaa ryhmän Augusto Pinochetin sortoa pakenevia chileläisiä Suomeen.", "sv": "Den finska regeringen beslutade i oktober 1973 att ta emot en grupp chilenare som flytt undan Augusto Pinochets förtryck till Finland.", "en": "The Finnish government decided to take in a group of Chileans fleeing Augusto Pinochet’s oppression to Finland in October 1973." }, "location_extra_info": null, "name": { "fi": "Keskustelu: Ensimmäiset chileläiset pakolaiset Suomessa – Chile50-teemaisia tapahtumia Caisassa", "sv": "Samtal: De första chilenska flyktingarna i Finland – Evenemang med Chile50-tema i Caisa", "en": "Discussion: The First Chilean Refugees in Finland – Chile50 themed events at Caisa" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60057/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60909", "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": 4363, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:48.464601Z", "last_modified_time": "2023-09-07T14:23:48.464631Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736552.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4363/?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:23:48.299251Z", "last_modified_time": "2023-11-14T06:13:18.360880Z", "date_published": null, "start_time": "2023-10-07T11: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/E8C6EABB8B8E1CCF2BA876C8E0FA2047/DanceAbility_Lasten_inklusiivinen_tanssitunti_", "en": "http://www.annantalo.fi/en/events/event/E8C6EABB8B8E1CCF2BA876C8E0FA2047/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:60909/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60933", "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: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: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": 5150, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:49.791901Z", "last_modified_time": "2023-10-09T13:29:49.791922Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735283.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5150/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:49.591203Z", "last_modified_time": "2023-11-14T06:13:18.204284Z", "date_published": null, "start_time": "2023-10-07T10:00:00Z", "end_time": "2023-10-07T11: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/4EAC86247407CAC9CA96E1CF7F87E8B7/Koetanssitilaisuus_65-vuotiaille" }, "provider": null, "description": { "fi": "<p>Oletko aina haaveillut esiintymisestä? Hae mukaan Susanna Leinonen Companyn tanssiteokseen Satakieli.</p><p>Nykytanssin kärkiryhmä Susanna Leinonen Company etsii ilmaisuvoimaisia, tanssista kiinnostuneita +65 helsinkiläisiä ikäihmisiä tanssiteokseen Satakieli, joka saa ensi-iltansa maaliskuussa 2024 Kulttuurikeskus Stoassa. Teoksen koreografi on <b>Susanna Leinonen</b> ja ääni-ilmaisua ohjaa näyttelijä-laulaja <b>Eija Ahvo</b>.</p><p>Teokseen valitaan 14–16 ikäihmistä, jotka yhdessä ammattitanssijoiden kanssa sukeltavat tanssin fyysiseen maailmaan. Hakijoilla ei tarvitse olla aiempaa tanssitaustaa, ainoastaan intoa ja halua oppia uutta.</p><p>Tule ja hae mukaan!</p><p>Paikka: Stoan musiikkisali, Turunlinnantie 1, Itäkeskus</p><p>Ilmoittautumiset 28.9. mennessä osoitteeseen:<br>info@susannaleinonen.com<br> <br>Tiedustelut: Tuottaja Tanja Haarla arkisin kello 10–15, puh. 050 512 9959</p>" }, "short_description": { "fi": "Oletko aina haaveillut esiintymisestä? Hae mukaan Susanna Leinonen Companyn tanssiteokseen Satakieli." }, "location_extra_info": null, "name": { "fi": "Koetanssitilaisuus +65-vuotiaille – Susanna Leinonen Company" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60933/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60932", "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: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: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": 5149, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:49.377455Z", "last_modified_time": "2023-10-09T13:29:49.377475Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735282.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5149/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:49.126217Z", "last_modified_time": "2023-11-14T06:13:18.135269Z", "date_published": null, "start_time": "2023-10-07T08:00:00Z", "end_time": "2023-10-07T09: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/44980683C33FAD622A2DB73D9109C45B/Koetanssitilaisuus_65-vuotiaille" }, "provider": null, "description": { "fi": "<p>Oletko aina haaveillut esiintymisestä? Hae mukaan Susanna Leinonen Companyn tanssiteokseen Satakieli.</p><p>Nykytanssin kärkiryhmä Susanna Leinonen Company etsii ilmaisuvoimaisia, tanssista kiinnostuneita +65 helsinkiläisiä ikäihmisiä tanssiteokseen Satakieli, joka saa ensi-iltansa maaliskuussa 2024 Kulttuurikeskus Stoassa. Teoksen koreografi on <b>Susanna Leinonen</b> ja ääni-ilmaisua ohjaa näyttelijä-laulaja <b>Eija Ahvo</b>.</p><p>Teokseen valitaan 14–16 ikäihmistä, jotka yhdessä ammattitanssijoiden kanssa sukeltavat tanssin fyysiseen maailmaan. Hakijoilla ei tarvitse olla aiempaa tanssitaustaa, ainoastaan intoa ja halua oppia uutta.</p><p>Tule ja hae mukaan!</p><p>Paikka: Stoan musiikkisali, Turunlinnantie 1, Itäkeskus</p><p>Ilmoittautumiset 28.9. mennessä osoitteeseen:<br>info@susannaleinonen.com<br> <br>Tiedustelut: Tuottaja Tanja Haarla arkisin kello 10–15, puh. 050 512 9959</p>" }, "short_description": { "fi": "Oletko aina haaveillut esiintymisestä? Hae mukaan Susanna Leinonen Companyn tanssiteokseen Satakieli." }, "location_extra_info": null, "name": { "fi": "Koetanssitilaisuus +65-vuotiaille – Susanna Leinonen Company" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60932/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60219", "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": 4357, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:43.829043Z", "last_modified_time": "2023-09-07T14:23:43.829072Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734227.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4357/?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:23:43.668665Z", "last_modified_time": "2023-11-14T06:13:17.444444Z", "date_published": null, "start_time": "2023-10-06T07: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/A7D276D6504C965BA936C903B54DC2DC/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/A7D276D6504C965BA936C903B54DC2DC/Skidikino", "en": "http://www.stoa.fi/en/events/event/A7D276D6504C965BA936C903B54DC2DC/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 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:60219/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60220", "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": 4356, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:42.728742Z", "last_modified_time": "2023-09-07T14:23:42.728762Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734226.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4356/?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:23:42.066764Z", "last_modified_time": "2023-11-14T06:13:17.364651Z", "date_published": null, "start_time": "2023-10-06T06: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/E41FD1471BDBEE5AA1D8AC7689C41F5D/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/E41FD1471BDBEE5AA1D8AC7689C41F5D/Skidikino", "en": "http://www.stoa.fi/en/events/event/E41FD1471BDBEE5AA1D8AC7689C41F5D/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 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:60220/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60505", "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:31/?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" } ], "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": 4355, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:41.327663Z", "last_modified_time": "2023-09-07T14:23:41.327683Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730506.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4355/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:40.959467Z", "last_modified_time": "2023-11-14T06:13:17.280850Z", "date_published": null, "start_time": "2023-10-06", "end_time": "2023-10-21", "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/3DA07BDED0A7EEC502F9B3B3DD67C339/Suomalaisen_barokkiorkesterin_muusikot_Jeremy_Barrois_X_TUNNE", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3DA07BDED0A7EEC502F9B3B3DD67C339/Musiker_fran_Suomalainen_barokkiorkesteri_Jeremy_Barrois_X_TUNNE", "en": "http://www.kanneltalo.fi/en/events/event/3DA07BDED0A7EEC502F9B3B3DD67C339/Musicians_of_the_Finnish_Baroque_Orchestra_Jeremy_Barrois_X_TUNNE" }, "provider": null, "description": { "fi": "<p>Varaa itsellesi maksuton henkilökohtainen esitys 6.–7.10.2023.</p><p>Kuulijalle rakennetaan Kanneltalon galleriaan oma tila, jossa ympäröivä elämä ja muut kuulijat jäävät hetkeksi taka-alalle, vain musiikki ja muusikko ovat tärkeitä. Varaa itsellesi maksuton henkilökohtainen esitys, tule seuraamaan live-kohtaamisia taustalta tai tule katsomaan videokooste.</p><p>X.TUNNE. on Helsinki Early Music Festivalin versio <b>Suomalaisen barokkiorkesterin</b> <i>Tule.Tunne.</i> <br>-barokkiperformanssilaboratoriosta.</p><p>Perjantaina 6.10. klo 15–18 ja lauantaina 7.10. klo 13–16 tarjolla on yhteensä 12 puolen tunnin mittaista kohtaamista, jossa yksi muusikko esiintyy kerrallaan yhteen kuulijaan keskittyen.</p><p><b>Varattavissa olevat ajat:</b><br>Perjantai 6.10. klo 15, 15.30, 16, 16.30, 17 ja 17.30<br>Lauantai 7.10. klo 13, 13.30, 14, 14.30, 15 ja 15.30</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Maksuttomat lippuvaraukset: Lippu.fi</a></u></p><p>Videokuvaaja <b>Jeremy Barrois</b> tallentaa esitykset ja editoi valikoiduista hetkistä kokonaisuuden, joka on katsottavissa Kanneltalon galleriassa osana <i>Helsinki Early Music Festivalia</i>. Tallenne on nähtävissä Kanneltalon galleriassa 11.–21.10.2023.</p><p>Yhteistyössä Kanneltalo, Suomalainen barokkiorkesteri, Helsinki Early Music Festival</p><p>Galleria, vapaa pääsy</p>", "sv": "<p>Boka en kostnadsfri privatföreställning.</p><p>För lyssnaren byggs ett eget utrymme i Gamlasgårdens galleri där livet omkring och den övriga publiken hamnar i bakgrunden för en stund och bara musiken och musikern har betydelse. Boka en kostnadsfri privatföreställning, följ live-mötena från kulisserna eller sätt dig och titta på videocollaget.</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Kostnadsfria biljettbokning: Lippu.fi</a></u></p>", "en": "<p>Book yourself a free personal performance.</p><p>The listener is built their own space at the Kanneltalo gallery, where the surrounding life and other listeners take a back seat for a moment and only the music and the musician are important. Book yourself a free personal performance, come and follow the live encounters in the background or watch the video compilation.</p><p><u><a href=\"https://www.lippu.fi/artist/kanneltalo/?affiliate=ADV\">Free ticket bookings: Lippu.fi</a></u></p>" }, "short_description": { "fi": "Varaa itsellesi maksuton henkilökohtainen esitys 6.–7.10.2023.", "sv": "Boka en kostnadsfri privatföreställning.", "en": "Book yourself a free personal performance." }, "location_extra_info": null, "name": { "fi": "Suomalaisen barokkiorkesterin muusikot & Jeremy Barrois: X.TUNNE – Musiikillinen kohtaamislaboratorio ja videokooste", "sv": "Musiker från Suomalainen barokkiorkesteri & Jeremy Barrois: X.TUNNE – Ett musikaliskt möteslaboratorium och videocollage", "en": "Musicians of the Finnish Baroque Orchestra & Jeremy Barrois: X.TUNNE – Musical encounter laboratory and video compilation" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60505/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60990", "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: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5146, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:43.791522Z", "last_modified_time": "2023-10-09T13:29:43.791542Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737111.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5146/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:42.804303Z", "last_modified_time": "2023-11-14T06:13:17.195474Z", "date_published": null, "start_time": "2023-10-05T15: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/FCF05BFDCD33291F1CF131B379F6F28B/Kulttuuria_taynna_muistoja_Sortavalasta_-dokumenttinaytos" }, "provider": null, "description": { "fi": "<p>Haastatteludokumentin ”Kulttuuria täynnä ¬ muistoja Sortavalasta” -näytös on osa Stoan gallerian Aikamatka Sortavalaan -näyttelyn oheisohjelmaa.</p><p>Sortavala oli sotia edeltävällä ajalla monin tavoin poikkeuksellinen kaupunki. Sen sijainti Laatokan pohjoisrannalla tuolloisten Karjalan laulumaiden äärellä sekä kaupungin vireä ja yritteliäs ilmapiiri loivat hyvät edellytykset monipuoliselle kulttuurielämälle. Voidaan sanoa, että Sortavalan yhteiskunnallinen ja kulttuurinen merkitys oli huomattavasti sen kokoa suurempi.<br> <br>Nyt valmistunut haastatteludokumentti valottaa eri näkökulmista Sortavalan ja sen ympäristön kulttuuri- ja sivistyselämää, sen vaikuttajia ja ihmisten arkea siellä. Kertojina on Sortavala-asiantuntijoita sekä siellä nuoruutensa viettäneitä alkuperäisiä sortavalalaisia. Kaupungista kehittyi 1800-luvun lopulta alkaen sota-aikaan asti kulttuurinen, taloudellinen sekä henkinen ja hengellinen keskus. <br> <br>Elokuva on samalla surullisella tavalla ajankohtainen. Kuulemme aikalaisten tunnelmia, kun sodan alkaessa lapsuus loppui ja joutui näkemään kasvuympäristön tuhoutumisen. Vuosikymmenienkään aikana rakkaus kotiseutuun ei ole unohtunut. <br> <br>Dokumentin on käsikirjoittanut ja ohjannut Sortavala-seuran puheenjohtaja Marja Lampi ja se on toteutettu yhteistyössä Metropolia Ammattikorkeakoulun elokuva- ja televisioalanopiskelijoiden kanssa. <br>Elokuva käynnistää Helsingissä toimivan Sortavala-seuran 70-vuotisjuhlavuoden.</p><p>Dokumentin kesto n. 1 tunti.</p>" }, "short_description": { "fi": "Haastatteludokumentin ”Kulttuuria täynnä ¬ muistoja Sortavalasta” -näytös on osa Stoan gallerian Aikamatka Sortavalaan -näyttelyn oheisohjelmaa." }, "location_extra_info": null, "name": { "fi": "Kulttuuria täynnä – muistoja Sortavalasta -dokumenttinäytös" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60990/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60112", "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:348/?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: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": 4352, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:39.861108Z", "last_modified_time": "2023-09-07T14:23:39.861129Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733046.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4352/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:39.262046Z", "last_modified_time": "2023-11-14T06:13:16.970554Z", "date_published": null, "start_time": "2023-10-05T08:45: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/731519EF0687905212B9A9DE68FCD27D/Opi_suomea_laulaen_" }, "provider": null, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua. <br> <br>Kesto n. 80 min <br>Ryhmään mukaan on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi <br> <br>Syksyn laulupajakerrat: <br>to 7.9. klo 10 & 11.45 <br>to 5.10. klo 10 ja 11.45 <br>to 16.11. klo 10 & 11.45 <br>torstai joulukuussa</p>" }, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista." }, "location_extra_info": null, "name": { "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60112/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }